blob: b931f344893d1650f27f786efb169a53b46ad96d [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 ])
Hardik Windlassd4fc1792021-11-10 11:44:18 +000060 script {
61 sh(script:"""
62 if [ '${volthaSystemTestsChange}' != '' ] ; then
63 cd $WORKSPACE/voltha-system-tests;
64 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
65 fi
66 """)
67 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070068 }
69 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070070 stage('Download All the VOLTHA repos') {
71 when {
72 expression {
73 return "${branch}" == 'master';
74 }
75 }
76 steps {
77 checkout(changelog: true,
78 poll: false,
79 scm: [$class: 'RepoScm',
80 manifestRepositoryUrl: "${params.manifestUrl}",
81 manifestBranch: "${params.branch}",
82 currentBranch: true,
83 destinationDir: 'voltha',
84 forceSync: true,
85 resetFirst: true,
86 quiet: true,
87 jobs: 4,
88 showAllChanges: true]
89 )
90 }
91 }
92 stage ('Initialize') {
93 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +000094 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -070095 script {
96 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
97 }
Hardik Windlass9658cd22021-10-25 11:13:25 +000098 installVoltctl("${branch}")
hwchiu1f0b0fe2019-12-06 11:45:23 -080099 sh returnStdout: false, script: """
Andy Bavier4af02722020-01-15 10:24:24 -0700100 mkdir -p $WORKSPACE/bin
Hardik Windlass9658cd22021-10-25 11:13:25 +0000101 # download kail
Andy Bavier4af02722020-01-15 10:24:24 -0700102 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier1f530f52020-04-14 15:57:33 -0700103
Suchitra Vemuri13421432020-06-05 17:34:33 -0700104 if [ "${params.branch}" == "master" ]; then
Andy Bavierd921f372020-04-20 17:03:31 -0700105 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
106 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
107 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -0700108 set +e
Andy Bavierce83b172020-04-22 10:49:23 -0700109
Andy Bavier1f530f52020-04-14 15:57:33 -0700110 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700111 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
112 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier1f530f52020-04-14 15:57:33 -0700113 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700114 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
115 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
116 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
117 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700118 """
119 }
120 }
hwchiu942d1dc2020-03-03 12:03:45 -0800121
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800122 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -0700123 environment {
124 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700125 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -0700126 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -0700127 }
128 steps {
129 sh """
Andy Bavierfed57db2020-01-22 16:28:50 -0700130 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri627786a2020-06-18 16:52:05 -0700131 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100132 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 -0700133 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100134 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 -0700135 fi
Andrea Campanella79ced322021-11-03 17:24:26 +0000136 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700137 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavierfed57db2020-01-22 16:28:50 -0700138 """
139 }
140 }
141
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800142 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700143 environment {
144 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800145 ROBOT_FILE="Voltha_FailureScenarios.robot"
146 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700147 }
148 steps {
149 sh """
150 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700151 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100152 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 -0800153 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100154 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 -0800155 fi
Andrea Campanella79ced322021-11-03 17:24:26 +0000156 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
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}"
Andrea Campanella79ced322021-11-03 17:24:26 +0000172 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700173 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Andy Bavier5ad87c92020-05-11 16:31:35 -0700174 """
175 }
176 }
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700177 stage('HA Tests') {
178 environment {
179 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
180 ROBOT_FILE="Voltha_ONOSHATests.robot"
181 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ONOSHAScenarios"
182 }
183 steps {
184 sh """
185 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100186 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}"
Andrea Campanella79ced322021-11-03 17:24:26 +0000187 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700188 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri5e8e7892020-09-14 16:04:12 -0700189 """
190 }
191 }
Andy Bavier5ad87c92020-05-11 16:31:35 -0700192
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800193 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800194 environment {
195 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800196 ROBOT_FILE="Voltha_ErrorScenarios.robot"
197 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800198 }
199 steps {
200 sh """
201 mkdir -p $ROBOT_LOGS_DIR
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100202 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}"
Andrea Campanella79ced322021-11-03 17:24:26 +0000203 ROBOT_MISC_ARGS+=" -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700204 make -C $WORKSPACE/voltha-system-tests voltha-test || true
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800205 """
206 }
207 }
208 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700209 post {
210 always {
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700211 getPodsInfo("$WORKSPACE/pods")
Andy Bavier4af02722020-01-15 10:24:24 -0700212 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700213 set +e
Andy Bavier4af02722020-01-15 10:24:24 -0700214
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700215 # collect logs collected in the Robot Framework StartLogging keyword
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700216 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700217 gzip *-combined.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200218 rm *-combined.log || true
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700219
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100220 # store information on the running pods
Andrea Campanellae0c839f2021-03-16 17:53:40 +0100221 kubectl get pods --all-namespaces -o wide > $WORKSPACE/pods.txt || true
Andrea Campanellaa20a9332021-03-09 09:18:42 +0100222 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-images.txt || true
223 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee $WORKSPACE/pod-imagesId.txt || true
224
225
Matteo Scandolo518c9e12020-07-21 11:32:23 -0700226 # collect ETCD cluster logs
227 mkdir -p $WORKSPACE/etcd
Girish Gowdra3eb96f62020-10-15 12:48:34 -0700228 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 -0700229 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700230 script {
231 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100232 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
233 sh returnStdout: false, script: """
234 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
235 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
236 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
237 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.sship}.log # Remove escape sequences
238 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
239 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/startup-${olt.sship}.log || true # Remove escape sequences
240 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
241 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt_process_watchdog-${olt.sship}.log || true # Remove escape sequences
242 """
243 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700244 }
245 }
246 step([$class: 'RobotPublisher',
247 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700248 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700249 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700250 outputFileName: '**/output*.xml',
251 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700252 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700253 reportFileName: '**/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200254 unstableThreshold: 0,
255 onlyCritical: true
Andy Bavier358aa0b2019-11-22 11:55:39 -0700256 ]);
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700257 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.tgz,*.txt,pods/*.txt'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700258 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700259 }
260}