blob: 07cf6574d8d693f53efdaad8840e3ee624ab9686 [file] [log] [blame]
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -07001// Copyright 2017-present Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15node {
16 // Need this so that deployment_config has global scope when it's read later
17 deployment_config = null
18}
19
20pipeline {
21 /* no label, executor is determined by JJB */
22 agent {
23 label "${params.buildNode}"
24 }
25 options {
Andrea Campanella49e65032020-04-28 11:52:17 +020026 timeout(time: 180, unit: 'MINUTES')
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070027 }
28
29 environment {
30 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
31 VOLTCONFIG="$HOME/.volt/config-minimal"
32 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
33 }
34
35 stages {
36 stage ('Initialize') {
37 steps {
38 step([$class: 'WsCleanup'])
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070039 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri13421432020-06-05 17:34:33 -070040 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/kind-voltha"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070041 script {
42 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
43 }
Andy Bavierb5c8caf2020-04-06 14:12:07 -070044 // This checkout allows us to show changes in Jenkins
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070045 checkout(changelog: true,
46 poll: false,
47 scm: [$class: 'RepoScm',
48 manifestRepositoryUrl: "${params.manifestUrl}",
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070049 manifestBranch: "${params.branch}",
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070050 currentBranch: true,
51 destinationDir: 'voltha',
52 forceSync: true,
53 resetFirst: true,
54 quiet: true,
55 jobs: 4,
56 showAllChanges: true]
57 )
58 sh returnStdout: false, script: """
59 cd voltha
Suchitra Vemuri05946a62020-04-12 12:40:59 -070060 git clone -b master ${cordRepoUrl}/cord-tester
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070061 mkdir -p $WORKSPACE/bin
62 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
63 cd $WORKSPACE
Suchitra Vemuri13421432020-06-05 17:34:33 -070064 if [ "${params.branch}" != "master" ]; then
65 cd $WORKSPACE/kind-voltha
66 source releases/${params.branch}
67 VC_VERSION=1.0.18
68 else
69 VC_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
70 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070071
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070072 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
73 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
74 if [ \$HOSTARCH == "x86_64" ]; then
75 HOSTARCH="amd64"
76 fi
77 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VC_VERSION}/voltctl-\${VC_VERSION}-\${HOSTOS}-\${HOSTARCH}
78 chmod 755 $WORKSPACE/bin/voltctl
79 voltctl version --clientonly
Andrea Campanella9b234332020-04-24 12:22:18 +020080
Suchitra Vemuri13421432020-06-05 17:34:33 -070081
Andrea Campanella9b234332020-04-24 12:22:18 +020082 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
83 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
84 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -070085 if [ "${params.branch}" == "master" ]; then
86 set +e
Andrea Campanella9b234332020-04-24 12:22:18 +020087
Andrea Campanella9b234332020-04-24 12:22:18 +020088
89 # Remove noise from voltha-core logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -070090 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
91 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andrea Campanella9b234332020-04-24 12:22:18 +020092 # Remove noise from openolt logs
Suchitra Vemuria2a7f2c2020-06-08 14:05:06 -070093 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
94 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
95 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Suchitra Vemuri13421432020-06-05 17:34:33 -070096 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070097 """
98 }
99 }
100
101 stage('Functional Tests') {
102 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -0700103 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700104 ROBOT_FILE="Voltha_DT_PODTests.robot"
Andrea Campanellad924ce22020-04-20 16:40:41 +0200105 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700106 }
107 steps {
108 sh """
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700109 cd $WORKSPACE/voltha/kind-voltha/scripts
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700110 ./log-collector.sh > /dev/null &
111 ./log-combine.sh > /dev/null &
112
113 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -0700114 export ROBOT_MISC_ARGS="--removekeywords wuks -i sanityDt -i functionalDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700115 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
116 """
117 }
118 }
Andrea Campanellad924ce22020-04-20 16:40:41 +0200119
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200120 stage('Failure/Recovery Tests') {
121 environment {
122 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
123 ROBOT_FILE="Voltha_DT_FailureScenarios.robot"
124 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios"
125 }
126 steps {
127 sh """
128 mkdir -p $ROBOT_LOGS_DIR
129 if ( ${powerSwitch} ); then
130 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -i PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
131 else
132 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -e PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
133 fi
134 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
135 """
136 }
137 }
138
Andy Bavier5ad87c92020-05-11 16:31:35 -0700139 stage('Dataplane Tests') {
140 environment {
Andy Bavier1541da82020-05-15 09:41:38 -0700141 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700142 ROBOT_FILE="Voltha_DT_PODTests.robot"
143 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/DataplaneTests"
144 }
145 steps {
146 sh """
147 mkdir -p $ROBOT_LOGS_DIR
Andy Bavier2dac06b2020-05-27 16:58:32 -0700148 export ROBOT_MISC_ARGS="--removekeywords wuks -i dataplaneDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700149 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
150 """
151 }
152 }
153
Andrea Campanellad924ce22020-04-20 16:40:41 +0200154 stage('Error Scenario Tests') {
155 environment {
156 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
157 ROBOT_FILE="Voltha_ErrorScenarios.robot"
158 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios"
159 }
160 steps {
161 sh """
162 mkdir -p $ROBOT_LOGS_DIR
163 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v workflow:${params.workFlow} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
164 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
165 """
166 }
Andrea Campanella71666372020-04-21 10:56:17 +0200167 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700168 }
169 post {
170 always {
171 sh returnStdout: false, script: '''
172 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700173 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
174 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700175 kubectl get nodes -o wide
176 kubectl get pods -n voltha -o wide
177
178 sleep 60 # Wait for log-collector and log-combine to complete
179
180 # Clean up "announcer" pod used by the tests if present
181 kubectl delete pod announcer || true
182
183 ## Pull out errors from log files
184 extract_errors_go() {
185 echo
186 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700187 grep '"level":"error"' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700188 echo
189 }
190
191 extract_errors_python() {
192 echo
193 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700194 grep 'ERROR' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700195 echo
196 }
197
198 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
199 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
200 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
201 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
202 extract_errors_python onos >> $WORKSPACE/error-report.log
203
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700204 cd $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700205 tar czf $WORKSPACE/container-logs.tgz *
206
207 cd $WORKSPACE
208 gzip *-combined.log || true
209 '''
210 script {
211 deployment_config.olts.each { olt ->
212 sh returnStdout: false, script: """
213 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
214 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
215 """
216 }
217 }
218 step([$class: 'RobotPublisher',
219 disableArchiveOutput: false,
220 logFileName: '**/log*.html',
221 otherFiles: '',
222 outputFileName: '**/output*.xml',
223 outputPath: 'RobotLogs',
224 passThreshold: 100,
225 reportFileName: '**/report*.html',
226 unstableThreshold: 0
227 ]);
228 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
229 }
230 unstable {
231 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
232 }
233 }
234}