blob: 86a4db68483f7a5567391c2794dd34e323219f74 [file] [log] [blame]
Andy Bavier358aa0b2019-11-22 11:55:39 -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 {
Suchitra Vemuri65399052020-08-20 13:38:03 -070026 timeout(time: 280, unit: 'MINUTES')
Andy Bavier358aa0b2019-11-22 11:55:39 -070027 }
28
29 environment {
30 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
31 VOLTCONFIG="$HOME/.volt/config-minimal"
hwchiu942d1dc2020-03-03 12:03:45 -080032 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier358aa0b2019-11-22 11:55:39 -070033 }
34
35 stages {
36 stage ('Initialize') {
37 steps {
38 step([$class: 'WsCleanup'])
Suchitra Vemuri1560cb82020-03-27 15:34:57 -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"
Andy Bavier358aa0b2019-11-22 11:55:39 -070041 script {
42 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
43 }
Andy Bavierb5c8caf2020-04-06 14:12:07 -070044 // This checkout allows us to show changes in Jenkins
Andy Bavier358aa0b2019-11-22 11:55:39 -070045 checkout(changelog: true,
46 poll: false,
47 scm: [$class: 'RepoScm',
48 manifestRepositoryUrl: "${params.manifestUrl}",
Suchitra Vemuri1560cb82020-03-27 15:34:57 -070049 manifestBranch: "${params.branch}",
Andy Bavier358aa0b2019-11-22 11:55:39 -070050 currentBranch: true,
51 destinationDir: 'voltha',
52 forceSync: true,
53 resetFirst: true,
54 quiet: true,
55 jobs: 4,
56 showAllChanges: true]
57 )
hwchiu1f0b0fe2019-12-06 11:45:23 -080058 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -070059 cd voltha
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070060 git clone -b master ${cordRepoUrl}/cord-tester
Andy Bavier4af02722020-01-15 10:24:24 -070061 mkdir -p $WORKSPACE/bin
62 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier07df3212020-02-12 20:42:44 -070063 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}
Suchitra Vemuric4761eb2020-07-07 16:48:53 -070067 VC_VERSION=1.1.8
Suchitra Vemuri13421432020-06-05 17:34:33 -070068 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
hwchiu942d1dc2020-03-03 12:03:45 -080071
hwchiu942d1dc2020-03-03 12:03:45 -080072 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
Andy Bavier1f530f52020-04-14 15:57:33 -070080
Suchitra Vemuri13421432020-06-05 17:34:33 -070081 if [ "${params.branch}" == "master" ]; then
Andy Bavierd921f372020-04-20 17:03:31 -070082 # 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 set +e
Andy Bavierce83b172020-04-22 10:49:23 -070086
Andy Bavier1f530f52020-04-14 15:57:33 -070087 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -070088 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
89 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -070090 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -070091 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
92 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
93 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
94 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -070095 """
96 }
97 }
hwchiu942d1dc2020-03-03 12:03:45 -080098
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -080099 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -0700100 environment {
101 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700102 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -0700103 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700104 }
105 steps {
106 sh """
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700107 cd $WORKSPACE/voltha/kind-voltha/scripts
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700108 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -0700109 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700110
Andy Bavierfed57db2020-01-22 16:28:50 -0700111 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700112 if ( ${powerSwitch} ); then
113 export ROBOT_MISC_ARGS="--removekeywords wuks -i PowerSwitch -i sanity -i functional -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
114 else
115 export ROBOT_MISC_ARGS="--removekeywords wuks -e PowerSwitch -i sanity -i functional -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700116 fi
Andy Bavierfed57db2020-01-22 16:28:50 -0700117 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
118 """
119 }
120 }
121
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800122 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700123 environment {
124 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800125 ROBOT_FILE="Voltha_FailureScenarios.robot"
126 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700127 }
128 steps {
129 sh """
130 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700131 if ( ${powerSwitch} ); then
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800132 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800133 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800134 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800135 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700136 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
137 """
138 }
139 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700140
Andy Bavier5ad87c92020-05-11 16:31:35 -0700141 stage('Dataplane Tests') {
142 environment {
143 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
144 ROBOT_FILE="Voltha_PODTests.robot"
145 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DataplaneTests"
146 }
147 steps {
148 sh """
149 mkdir -p $ROBOT_LOGS_DIR
Andy Bavier2dac06b2020-05-27 16:58:32 -0700150 export ROBOT_MISC_ARGS="--removekeywords wuks -i dataplane -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 -0700151 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
152 """
153 }
154 }
155
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800156 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800157 environment {
158 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800159 ROBOT_FILE="Voltha_ErrorScenarios.robot"
160 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800161 }
162 steps {
163 sh """
164 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700165 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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 Vemuri489c2ae2020-01-23 16:27:39 -0800166 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
167 """
168 }
169 }
170 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700171 post {
172 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700173 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700174 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700175 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
176 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Andy Bavier358aa0b2019-11-22 11:55:39 -0700177 kubectl get nodes -o wide
178 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700179
Andy Bavier7afb11c2020-02-13 11:25:20 -0700180 sleep 60 # Wait for log-collector and log-combine to complete
181
Andy Bavierd71f4372020-03-04 10:25:19 -0700182 # Clean up "announcer" pod used by the tests if present
183 kubectl delete pod announcer || true
184
Andy Bavierb30c0a02020-03-03 17:21:23 -0700185 ## Pull out errors from log files
186 extract_errors_go() {
187 echo
188 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700189 grep '"level":"error"' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700190 echo
191 }
192
193 extract_errors_python() {
194 echo
195 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700196 grep 'ERROR' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700197 echo
198 }
199
200 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
201 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
202 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
203 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
204 extract_errors_python onos >> $WORKSPACE/error-report.log
205
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700206 cd $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/
Andy Bavier7afb11c2020-02-13 11:25:20 -0700207 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700208
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700209 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700210 gzip *-combined.log || true
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700211
212 # collect ETCD cluster logs
213 mkdir -p $WORKSPACE/etcd
214 printf '%s\n' $(kubectl get pods -l app=etcd -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I@ bash -c "kubectl logs @ > $WORKSPACE/etcd/@.log"
Andy Bavier4af02722020-01-15 10:24:24 -0700215 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700216 script {
217 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800218 sh returnStdout: false, script: """
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700219 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/openolt.log $WORKSPACE/openolt-${olt.sship}.log || true
Suchitra Vemuria0695662020-07-17 09:41:49 -0700220 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700221 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/dev_mgmt_daemon.log $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log || true
Suchitra Vemuria0695662020-07-17 09:41:49 -0700222 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700223 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/startup.log $WORKSPACE/startup-${olt.sship}.log || true
Matteo Scandolo43fe7802020-07-22 09:17:38 -0700224 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
Girish Gowdra201b7e42020-07-28 15:58:07 -0700225 sshpass -p ${olt.pass} scp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no ${olt.user}@${olt.sship}:/var/log/openolt_process_watchdog.log $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true
226 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
Andy Bavier358aa0b2019-11-22 11:55:39 -0700227 """
228 }
229 }
230 step([$class: 'RobotPublisher',
231 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700232 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700233 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700234 outputFileName: '**/output*.xml',
235 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700236 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700237 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700238 unstableThreshold: 0
239 ]);
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700240 archiveArtifacts artifacts: '*.log,*.gz,*.tgz,etcd/*.log'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700241 }
242 unstable {
243 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
244 }
245 }
246}