blob: 1ac0a717b842d39421995e0e8f4205b14a7c7825 [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 }
Andy Bavierb5c8caf2020-04-06 14:12:07 -070043 // This checkout allows us to show changes in Jenkins
Andy Bavier358aa0b2019-11-22 11:55:39 -070044 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
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070059 git clone -b master ${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
hwchiu942d1dc2020-03-03 12:03:45 -080063
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
Andy Bavier1f530f52020-04-14 15:57:33 -070073
74 # Remove noise from voltha-core logs
75 voltctl loglevel set WARN read-write-core#github.com/opencord/voltha-go/db/model
76 voltctl loglevel set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka
77 # Remove noise from openolt logs
78 voltctl loglevel set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db
79 voltctl loglevel set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe
80 voltctl loglevel set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka
Andy Bavier358aa0b2019-11-22 11:55:39 -070081 """
82 }
83 }
hwchiu942d1dc2020-03-03 12:03:45 -080084
Suchitra Vemuriaf134ff2020-02-19 16:55:38 -080085 stage('Functional Tests') {
Andy Bavier358aa0b2019-11-22 11:55:39 -070086 environment {
87 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Andy Bavier358aa0b2019-11-22 11:55:39 -070088 ROBOT_FILE="Voltha_PODTests.robot"
Andy Bavierfed57db2020-01-22 16:28:50 -070089 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
Andy Bavier358aa0b2019-11-22 11:55:39 -070090 }
91 steps {
92 sh """
Andy Bavierb5c8caf2020-04-06 14:12:07 -070093 cd $WORKSPACE/voltha/kind-voltha/scripts
Andy Bavier3c1ccca2020-02-12 16:50:04 -070094 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -070095 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -070096
Andy Bavierfed57db2020-01-22 16:28:50 -070097 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -070098 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 -070099 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
100 """
101 }
102 }
103
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800104 stage('Failure/Recovery Tests') {
Andy Bavierfed57db2020-01-22 16:28:50 -0700105 environment {
106 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800107 ROBOT_FILE="Voltha_FailureScenarios.robot"
108 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios"
Andy Bavierfed57db2020-01-22 16:28:50 -0700109 }
110 steps {
111 sh """
112 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700113 if ( ${powerSwitch} ); then
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800114 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 -0800115 else
Suchitra Vemuri1d7b3422020-02-20 16:42:10 -0800116 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 -0800117 fi
Andy Bavier358aa0b2019-11-22 11:55:39 -0700118 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
119 """
120 }
121 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700122
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800123 stage('Error Scenario Tests') {
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800124 environment {
125 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
Suchitra Vemuri5dae5392020-01-30 20:10:18 -0800126 ROBOT_FILE="Voltha_ErrorScenarios.robot"
127 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios"
Suchitra Vemuri489c2ae2020-01-23 16:27:39 -0800128 }
129 steps {
130 sh """
131 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri1560cb82020-03-27 15:34:57 -0700132 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 -0800133 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
134 """
135 }
136 }
137 }
Andy Bavier358aa0b2019-11-22 11:55:39 -0700138 post {
139 always {
Andy Bavier4af02722020-01-15 10:24:24 -0700140 sh returnStdout: false, script: '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700141 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700142 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
143 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Andy Bavier358aa0b2019-11-22 11:55:39 -0700144 kubectl get nodes -o wide
145 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700146
Andy Bavier7afb11c2020-02-13 11:25:20 -0700147 sleep 60 # Wait for log-collector and log-combine to complete
148
Andy Bavierd71f4372020-03-04 10:25:19 -0700149 # Clean up "announcer" pod used by the tests if present
150 kubectl delete pod announcer || true
151
Andy Bavierb30c0a02020-03-03 17:21:23 -0700152 ## Pull out errors from log files
153 extract_errors_go() {
154 echo
155 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700156 grep '"level":"error"' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700157 echo
158 }
159
160 extract_errors_python() {
161 echo
162 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700163 grep 'ERROR' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700164 echo
165 }
166
167 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
168 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
169 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
170 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
171 extract_errors_python onos >> $WORKSPACE/error-report.log
172
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700173 cd $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/
Andy Bavier7afb11c2020-02-13 11:25:20 -0700174 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700175
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700176 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700177 gzip *-combined.log || true
Andy Bavier4af02722020-01-15 10:24:24 -0700178 '''
Andy Bavier358aa0b2019-11-22 11:55:39 -0700179 script {
180 deployment_config.olts.each { olt ->
hwchiu1f0b0fe2019-12-06 11:45:23 -0800181 sh returnStdout: false, script: """
Andy Bavier358aa0b2019-11-22 11:55:39 -0700182 sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true
183 sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences
184 """
185 }
186 }
187 step([$class: 'RobotPublisher',
188 disableArchiveOutput: false,
Andy Bavierfed57db2020-01-22 16:28:50 -0700189 logFileName: '**/log*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700190 otherFiles: '',
Andy Bavierfed57db2020-01-22 16:28:50 -0700191 outputFileName: '**/output*.xml',
192 outputPath: 'RobotLogs',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700193 passThreshold: 100,
Andy Bavierfed57db2020-01-22 16:28:50 -0700194 reportFileName: '**/report*.html',
Andy Bavier358aa0b2019-11-22 11:55:39 -0700195 unstableThreshold: 0
196 ]);
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700197 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Andy Bavier358aa0b2019-11-22 11:55:39 -0700198 }
199 unstable {
200 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
201 }
202 }
203}