blob: e47d14f7bc916b7ca430e2f63429067efb73978c [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'])
Suchitra Vemuri1560cb82020-03-27 15:34:57 -070039 sh returnStdout: false, script: "git clone -b master ${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}",
Suchitra Vemuri1560cb82020-03-27 15:34:57 -070048 manifestBranch: "${params.branch}",
Andy Bavier358aa0b2019-11-22 11:55:39 -070049 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 Vemuri1560cb82020-03-27 15:34:57 -070091 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"
Andy Bavierfed57db2020-01-22 16:28:50 -070092 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
93 """
94 }
95 }
96
Suchitra Vemuri5dae5392020-01-30 20:10:18 -080097 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -070098 environment {
99 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800100 ROBOT_FILE="Voltha_FailureScenarios.robot"
101 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700102 }
103 steps {
104 sh """
105 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700106 if ( ${powerSwitch} ); then
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800107 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 -0800108 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800109 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 -0800110 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700111 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
112 """
113 }
114 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700115
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800116 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800117 environment {
118 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800119 ROBOT_FILE="Voltha_ErrorScenarios.robot"
120 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800121 }
122 steps {
123 sh """
124 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700125 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 Vemuri489c2ae2020-01-23 16:27:39 -0800126 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
127 """
128 }
129 }
130 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700131 post {
132 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700133 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700134 set +e
135 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
136 kubectl get nodes -o wide
137 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700138
Andy Bavier7afb11c2020-02-13 11:25:20 -0700139 sleep 60 # Wait for log-collector and log-combine to complete
140
Andy Bavierd71f4372020-03-04 10:25:19 -0700141 # Clean up "announcer" pod used by the tests if present
142 kubectl delete pod announcer || true
143
Andy Bavierb30c0a02020-03-03 17:21:23 -0700144 ## Pull out errors from log files
145 extract_errors_go() {
146 echo
147 echo "Error summary for $1:"
148 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
149 echo
150 }
151
152 extract_errors_python() {
153 echo
154 echo "Error summary for $1:"
155 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
156 echo
157 }
158
159 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
160 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
161 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
162 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
163 extract_errors_python onos >> $WORKSPACE/error-report.log
164
Andy Bavier7afb11c2020-02-13 11:25:20 -0700165 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
166 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700167
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700168 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700169 gzip *-combined.log || true
Andy Bavier4af02722020-01-15 10:24:24 -0700170 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700171 script {
172 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800173 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -0700174 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
175 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
176 """
177 }
178 }
179 step([$class: 'RobotPublisher',
180 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700181 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700182 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700183 outputFileName: '**/output*.xml',
184 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700185 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700186 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700187 unstableThreshold: 0
188 ]);
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700189 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700190 }
191 unstable {
192 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
193 }
194 }
195}