blob: 4df9a78834bc455bcbd61ac988a39016e1ee5646 [file] [log] [blame]
Joey Armstrong8c6f6482023-01-12 12:31:44 -05001// Copyright 2021-2023 Open Networking Foundation (ONF) and the ONF Contributors
Matteo Scandolo42f6e572021-01-25 15:11:34 -08002//
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
Hardik Windlassec9341b2021-06-07 11:58:29 +000015// voltha-2.x e2e tests for openonu-go
Matteo Scandolo42f6e572021-01-25 15:11:34 -080016// uses bbsim to simulate OLT/ONUs
17
Joey Armstronge5aae1c2023-07-24 14:11:20 -040018// [TODO] Update syntax below to the latest supported
Matteo Scandoloa156b572021-02-04 11:52:18 -080019library identifier: 'cord-jenkins-libraries@master',
20 retriever: modernSCM([
21 $class: 'GitSCMSource',
22 remote: 'https://gerrit.opencord.org/ci-management.git'
23])
24
Joey Armstronge5aae1c2023-07-24 14:11:20 -040025//------------------//
26//---] GLOBAL [---//
27//------------------//
Joey Armstrongb65ada32023-08-03 12:50:20 -040028String clusterName = 'kind-ci' // was def
Joey Armstrongf076c312023-08-01 17:17:10 -040029
30// -----------------------------------------------------------------------
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040031// Intent:
Joey Armstrongf076c312023-08-01 17:17:10 -040032// -----------------------------------------------------------------------
Joey Armstrongb65ada32023-08-03 12:50:20 -040033String branchName() {
Joey Armstrongf076c312023-08-01 17:17:10 -040034 String name = 'master'
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040035
36 // [TODO] Sanity check the target branch
37 // if (name != jenkins.branch) { fatal }
Joey Armstrongf076c312023-08-01 17:17:10 -040038 return(name)
39}
Hardik Windlassec9341b2021-06-07 11:58:29 +000040
Joey Armstronge5aae1c2023-07-24 14:11:20 -040041// -----------------------------------------------------------------------
Joey Armstrong06a68372023-07-24 16:37:16 -040042// Intent: Due to lack of a reliable stack trace, construct a literal.
43// Jenkins will re-write the call stack for serialization.
44// -----------------------------------------------------------------------
Joey Armstrong97a8b882023-08-02 16:08:52 -040045String getIam(String func) {
Joey Armstrongb65ada32023-08-03 12:50:20 -040046 String branchName = branchName()
Joey Armstrong06a68372023-07-24 16:37:16 -040047 String src = [
48 'ci-management',
49 'jjb',
50 'pipeline',
51 'voltha',
Joey Armstrongb65ada32023-08-03 12:50:20 -040052 branchName,
Joey Armstrong06a68372023-07-24 16:37:16 -040053 'bbsim-tests.groovy'
54 ].join('/')
55
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040056 String name = [src, func].join('::')
57 return(name)
Joey Armstrong06a68372023-07-24 16:37:16 -040058}
59
60// -----------------------------------------------------------------------
Joey Armstronge5aae1c2023-07-24 14:11:20 -040061// Intent: Determine if working on a release branch.
62// Note: Conditional is legacy, should also check for *-dev or *-pre
63// -----------------------------------------------------------------------
64Boolean isReleaseBranch(String name)
65{
66 // List modifiers = ['-dev', '-pre', 'voltha-x.y.z-pre']
Joey Armstrongb65ada32023-08-03 12:50:20 -040067 // if branchName in modifiers
68 return(name != 'master') // OR branchName.contains('-')
Joey Armstronge5aae1c2023-07-24 14:11:20 -040069}
70
71// -----------------------------------------------------------------------
72// Intent:
73// -----------------------------------------------------------------------
Joey Armstrongb65ada32023-08-03 12:50:20 -040074void execute_test(testTarget, workflow, testLogging, teardown, testSpecificHelmFlags='')
Joey Armstrong2d5a7c12023-04-13 09:37:42 -040075{
Joey Armstrongb65ada32023-08-03 12:50:20 -040076 String infraNamespace = 'default'
77 String volthaNamespace = 'voltha'
78 String logsDir = "$WORKSPACE/${testTarget}"
Joey Armstrong293e16b2022-11-26 20:16:33 -050079
80 stage('IAM')
81 {
Joey Armstrong84adc542023-04-11 14:47:34 -040082 script
83 {
Joey Armstrong97a8b882023-08-02 16:08:52 -040084 // Announce ourselves for log usability
Joey Armstrongb65ada32023-08-03 12:50:20 -040085 String iam = getIam('execute_test')
Joey Armstrong97a8b882023-08-02 16:08:52 -040086 println("${iam}: ENTER")
87 println("${iam}: LEAVE")
Joey Armstrong84adc542023-04-11 14:47:34 -040088 }
Joey Armstrong293e16b2022-11-26 20:16:33 -050089 }
Joey Armstrongb65ada32023-08-03 12:50:20 -040090
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040091 // -----------------------------------------------------------------------
92 // -----------------------------------------------------------------------
Joey Armstrongf076c312023-08-01 17:17:10 -040093 stage('Cleanup')
94 {
Joey Armstrong84adc542023-04-11 14:47:34 -040095 if (teardown) {
96 timeout(15) {
97 script {
Joey Armstrongb65ada32023-08-03 12:50:20 -040098 helmTeardown(['default', infraNamespace, volthaNamespace])
Joey Armstrong84adc542023-04-11 14:47:34 -040099 }
100 timeout(1) {
101 sh returnStdout: false, script: '''
Hardik Windlassec9341b2021-06-07 11:58:29 +0000102 # remove orphaned port-forward from different namespaces
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400103 ps aux | grep port-forw | grep -v grep | awk '{print $2}' | xargs --no-run-if-empty kill -9
Hardik Windlassec9341b2021-06-07 11:58:29 +0000104 '''
Joey Armstrong84adc542023-04-11 14:47:34 -0400105 }
106 }
107 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000108 }
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500109
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400110 // -----------------------------------------------------------------------
111 // -----------------------------------------------------------------------
Joey Armstrong06a68372023-07-24 16:37:16 -0400112 stage('Deploy common infrastructure')
113 {
Joey Armstrong84adc542023-04-11 14:47:34 -0400114 sh '''
Hardik Windlasse1660492022-03-14 15:12:46 +0000115 helm repo add onf https://charts.opencord.org
116 helm repo update
117 if [ ${withMonitoring} = true ] ; then
118 helm install nem-monitoring onf/nem-monitoring \
119 --set prometheus.alertmanager.enabled=false,prometheus.pushgateway.enabled=false \
120 --set kpi_exporter.enabled=false,dashboards.xos=false,dashboards.onos=false,dashboards.aaa=false,dashboards.voltha=false
121 fi
122 '''
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500123 }
124
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400125 stage('Deploy Voltha')
126 {
Joey Armstrong97a8b882023-08-02 16:08:52 -0400127 if (teardown)
128 {
129 timeout(10)
130 {
131 script
132 {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000133 sh """
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700134 mkdir -p ${logsDir}
135 _TAG=kail-startup kail -n ${infraNamespace} -n ${volthaNamespace} > ${logsDir}/onos-voltha-startup-combined.log &
Hardik Windlassec9341b2021-06-07 11:58:29 +0000136 """
137
Joey Armstrongb65ada32023-08-03 12:50:20 -0400138 // if we're downloading a voltha-helm-charts patch, then install from a local copy of the charts
139 Boolean localCharts = false
Joey Armstrong53cebea2023-07-26 10:35:53 -0400140
Joey Armstrongb65ada32023-08-03 12:50:20 -0400141 if (volthaHelmChartsChange != ''
142 || gerritProject == 'voltha-helm-charts'
Joey Armstrong97a8b882023-08-02 16:08:52 -0400143 || isReleaseBranch(branch) // branch != 'master'
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400144 ) {
Joey Armstrongb65ada32023-08-03 12:50:20 -0400145 localCharts = true
146 }
147
Joey Armstrong8a960ee2023-08-03 15:00:00 -0400148 String branchName = branchName()
149 Boolean is_release = isReleaseBranch(branch)
150 println([
151 " ** localCharts=${localCharts}",
152 "branchName=${branchName}",
153 "branch=${branch}",
154 "branch=isReleaseBranch=${is_release}",
155 ].join(', '))
Hardik Windlassec9341b2021-06-07 11:58:29 +0000156
Joey Armstrong8a960ee2023-08-03 15:00:00 -0400157 // -----------------------------------------------------------------------
158 // Rewrite localHelmFlags using array join, moving code around and
159 // refactoring into standalone functions
160 // -----------------------------------------------------------------------
161 // hudson.remoting.ProxyException: groovy.lang.MissingMethodException:
162 // No signature of method: java.lang.String.positive() is applicable for argument types: () values: []
163 // -----------------------------------------------------------------------
164 // NOTE temporary workaround expose ONOS node ports
165 // -----------------------------------------------------------------------
166 String localHelmFlags = [
167 extraHelmFlags.trim(),
168 "--set global.log_level=${logLevel.toUpperCase()}",
169 '--set onos-classic.onosSshPort=30115',
170 '--set onos-classic.onosApiPort=30120',
171 '--set onos-classic.onosOfPort=31653',
172 '--set onos-classic.individualOpenFlowNodePorts=true',
173 testSpecificHelmFlags
174 ].join(' ')
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800175
Joey Armstrong28e86ee2023-08-03 15:22:29 -0400176 println("** localHelmFlags = ${localHelmFlags}")
177
Joey Armstrong8a960ee2023-08-03 15:00:00 -0400178 if (gerritProject != '') {
179 localHelmFlags = "${localHelmFlags} " + getVolthaImageFlags("${gerritProject}")
180 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000181
Joey Armstrong8a960ee2023-08-03 15:00:00 -0400182 println('volthaDeploy: ENTER')
183 volthaDeploy([
184 infraNamespace: infraNamespace,
185 volthaNamespace: volthaNamespace,
186 workflow: workflow.toLowerCase(),
187 withMacLearning: enableMacLearning.toBoolean(),
188 extraHelmFlags: localHelmFlags,
189 localCharts: localCharts,
190 bbsimReplica: olts.toInteger(),
191 dockerRegistry: registry,
192 ])
193 println('volthaDeploy: LEAVE')
Joey Armstrongb65ada32023-08-03 12:50:20 -0400194
Joey Armstrongb65ada32023-08-03 12:50:20 -0400195 } // script
Matteo Scandolofcfc60d2021-02-24 09:06:48 -0800196
Joey Armstrong97a8b882023-08-02 16:08:52 -0400197 // -----------------------------------------------------------------------
198 // Intent: Replacing P_IDS with pgrep/pkill is a step forward.
199 // Why not simply use a pid file, capture _TAG=kail-startup above
200 // Grep runs the risk of terminating stray commands (??-good <=> bad-??)
Joey Armstrongb65ada32023-08-03 12:50:20 -0400201 // -----------------------------------------------------------------------
202 script {
203 println('Try out pgrep/pkill commands')
204 def stream = sh(
205 returnStatus:false,
206 returnStdout:true,
207 script: '''pgrep --list-full kail-startup || true'''
208 )
209 println("** pgrep output: ${stream}")
210 }
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400211
Joey Armstrong97a8b882023-08-02 16:08:52 -0400212 // -----------------------------------------------------------------------
213 // stop logging
214 // -----------------------------------------------------------------------
Matteo Scandolod17de3a2021-04-09 15:47:52 -0700215 sh """
Hardik Windlassec9341b2021-06-07 11:58:29 +0000216 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-startup" | grep -v grep | awk '{print \$1}')"
217 if [ -n "\$P_IDS" ]; then
218 echo \$P_IDS
219 for P_ID in \$P_IDS; do
220 kill -9 \$P_ID
221 done
222 fi
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700223 cd ${logsDir}
Hardik Windlassec9341b2021-06-07 11:58:29 +0000224 gzip -k onos-voltha-startup-combined.log
225 rm onos-voltha-startup-combined.log
Matteo Scandolod17de3a2021-04-09 15:47:52 -0700226 """
Hardik Windlassec9341b2021-06-07 11:58:29 +0000227 }
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400228
229 sh """
Hardik Windlassec9341b2021-06-07 11:58:29 +0000230 JENKINS_NODE_COOKIE="dontKillMe" _TAG="voltha-voltha-api" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${volthaNamespace} svc/voltha-voltha-api 55555:55555; done"&
231 JENKINS_NODE_COOKIE="dontKillMe" _TAG="voltha-infra-etcd" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${infraNamespace} svc/voltha-infra-etcd 2379:2379; done"&
232 JENKINS_NODE_COOKIE="dontKillMe" _TAG="voltha-infra-kafka" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${infraNamespace} svc/voltha-infra-kafka 9092:9092; done"&
233 bbsimDmiPortFwd=50075
234 for i in {0..${olts.toInteger() - 1}}; do
235 JENKINS_NODE_COOKIE="dontKillMe" _TAG="bbsim\${i}" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n ${volthaNamespace} svc/bbsim\${i} \${bbsimDmiPortFwd}:50075; done"&
236 ((bbsimDmiPortFwd++))
237 done
Hardik Windlass3bb089a2022-03-22 17:56:03 +0000238 if [ ${withMonitoring} = true ] ; then
239 JENKINS_NODE_COOKIE="dontKillMe" _TAG="nem-monitoring-prometheus-server" bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n default svc/nem-monitoring-prometheus-server 31301:80; done"&
240 fi
Hardik Windlassec9341b2021-06-07 11:58:29 +0000241 ps aux | grep port-forward
242 """
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500243
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400244 // setting ONOS log level
245 script
Joey Armstrongb65ada32023-08-03 12:50:20 -0400246 {
247 println('** setOnosLogLevels: ENTER')
248 setOnosLogLevels([
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400249 onosNamespace: infraNamespace,
250 apps: [
251 'org.opencord.dhcpl2relay',
252 'org.opencord.olt',
253 'org.opencord.aaa',
254 'org.opencord.maclearner',
255 'org.onosproject.net.flowobjective.impl.FlowObjectiveManager',
256 'org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager'
257 ],
258 logLevel: logLevel
259 ])
Joey Armstrongb65ada32023-08-03 12:50:20 -0400260 println('** setOnosLogLevels: LEAVE')
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400261 } // script
262 } // if (teardown)
263 } // stage('Deploy Voltha')
264
265 stage('Run test ' + testTarget + ' on ' + workflow + ' workFlow')
266 {
267 sh """
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000268 if [ ${withMonitoring} = true ] ; then
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500269 mkdir -p "$WORKSPACE/voltha-pods-mem-consumption-${workflow}"
270 cd "$WORKSPACE/voltha-system-tests"
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400271 make venv-activate-script
272 set +u && source .venv/bin/activate && set -u
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000273 # Collect initial memory consumption
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400274 python scripts/mem_consumption.py -o $WORKSPACE/voltha-pods-mem-consumption-${workflow} -a 0.0.0.0:31301 -n ${volthaNamespace}
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000275 fi
Hardik Windlasse1660492022-03-14 15:12:46 +0000276 """
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400277
278 sh """
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700279 mkdir -p ${logsDir}
Hardik Windlassd62442d2021-11-30 10:51:20 +0000280 export ROBOT_MISC_ARGS="-d ${logsDir} ${params.extraRobotArgs} "
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700281 ROBOT_MISC_ARGS+="-v ONOS_SSH_PORT:30115 -v ONOS_REST_PORT:30120 -v NAMESPACE:${volthaNamespace} -v INFRA_NAMESPACE:${infraNamespace} -v container_log_dir:${logsDir} -v logging:${testLogging}"
Hardik Windlass72947302021-06-14 10:36:57 +0000282 export KVSTOREPREFIX=voltha/voltha_voltha
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800283
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400284 make -C "$WORKSPACE/voltha-system-tests" ${testTarget}
Hardik Windlass72947302021-06-14 10:36:57 +0000285 """
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400286
287 getPodsInfo("${logsDir}")
288
289 sh """
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400290 # set +e
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000291 # collect logs collected in the Robot Framework StartLogging keyword
292 cd ${logsDir}
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400293 gzip *-combined.log
294 rm -f *-combined.log
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000295 """
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400296
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000297 sh """
298 if [ ${withMonitoring} = true ] ; then
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500299 cd "$WORKSPACE/voltha-system-tests"
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400300 make venv-activate-script
301 set +u && source .venv/bin/activate && set -u
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000302 # Collect memory consumption of voltha pods once all the tests are complete
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400303 python scripts/mem_consumption.py -o $WORKSPACE/voltha-pods-mem-consumption-${workflow} -a 0.0.0.0:31301 -n ${volthaNamespace}
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000304 fi
305 """
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400306 } // stage
Joey Armstrongb65ada32023-08-03 12:50:20 -0400307
308 return
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400309} // execute_test()
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800310
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400311// -----------------------------------------------------------------------
312// -----------------------------------------------------------------------
Joey Armstrongb65ada32023-08-03 12:50:20 -0400313def collectArtifacts(exitStatus) {
Joey Armstrong97a8b882023-08-02 16:08:52 -0400314 echo '''
315
316** -----------------------------------------------------------------------
317** collectArtifacts
318** -----------------------------------------------------------------------
319'''
320
Hardik Windlassec9341b2021-06-07 11:58:29 +0000321 getPodsInfo("$WORKSPACE/${exitStatus}")
Joey Armstrong97a8b882023-08-02 16:08:52 -0400322
Hardik Windlassec9341b2021-06-07 11:58:29 +0000323 sh """
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400324 kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/${exitStatus}/voltha.log
Hardik Windlassec9341b2021-06-07 11:58:29 +0000325 """
Joey Armstrong97a8b882023-08-02 16:08:52 -0400326
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000327 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.txt,**/*.html,**/voltha-pods-mem-consumption-att/*,**/voltha-pods-mem-consumption-dt/*,**/voltha-pods-mem-consumption-tt/*'
Joey Armstrong97a8b882023-08-02 16:08:52 -0400328
Hardik Windlassec9341b2021-06-07 11:58:29 +0000329 sh '''
330 sync
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400331 [[ $(pgrep --count kail) -gt 0 ]] && pkill --echo kail
Hardik Windlassec9341b2021-06-07 11:58:29 +0000332 which voltctl
333 md5sum $(which voltctl)
334 '''
Joey Armstrong97a8b882023-08-02 16:08:52 -0400335
Hardik Windlassec9341b2021-06-07 11:58:29 +0000336 step([$class: 'RobotPublisher',
337 disableArchiveOutput: false,
Joey Armstrongb65ada32023-08-03 12:50:20 -0400338 logFileName: '**/*/log*.html',
Hardik Windlassec9341b2021-06-07 11:58:29 +0000339 otherFiles: '',
Joey Armstrongb65ada32023-08-03 12:50:20 -0400340 outputFileName: '**/*/output*.xml',
Hardik Windlassec9341b2021-06-07 11:58:29 +0000341 outputPath: '.',
342 passThreshold: 100,
Joey Armstrongb65ada32023-08-03 12:50:20 -0400343 reportFileName: '**/*/report*.html',
Andrea Campanellaabc09772021-06-16 12:08:57 +0200344 unstableThreshold: 0,
345 onlyCritical: true]);
Hardik Windlassec9341b2021-06-07 11:58:29 +0000346}
347
Joey Armstrongb65ada32023-08-03 12:50:20 -0400348// -----------------------------------------------------------------------
349// Intent: main
350// -----------------------------------------------------------------------
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800351pipeline {
352
353 /* no label, executor is determined by JJB */
354 agent {
355 label "${params.buildNode}"
356 }
357 options {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000358 timeout(time: "${timeout}", unit: 'MINUTES')
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800359 }
360 environment {
Hardik Windlassec9341b2021-06-07 11:58:29 +0000361 KUBECONFIG="$HOME/.kube/kind-${clusterName}"
362 VOLTCONFIG="$HOME/.volt/config"
363 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Joey Armstrongb65ada32023-08-03 12:50:20 -0400364 DIAGS_PROFILE='VOLTHA_PROFILE'
365 SSHPASS='karaf'
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800366 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000367 stages {
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800368 stage('Download Code') {
369 steps {
370 getVolthaCode([
371 branch: "${branch}",
372 gerritProject: "${gerritProject}",
373 gerritRefspec: "${gerritRefspec}",
374 volthaSystemTestsChange: "${volthaSystemTestsChange}",
375 volthaHelmChartsChange: "${volthaHelmChartsChange}",
376 ])
377 }
378 }
Joey Armstrong84adc542023-04-11 14:47:34 -0400379
380 stage('Build patch v1.1')
381 {
382 // build the patch only if gerritProject is specified
383 when
384 {
385 expression
386 {
387 return !gerritProject.isEmpty()
388 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000389 }
Joey Armstrong06a68372023-07-24 16:37:16 -0400390
Joey Armstrong97a8b882023-08-02 16:08:52 -0400391 steps
392 {
393 // NOTE that the correct patch has already been checked out
394 // during the getVolthaCode step
395 buildVolthaComponent("${gerritProject}")
Joey Armstrong06a68372023-07-24 16:37:16 -0400396 }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800397 }
Joey Armstronged161f72023-04-11 13:16:59 -0400398
Joey Armstrong97a8b882023-08-02 16:08:52 -0400399 // -----------------------------------------------------------------------
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400400 // -----------------------------------------------------------------------
401 stage ('Install Kail')
402 {
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400403 steps
404 {
405 script
406 {
407 String cmd = [
408 'make',
Joey Armstrong9f184d32023-08-03 11:34:48 -0400409 '--no-print-directory',
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400410 '-C', "$WORKSPACE/voltha-system-tests",
411 "KAIL_PATH=\"$WORKSPACE/bin\"",
412 'kail',
413 ].join(' ')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400414
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400415 println(" ** Running: ${cmd}:\n")
416 sh("${cmd}")
417 } // script
418 } // steps
419 } // stage
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400420
421 // -----------------------------------------------------------------------
Joey Armstrong97a8b882023-08-02 16:08:52 -0400422 // -----------------------------------------------------------------------
423 stage ('Install Kind')
424 {
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400425 steps
426 {
427 script
428 {
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400429
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400430 String cmd = [
431 'make',
Joey Armstrong9f184d32023-08-03 11:34:48 -0400432 '--no-print-directory',
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400433 '-C', "$WORKSPACE/voltha-system-tests",
434 "KIND_PATH=\"$WORKSPACE/bin\"",
435 'install-command-kind',
436 ].join(' ')
437
438 println(" ** Running: ${cmd}:\n")
439 sh("${cmd}")
440 } // script
441 } // steps
442 } // stage
Joey Armstrong97a8b882023-08-02 16:08:52 -0400443
444 // -----------------------------------------------------------------------
445 // -----------------------------------------------------------------------
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400446 stage('Create K8s Cluster')
447 {
Joey Armstrongf076c312023-08-01 17:17:10 -0400448 steps
449 {
450 script
Joey Armstrong84adc542023-04-11 14:47:34 -0400451 {
Joey Armstrong97a8b882023-08-02 16:08:52 -0400452 def clusterExists = sh(
Joey Armstrongf076c312023-08-01 17:17:10 -0400453 returnStdout: true,
454 script: """kind get clusters | grep "${clusterName}" | wc -l""")
Joey Armstrongbf492922023-04-13 17:05:09 -0400455
Joey Armstrongb65ada32023-08-03 12:50:20 -0400456 if (clusterExists.trim() == '0')
Joey Armstrongf076c312023-08-01 17:17:10 -0400457 {
458 createKubernetesCluster([nodes: 3, name: clusterName])
459 }
460 } // script
461 } // steps
462 } // stage('Create K8s Cluster')
Joey Armstrong84adc542023-04-11 14:47:34 -0400463
Joey Armstrong97a8b882023-08-02 16:08:52 -0400464 // -----------------------------------------------------------------------
465 // -----------------------------------------------------------------------
466 stage('Replace voltctl')
467 {
468 // if the project is voltctl, override the downloaded one with the built one
469 when {
470 expression {
Joey Armstrongb65ada32023-08-03 12:50:20 -0400471 return gerritProject == 'voltctl'
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400472 }
Matteo Scandolo29597f02021-02-12 10:53:57 -0800473 }
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400474
Joey Armstrong97a8b882023-08-02 16:08:52 -0400475 // Hmmmm(?) where did the voltctl download happen ?
476 // Likely Makefile but would be helpful to document here.
477 steps
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400478 {
Joey Armstrong97a8b882023-08-02 16:08:52 -0400479 println("${iam} Running: installVoltctl($branch)")
480 installVoltctl("$branch")
481 } // steps
482 } // stage
483
484 // -----------------------------------------------------------------------
485 // -----------------------------------------------------------------------
486 stage('Load image in kind nodes')
487 {
488 when {
489 expression {
490 return !gerritProject.isEmpty()
491 }
492 }
493 steps {
494 loadToKind()
495 } // steps
496 } // stage
497
498 // -----------------------------------------------------------------------
499 // -----------------------------------------------------------------------
500 stage('Parse and execute tests')
501 {
Joey Armstrongb65ada32023-08-03 12:50:20 -0400502 steps {
503 script {
504 def tests = readYaml text: testTargets
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400505
Joey Armstrongb65ada32023-08-03 12:50:20 -0400506 for(int i = 0;i<tests.size();i++) {
507 def test = tests[i]
508 def target = test['target']
509 def workflow = test['workflow']
510 def flags = test['flags']
511 def teardown = test['teardown'].toBoolean()
512 def logging = test['logging'].toBoolean()
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400513 def testLogging = 'False'
514 if (logging) {
515 testLogging = 'True'
516 }
517 println "Executing test ${target} on workflow ${workflow} with logging ${testLogging} and extra flags ${flags}"
518 execute_test(target, workflow, testLogging, teardown, flags)
Joey Armstrongb65ada32023-08-03 12:50:20 -0400519 } // for
520 } // script
521 } // steps
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400522 } // stage
523 } // stages
Joey Armstrong84adc542023-04-11 14:47:34 -0400524
525 post
526 {
527 aborted { collectArtifacts('aborted') }
528 failure { collectArtifacts('failed') }
Joey Armstrongbf492922023-04-13 17:05:09 -0400529 always { collectArtifacts('always') }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800530 }
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400531} // pipeline
Joey Armstronged161f72023-04-11 13:16:59 -0400532
533// EOF