blob: 3cf088b886b0b9426808da35aa99032acd3b2117 [file] [log] [blame]
Andy Bavier358aa0b2019-11-22 11:55:39 -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 {
Suchitra Vemuri87e49092020-03-24 19:00:23 -070026 timeout(time: 180, unit: 'MINUTES')
Andy Bavier358aa0b2019-11-22 11:55:39 -070027 }
28
29 environment {
30 KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf"
31 VOLTCONFIG="$HOME/.volt/config-minimal"
hwchiu942d1dc2020-03-03 12:03:45 -080032 PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier358aa0b2019-11-22 11:55:39 -070033 }
34
35 stages {
36 stage ('Initialize') {
37 steps {
38 step([$class: 'WsCleanup'])
hwchiu1f0b0fe2019-12-06 11:45:23 -080039 sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}"
Andy Bavier358aa0b2019-11-22 11:55:39 -070040 script {
41 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
42 }
43 // This checkout is just so that we can show changes in Jenkins
44 checkout(changelog: true,
45 poll: false,
46 scm: [$class: 'RepoScm',
47 manifestRepositoryUrl: "${params.manifestUrl}",
48 manifestBranch: "${params.manifestBranch}",
49 currentBranch: true,
50 destinationDir: 'voltha',
51 forceSync: true,
52 resetFirst: true,
53 quiet: true,
54 jobs: 4,
55 showAllChanges: true]
56 )
hwchiu1f0b0fe2019-12-06 11:45:23 -080057 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -070058 cd voltha
59 git clone -b ${branch} ${cordRepoUrl}/cord-tester
Andy Bavier4af02722020-01-15 10:24:24 -070060 mkdir -p $WORKSPACE/bin
61 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
Andy Bavier07df3212020-02-12 20:42:44 -070062 cd $WORKSPACE
Andy Bavier8d8c9a32020-02-12 19:41:08 -070063 git clone https://github.com/ciena/kind-voltha.git
hwchiu942d1dc2020-03-03 12:03:45 -080064
65 VC_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')
66 HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"])
67 HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"])
68 if [ \$HOSTARCH == "x86_64" ]; then
69 HOSTARCH="amd64"
70 fi
71 curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VC_VERSION}/voltctl-\${VC_VERSION}-\${HOSTOS}-\${HOSTARCH}
72 chmod 755 $WORKSPACE/bin/voltctl
73 voltctl version --clientonly
Andy Bavier358aa0b2019-11-22 11:55:39 -070074 """
75 }
76 }
hwchiu942d1dc2020-03-03 12:03:45 -080077
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -080078 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -070079 environment {
80 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -070081 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -070082 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -070083 }
84 steps {
85 sh """
Andy Bavier3c1ccca2020-02-12 16:50:04 -070086 cd $WORKSPACE/kind-voltha/scripts
87 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -070088 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -070089
Andy Bavierfed57db2020-01-22 16:28:50 -070090 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemurifbc4a742020-01-08 16:55:26 -080091 if ( ${released} ); then
Andy Bavierd3be2bf2020-02-07 17:02:21 -070092 export ROBOT_MISC_ARGS="--removekeywords wuks -i released -i sanity -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 Vemurifbc4a742020-01-08 16:55:26 -080093 else
Andy Bavierd3be2bf2020-02-07 17:02:21 -070094 export ROBOT_MISC_ARGS="--removekeywords wuks -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 Vemurifbc4a742020-01-08 16:55:26 -080095 fi
Andy Bavierfed57db2020-01-22 16:28:50 -070096 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
97 """
98 }
99 }
100
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800101 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700102 environment {
103 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800104 ROBOT_FILE="Voltha_FailureScenarios.robot"
105 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700106 }
107 steps {
108 sh """
109 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuriacb05782020-02-20 14:26:33 -0800110 if ( ${released} ); then
111 export ROBOT_MISC_ARGS="--removekeywords wuks -i released -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
112 elif ( ${powerSwitch} ); then
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800113 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800114 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800115 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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"
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -0800116 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700117 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
118 """
119 }
120 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700121
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800122 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800123 environment {
124 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800125 ROBOT_FILE="Voltha_ErrorScenarios.robot"
126 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800127 }
128 steps {
129 sh """
130 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuriacb05782020-02-20 14:26:33 -0800131 if ( ${released} ); then
132 export ROBOT_MISC_ARGS="--removekeywords wuks -i released -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE"
133 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800134 export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -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"
Suchitra Vemuri462a9af2020-02-20 20:56:26 -0800135 fi
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800136 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
137 """
138 }
139 }
140 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700141 post {
142 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700143 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700144 set +e
145 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
146 kubectl get nodes -o wide
147 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700148
Andy Bavier7afb11c2020-02-13 11:25:20 -0700149 sleep 60 # Wait for log-collector and log-combine to complete
150
Andy Bavierd71f4372020-03-04 10:25:19 -0700151 # Clean up "announcer" pod used by the tests if present
152 kubectl delete pod announcer || true
153
Andy Bavierb30c0a02020-03-03 17:21:23 -0700154 ## Pull out errors from log files
155 extract_errors_go() {
156 echo
157 echo "Error summary for $1:"
158 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
159 echo
160 }
161
162 extract_errors_python() {
163 echo
164 echo "Error summary for $1:"
165 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
166 echo
167 }
168
169 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
170 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
171 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
172 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
173 extract_errors_python onos >> $WORKSPACE/error-report.log
174
Andy Bavier7afb11c2020-02-13 11:25:20 -0700175 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
176 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700177
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700178 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700179 gzip *-combined.log || true
Andy Bavier4af02722020-01-15 10:24:24 -0700180 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700181 script {
182 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800183 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -0700184 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
185 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
186 """
187 }
188 }
189 step([$class: 'RobotPublisher',
190 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700191 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700192 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700193 outputFileName: '**/output*.xml',
194 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700195 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700196 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700197 unstableThreshold: 0
198 ]);
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700199 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700200 }
201 unstable {
202 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
203 }
204 }
205}