blob: c6cd0d28d472b784b499b57953ed2d7b346fdbba [file] [log] [blame]
Suchitra Vemuri376859a2020-07-08 17:04:44 -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
Suchitra Vemuri376859a2020-07-08 17:04:44 -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')
Suchitra Vemuri376859a2020-07-08 17:04:44 -070033 }
34
35 environment {
36 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
37 VOLTCONFIG="$HOME/.volt/config-minimal"
38 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
39 }
40
41 stages {
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070042 stage('Clone voltha-system-tests') {
43 steps {
Hardik Windlass13d8e952021-07-20 09:16:46 +000044 step([$class: 'WsCleanup'])
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070045 checkout([
46 $class: 'GitSCM',
47 userRemoteConfigs: [[
48 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000049 refspec: "${volthaSystemTestsChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070050 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000051 branches: [[ name: "${branch}", ]],
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070052 extensions: [
53 [$class: 'WipeWorkspace'],
54 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
55 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
56 ],
57 ])
Hardik Windlass81f67dc2021-03-05 16:15:42 +053058 script {
59 sh(script:"""
60 if [ '${volthaSystemTestsChange}' != '' ] ; then
61 cd $WORKSPACE/voltha-system-tests;
62 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
63 fi
64 """)
65 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070066 }
67 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070068 // This checkout allows us to show changes in Jenkins
69 // we only do this on master as we don't branch all the repos for all the releases
70 // (we should compute the difference by tracking the container version, not the code)
71 stage('Download All the VOLTHA repos') {
72 when {
73 expression {
74 return "${branch}" == 'master';
75 }
76 }
77 steps {
78 checkout(changelog: true,
79 poll: false,
80 scm: [$class: 'RepoScm',
81 manifestRepositoryUrl: "${params.manifestUrl}",
82 manifestBranch: "${params.branch}",
83 currentBranch: true,
84 destinationDir: 'voltha',
85 forceSync: true,
86 resetFirst: true,
87 quiet: true,
88 jobs: 4,
89 showAllChanges: true]
90 )
91 }
92 }
93 stage ('Initialize') {
94 steps {
Hardik Windlass6f854a12021-07-12 13:20:21 +000095 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri376859a2020-07-08 17:04:44 -070096 script {
97 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
98 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -070099 sh returnStdout: false, script: """
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700100 mkdir -p $WORKSPACE/bin
101 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
102 cd $WORKSPACE
Hardik Windlass6f854a12021-07-12 13:20:21 +0000103 if [ "${params.branch}" == "voltha-2.8" ]; then
Hardik Windlasse2175102021-07-23 08:34:32 +0000104 VOLTCTL_VERSION=1.6.11
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700105 else
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700106 VOLTCTL_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700107 fi
108
109 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
110 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
111 if [ \$HOSTARCH == "x86_64" ]; then
112 HOSTARCH="amd64"
113 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700114 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VOLTCTL_VERSION}/voltctl-\${VOLTCTL_VERSION}-\${HOSTOS}-\${HOSTARCH}
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700115 chmod 755 $WORKSPACE/bin/voltctl
116 voltctl version --clientonly
117
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200118
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700119 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
120 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
121 # We should change this. In the meantime here is a workaround.
122 if [ "${params.branch}" == "master" ]; then
123 set +e
124
125
126 # Remove noise from voltha-core logs
127 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
128 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
129 # Remove noise from openolt logs
130 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
131 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
132 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
133 fi
134 """
135 }
136 }
137
138 stage('Functional Tests') {
139 environment {
140 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
141 ROBOT_FILE="Voltha_TT_PODTests.robot"
142 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/tt-workflow/FunctionalTests"
143 }
144 steps {
145 sh """
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700146 mkdir -p $ROBOT_LOGS_DIR
147 if ( ${powerSwitch} ); then
Hardik Windlass44461ee2021-05-26 07:19:53 +0000148 export ROBOT_MISC_ARGS="--removekeywords wuks -i functionalTT -i PowerSwitch -i sanityTT -i sanityTT-MCAST -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 Vemuri376859a2020-07-08 17:04:44 -0700149 else
Hardik Windlass44461ee2021-05-26 07:19:53 +0000150 export ROBOT_MISC_ARGS="--removekeywords wuks -i functionalTT -e PowerSwitch -i sanityTT -i sanityTT-MCAST -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 Vemuri376859a2020-07-08 17:04:44 -0700151 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700152 make -C $WORKSPACE/voltha-system-tests voltha-tt-test || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700153 """
154 }
155 }
Hardik Windlass81f67dc2021-03-05 16:15:42 +0530156
157 stage('Failure/Recovery Tests') {
158 environment {
159 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
160 ROBOT_FILE="Voltha_TT_FailureScenarios.robot"
161 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/tt-workflow/FailureScenarios"
162 }
163 steps {
164 sh """
165 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlass47c4dc12021-07-02 23:40:03 +0000166 if [ ${params.enableMultiUni} = false ]; then
Hardik Windlass6598b032021-07-02 10:12:01 +0000167 if ( ${powerSwitch} ); then
168 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalTT -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}"
169 else
170 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalTT -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}"
171 fi
172 make -C $WORKSPACE/voltha-system-tests voltha-tt-test || true
Hardik Windlass81f67dc2021-03-05 16:15:42 +0530173 fi
Hardik Windlass81f67dc2021-03-05 16:15:42 +0530174 """
175 }
176 }
177
Hardik Windlass6a233e82021-05-27 04:08:50 +0000178 stage('Multi-Tcont Tests') {
179 environment {
180 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
181 ROBOT_FILE="Voltha_TT_MultiTcontTests.robot"
182 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/tt-workflow/MultiTcontScenarios"
183 ROBOT_TEST_INPUT_FILE="$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-TT-multi-tcont-tests-input.yaml"
184 }
185 steps {
186 sh """
187 mkdir -p $ROBOT_LOGS_DIR
Hardik Windlass92dba5d2021-07-14 06:37:44 +0000188 if [ ${params.enableMultiUni} = false ]; then
189 if ( ${powerSwitch} ); then
190 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalTT -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} -V $ROBOT_TEST_INPUT_FILE"
191 else
192 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalTT -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} -V $ROBOT_TEST_INPUT_FILE"
Hardik Windlass6598b032021-07-02 10:12:01 +0000193 fi
Hardik Windlass92dba5d2021-07-14 06:37:44 +0000194 make -C $WORKSPACE/voltha-system-tests voltha-tt-test || true
Hardik Windlass6a233e82021-05-27 04:08:50 +0000195 fi
196 """
197 }
198 }
199
Suchitra Vemuri6cd54232020-07-09 16:06:55 -0700200 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700201 post {
202 always {
Hardik Windlassceb56312021-07-21 16:12:25 +0000203 getPodsInfo("$WORKSPACE/pods")
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700204 sh returnStdout: false, script: '''
205 set +e
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700206
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700207 # collect logs collected in the Robot Framework StartLogging keyword
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700208 cd $WORKSPACE
209 gzip *-combined.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200210 rm *-combined.log || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700211 '''
212 script {
213 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100214 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
215 sh returnStdout: false, script: """
216 sshpass -p ${olt.pass} scp ${olt.user}@${olt.sship}:/var/log/openolt.log $WORKSPACE/openolt-${olt.sship}.log || true
217 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
218 """
219 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700220 }
221 }
222 step([$class: 'RobotPublisher',
223 disableArchiveOutput: false,
224 logFileName: '**/log*.html',
225 otherFiles: '',
226 outputFileName: '**/output*.xml',
227 outputPath: 'RobotLogs',
228 passThreshold: 100,
229 reportFileName: '**/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200230 unstableThreshold: 0,
231 onlyCritical: true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700232 ]);
Matteo Scandolo5e7bd1d2021-07-16 13:29:42 -0700233 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.tgz,*.txt,pods/*.txt'
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700234 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700235 }
236}