blob: c33e48bd321d84652800145cd97009aefb81b605 [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 Vemuri13421432020-06-05 17:34:33 -070040 sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/kind-voltha"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070041 script {
42 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
43 }
Andy Bavierb5c8caf2020-04-06 14:12:07 -070044 // This checkout allows us to show changes in Jenkins
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070045 checkout(changelog: true,
46 poll: false,
47 scm: [$class: 'RepoScm',
48 manifestRepositoryUrl: "${params.manifestUrl}",
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070049 manifestBranch: "${params.branch}",
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070050 currentBranch: true,
51 destinationDir: 'voltha',
52 forceSync: true,
53 resetFirst: true,
54 quiet: true,
55 jobs: 4,
56 showAllChanges: true]
57 )
58 sh returnStdout: false, script: """
59 cd voltha
Suchitra Vemuri05946a62020-04-12 12:40:59 -070060 git clone -b master ${cordRepoUrl}/cord-tester
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070061 mkdir -p $WORKSPACE/bin
62 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
63 cd $WORKSPACE
Suchitra Vemuri13421432020-06-05 17:34:33 -070064 if [ "${params.branch}" != "master" ]; then
65 cd $WORKSPACE/kind-voltha
66 source releases/${params.branch}
67 VC_VERSION=1.0.18
68 else
69 VC_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
70 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070071
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070072 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
73 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
74 if [ \$HOSTARCH == "x86_64" ]; then
75 HOSTARCH="amd64"
76 fi
77 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VC_VERSION}/voltctl-\${VC_VERSION}-\${HOSTOS}-\${HOSTARCH}
78 chmod 755 $WORKSPACE/bin/voltctl
79 voltctl version --clientonly
Andrea Campanella9b234332020-04-24 12:22:18 +020080
Suchitra Vemuri13421432020-06-05 17:34:33 -070081
Andrea Campanella9b234332020-04-24 12:22:18 +020082 # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore.
83 # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work.
84 # We should change this. In the meantime here is a workaround.
Suchitra Vemuri13421432020-06-05 17:34:33 -070085 if [ "${params.branch}" == "master" ]; then
86 set +e
Andrea Campanella9b234332020-04-24 12:22:18 +020087
Suchitra Vemuri13421432020-06-05 17:34:33 -070088 voltctl log level list
89 if [ \$? -ne 0 ]
90 then
91 export KVSTORE="-e \$(kubectl -n voltha get svc voltha-etcd-cluster-client -o jsonpath='{.spec.clusterIP}:{.spec.ports[0].port}')"
92 else
93 export KVSTORE=""
94 fi
Andrea Campanella9b234332020-04-24 12:22:18 +020095
96 # Remove noise from voltha-core logs
Suchitra Vemuri13421432020-06-05 17:34:33 -070097 voltctl \$KVSTORE log level set WARN read-write-core#github.com/opencord/voltha-go/db/model
98 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 +020099 # Remove noise from openolt logs
Suchitra Vemuri13421432020-06-05 17:34:33 -0700100 voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
101 voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
102 voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
103 fi
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700104 """
105 }
106 }
107
108 stage('Functional Tests') {
109 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -0700110 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700111 ROBOT_FILE="Voltha_DT_PODTests.robot"
Andrea Campanellad924ce22020-04-20 16:40:41 +0200112 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700113 }
114 steps {
115 sh """
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700116 cd $WORKSPACE/voltha/kind-voltha/scripts
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700117 ./log-collector.sh > /dev/null &
118 ./log-combine.sh > /dev/null &
119
120 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -0700121 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 -0700122 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
123 """
124 }
125 }
Andrea Campanellad924ce22020-04-20 16:40:41 +0200126
Andrea Campanellaf47a1982020-04-21 11:53:31 +0200127 stage('Failure/Recovery Tests') {
128 environment {
129 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
130 ROBOT_FILE="Voltha_DT_FailureScenarios.robot"
131 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios"
132 }
133 steps {
134 sh """
135 mkdir -p $ROBOT_LOGS_DIR
136 if ( ${powerSwitch} ); then
137 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"
138 else
139 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"
140 fi
141 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
142 """
143 }
144 }
145
Andy Bavier5ad87c92020-05-11 16:31:35 -0700146 stage('Dataplane Tests') {
147 environment {
Andy Bavier1541da82020-05-15 09:41:38 -0700148 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Andy Bavier5ad87c92020-05-11 16:31:35 -0700149 ROBOT_FILE="Voltha_DT_PODTests.robot"
150 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/DataplaneTests"
151 }
152 steps {
153 sh """
154 mkdir -p $ROBOT_LOGS_DIR
Andy Bavier2dac06b2020-05-27 16:58:32 -0700155 export ROBOT_MISC_ARGS="--removekeywords wuks -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 -0700156 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
157 """
158 }
159 }
160
Andrea Campanellad924ce22020-04-20 16:40:41 +0200161 stage('Error Scenario Tests') {
162 environment {
163 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
164 ROBOT_FILE="Voltha_ErrorScenarios.robot"
165 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios"
166 }
167 steps {
168 sh """
169 mkdir -p $ROBOT_LOGS_DIR
170 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"
171 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
172 """
173 }
Andrea Campanella71666372020-04-21 10:56:17 +0200174 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700175 }
176 post {
177 always {
178 sh returnStdout: false, script: '''
179 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700180 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
181 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700182 kubectl get nodes -o wide
183 kubectl get pods -n voltha -o wide
184
185 sleep 60 # Wait for log-collector and log-combine to complete
186
187 # Clean up "announcer" pod used by the tests if present
188 kubectl delete pod announcer || true
189
190 ## Pull out errors from log files
191 extract_errors_go() {
192 echo
193 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700194 grep '"level":"error"' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700195 echo
196 }
197
198 extract_errors_python() {
199 echo
200 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700201 grep 'ERROR' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700202 echo
203 }
204
205 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
206 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
207 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
208 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
209 extract_errors_python onos >> $WORKSPACE/error-report.log
210
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700211 cd $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700212 tar czf $WORKSPACE/container-logs.tgz *
213
214 cd $WORKSPACE
215 gzip *-combined.log || true
216 '''
217 script {
218 deployment_config.olts.each { olt ->
219 sh returnStdout: false, script: """
220 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
221 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
222 """
223 }
224 }
225 step([$class: 'RobotPublisher',
226 disableArchiveOutput: false,
227 logFileName: '**/log*.html',
228 otherFiles: '',
229 outputFileName: '**/output*.xml',
230 outputPath: 'RobotLogs',
231 passThreshold: 100,
232 reportFileName: '**/report*.html',
233 unstableThreshold: 0
234 ]);
235 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
236 }
237 unstable {
238 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
239 }
240 }
241}