blob: f0f6d9e9448471c304d868d8769b5c0f084da394 [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
Hardik Windlass7e4e3152021-09-29 06:42:05 +000021def infraNamespace = "infra"
22def volthaNamespace = "voltha"
23
Andy Bavier358aa0b2019-11-22 11:55:39 -070024node {
25 // Need this so that deployment_config has global scope when it's read later
26 deployment_config = null
27}
28
29pipeline {
30 /* no label, executor is determined by JJB */
31 agent {
32 label "${params.buildNode}"
33 }
34 options {
Hardik Windlassd0f01662021-09-03 08:07:15 +000035 timeout(time: "${timeout}", unit: 'MINUTES')
Andy Bavier358aa0b2019-11-22 11:55:39 -070036 }
37
38 environment {
39 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
40 VOLTCONFIG="$HOME/.volt/config-minimal"
hwchiu942d1dc2020-03-03 12:03:45 -080041 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier358aa0b2019-11-22 11:55:39 -070042 }
Andy Bavier358aa0b2019-11-22 11:55:39 -070043 stages {
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070044 stage('Clone voltha-system-tests') {
45 steps {
Hardik Windlass13d8e952021-07-20 09:16:46 +000046 step([$class: 'WsCleanup'])
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070047 checkout([
48 $class: 'GitSCM',
49 userRemoteConfigs: [[
50 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000051 refspec: "${volthaSystemTestsChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070052 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000053 branches: [[ name: "${branch}", ]],
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070054 extensions: [
55 [$class: 'WipeWorkspace'],
56 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
57 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
58 ],
59 ])
60 }
61 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070062 stage('Download All the VOLTHA repos') {
63 when {
64 expression {
65 return "${branch}" == 'master';
66 }
67 }
68 steps {
69 checkout(changelog: true,
70 poll: false,
71 scm: [$class: 'RepoScm',
72 manifestRepositoryUrl: "${params.manifestUrl}",
73 manifestBranch: "${params.branch}",
74 currentBranch: true,
75 destinationDir: 'voltha',
76 forceSync: true,
77 resetFirst: true,
78 quiet: true,
79 jobs: 4,
80 showAllChanges: true]
81 )
82 }
83 }
84 stage ('Initialize') {
85 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +000086 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -070087 script {
88 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
89 }
Hardik Windlass9658cd22021-10-25 11:13:25 +000090 installVoltctl("${branch}")
hwchiu1f0b0fe2019-12-06 11:45:23 -080091 sh returnStdout: false, script: """
Andy Bavier4af02722020-01-15 10:24:24 -070092 mkdir -p $WORKSPACE/bin
Hardik Windlass9658cd22021-10-25 11:13:25 +000093 # download kail
Andy Bavier4af02722020-01-15 10:24:24 -070094 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier1f530f52020-04-14 15:57:33 -070095
Suchitra Vemuri13421432020-06-05 17:34:33 -070096 if [ "${params.branch}" == "master" ]; then
Andy Bavierd921f372020-04-20 17:03:31 -070097 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
98 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
99 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700100 set +e
Andy Bavierce83b172020-04-22 10:49:23 -0700101
Andy Bavier1f530f52020-04-14 15:57:33 -0700102 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700103 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
104 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -0700105 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700106 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
107 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
108 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
109 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700110 """
111 }
112 }
hwchiu942d1dc2020-03-03 12:03:45 -0800113
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800114 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -0700115 environment {
116 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700117 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -0700118 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700119 }
120 steps {
121 sh """
Andy Bavierfed57db2020-01-22 16:28:50 -0700122 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700123 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100124 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 -0700125 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100126 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 -0700127 fi
Hardik Windlass5bf5f202021-10-07 16:38:25 +0000128 ROBOT_MISC_ARGS+=" -X -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700129 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavierfed57db2020-01-22 16:28:50 -0700130 """
131 }
132 }
133
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800134 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700135 environment {
136 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800137 ROBOT_FILE="Voltha_FailureScenarios.robot"
138 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700139 }
140 steps {
141 sh """
142 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700143 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100144 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 -0800145 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100146 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 -0800147 fi
Hardik Windlass5bf5f202021-10-07 16:38:25 +0000148 ROBOT_MISC_ARGS+=" -X -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700149 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700150 """
151 }
152 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700153
Andy Bavier5ad87c92020-05-11 16:31:35 -0700154 stage('Dataplane Tests') {
155 environment {
156 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
157 ROBOT_FILE="Voltha_PODTests.robot"
158 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DataplaneTests"
159 }
160 steps {
161 sh """
162 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100163 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}"
Hardik Windlass5bf5f202021-10-07 16:38:25 +0000164 ROBOT_MISC_ARGS+=" -X -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700165 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700166 """
167 }
168 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700169 stage('HA Tests') {
170 environment {
171 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
172 ROBOT_FILE="Voltha_ONOSHATests.robot"
173 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
174 }
175 steps {
176 sh """
177 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100178 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}"
Hardik Windlass5bf5f202021-10-07 16:38:25 +0000179 ROBOT_MISC_ARGS+=" -X -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700180 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700181 """
182 }
183 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700184
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800185 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800186 environment {
187 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800188 ROBOT_FILE="Voltha_ErrorScenarios.robot"
189 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800190 }
191 steps {
192 sh """
193 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100194 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}"
Hardik Windlass5bf5f202021-10-07 16:38:25 +0000195 ROBOT_MISC_ARGS+=" -X -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700196 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800197 """
198 }
199 }
200 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700201 post {
202 always {
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700203 getPodsInfo("$WORKSPACE/pods")
Andy Bavier4af02722020-01-15 10:24:24 -0700204 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700205 set +e
Andy Bavier4af02722020-01-15 10:24:24 -0700206
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700207 # collect logs collected in the Robot Framework StartLogging keyword
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700208 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700209 gzip *-combined.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200210 rm *-combined.log || true
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700211
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100212 # store information on the running pods
Andrea Campanellae0c839f2021-03-16 17:53:40 +0100213 kubectl get pods --all-namespaces -o wide > $WORKSPACE/pods.txt || true
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100214 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-images.txt || true
215 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-imagesId.txt || true
216
217
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700218 # collect ETCD cluster logs
219 mkdir -p $WORKSPACE/etcd
Girish Gowdra3eb96f62020-10-15 12:48:34 -0700220 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 -0700221 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700222 script {
223 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100224 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
225 sh returnStdout: false, script: """
226 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
227 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
228 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
229 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
230 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
231 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
232 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
233 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
234 """
235 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700236 }
237 }
238 step([$class: 'RobotPublisher',
239 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700240 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700241 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700242 outputFileName: '**/output*.xml',
243 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700244 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700245 reportFileName: '**/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200246 unstableThreshold: 0,
247 onlyCritical: true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700248 ]);
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700249 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.tgz,*.txt,pods/*.txt'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700250 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700251 }
252}