blob: aca802b52373b3177a6144a732ccbebf56d07542 [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
Matteo Scandolo712514a2021-07-20 09:49:09 -070015library identifier: 'cord-jenkins-libraries@master',
16 retriever: modernSCM([
17 $class: 'GitSCMSource',
18 remote: 'https://gerrit.opencord.org/ci-management.git'
19])
20
Andy Bavier358aa0b2019-11-22 11:55:39 -070021node {
22 // Need this so that deployment_config has global scope when it's read later
23 deployment_config = null
24}
25
26pipeline {
27 /* no label, executor is determined by JJB */
28 agent {
29 label "${params.buildNode}"
30 }
31 options {
Hardik Windlassd0f01662021-09-03 08:07:15 +000032 timeout(time: "${timeout}", unit: 'MINUTES')
Andy Bavier358aa0b2019-11-22 11:55:39 -070033 }
34
35 environment {
36 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
37 VOLTCONFIG="$HOME/.volt/config-minimal"
hwchiu942d1dc2020-03-03 12:03:45 -080038 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier358aa0b2019-11-22 11:55:39 -070039 }
Andy Bavier358aa0b2019-11-22 11:55:39 -070040 stages {
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070041 stage('Clone voltha-system-tests') {
42 steps {
Hardik Windlass13d8e952021-07-20 09:16:46 +000043 step([$class: 'WsCleanup'])
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070044 checkout([
45 $class: 'GitSCM',
46 userRemoteConfigs: [[
47 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000048 refspec: "${volthaSystemTestsChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070049 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000050 branches: [[ name: "${branch}", ]],
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070051 extensions: [
52 [$class: 'WipeWorkspace'],
53 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
54 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
55 ],
56 ])
57 }
58 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070059 stage('Download All the VOLTHA repos') {
60 when {
61 expression {
62 return "${branch}" == 'master';
63 }
64 }
65 steps {
66 checkout(changelog: true,
67 poll: false,
68 scm: [$class: 'RepoScm',
69 manifestRepositoryUrl: "${params.manifestUrl}",
70 manifestBranch: "${params.branch}",
71 currentBranch: true,
72 destinationDir: 'voltha',
73 forceSync: true,
74 resetFirst: true,
75 quiet: true,
76 jobs: 4,
77 showAllChanges: true]
78 )
79 }
80 }
81 stage ('Initialize') {
82 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +000083 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -070084 script {
85 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
86 }
hwchiu1f0b0fe2019-12-06 11:45:23 -080087 sh returnStdout: false, script: """
Andy Bavier4af02722020-01-15 10:24:24 -070088 mkdir -p $WORKSPACE/bin
89 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier07df3212020-02-12 20:42:44 -070090 cd $WORKSPACE
Hardik Windlass6f854a12021-07-12 13:20:21 +000091 if [ "${params.branch}" == "voltha-2.8" ]; then
Hardik Windlasse2175102021-07-23 08:34:32 +000092 VOLTCTL_VERSION=1.6.11
Suchitra Vemuri13421432020-06-05 17:34:33 -070093 else
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070094 VOLTCTL_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
Suchitra Vemuri13421432020-06-05 17:34:33 -070095 fi
hwchiu942d1dc2020-03-03 12:03:45 -080096
hwchiu942d1dc2020-03-03 12:03:45 -080097 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
98 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
99 if [ \$HOSTARCH == "x86_64" ]; then
100 HOSTARCH="amd64"
101 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700102 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VOLTCTL_VERSION}/voltctl-\${VOLTCTL_VERSION}-\${HOSTOS}-\${HOSTARCH}
hwchiu942d1dc2020-03-03 12:03:45 -0800103 chmod 755 $WORKSPACE/bin/voltctl
104 voltctl version --clientonly
Andy Bavier1f530f52020-04-14 15:57:33 -0700105
Suchitra Vemuri13421432020-06-05 17:34:33 -0700106 if [ "${params.branch}" == "master" ]; then
Andy Bavierd921f372020-04-20 17:03:31 -0700107 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
108 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
109 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700110 set +e
Andy Bavierce83b172020-04-22 10:49:23 -0700111
Andy Bavier1f530f52020-04-14 15:57:33 -0700112 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700113 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
114 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -0700115 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700116 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
117 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
118 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
119 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700120 """
121 }
122 }
hwchiu942d1dc2020-03-03 12:03:45 -0800123
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800124 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -0700125 environment {
126 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700127 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -0700128 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700129 }
130 steps {
131 sh """
Andy Bavierfed57db2020-01-22 16:28:50 -0700132 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700133 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100134 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 -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700135 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100136 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 -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700137 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700138 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavierfed57db2020-01-22 16:28:50 -0700139 """
140 }
141 }
142
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800143 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700144 environment {
145 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800146 ROBOT_FILE="Voltha_FailureScenarios.robot"
147 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700148 }
149 steps {
150 sh """
151 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700152 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100153 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 -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800154 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100155 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 -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800156 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700157 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700158 """
159 }
160 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700161
Andy Bavier5ad87c92020-05-11 16:31:35 -0700162 stage('Dataplane Tests') {
163 environment {
164 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
165 ROBOT_FILE="Voltha_PODTests.robot"
166 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DataplaneTests"
167 }
168 steps {
169 sh """
170 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100171 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 -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700172 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700173 """
174 }
175 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700176 stage('HA Tests') {
177 environment {
178 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
179 ROBOT_FILE="Voltha_ONOSHATests.robot"
180 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
181 }
182 steps {
183 sh """
184 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100185 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -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 -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700186 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700187 """
188 }
189 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700190
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800191 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800192 environment {
193 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800194 ROBOT_FILE="Voltha_ErrorScenarios.robot"
195 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800196 }
197 steps {
198 sh """
199 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100200 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 -v OLT_ADAPTER_APP_LABEL:${oltAdapterAppLabel}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700201 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800202 """
203 }
204 }
205 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700206 post {
207 always {
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700208 getPodsInfo("$WORKSPACE/pods")
Andy Bavier4af02722020-01-15 10:24:24 -0700209 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700210 set +e
Andy Bavier4af02722020-01-15 10:24:24 -0700211
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700212 # collect logs collected in the Robot Framework StartLogging keyword
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700213 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700214 gzip *-combined.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200215 rm *-combined.log || true
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700216
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100217 # store information on the running pods
Andrea Campanellae0c839f2021-03-16 17:53:40 +0100218 kubectl get pods --all-namespaces -o wide > $WORKSPACE/pods.txt || true
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100219 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-images.txt || true
220 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-imagesId.txt || true
221
222
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700223 # collect ETCD cluster logs
224 mkdir -p $WORKSPACE/etcd
Girish Gowdra3eb96f62020-10-15 12:48:34 -0700225 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 -0700226 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700227 script {
228 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100229 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
230 sh returnStdout: false, script: """
231 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
232 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
233 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
234 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
235 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
236 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
237 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
238 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
239 """
240 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700241 }
242 }
243 step([$class: 'RobotPublisher',
244 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700245 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700246 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700247 outputFileName: '**/output*.xml',
248 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700249 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700250 reportFileName: '**/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200251 unstableThreshold: 0,
252 onlyCritical: true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700253 ]);
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700254 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.tgz,*.txt,pods/*.txt'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700255 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700256 }
257}