blob: b8c5fd8b2f83b82cd1fab295a7b1faf6835348f6 [file] [log] [blame]
Joey Armstrong16bd8e82023-01-12 15:20:06 -05001#!/usr/bin/env groovy
2// -----------------------------------------------------------------------
3// Copyright 2017-2023 Open Networking Foundation (ONF) and the ONF Contributors
Andy Bavier358aa0b2019-11-22 11:55:39 -07004//
5// Licensed under the Apache License, Version 2.0 (the "License");
6// you may not use this file except in compliance with the License.
7// You may obtain a copy of the License at
8//
9// http://www.apache.org/licenses/LICENSE-2.0
10//
11// Unless required by applicable law or agreed to in writing, software
12// distributed under the License is distributed on an "AS IS" BASIS,
13// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14// See the License for the specific language governing permissions and
15// limitations under the License.
Joey Armstrong16bd8e82023-01-12 15:20:06 -050016// -----------------------------------------------------------------------
Andy Bavier358aa0b2019-11-22 11:55:39 -070017
Matteo Scandolo712514a2021-07-20 09:49:09 -070018library identifier: 'cord-jenkins-libraries@master',
19 retriever: modernSCM([
20 $class: 'GitSCMSource',
21 remote: 'https://gerrit.opencord.org/ci-management.git'
22])
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
Hardik Windlass806505d2021-10-27 08:15:48 +000029def infraNamespace = "infra"
30def volthaNamespace = "voltha"
31
Andy Bavier358aa0b2019-11-22 11:55:39 -070032pipeline {
33 /* no label, executor is determined by JJB */
34 agent {
35 label "${params.buildNode}"
36 }
37 options {
Hardik Windlassd0f01662021-09-03 08:07:15 +000038 timeout(time: "${timeout}", unit: 'MINUTES')
Andy Bavier358aa0b2019-11-22 11:55:39 -070039 }
40
41 environment {
42 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
43 VOLTCONFIG="$HOME/.volt/config-minimal"
hwchiu942d1dc2020-03-03 12:03:45 -080044 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier358aa0b2019-11-22 11:55:39 -070045 }
Andy Bavier358aa0b2019-11-22 11:55:39 -070046 stages {
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070047 stage('Clone voltha-system-tests') {
48 steps {
Hardik Windlass13d8e952021-07-20 09:16:46 +000049 step([$class: 'WsCleanup'])
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070050 checkout([
51 $class: 'GitSCM',
52 userRemoteConfigs: [[
53 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000054 refspec: "${volthaSystemTestsChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070055 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000056 branches: [[ name: "${branch}", ]],
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070057 extensions: [
58 [$class: 'WipeWorkspace'],
59 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
60 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
61 ],
62 ])
63 }
64 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070065 stage('Download All the VOLTHA repos') {
66 when {
67 expression {
68 return "${branch}" == 'master';
69 }
70 }
71 steps {
72 checkout(changelog: true,
73 poll: false,
74 scm: [$class: 'RepoScm',
75 manifestRepositoryUrl: "${params.manifestUrl}",
76 manifestBranch: "${params.branch}",
77 currentBranch: true,
78 destinationDir: 'voltha',
79 forceSync: true,
80 resetFirst: true,
81 quiet: true,
82 jobs: 4,
83 showAllChanges: true]
84 )
85 }
86 }
87 stage ('Initialize') {
88 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +000089 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -070090 script {
91 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
92 }
Hardik Windlass9658cd22021-10-25 11:13:25 +000093 installVoltctl("${branch}")
Joey Armstrong16bd8e82023-01-12 15:20:06 -050094
95 sh(returnStdout: false, script: """
96 mkdir -p "$WORKSPACE/bin"
97
98 # install kail
99 make -C "$WORKSPACE/voltha-system-tests" KAIL_PATH="$WORKSPACE/bin" kail
Andy Bavier1f530f52020-04-14 15:57:33 -0700100
Suchitra Vemuri13421432020-06-05 17:34:33 -0700101 if [ "${params.branch}" == "master" ]; then
Andy Bavierd921f372020-04-20 17:03:31 -0700102 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
103 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
104 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700105 set +e
Andy Bavierce83b172020-04-22 10:49:23 -0700106
Andy Bavier1f530f52020-04-14 15:57:33 -0700107 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700108 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
109 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -0700110 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700111 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
112 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
113 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
114 fi
Joey Armstrong16bd8e82023-01-12 15:20:06 -0500115 """)
Andy Bavier358aa0b2019-11-22 11:55:39 -0700116 }
117 }
hwchiu942d1dc2020-03-03 12:03:45 -0800118
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800119 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -0700120 environment {
121 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700122 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -0700123 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700124 }
125 steps {
126 sh """
Andy Bavierfed57db2020-01-22 16:28:50 -0700127 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700128 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100129 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 -0700130 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100131 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 -0700132 fi
Hardik Windlass806505d2021-10-27 08:15:48 +0000133 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700134 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavierfed57db2020-01-22 16:28:50 -0700135 """
136 }
137 }
138
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800139 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700140 environment {
141 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800142 ROBOT_FILE="Voltha_FailureScenarios.robot"
143 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700144 }
145 steps {
146 sh """
147 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700148 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100149 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 -0800150 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100151 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 -0800152 fi
Hardik Windlass806505d2021-10-27 08:15:48 +0000153 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700154 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700155 """
156 }
157 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700158
Andy Bavier5ad87c92020-05-11 16:31:35 -0700159 stage('Dataplane Tests') {
160 environment {
161 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
162 ROBOT_FILE="Voltha_PODTests.robot"
163 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DataplaneTests"
164 }
165 steps {
166 sh """
167 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100168 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 Windlass806505d2021-10-27 08:15:48 +0000169 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700170 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700171 """
172 }
173 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700174 stage('HA Tests') {
175 environment {
176 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
177 ROBOT_FILE="Voltha_ONOSHATests.robot"
178 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
179 }
180 steps {
181 sh """
182 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100183 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 Windlass806505d2021-10-27 08:15:48 +0000184 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700185 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700186 """
187 }
188 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700189
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800190 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800191 environment {
192 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800193 ROBOT_FILE="Voltha_ErrorScenarios.robot"
194 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800195 }
196 steps {
197 sh """
198 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100199 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 Windlass806505d2021-10-27 08:15:48 +0000200 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
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}
Joey Armstrong16bd8e82023-01-12 15:20:06 -0500258
259// [EOF]