blob: c0fc8b9ca681832849dabbd922d5562bbeba2e31 [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 {
26 timeout(time: 40, unit: 'MINUTES')
27 }
Andy Bavier218385e2019-11-13 09:51:38 -070028 environment {
29 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
30 VOLTCONFIG="$HOME/.volt/config-minimal"
Andy Bavier36c688c2020-03-17 07:32:30 -070031 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$HOME/kind-voltha/bin"
Andy Bavier218385e2019-11-13 09:51:38 -070032 TYPE="minimal"
33 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"
Hung-Wei Chiuf284d3f2020-04-08 11:38:13 -070039 CONFIG_SADIS="no"
Andy Bavier3708d072019-12-10 15:22:18 -070040 ROBOT_MISC_ARGS="${params.extraRobotArgs} -d $WORKSPACE/RobotLogs"
Andy Bavier218385e2019-11-13 09:51:38 -070041 }
Kailash8b8de742019-07-30 08:54:51 -070042 stages {
43
Andy Bavier4c8b3232019-11-22 16:17:47 -070044 stage('Repo') {
45 steps {
Andy Bavier2c9ce042019-11-23 07:36:31 -070046 step([$class: 'WsCleanup'])
Andy Bavier4c8b3232019-11-22 16:17:47 -070047 checkout(changelog: true,
48 poll: false,
49 scm: [$class: 'RepoScm',
50 manifestRepositoryUrl: "${params.manifestUrl}",
Andy Bavier6dfaf7e2020-03-30 14:52:59 -070051 manifestBranch: "${params.branch}",
Andy Bavier4c8b3232019-11-22 16:17:47 -070052 currentBranch: true,
53 destinationDir: 'voltha',
54 forceSync: true,
55 resetFirst: true,
56 quiet: true,
57 jobs: 4,
58 showAllChanges: true]
59 )
60 }
61 }
62
Kailash8b8de742019-07-30 08:54:51 -070063 stage('Download kind-voltha') {
64 steps {
65 sh """
Andy Bavier36c688c2020-03-17 07:32:30 -070066 cd $HOME
67 [ -d kind-voltha ] || git clone https://github.com/ciena/kind-voltha.git
Andy Bavier2e009302020-03-19 08:46:13 -070068 rm -rf $HOME/kind-voltha/scripts/logger
Andy Bavier36c688c2020-03-17 07:32:30 -070069 cd $HOME/kind-voltha
70 git pull
Kailash8b8de742019-07-30 08:54:51 -070071 """
72 }
73 }
74
75 stage('Deploy Voltha') {
76 steps {
77 sh """
Andy Bavierdc8bc2c2020-03-29 16:25:02 -070078 export EXTRA_HELM_FLAGS=""
Andy Bavier6dfaf7e2020-03-30 14:52:59 -070079 if [ "${branch}" != "master" ]; then
80 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
81 source "$HOME/kind-voltha/releases/${branch}"
Andy Bavier10926f12020-03-27 16:53:43 -070082 else
83 echo "on master, using default settings for kind-voltha"
84 fi
85
Hung-Wei Chiuf284d3f2020-04-08 11:38:13 -070086 if [ "${workFlow}" == "DT" ]; then
87 export WITH_DHCP=no
88 export WITH_IGMP=no
89 export WITH_EAPOL=no
90 export WITH_RADIUS=no
91 fi
92
Andy Bavier10926f12020-03-27 16:53:43 -070093 EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${params.extraHelmFlags} "
94
Andy Bavier36c688c2020-03-17 07:32:30 -070095 cd $HOME/kind-voltha/
96 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down || ./voltha down
Andy Bavier218385e2019-11-13 09:51:38 -070097 ./voltha up
Kailash8b8de742019-07-30 08:54:51 -070098 """
99 }
100 }
101
Kailash8b8de742019-07-30 08:54:51 -0700102 stage('Run E2E Tests') {
103 steps {
104 sh '''
Andy Bavier4af02722020-01-15 10:24:24 -0700105 set +e
Andy Bavier2c9ce042019-11-23 07:36:31 -0700106 mkdir -p $WORKSPACE/RobotLogs
Kailash8b8de742019-07-30 08:54:51 -0700107 git clone https://gerrit.opencord.org/voltha-system-tests
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700108
Andy Bavier36c688c2020-03-17 07:32:30 -0700109 cd $HOME/kind-voltha/scripts
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700110 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -0700111 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700112
Andy Bavier4af02722020-01-15 10:24:24 -0700113 make -C $WORKSPACE/voltha-system-tests ${makeTarget} || true
Kailash8b8de742019-07-30 08:54:51 -0700114 '''
115 }
116 }
117 }
118
119 post {
120 always {
121 sh '''
Andy Bavier218385e2019-11-13 09:51:38 -0700122 set +e
Andy Bavier36c688c2020-03-17 07:32:30 -0700123 cp $HOME/kind-voltha/install-minimal.log $WORKSPACE/
Andy Bavieraec60382019-10-29 15:09:04 -0700124 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
Kailash887a2962019-08-14 13:26:33 -0700125 kubectl get nodes -o wide
126 kubectl get pods -o wide
127 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700128
Andy Bavier7afb11c2020-02-13 11:25:20 -0700129 sleep 60 # Wait for log-collector and log-combine to complete
130
Andy Bavierb30c0a02020-03-03 17:21:23 -0700131 ## Pull out errors from log files
132 extract_errors_go() {
133 echo
134 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700135 grep '"level":"error"' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700136 echo
137 }
138
139 extract_errors_python() {
140 echo
141 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700142 grep 'ERROR' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700143 echo
144 }
145
146 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
147 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
148 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
149 extract_errors_go voltha-ofagent >> $WORKSPACE/error-report.log
150 extract_errors_python onos >> $WORKSPACE/error-report.log
151
Andy Bavier36c688c2020-03-17 07:32:30 -0700152 cd $HOME/kind-voltha/scripts/logger/combined/
Andy Bavier7afb11c2020-02-13 11:25:20 -0700153 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700154
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700155 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700156 gzip *-combined.log || true
Andy Bavier2178d102020-02-06 16:22:11 -0700157
Andy Bavier36c688c2020-03-17 07:32:30 -0700158 ## shut down voltha but leave kind-voltha cluster
159 cd $HOME/kind-voltha/
160 DEPLOY_K8S=n WAIT_ON_DOWN=y ./voltha down
Kailash8b8de742019-07-30 08:54:51 -0700161 '''
162 step([$class: 'RobotPublisher',
163 disableArchiveOutput: false,
164 logFileName: 'RobotLogs/log*.html',
165 otherFiles: '',
166 outputFileName: 'RobotLogs/output*.xml',
167 outputPath: '.',
Matteo Scandolo26bc17e2019-09-24 09:03:01 -0700168 passThreshold: 100,
Kailash8b8de742019-07-30 08:54:51 -0700169 reportFileName: 'RobotLogs/report*.html',
170 unstableThreshold: 0]);
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700171 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Kailash8b8de742019-07-30 08:54:51 -0700172
173 }
174 }
175}