blob: b03f9e2d66e49664d417aea01c8de8314025b83c [file] [log] [blame]
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -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 {
Andrea Campanella49e65032020-04-28 11:52:17 +020026 timeout(time: 180, unit: 'MINUTES')
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070027 }
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 ('Initialize') {
37 steps {
38 step([$class: 'WsCleanup'])
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070039 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070040 script {
41 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
42 }
Andy Bavierb5c8caf2020-04-06 14:12:07 -070043 // This checkout allows us to show changes in Jenkins
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070044 checkout(changelog: true,
45 poll: false,
46 scm: [$class: 'RepoScm',
47 manifestRepositoryUrl: "${params.manifestUrl}",
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070048 manifestBranch: "${params.branch}",
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070049 currentBranch: true,
50 destinationDir: 'voltha',
51 forceSync: true,
52 resetFirst: true,
53 quiet: true,
54 jobs: 4,
55 showAllChanges: true]
56 )
57 sh returnStdout: false, script: """
58 cd voltha
Suchitra Vemuri05946a62020-04-12 12:40:59 -070059 git clone -b master ${cordRepoUrl}/cord-tester
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070060 mkdir -p $WORKSPACE/bin
61 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
62 cd $WORKSPACE
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070063
64 VC_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
65 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
66 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
67 if [ \$HOSTARCH == "x86_64" ]; then
68 HOSTARCH="amd64"
69 fi
70 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VC_VERSION}/voltctl-\${VC_VERSION}-\${HOSTOS}-\${HOSTARCH}
71 chmod 755 $WORKSPACE/bin/voltctl
72 voltctl version --clientonly
Andrea Campanella9b234332020-04-24 12:22:18 +020073
74 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
75 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
76 # We should change this. In the meantime here is a workaround.
77 set +e
78
Andy Bavier7d5c2352020-04-27 11:56:58 -070079 voltctl log level list
Andrea Campanella9b234332020-04-24 12:22:18 +020080 if [ \$? -ne 0 ]
81 then
82 export KVSTORE="-e \$(kubectl -n voltha get svc voltha-etcd-cluster-client -o jsonpath='{.spec.clusterIP}:{.spec.ports[0].port}')"
83 else
84 export KVSTORE=""
85 fi
86
87 # Remove noise from voltha-core logs
Andy Bavier7d5c2352020-04-27 11:56:58 -070088 voltctl \$KVSTORE log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
89 voltctl \$KVSTORE log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andrea Campanella9b234332020-04-24 12:22:18 +020090 # Remove noise from openolt logs
Andy Bavier7d5c2352020-04-27 11:56:58 -070091 voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
92 voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
93 voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070094 """
95 }
96 }
97
98 stage('Functional Tests') {
99 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -0700100 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700101 ROBOT_FILE="Voltha_DT_PODTests.robot"
Andrea Campanellad924ce22020-04-20 16:40:41 +0200102 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700103 }
104 steps {
105 sh """
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700106 cd $WORKSPACE/voltha/kind-voltha/scripts
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700107 ./log-collector.sh > /dev/null &
108 ./log-combine.sh > /dev/null &
109
110 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -0700111 export ROBOT_MISC_ARGS="--removekeywords wuks -i sanityDt -i functionalDt -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 Vemuri8d180ab2020-03-12 17:38:24 -0700112 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
113 """
114 }
115 }
Andrea Campanellad924ce22020-04-20 16:40:41 +0200116
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200117 stage('Failure/Recovery Tests') {
118 environment {
119 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
120 ROBOT_FILE="Voltha_DT_FailureScenarios.robot"
121 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios"
122 }
123 steps {
124 sh """
125 mkdir -p $ROBOT_LOGS_DIR
126 if ( ${powerSwitch} ); then
127 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -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"
128 else
129 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -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"
130 fi
131 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
132 """
133 }
134 }
135
Andy Bavier5ad87c92020-05-11 16:31:35 -0700136 stage('Dataplane Tests') {
137 environment {
Andy Bavier1541da82020-05-15 09:41:38 -0700138 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700139 ROBOT_FILE="Voltha_DT_PODTests.robot"
140 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/DataplaneTests"
141 }
142 steps {
143 sh """
144 mkdir -p $ROBOT_LOGS_DIR
Andy Bavier9b1c1032020-05-12 17:33:21 +0000145 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i dataplaneDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700146 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
147 """
148 }
149 }
150
Andrea Campanellad924ce22020-04-20 16:40:41 +0200151 stage('Error Scenario Tests') {
152 environment {
153 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
154 ROBOT_FILE="Voltha_ErrorScenarios.robot"
155 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios"
156 }
157 steps {
158 sh """
159 mkdir -p $ROBOT_LOGS_DIR
160 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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"
161 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
162 """
163 }
Andrea Campanella71666372020-04-21 10:56:17 +0200164 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700165 }
166 post {
167 always {
168 sh returnStdout: false, script: '''
169 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700170 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
171 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700172 kubectl get nodes -o wide
173 kubectl get pods -n voltha -o wide
174
175 sleep 60 # Wait for log-collector and log-combine to complete
176
177 # Clean up "announcer" pod used by the tests if present
178 kubectl delete pod announcer || true
179
180 ## Pull out errors from log files
181 extract_errors_go() {
182 echo
183 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700184 grep '"level":"error"' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700185 echo
186 }
187
188 extract_errors_python() {
189 echo
190 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700191 grep 'ERROR' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700192 echo
193 }
194
195 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
196 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
197 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
198 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
199 extract_errors_python onos >> $WORKSPACE/error-report.log
200
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700201 cd $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700202 tar czf $WORKSPACE/container-logs.tgz *
203
204 cd $WORKSPACE
205 gzip *-combined.log || true
206 '''
207 script {
208 deployment_config.olts.each { olt ->
209 sh returnStdout: false, script: """
210 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
211 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
212 """
213 }
214 }
215 step([$class: 'RobotPublisher',
216 disableArchiveOutput: false,
217 logFileName: '**/log*.html',
218 otherFiles: '',
219 outputFileName: '**/output*.xml',
220 outputPath: 'RobotLogs',
221 passThreshold: 100,
222 reportFileName: '**/report*.html',
223 unstableThreshold: 0
224 ]);
225 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
226 }
227 unstable {
228 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
229 }
230 }
231}