blob: 99428e08c503fff2608b1b7c270e84e0b5a5479d [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 {
26 timeout(time: 90, unit: 'MINUTES')
27 }
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
73 """
74 }
75 }
76
77 stage('Functional Tests') {
78 environment {
Suchitra Vemurie4a5bcc2020-03-16 12:43:03 -070079 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070080 ROBOT_FILE="Voltha_DT_PODTests.robot"
Andrea Campanellad924ce22020-04-20 16:40:41 +020081 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests"
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070082 }
83 steps {
84 sh """
Andy Bavierb5c8caf2020-04-06 14:12:07 -070085 cd $WORKSPACE/voltha/kind-voltha/scripts
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -070086 ./log-collector.sh > /dev/null &
87 ./log-combine.sh > /dev/null &
88
89 mkdir -p $ROBOT_LOGS_DIR
Suchitra Vemuri2a5a5ea2020-03-27 22:53:11 -070090 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 -070091 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
92 """
93 }
94 }
Andrea Campanellad924ce22020-04-20 16:40:41 +020095
Andrea Campanellaf47a1982020-04-21 11:53:31 +020096 stage('Failure/Recovery Tests') {
97 environment {
98 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
99 ROBOT_FILE="Voltha_DT_FailureScenarios.robot"
100 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios"
101 }
102 steps {
103 sh """
104 mkdir -p $ROBOT_LOGS_DIR
105 if ( ${powerSwitch} ); then
106 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"
107 else
108 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"
109 fi
110 make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true
111 """
112 }
113 }
114
Andrea Campanellad924ce22020-04-20 16:40:41 +0200115 stage('Error Scenario Tests') {
116 environment {
117 ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml"
118 ROBOT_FILE="Voltha_ErrorScenarios.robot"
119 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios"
120 }
121 steps {
122 sh """
123 mkdir -p $ROBOT_LOGS_DIR
124 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"
125 make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true
126 """
127 }
Andrea Campanella71666372020-04-21 10:56:17 +0200128 }
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700129 }
130 post {
131 always {
132 sh returnStdout: false, script: '''
133 set +e
Matteo Scandolo97b12572020-04-13 12:44:46 -0700134 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
135 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700136 kubectl get nodes -o wide
137 kubectl get pods -n voltha -o wide
138
139 sleep 60 # Wait for log-collector and log-combine to complete
140
141 # Clean up "announcer" pod used by the tests if present
142 kubectl delete pod announcer || true
143
144 ## Pull out errors from log files
145 extract_errors_go() {
146 echo
147 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700148 grep '"level":"error"' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700149 echo
150 }
151
152 extract_errors_python() {
153 echo
154 echo "Error summary for $1:"
Andy Bavierb5c8caf2020-04-06 14:12:07 -0700155 grep 'ERROR' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1*
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700156 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 Bavierb5c8caf2020-04-06 14:12:07 -0700165 cd $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/
Suchitra Vemuri8d180ab2020-03-12 17:38:24 -0700166 tar czf $WORKSPACE/container-logs.tgz *
167
168 cd $WORKSPACE
169 gzip *-combined.log || true
170 '''
171 script {
172 deployment_config.olts.each { olt ->
173 sh returnStdout: false, script: """
174 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,
181 logFileName: '**/log*.html',
182 otherFiles: '',
183 outputFileName: '**/output*.xml',
184 outputPath: 'RobotLogs',
185 passThreshold: 100,
186 reportFileName: '**/report*.html',
187 unstableThreshold: 0
188 ]);
189 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
190 }
191 unstable {
192 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
193 }
194 }
195}