blob: dd9242569c2af639feb61444c7962dce58a96424 [file] [log] [blame]
Joey Armstrong7bcb5782023-06-07 12:25:57 -04001// Copyright 2021-2023 Open Networking Foundation (ONF) and the ONF Contributors
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 for openonu-go
16// uses bbsim to simulate OLT/ONUs
17
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040018// [TODO] Update syntax below to the latest supported
Joey Armstrong7bcb5782023-06-07 12:25:57 -040019library identifier: 'cord-jenkins-libraries@master',
20 retriever: modernSCM([
21 $class: 'GitSCMSource',
22 remote: 'https://gerrit.opencord.org/ci-management.git'
23])
24
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040025//------------------//
26//---] GLOBAL [---//
27//------------------//
Joey Armstrong54dec092023-08-03 18:21:38 -040028String clusterName = 'kind-ci' // was def
Joey Armstrong7bcb5782023-06-07 12:25:57 -040029
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040030// -----------------------------------------------------------------------
31// Intent:
32// -----------------------------------------------------------------------
Joey Armstrong54dec092023-08-03 18:21:38 -040033String branchName() {
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040034 String name = 'voltha-2.12'
35
36 // [TODO] Sanity check the target branch
37 // if (name != jenkins.branch) { fatal }
38 return(name)
39}
40
41// -----------------------------------------------------------------------
42// Intent: Due to lack of a reliable stack trace, construct a literal.
43// Jenkins will re-write the call stack for serialization.
44// -----------------------------------------------------------------------
45String getIam(String func) {
Joey Armstrong54dec092023-08-03 18:21:38 -040046 String branchName = branchName()
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040047 String src = [
48 'ci-management',
49 'jjb',
50 'pipeline',
51 'voltha',
Joey Armstrong54dec092023-08-03 18:21:38 -040052 branchName,
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040053 'bbsim-tests.groovy'
54 ].join('/')
55
56 String name = [src, func].join('::')
57 return(name)
58}
59
60// -----------------------------------------------------------------------
61// 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 Armstrong54dec092023-08-03 18:21:38 -040067 // if branchName in modifiers
68 return(name != 'master') // OR branchName.contains('-')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040069}
70
71// -----------------------------------------------------------------------
72// Intent:
73// -----------------------------------------------------------------------
Joey Armstrong54dec092023-08-03 18:21:38 -040074void execute_test(testTarget, workflow, testLogging, teardown, testSpecificHelmFlags='')
Joey Armstrong7bcb5782023-06-07 12:25:57 -040075{
Joey Armstrong54dec092023-08-03 18:21:38 -040076 String infraNamespace = 'default'
77 String volthaNamespace = 'voltha'
78 String logsDir = "$WORKSPACE/${testTarget}"
Joey Armstrong7bcb5782023-06-07 12:25:57 -040079
80 stage('IAM')
81 {
82 script
83 {
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040084 // Announce ourselves for log usability
Joey Armstrong642540a2023-08-10 10:26:36 -040085 String iam = getIam('execute_test')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040086 println("${iam}: ENTER")
87 println("${iam}: LEAVE")
Joey Armstrong7bcb5782023-06-07 12:25:57 -040088 }
89 }
Joey Armstrong54dec092023-08-03 18:21:38 -040090
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040091 // -----------------------------------------------------------------------
92 // -----------------------------------------------------------------------
93 stage('Cleanup')
94 {
Joey Armstrong7bcb5782023-06-07 12:25:57 -040095 if (teardown) {
96 timeout(15) {
97 script {
Joey Armstrong54dec092023-08-03 18:21:38 -040098 helmTeardown(['default', infraNamespace, volthaNamespace])
Joey Armstrong7bcb5782023-06-07 12:25:57 -040099 }
100 timeout(1) {
101 sh returnStdout: false, script: '''
102 # remove orphaned port-forward from different namespaces
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400103 ps aux | grep port-forw | grep -v grep | awk '{print $2}' | xargs --no-run-if-empty kill -9
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400104 '''
105 }
106 }
107 }
108 }
109
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400110 // -----------------------------------------------------------------------
111 // -----------------------------------------------------------------------
112 stage('Deploy common infrastructure')
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400113 {
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400114 sh '''
115 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 '''
123 }
124
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400125 stage('Deploy Voltha')
126 {
127 if (teardown)
128 {
129 timeout(10)
130 {
131 script
132 {
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400133 sh """
134 mkdir -p ${logsDir}
135 _TAG=kail-startup kail -n ${infraNamespace} -n ${volthaNamespace} > ${logsDir}/onos-voltha-startup-combined.log &
136 """
137
Joey Armstrong54dec092023-08-03 18:21:38 -0400138 // if we're downloading a voltha-helm-charts patch, then install from a local copy of the charts
139 Boolean localCharts = false
Joey Armstrong642540a2023-08-10 10:26:36 -0400140
Joey Armstrong54dec092023-08-03 18:21:38 -0400141 if (volthaHelmChartsChange != ''
142 || gerritProject == 'voltha-helm-charts'
143 || isReleaseBranch(branch) // branch != 'master'
144 ) {
145 localCharts = true
146 }
Joey Armstrong642540a2023-08-10 10:26:36 -0400147
Joey Armstrong54dec092023-08-03 18:21:38 -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(', '))
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400156
Joey Armstrong54dec092023-08-03 18:21:38 -0400157 // -----------------------------------------------------------------------
158 // Rewrite localHelmFlags using array join, moving code around and
Joey Armstrong642540a2023-08-10 10:26:36 -0400159 // refactoring into standalone functions
Joey Armstrong54dec092023-08-03 18:21:38 -0400160 // -----------------------------------------------------------------------
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(' ')
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400175
Joey Armstrong54dec092023-08-03 18:21:38 -0400176 println("** localHelmFlags = ${localHelmFlags}")
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400177
Joey Armstrong54dec092023-08-03 18:21:38 -0400178 if (gerritProject != '') {
179 localHelmFlags = "${localHelmFlags} " + getVolthaImageFlags("${gerritProject}")
180 }
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400181
Joey Armstrong54dec092023-08-03 18:21:38 -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')
194 } // script
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400195
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400196 // -----------------------------------------------------------------------
197 // Intent: Replacing P_IDS with pgrep/pkill is a step forward.
198 // Why not simply use a pid file, capture _TAG=kail-startup above
199 // Grep runs the risk of terminating stray commands (??-good <=> bad-??)
Joey Armstrong54dec092023-08-03 18:21:38 -0400200 // -----------------------------------------------------------------------
201 script {
202 println('Try out pgrep/pkill commands')
Joey Armstrong642540a2023-08-10 10:26:36 -0400203 sh('''pgrep --list-full kail-startup || true''')
Joey Armstrong54dec092023-08-03 18:21:38 -0400204 }
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400205
206 // -----------------------------------------------------------------------
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400207 // stop logging
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400208 // -----------------------------------------------------------------------
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400209 sh """
210 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-startup" | grep -v grep | awk '{print \$1}')"
211 if [ -n "\$P_IDS" ]; then
212 echo \$P_IDS
213 for P_ID in \$P_IDS; do
214 kill -9 \$P_ID
215 done
216 fi
217 cd ${logsDir}
218 gzip -k onos-voltha-startup-combined.log
219 rm onos-voltha-startup-combined.log
220 """
221 }
222
223 sh """
224 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"&
225 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"&
226 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"&
227 bbsimDmiPortFwd=50075
228 for i in {0..${olts.toInteger() - 1}}; do
229 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"&
230 ((bbsimDmiPortFwd++))
231 done
232 if [ ${withMonitoring} = true ] ; then
233 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"&
234 fi
235 ps aux | grep port-forward
236 """
237
238 // setting ONOS log level
239 script
Joey Armstrong642540a2023-08-10 10:26:36 -0400240 {
Joey Armstrong54dec092023-08-03 18:21:38 -0400241 println('** setOnosLogLevels: ENTER')
242 setOnosLogLevels([
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400243 onosNamespace: infraNamespace,
244 apps: [
245 'org.opencord.dhcpl2relay',
246 'org.opencord.olt',
247 'org.opencord.aaa',
248 'org.opencord.maclearner',
249 'org.onosproject.net.flowobjective.impl.FlowObjectiveManager',
250 'org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager'
251 ],
252 logLevel: logLevel
253 ])
Joey Armstrong54dec092023-08-03 18:21:38 -0400254 println('** setOnosLogLevels: LEAVE')
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400255 } // script
256 } // if (teardown)
257 } // stage('Deploy Voltha')
258
Joey Armstrong642540a2023-08-10 10:26:36 -0400259 stage("Run test ${testTarget} on workflow ${workflow}")
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400260 {
261 sh """
Joey Armstrong54dec092023-08-03 18:21:38 -0400262 echo -e "\n** Monitor using mem_consumption.py ?"
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400263 if [ ${withMonitoring} = true ] ; then
264 mkdir -p "$WORKSPACE/voltha-pods-mem-consumption-${workflow}"
265 cd "$WORKSPACE/voltha-system-tests"
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400266 make venv-activate-script
267 set +u && source .venv/bin/activate && set -u
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400268 # Collect initial memory consumption
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400269 python scripts/mem_consumption.py -o $WORKSPACE/voltha-pods-mem-consumption-${workflow} -a 0.0.0.0:31301 -n ${volthaNamespace}
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400270 fi
271 """
272
273 sh """
Joey Armstrong54dec092023-08-03 18:21:38 -0400274 echo -e "\n** make testTarget=[${testTarget}]"
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400275 mkdir -p ${logsDir}
276 export ROBOT_MISC_ARGS="-d ${logsDir} ${params.extraRobotArgs} "
277 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}"
278 export KVSTOREPREFIX=voltha/voltha_voltha
279
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400280 make -C "$WORKSPACE/voltha-system-tests" ${testTarget}
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400281 """
282
283 getPodsInfo("${logsDir}")
284
285 sh """
Joey Armstrong54dec092023-08-03 18:21:38 -0400286 echo -e '\n** Gather robot Framework logs: ENTER'
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400287 # set +e
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400288 # collect logs collected in the Robot Framework StartLogging keyword
289 cd ${logsDir}
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400290 gzip *-combined.log
291 rm -f *-combined.log
Joey Armstrong54dec092023-08-03 18:21:38 -0400292
293 echo -e '** Gather robot Framework logs: LEAVE\n'
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400294 """
295
296 sh """
Joey Armstrong54dec092023-08-03 18:21:38 -0400297 echo -e '** Monitor pod-mem-consumption: ENTER'
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400298 if [ ${withMonitoring} = true ] ; then
299 cd "$WORKSPACE/voltha-system-tests"
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400300 make venv-activate-script
301 set +u && source .venv/bin/activate && set -u
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400302 # 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}
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400304 fi
Joey Armstrong54dec092023-08-03 18:21:38 -0400305 echo -e '** Monitor pod-mem-consumption: LEAVE\n'
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400306 """
307 } // stage
Joey Armstrong54dec092023-08-03 18:21:38 -0400308
309 return
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400310} // execute_test()
311
312// -----------------------------------------------------------------------
313// -----------------------------------------------------------------------
Joey Armstrong54dec092023-08-03 18:21:38 -0400314def collectArtifacts(exitStatus) {
Joey Armstrong642540a2023-08-10 10:26:36 -0400315 String iam = getIam('execute_test')
316
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400317 echo '''
318
319** -----------------------------------------------------------------------
320** collectArtifacts
321** -----------------------------------------------------------------------
322'''
Joey Armstrong642540a2023-08-10 10:26:36 -0400323 println("${iam}: ENTER (exitStatus=${exitStatus})")
324
325 getPodsInfo("$WORKSPACE/${exitStatus}")
326
327 sh """
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400328 kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/${exitStatus}/voltha.log
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400329 """
Joey Armstrong642540a2023-08-10 10:26:36 -0400330
331 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.txt,**/*.html,**/voltha-pods-mem-consumption-att/*,**/voltha-pods-mem-consumption-dt/*,**/voltha-pods-mem-consumption-tt/*'
332
333 sh(returnStdout:true, script: '''
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400334 sync
Joey Armstrong642540a2023-08-10 10:26:36 -0400335 echo '** Running: pgrep --list-full kail-startup (ENTER)'
336 pgrep --list-full 'kail-startup' || true
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400337 [[ $(pgrep --count kail) -gt 0 ]] && pkill --echo kail
Joey Armstrong642540a2023-08-10 10:26:36 -0400338 echo '** Running: pgrep --list-full kail-startup (LEAVE)'
339 ''')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400340
Joey Armstrong642540a2023-08-10 10:26:36 -0400341 println("${iam}: ENTER RobotPublisher")
342 step([$class: 'RobotPublisher',
343 disableArchiveOutput: false,
344 logFileName: '**/*/log*.html',
345 otherFiles: '',
346 outputFileName: '**/*/output*.xml',
347 outputPath: '.',
348 passThreshold: 100,
349 reportFileName: '**/*/report*.html',
350 unstableThreshold: 0,
351 onlyCritical: true]);
352 println("${iam}: LEAVE RobotPublisher")
353
354 println("${iam}: LEAVE (exitStatus=${exitStatus})")
355 return
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400356}
357
Joey Armstrong54dec092023-08-03 18:21:38 -0400358// -----------------------------------------------------------------------
359// Intent: main
360// -----------------------------------------------------------------------
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400361pipeline {
362
363 /* no label, executor is determined by JJB */
364 agent {
365 label "${params.buildNode}"
366 }
367 options {
368 timeout(time: "${timeout}", unit: 'MINUTES')
369 }
370 environment {
Joey Armstrong642540a2023-08-10 10:26:36 -0400371 KUBECONFIG = "$HOME/.kube/kind-${clusterName}"
372 VOLTCONFIG = "$HOME/.volt/config"
373 PATH = "$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
374 DIAGS_PROFILE = 'VOLTHA_PROFILE'
375 SSHPASS = 'karaf'
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400376 }
377 stages {
378 stage('Download Code') {
379 steps {
380 getVolthaCode([
381 branch: "${branch}",
382 gerritProject: "${gerritProject}",
383 gerritRefspec: "${gerritRefspec}",
384 volthaSystemTestsChange: "${volthaSystemTestsChange}",
385 volthaHelmChartsChange: "${volthaHelmChartsChange}",
386 ])
387 }
388 }
389
390 stage('Build patch v1.1')
391 {
392 // build the patch only if gerritProject is specified
393 when
394 {
395 expression
396 {
397 return !gerritProject.isEmpty()
398 }
399 }
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400400
401 steps
402 {
403 // NOTE that the correct patch has already been checked out
404 // during the getVolthaCode step
405 buildVolthaComponent("${gerritProject}")
406 }
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400407 }
408
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400409 // -----------------------------------------------------------------------
410 // -----------------------------------------------------------------------
Joey Armstrong642540a2023-08-10 10:26:36 -0400411 stage('Install Kail')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400412 {
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400413 steps
414 {
415 script
416 {
417 String cmd = [
418 'make',
Joey Armstrong9f184d32023-08-03 11:34:48 -0400419 '--no-print-directory',
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400420 '-C', "$WORKSPACE/voltha-system-tests",
421 "KAIL_PATH=\"$WORKSPACE/bin\"",
422 'kail',
423 ].join(' ')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400424
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400425 println(" ** Running: ${cmd}:\n")
426 sh("${cmd}")
427 } // script
428 } // steps
429 } // stage
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400430
431 // -----------------------------------------------------------------------
432 // -----------------------------------------------------------------------
Joey Armstrong642540a2023-08-10 10:26:36 -0400433 stage('Install Kind')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400434 {
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400435 steps
436 {
437 script
438 {
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400439
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400440 String cmd = [
441 'make',
Joey Armstrong9f184d32023-08-03 11:34:48 -0400442 '--no-print-directory',
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400443 '-C', "$WORKSPACE/voltha-system-tests",
444 "KIND_PATH=\"$WORKSPACE/bin\"",
445 'install-command-kind',
446 ].join(' ')
Joey Armstrong642540a2023-08-10 10:26:36 -0400447
Joey Armstrong2b2010d2023-08-02 21:47:20 -0400448 println(" ** Running: ${cmd}:\n")
449 sh("${cmd}")
450 } // script
451 } // steps
452 } // stage
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400453
454 // -----------------------------------------------------------------------
455 // -----------------------------------------------------------------------
456 stage('Create K8s Cluster')
457 {
458 steps
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400459 {
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400460 script
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400461 {
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400462 def clusterExists = sh(
463 returnStdout: true,
464 script: """kind get clusters | grep "${clusterName}" | wc -l""")
465
Joey Armstrong54dec092023-08-03 18:21:38 -0400466 if (clusterExists.trim() == '0')
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400467 {
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400468 createKubernetesCluster([nodes: 3, name: clusterName])
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400469 }
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400470 } // script
471 } // steps
472 } // stage('Create K8s Cluster')
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400473
Joey Armstrong642540a2023-08-10 10:26:36 -0400474 // -----------------------------------------------------------------------
475 // -----------------------------------------------------------------------
476 stage('Replace voltctl')
477 {
478 // if the project is voltctl, override the downloaded one with the built one
479 when {
480 expression {
481 return gerritProject == 'voltctl'
482 }
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400483 }
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400484
Joey Armstrong642540a2023-08-10 10:26:36 -0400485 // Hmmmm(?) where did the voltctl download happen ?
486 // Likely Makefile but would be helpful to document here.
487 steps
488 {
489 println("${iam} Running: installVoltctl($branch)")
490 installVoltctl("$branch")
491 } // steps
492 } // stage
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400493
Joey Armstrong642540a2023-08-10 10:26:36 -0400494 // -----------------------------------------------------------------------
495 // -----------------------------------------------------------------------
496 stage('Load image in kind nodes')
497 {
498 when {
499 expression {
500 return !gerritProject.isEmpty()
501 }
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400502 }
Joey Armstrong642540a2023-08-10 10:26:36 -0400503 steps {
504 loadToKind()
505 } // steps
506 } // stage
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400507
Joey Armstrong642540a2023-08-10 10:26:36 -0400508 // -----------------------------------------------------------------------
509 // -----------------------------------------------------------------------
510 stage('Parse and execute tests')
511 {
512 steps {
513 script {
514 def tests = readYaml text: testTargets
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400515
Joey Armstrong642540a2023-08-10 10:26:36 -0400516 tests.eachWithIndex { test, idx ->
517 println "** readYaml test suite[$idx]) test=[${test}]"
518 // def test = tests[i]
519 String target = test['target']
520 String workflow = test['workflow']
521 String flags = test['flags']
522 Boolean teardown = test['teardown'].toBoolean()
523 Boolean logging = test['logging'].toBoolean()
524 String testLogging = (logging) ? 'True' : 'False'
525
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400526 println "Executing test ${target} on workflow ${workflow} with logging ${testLogging} and extra flags ${flags}"
Joey Armstrong54dec092023-08-03 18:21:38 -0400527 println "Executing test ${target}: ENTER"
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400528 execute_test(target, workflow, testLogging, teardown, flags)
Joey Armstrong54dec092023-08-03 18:21:38 -0400529 println "Executing test ${target}: LEAVE"
530 } // for
Joey Armstrong642540a2023-08-10 10:26:36 -0400531
532 String iam = getIam('Parse and execute tests')
533 println("** ${iam} ran to completion")
Joey Armstrong54dec092023-08-03 18:21:38 -0400534 } // script
535 } // steps
Joey Armstrong7bcb5782023-06-07 12:25:57 -0400536 } // stage
537 } // stages
538
539 post
540 {
541 aborted { collectArtifacts('aborted') }
542 failure { collectArtifacts('failed') }
543 always { collectArtifacts('always') }
544 }
545} // pipeline
546
547// EOF