blob: 2017c8936bf47cc8d62273a32c52c1aca233a596 [file] [log] [blame]
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -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
15// voltha-2.x e2e tests
16// uses kind-voltha to deploy voltha-2.X
17// uses bbsim to simulate OLT/ONUs
18
19pipeline {
20
21 /* no label, executor is determined by JJB */
22 agent {
23 label "${params.buildNode}"
24 }
25 options {
Suchitra Vemurifcbec0f2020-11-30 10:35:52 -080026 timeout(time: 190, unit: 'MINUTES')
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -070027 }
28 environment {
29 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
30 VOLTCONFIG="$HOME/.volt/config-minimal"
Matteo Scandolo861a53a2020-09-16 11:39:42 -070031 PATH="$PATH:$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Matteo Scandolo4d1a12f2020-12-07 16:17:12 -080032 NAME="minimal"
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -070033 FANCY=0
34 WITH_SIM_ADAPTERS="no"
35 WITH_RADIUS="yes"
36 WITH_BBSIM="yes"
37 DEPLOY_K8S="yes"
38 VOLTHA_LOG_LEVEL="DEBUG"
Andrea Campanella2a01b5a2020-09-09 11:38:18 +020039 CONFIG_SADIS="external"
40 BBSIM_CFG="configs/bbsim-sadis-att.yaml"
Andy Bavier4be37062020-06-29 15:17:26 -070041 ROBOT_MISC_ARGS="-e PowerSwitch ${params.extraRobotArgs}"
pierventref48ebc12020-07-17 16:01:32 +020042 KARAF_HOME="${params.karafHome}"
43 DIAGS_PROFILE="VOLTHA_PROFILE"
Suchitra Vemuri456b6b42020-11-10 19:06:22 -080044 NUM_OF_BBSIM="${olts}"
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -070045 }
46 stages {
Matteo Scandolo861a53a2020-09-16 11:39:42 -070047 stage('Clone kind-voltha') {
48 steps {
49 checkout([
50 $class: 'GitSCM',
51 userRemoteConfigs: [[
52 url: "https://gerrit.opencord.org/kind-voltha",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000053 // refspec: "${kindVolthaChange}"
Matteo Scandolo861a53a2020-09-16 11:39:42 -070054 ]],
55 branches: [[ name: "master", ]],
56 extensions: [
57 [$class: 'WipeWorkspace'],
58 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
59 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
60 ],
61 ])
62 }
63 }
Matteo Scandolofa90bb12020-09-18 11:00:50 -070064 stage('Cleanup') {
65 steps {
66 sh """
67 cd $WORKSPACE/kind-voltha/
68 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down || ./voltha down
69 """
70 }
71 }
Matteo Scandolo861a53a2020-09-16 11:39:42 -070072 stage('Clone voltha-system-tests') {
73 steps {
74 checkout([
75 $class: 'GitSCM',
76 userRemoteConfigs: [[
77 url: "https://gerrit.opencord.org/voltha-system-tests",
Matteo Scandoloa42c6f52020-09-19 01:35:12 +000078 // refspec: "${volthaSystemTestsChange}"
Matteo Scandolo861a53a2020-09-16 11:39:42 -070079 ]],
80 branches: [[ name: "${branch}", ]],
81 extensions: [
82 [$class: 'WipeWorkspace'],
83 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
84 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
85 ],
86 ])
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -070087 }
88 }
89
90 stage('Deploy Voltha') {
91 steps {
92 sh """
93 export EXTRA_HELM_FLAGS=""
94 if [ "${branch}" != "master" ]; then
95 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
Matteo Scandolo861a53a2020-09-16 11:39:42 -070096 source "$WORKSPACE/kind-voltha/releases/${branch}"
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -070097 else
98 echo "on master, using default settings for kind-voltha"
99 fi
100
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700101 EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${params.extraHelmFlags}"
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700102
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700103 cd $WORKSPACE/kind-voltha/
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700104 ./voltha up
105 """
106 }
107 }
108
109 stage('Functional Tests') {
110 environment {
111 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests"
112 }
113 steps {
114 sh '''
115 set +e
116 mkdir -p $ROBOT_LOGS_DIR
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700117 cd $WORKSPACE/kind-voltha/scripts
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700118 ./log-collector.sh > /dev/null &
119 ./log-combine.sh > /dev/null &
120
121 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR"
Suchitra Vemuri456b6b42020-11-10 19:06:22 -0800122 make -C $WORKSPACE/voltha-system-tests ${makeTarget} || true
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700123 '''
124 }
125 }
126
Hung-Wei Chiuc72fe1f2020-05-04 13:54:32 -0700127 stage('Alarm Tests') {
128 environment {
129 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/AlarmTests"
130 }
Suchitra Vemuri456b6b42020-11-10 19:06:22 -0800131 when {
132 expression {
133 return params.withAlarms
134 }
135 }
Hung-Wei Chiuc72fe1f2020-05-04 13:54:32 -0700136 steps {
137 sh '''
138 set +e
139 mkdir -p $WORKSPACE/RobotLogs
140
141 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR"
Suchitra Vemuri456b6b42020-11-10 19:06:22 -0800142 make -C $WORKSPACE/voltha-system-tests ${makeAlarmtestTarget} || true
Hung-Wei Chiuc72fe1f2020-05-04 13:54:32 -0700143 '''
144 }
145 }
146
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700147 stage('Failure/Recovery Tests') {
148 environment {
149 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureTests"
150 }
151 steps {
152 sh '''
153 set +e
154 mkdir -p $WORKSPACE/RobotLogs
155
156 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR"
Suchitra Vemuri456b6b42020-11-10 19:06:22 -0800157 make -C $WORKSPACE/voltha-system-tests ${makeFailtestTarget} || true
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700158 '''
159 }
160 }
161
162 stage('Error Tests') {
163 environment {
164 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorTests"
165 }
166 steps {
167 sh '''
168 set +e
169 mkdir -p $WORKSPACE/RobotLogs
170
171 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR"
Suchitra Vemuri456b6b42020-11-10 19:06:22 -0800172 make -C $WORKSPACE/voltha-system-tests ${makeErrortestTarget} || true
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700173 '''
174 }
175 }
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700176 }
177
178 post {
179 always {
180 sh '''
181 set +e
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700182 cp $WORKSPACE/kind-voltha/install-minimal.log $WORKSPACE/
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700183 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
184 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
185 kubectl get nodes -o wide
186 kubectl get pods -o wide
187 kubectl get pods -n voltha -o wide
188
189 sleep 60 # Wait for log-collector and log-combine to complete
190
191 ## Pull out errors from log files
192 extract_errors_go() {
193 echo
194 echo "Error summary for $1:"
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700195 grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700196 echo
197 }
198
199 extract_errors_python() {
200 echo
201 echo "Error summary for $1:"
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700202 grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1*
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700203 echo
204 }
205
206 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
207 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
208 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
209 extract_errors_go voltha-ofagent >> $WORKSPACE/error-report.log
210 extract_errors_python onos >> $WORKSPACE/error-report.log
211
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200212 gzip error-report.log || true
213
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700214 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700215 tar czf $WORKSPACE/container-logs.tgz *
216
217 cd $WORKSPACE
218 gzip *-combined.log || true
219
220 ## shut down voltha but leave kind-voltha cluster
Matteo Scandolo861a53a2020-09-16 11:39:42 -0700221 cd $WORKSPACE/kind-voltha/
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700222 DEPLOY_K8S=n WAIT_ON_DOWN=y ./voltha down
Andy Bavierfcae3832020-06-04 08:51:10 -0700223 kubectl delete deployment voltctl || true
Hung-Wei Chiu5ec2edf2020-04-30 14:53:13 -0700224 '''
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 }
238 }
239}