blob: bad26eba2be6a0a6e27b2abe10f6768b16febe74 [file] [log] [blame]
Kailash8b8de742019-07-30 08:54:51 -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 {
Zack Williamsb3292082019-10-11 17:15:18 -070023 label "${params.buildNode}"
Kailash8b8de742019-07-30 08:54:51 -070024 }
Kailash4b323ff2019-08-02 17:52:49 -070025 options {
Andrea Campanella2f21f982020-09-11 13:26:40 +020026 timeout(time: 60, unit: 'MINUTES')
Kailash4b323ff2019-08-02 17:52:49 -070027 }
Andy Bavier218385e2019-11-13 09:51:38 -070028 environment {
29 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
30 VOLTCONFIG="$HOME/.volt/config-minimal"
Andrea Campanella88f01ea2021-01-04 11:36:25 +010031 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"
Andy Bavier218385e2019-11-13 09:51:38 -070033 FANCY=0
Hung-Wei Chiuf284d3f2020-04-08 11:38:13 -070034 WITH_SIM_ADAPTERS="no"
35 WITH_RADIUS="yes"
36 WITH_BBSIM="yes"
37 DEPLOY_K8S="yes"
Andy Bavier218385e2019-11-13 09:51:38 -070038 VOLTHA_LOG_LEVEL="DEBUG"
Andrea Campanellafe950382020-09-10 18:12:11 +020039 CONFIG_SADIS="external"
40 BBSIM_CFG="configs/bbsim-sadis-att.yaml"
Andy Bavierd9870042020-06-23 13:16:47 -070041 ROBOT_MISC_ARGS="${params.extraRobotArgs} -d $WORKSPACE/RobotLogs -e PowerSwitch"
pierventref48ebc12020-07-17 16:01:32 +020042 KARAF_HOME="${params.karafHome}"
43 DIAGS_PROFILE="VOLTHA_PROFILE"
Andy Bavier218385e2019-11-13 09:51:38 -070044 }
Kailash8b8de742019-07-30 08:54:51 -070045 stages {
46
Andrea Campanella88f01ea2021-01-04 11:36:25 +010047 stage('Clone kind-voltha') {
Andy Bavier4c8b3232019-11-22 16:17:47 -070048 steps {
Andrea Campanella88f01ea2021-01-04 11:36:25 +010049 checkout([
50 $class: 'GitSCM',
51 userRemoteConfigs: [[
52 url: "https://gerrit.opencord.org/kind-voltha",
53 // refspec: "${kindVolthaChange}"
54 ]],
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 ])
Andy Bavier4c8b3232019-11-22 16:17:47 -070062 }
63 }
Andrea Campanella88f01ea2021-01-04 11:36:25 +010064 stage('Cleanup') {
Kailash8b8de742019-07-30 08:54:51 -070065 steps {
66 sh """
Andrea Campanella57735a82021-05-18 13:22:49 +020067 if [ "${branch}" != "master" ]; then
68 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
69 source "$WORKSPACE/kind-voltha/releases/${branch}"
70 else
71 echo "on master, using default settings for kind-voltha"
72 fi
Andrea Campanella88f01ea2021-01-04 11:36:25 +010073 cd $WORKSPACE/kind-voltha/
74 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down || true
75 """
76 }
77 }
78 stage('Clone voltha-system-tests') {
79 steps {
80 checkout([
81 $class: 'GitSCM',
82 userRemoteConfigs: [[
83 url: "https://gerrit.opencord.org/voltha-system-tests",
84 // refspec: "${volthaSystemTestsChange}"
85 ]],
Suchitra Vemuri1143ae32021-03-26 01:08:37 +000086 branches: [[ name: "${branch}", ]],
Andrea Campanella88f01ea2021-01-04 11:36:25 +010087 extensions: [
88 [$class: 'WipeWorkspace'],
89 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
90 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
91 ],
92 ])
Kailash8b8de742019-07-30 08:54:51 -070093 }
94 }
95
96 stage('Deploy Voltha') {
97 steps {
98 sh """
Andy Bavierdc8bc2c2020-03-29 16:25:02 -070099 export EXTRA_HELM_FLAGS=""
Andy Bavier6dfaf7e2020-03-30 14:52:59 -0700100 if [ "${branch}" != "master" ]; then
101 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100102 source "$WORKSPACE/kind-voltha/releases/${branch}"
Andy Bavier10926f12020-03-27 16:53:43 -0700103 else
104 echo "on master, using default settings for kind-voltha"
105 fi
106
Hung-Wei Chiuf284d3f2020-04-08 11:38:13 -0700107 if [ "${workFlow}" == "DT" ]; then
108 export WITH_DHCP=no
109 export WITH_IGMP=no
110 export WITH_EAPOL=no
111 export WITH_RADIUS=no
Andrea Campanellafe950382020-09-10 18:12:11 +0200112 export BBSIM_CFG="configs/bbsim-sadis-dt.yaml"
Hung-Wei Chiuf284d3f2020-04-08 11:38:13 -0700113 fi
114
Andy Bavier10926f12020-03-27 16:53:43 -0700115 EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${params.extraHelmFlags} "
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100116 cd $WORKSPACE/kind-voltha/
Andy Bavier36c688c2020-03-17 07:32:30 -0700117 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down || ./voltha down
Andy Bavier218385e2019-11-13 09:51:38 -0700118 ./voltha up
Kailash8b8de742019-07-30 08:54:51 -0700119 """
120 }
121 }
122
Kailash8b8de742019-07-30 08:54:51 -0700123 stage('Run E2E Tests') {
124 steps {
125 sh '''
Andy Bavier4af02722020-01-15 10:24:24 -0700126 set +e
Andy Bavier2c9ce042019-11-23 07:36:31 -0700127 mkdir -p $WORKSPACE/RobotLogs
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700128
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100129 cd $WORKSPACE/kind-voltha/scripts
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700130 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -0700131 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700132
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100133 make -C $WORKSPACE/voltha-system-tests ${makeTarget} || true
Kailash8b8de742019-07-30 08:54:51 -0700134 '''
135 }
136 }
137 }
138
139 post {
140 always {
141 sh '''
Andy Bavier218385e2019-11-13 09:51:38 -0700142 set +e
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100143 cp $WORKSPACE/kind-voltha/install-minimal.log $WORKSPACE/
Matteo Scandolo97b12572020-04-13 12:44:46 -0700144 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
145 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
Kailash887a2962019-08-14 13:26:33 -0700146 kubectl get nodes -o wide
147 kubectl get pods -o wide
148 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700149
Andy Bavier7afb11c2020-02-13 11:25:20 -0700150 sleep 60 # Wait for log-collector and log-combine to complete
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:"
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100156 grep '"level":"error"' $WORKSPACE/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:"
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100163 grep 'ERROR' $WORKSPACE/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_go voltha-ofagent >> $WORKSPACE/error-report.log
171 extract_errors_python onos >> $WORKSPACE/error-report.log
172
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200173 gzip error-report.log || true
174
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100175 cd $WORKSPACE/kind-voltha/scripts/logger/combined/
Andy Bavier7afb11c2020-02-13 11:25:20 -0700176 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 Bavier2178d102020-02-06 16:22:11 -0700180
Andy Bavier36c688c2020-03-17 07:32:30 -0700181 ## shut down voltha but leave kind-voltha cluster
Andrea Campanella57735a82021-05-18 13:22:49 +0200182 if [ "${branch}" != "master" ]; then
183 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
184 source "$WORKSPACE/kind-voltha/releases/${branch}"
185 else
186 echo "on master, using default settings for kind-voltha"
187 fi
Andrea Campanella88f01ea2021-01-04 11:36:25 +0100188 cd $WORKSPACE/kind-voltha/
Andy Bavier36c688c2020-03-17 07:32:30 -0700189 DEPLOY_K8S=n WAIT_ON_DOWN=y ./voltha down
Andy Bavierfcae3832020-06-04 08:51:10 -0700190 kubectl delete deployment voltctl || true
Kailash8b8de742019-07-30 08:54:51 -0700191 '''
192 step([$class: 'RobotPublisher',
193 disableArchiveOutput: false,
194 logFileName: 'RobotLogs/log*.html',
195 otherFiles: '',
196 outputFileName: 'RobotLogs/output*.xml',
197 outputPath: '.',
Matteo Scandolo26bc17e2019-09-24 09:03:01 -0700198 passThreshold: 100,
Kailash8b8de742019-07-30 08:54:51 -0700199 reportFileName: 'RobotLogs/report*.html',
200 unstableThreshold: 0]);
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700201 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Kailash8b8de742019-07-30 08:54:51 -0700202
203 }
204 }
205}