blob: a7f97ca69addc8ab61a24d79179c7f868ff936eb [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
15node {
16 // Need this so that deployment_config has global scope when it's read later
17 deployment_config = null
18}
19
20pipeline {
21 /* no label, executor is determined by JJB */
22 agent {
23 label "${params.buildNode}"
24 }
25 options {
26 timeout(time: 180, unit: 'MINUTES')
27 }
28
29 environment {
30 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
31 VOLTCONFIG="$HOME/.volt/config-minimal"
32 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
33 }
34
35 stages {
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070036 stage('Clone kind-voltha') {
Suchitra Vemuri376859a2020-07-08 17:04:44 -070037 steps {
38 step([$class: 'WsCleanup'])
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070039 checkout([
40 $class: 'GitSCM',
41 userRemoteConfigs: [[
42 url: "https://gerrit.opencord.org/kind-voltha",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000043 refspec: "${kindVolthaChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070044 ]],
45 branches: [[ name: "master", ]],
46 extensions: [
47 [$class: 'WipeWorkspace'],
48 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
49 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
50 ],
51 ])
52 }
53 }
54 stage('Clone voltha-system-tests') {
55 steps {
56 checkout([
57 $class: 'GitSCM',
58 userRemoteConfigs: [[
59 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000060 refspec: "${volthaSystemTestsChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070061 ]],
62 branches: [[ name: "${branch}", ]],
63 extensions: [
64 [$class: 'WipeWorkspace'],
65 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
66 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
67 ],
68 ])
Hardik Windlass81f67dc2021-03-05 16:15:42 +053069 script {
70 sh(script:"""
71 if [ '${volthaSystemTestsChange}' != '' ] ; then
72 cd $WORKSPACE/voltha-system-tests;
73 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
74 fi
75 """)
76 }
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070077 }
78 }
79 stage('Clone cord-tester') {
80 steps {
81 checkout([
82 $class: 'GitSCM',
83 userRemoteConfigs: [[
84 url: "https://gerrit.opencord.org/cord-tester",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000085 refspec: "${cordTesterChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070086 ]],
87 branches: [[ name: "master", ]],
88 extensions: [
89 [$class: 'WipeWorkspace'],
90 [$class: 'RelativeTargetDirectory', relativeTargetDir: "cord-tester"],
91 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
92 ],
93 ])
94 }
95 }
96 // This checkout allows us to show changes in Jenkins
97 // we only do this on master as we don't branch all the repos for all the releases
98 // (we should compute the difference by tracking the container version, not the code)
99 stage('Download All the VOLTHA repos') {
100 when {
101 expression {
102 return "${branch}" == 'master';
103 }
104 }
105 steps {
106 checkout(changelog: true,
107 poll: false,
108 scm: [$class: 'RepoScm',
109 manifestRepositoryUrl: "${params.manifestUrl}",
110 manifestBranch: "${params.branch}",
111 currentBranch: true,
112 destinationDir: 'voltha',
113 forceSync: true,
114 resetFirst: true,
115 quiet: true,
116 jobs: 4,
117 showAllChanges: true]
118 )
119 }
120 }
121 stage ('Initialize') {
122 steps {
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700123 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700124 script {
125 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
126 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700127 sh returnStdout: false, script: """
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700128 mkdir -p $WORKSPACE/bin
129 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
130 cd $WORKSPACE
131 if [ "${params.branch}" != "master" ]; then
132 cd $WORKSPACE/kind-voltha
133 source releases/${params.branch}
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700134 else
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700135 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 -0700136 fi
137
138 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
139 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
140 if [ \$HOSTARCH == "x86_64" ]; then
141 HOSTARCH="amd64"
142 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700143 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 -0700144 chmod 755 $WORKSPACE/bin/voltctl
145 voltctl version --clientonly
146
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200147
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700148 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
149 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
150 # We should change this. In the meantime here is a workaround.
151 if [ "${params.branch}" == "master" ]; then
152 set +e
153
154
155 # Remove noise from voltha-core logs
156 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
157 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
158 # Remove noise from openolt logs
159 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
160 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
161 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
162 fi
163 """
164 }
165 }
166
167 stage('Functional Tests') {
168 environment {
169 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
170 ROBOT_FILE="Voltha_TT_PODTests.robot"
171 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/tt-workflow/FunctionalTests"
172 }
173 steps {
174 sh """
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700175 cd $WORKSPACE/kind-voltha/scripts
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700176 ./log-collector.sh > /dev/null &
177 ./log-combine.sh > /dev/null &
178
179 mkdir -p $ROBOT_LOGS_DIR
180 if ( ${powerSwitch} ); then
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100181 export ROBOT_MISC_ARGS="--removekeywords wuks -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 -0700182 else
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100183 export ROBOT_MISC_ARGS="--removekeywords wuks -e PowerSwitch -i sanityTT -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 -0700184 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700185 make -C $WORKSPACE/voltha-system-tests voltha-tt-test || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700186 """
187 }
188 }
Hardik Windlass81f67dc2021-03-05 16:15:42 +0530189
190 stage('Failure/Recovery Tests') {
191 environment {
192 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
193 ROBOT_FILE="Voltha_TT_FailureScenarios.robot"
194 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/tt-workflow/FailureScenarios"
195 }
196 steps {
197 sh """
198 mkdir -p $ROBOT_LOGS_DIR
199 if ( ${powerSwitch} ); then
200 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}"
201 else
202 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}"
203 fi
204 make -C $WORKSPACE/voltha-system-tests voltha-tt-test || true
205 """
206 }
207 }
208
Suchitra Vemuri6cd54232020-07-09 16:06:55 -0700209 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700210 post {
211 always {
212 sh returnStdout: false, script: '''
213 set +e
214 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
215 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
216 kubectl get nodes -o wide
217 kubectl get pods -n voltha -o wide
Suchitra Vemuri179643b2020-11-02 10:06:20 -0800218 kubectl get pods -o wide
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700219
220 sleep 60 # Wait for log-collector and log-combine to complete
221
222 # Clean up "announcer" pod used by the tests if present
223 kubectl delete pod announcer || true
224
225 ## Pull out errors from log files
226 extract_errors_go() {
227 echo
228 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700229 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700230 echo
231 }
232
233 extract_errors_python() {
234 echo
235 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700236 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700237 echo
238 }
239
240 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
241 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
242 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
243 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
244 extract_errors_python onos >> $WORKSPACE/error-report.log
245
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200246 gzip error-report.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200247 rm error-report.log || true
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200248
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700249 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700250 tar czf $WORKSPACE/container-logs.tgz *
Andrea Campanellac9c80682020-09-30 12:02:01 +0200251 rm * || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700252
253 cd $WORKSPACE
254 gzip *-combined.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200255 rm *-combined.log || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700256 '''
257 script {
258 deployment_config.olts.each { olt ->
Andrea Campanella0d3110c2021-01-20 12:25:45 +0100259 if (olt.type == null || olt.type == "" || olt.type == "openolt") {
260 sh returnStdout: false, script: """
261 sshpass -p ${olt.pass} scp ${olt.user}@${olt.sship}:/var/log/openolt.log $WORKSPACE/openolt-${olt.sship}.log || true
262 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
263 """
264 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700265 }
266 }
267 step([$class: 'RobotPublisher',
268 disableArchiveOutput: false,
269 logFileName: '**/log*.html',
270 otherFiles: '',
271 outputFileName: '**/output*.xml',
272 outputPath: 'RobotLogs',
273 passThreshold: 100,
274 reportFileName: '**/report*.html',
275 unstableThreshold: 0
276 ]);
277 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
278 }
279 unstable {
280 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
281 }
282 }
283}