blob: c2e1778168cfba2d2653ef4e0d3b8b11955af810 [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 ])
69 }
70 }
71 stage('Clone cord-tester') {
72 steps {
73 checkout([
74 $class: 'GitSCM',
75 userRemoteConfigs: [[
76 url: "https://gerrit.opencord.org/cord-tester",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000077 refspec: "${cordTesterChange}"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -070078 ]],
79 branches: [[ name: "master", ]],
80 extensions: [
81 [$class: 'WipeWorkspace'],
82 [$class: 'RelativeTargetDirectory', relativeTargetDir: "cord-tester"],
83 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
84 ],
85 ])
86 }
87 }
88 // This checkout allows us to show changes in Jenkins
89 // we only do this on master as we don't branch all the repos for all the releases
90 // (we should compute the difference by tracking the container version, not the code)
91 stage('Download All the VOLTHA repos') {
92 when {
93 expression {
94 return "${branch}" == 'master';
95 }
96 }
97 steps {
98 checkout(changelog: true,
99 poll: false,
100 scm: [$class: 'RepoScm',
101 manifestRepositoryUrl: "${params.manifestUrl}",
102 manifestBranch: "${params.branch}",
103 currentBranch: true,
104 destinationDir: 'voltha',
105 forceSync: true,
106 resetFirst: true,
107 quiet: true,
108 jobs: 4,
109 showAllChanges: true]
110 )
111 }
112 }
113 stage ('Initialize') {
114 steps {
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700115 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700116 script {
117 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
118 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700119 sh returnStdout: false, script: """
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700120 mkdir -p $WORKSPACE/bin
121 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
122 cd $WORKSPACE
123 if [ "${params.branch}" != "master" ]; then
124 cd $WORKSPACE/kind-voltha
125 source releases/${params.branch}
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700126 else
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700127 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 -0700128 fi
129
130 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
131 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
132 if [ \$HOSTARCH == "x86_64" ]; then
133 HOSTARCH="amd64"
134 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700135 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 -0700136 chmod 755 $WORKSPACE/bin/voltctl
137 voltctl version --clientonly
138
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200139
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700140 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
141 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
142 # We should change this. In the meantime here is a workaround.
143 if [ "${params.branch}" == "master" ]; then
144 set +e
145
146
147 # Remove noise from voltha-core logs
148 voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
149 voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
150 # Remove noise from openolt logs
151 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
152 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
153 voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
154 fi
155 """
156 }
157 }
158
159 stage('Functional Tests') {
160 environment {
161 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-TT.yaml"
162 ROBOT_FILE="Voltha_TT_PODTests.robot"
163 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/tt-workflow/FunctionalTests"
164 }
165 steps {
166 sh """
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700167 cd $WORKSPACE/kind-voltha/scripts
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700168 ./log-collector.sh > /dev/null &
169 ./log-combine.sh > /dev/null &
170
171 mkdir -p $ROBOT_LOGS_DIR
172 if ( ${powerSwitch} ); then
Suchitra Vemuri52862722020-07-17 21:28:34 -0700173 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"
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700174 else
Suchitra Vemuri6cd54232020-07-09 16:06:55 -0700175 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"
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700176 fi
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700177 make -C $WORKSPACE/voltha-system-tests voltha-tt-test || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700178 """
179 }
180 }
Suchitra Vemuri6cd54232020-07-09 16:06:55 -0700181 }
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700182 post {
183 always {
184 sh returnStdout: false, script: '''
185 set +e
186 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
187 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
188 kubectl get nodes -o wide
189 kubectl get pods -n voltha -o wide
Suchitra Vemuri179643b2020-11-02 10:06:20 -0800190 kubectl get pods -o wide
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700191
192 sleep 60 # Wait for log-collector and log-combine to complete
193
194 # Clean up "announcer" pod used by the tests if present
195 kubectl delete pod announcer || true
196
197 ## Pull out errors from log files
198 extract_errors_go() {
199 echo
200 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700201 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700202 echo
203 }
204
205 extract_errors_python() {
206 echo
207 echo "Error summary for $1:"
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700208 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700209 echo
210 }
211
212 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
213 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
214 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
215 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
216 extract_errors_python onos >> $WORKSPACE/error-report.log
217
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200218 gzip error-report.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200219 rm error-report.log || true
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200220
Suchitra Vemurie3bb90d2020-09-15 17:15:50 -0700221 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700222 tar czf $WORKSPACE/container-logs.tgz *
Andrea Campanellac9c80682020-09-30 12:02:01 +0200223 rm * || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700224
225 cd $WORKSPACE
226 gzip *-combined.log || true
Andrea Campanellac9c80682020-09-30 12:02:01 +0200227 rm *-combined.log || true
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700228 '''
229 script {
230 deployment_config.olts.each { olt ->
231 sh returnStdout: false, script: """
Suchitra Vemuria0695662020-07-17 09:41:49 -0700232 sshpass -p ${olt.pass} scp ${olt.user}@${olt.sship}:/var/log/openolt.log $WORKSPACE/openolt-${olt.sship}.log || true
233 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.sship}.log # Remove escape sequences
Suchitra Vemuri376859a2020-07-08 17:04:44 -0700234 """
235 }
236 }
237 step([$class: 'RobotPublisher',
238 disableArchiveOutput: false,
239 logFileName: '**/log*.html',
240 otherFiles: '',
241 outputFileName: '**/output*.xml',
242 outputPath: 'RobotLogs',
243 passThreshold: 100,
244 reportFileName: '**/report*.html',
245 unstableThreshold: 0
246 ]);
247 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
248 }
249 unstable {
250 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
251 }
252 }
253}