blob: f60bd3f018b949764fceb516c090bdb95389b146 [file] [log] [blame]
Andrea Campanella350c6102020-10-01 09:56:40 +02001// 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 {
Andrea Campanella12b188a2020-10-02 10:47:29 +020026 timeout(time: 60, unit: 'MINUTES')
Andrea Campanella350c6102020-10-01 09:56:40 +020027 }
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 {
36 stage('Clone kind-voltha') {
37 steps {
38 step([$class: 'WsCleanup'])
39 checkout([
40 $class: 'GitSCM',
41 userRemoteConfigs: [[
42 url: "https://gerrit.opencord.org/kind-voltha",
43 refspec: "${kindVolthaChange}"
44 ]],
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",
60 refspec: "${volthaSystemTestsChange}"
61 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000062 branches: [[ name: "${branch}", ]],
Andrea Campanella350c6102020-10-01 09:56:40 +020063 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",
77 refspec: "${cordTesterChange}"
78 ]],
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 {
115 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
116 script {
117 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
118 }
119 sh returnStdout: false, script: """
120 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}
126 else
127 VOLTCTL_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
128 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
135 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VOLTCTL_VERSION}/voltctl-\${VOLTCTL_VERSION}-\${HOSTOS}-\${HOSTARCH}
136 chmod 755 $WORKSPACE/bin/voltctl
137 voltctl version --clientonly
138
139
140 # 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}-DT.yaml"
162 ROBOT_FILE="Voltha_DT_PODTests.robot"
163 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
164 }
165 steps {
Andrea Campanella45a5d5a2020-10-02 16:43:50 +0200166 timeout(time: 30, unit: 'MINUTES') {
167 sh """
168 cd $WORKSPACE/kind-voltha/scripts
169 ./log-collector.sh > /dev/null &
170 ./log-combine.sh > /dev/null &
Andrea Campanella350c6102020-10-01 09:56:40 +0200171
Andrea Campanella45a5d5a2020-10-02 16:43:50 +0200172 mkdir -p $ROBOT_LOGS_DIR
173 if ( ${powerSwitch} ); then
Andrea Campanellaf8e871c2020-11-13 11:14:21 +0100174 export ROBOT_MISC_ARGS="--removekeywords wuks -i PowerSwitch -i sanityDt -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"
Andrea Campanella45a5d5a2020-10-02 16:43:50 +0200175 else
Andrea Campanellaf8e871c2020-11-13 11:14:21 +0100176 export ROBOT_MISC_ARGS="--removekeywords wuks -e PowerSwitch -i sanityDt -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"
Andrea Campanella45a5d5a2020-10-02 16:43:50 +0200177 fi
178 make -C $WORKSPACE/voltha-system-tests voltha-dt-test || true
179 """
180 }
Andrea Campanella350c6102020-10-01 09:56:40 +0200181 }
182 }
183 }
184 post {
185 always {
186 sh returnStdout: false, script: '''
187 set +e
188 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
189 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
190 kubectl get nodes -o wide
191 kubectl get pods -n voltha -o wide
192
193 sleep 60 # Wait for log-collector and log-combine to complete
194
195 # Clean up "announcer" pod used by the tests if present
196 kubectl delete pod announcer || true
197
198 ## Pull out errors from log files
199 extract_errors_go() {
200 echo
201 echo "Error summary for $1:"
202 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
203 echo
204 }
205
206 extract_errors_python() {
207 echo
208 echo "Error summary for $1:"
209 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
210 echo
211 }
212
213 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
214 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
215 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
216 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
217 extract_errors_python onos >> $WORKSPACE/error-report.log
218
219 gzip error-report.log || true
220
221 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
222 tar czf $WORKSPACE/container-logs.tgz *
223
224 cd $WORKSPACE
225 gzip *-combined.log || true
226
227 # collect ETCD cluster logs
228 mkdir -p $WORKSPACE/etcd
Girish Gowdra3eb96f62020-10-15 12:48:34 -0700229 printf '%s\n' $(kubectl get pods -l app=etcd -o=jsonpath="{.items[*]['metadata.name']}") | xargs -I% bash -c "kubectl logs % > $WORKSPACE/etcd/%.log"
Andrea Campanella350c6102020-10-01 09:56:40 +0200230 '''
231 script {
232 deployment_config.olts.each { olt ->
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 }
244 }
245 step([$class: 'RobotPublisher',
246 disableArchiveOutput: false,
247 logFileName: '**/log*.html',
248 otherFiles: '',
249 outputFileName: '**/output*.xml',
250 outputPath: 'RobotLogs',
251 passThreshold: 100,
252 reportFileName: '**/report*.html',
253 unstableThreshold: 0
254 ]);
255 archiveArtifacts artifacts: '*.log,*.gz,*.tgz,etcd/*.log'
256 }
257 unstable {
258 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
259 }
260 }
261}