blob: ae5c58aa5dab121ef398c2516b32a24ed2518187 [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 Armstrong0251e962023-08-25 20:51:31 -040042// Intent: Difficult at times to determine when pipeline jobs have
43// regenerated. Hardcode a version string that can be assigned
44// per-script to be sure latest repository changes are being used.
45// -----------------------------------------------------------------------
46String pipelineVer() {
Joey Armstrong6146f7e2023-08-28 09:05:38 -040047 String version = '5addce3fac89095d103ac5c6eedff2bb02e9ec63'
Joey Armstrong0251e962023-08-25 20:51:31 -040048 return(version)
49}
50
51// -----------------------------------------------------------------------
Joey Armstrong06a68372023-07-24 16:37:16 -040052// Intent: Due to lack of a reliable stack trace, construct a literal.
Joey Armstrong0251e962023-08-25 20:51:31 -040053// Jenkins will re-write the call stack for serialization.S
54// -----------------------------------------------------------------------
55// Note: Hardcoded version string used to visualize changes in jenkins UI
Joey Armstrong06a68372023-07-24 16:37:16 -040056// -----------------------------------------------------------------------
Joey Armstrong97a8b882023-08-02 16:08:52 -040057String getIam(String func) {
Joey Armstrongb65ada32023-08-03 12:50:20 -040058 String branchName = branchName()
Joey Armstrong0251e962023-08-25 20:51:31 -040059 String version = pipelineVer()
Joey Armstrong06a68372023-07-24 16:37:16 -040060 String src = [
61 'ci-management',
62 'jjb',
63 'pipeline',
64 'voltha',
Joey Armstrongb65ada32023-08-03 12:50:20 -040065 branchName,
Joey Armstrong06a68372023-07-24 16:37:16 -040066 'bbsim-tests.groovy'
67 ].join('/')
68
Joey Armstrong0251e962023-08-25 20:51:31 -040069 String name = [src, version, func].join('::')
Joey Armstrong0e0a42b2023-08-02 21:04:21 -040070 return(name)
Joey Armstrong06a68372023-07-24 16:37:16 -040071}
72
73// -----------------------------------------------------------------------
Joey Armstrong0251e962023-08-25 20:51:31 -040074// Intent: Log progress message
75// -----------------------------------------------------------------------
76void enter(String name) {
77 // Announce ourselves for log usability
78 String iam = getIam(name)
79 println("${iam}: ENTER")
80 return
81}
82
83// -----------------------------------------------------------------------
84// Intent: Log progress message
85// -----------------------------------------------------------------------
86void leave(String name) {
87 // Announce ourselves for log usability
88 String iam = getIam(name)
89 println("${iam}: LEAVE")
90 return
91}
92
93// -----------------------------------------------------------------------
Joey Armstronge5aae1c2023-07-24 14:11:20 -040094// Intent: Determine if working on a release branch.
95// Note: Conditional is legacy, should also check for *-dev or *-pre
96// -----------------------------------------------------------------------
Joey Armstrong0251e962023-08-25 20:51:31 -040097Boolean isReleaseBranch(String name) {
Joey Armstronge5aae1c2023-07-24 14:11:20 -040098 // List modifiers = ['-dev', '-pre', 'voltha-x.y.z-pre']
Joey Armstrongb65ada32023-08-03 12:50:20 -040099 // if branchName in modifiers
100 return(name != 'master') // OR branchName.contains('-')
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400101}
102
103// -----------------------------------------------------------------------
Joey Armstrong0251e962023-08-25 20:51:31 -0400104// Intent: Iterate over a list of test suites and invoke.
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400105// -----------------------------------------------------------------------
Joey Armstrong0251e962023-08-25 20:51:31 -0400106void execute_test\
107(
108 String testTarget, // functional-single-kind-dt
109 String workflow, // dt
110 String testLogging, // 'True'
111 Boolean teardown, // true
112 String testSpecificHelmFlags=''
113) {
Joey Armstrongb65ada32023-08-03 12:50:20 -0400114 String infraNamespace = 'default'
115 String volthaNamespace = 'voltha'
116 String logsDir = "$WORKSPACE/${testTarget}"
Joey Armstrong293e16b2022-11-26 20:16:33 -0500117
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400118 // -----------------------------------------------------------------------
Joey Armstrong268442d2023-08-22 17:16:10 -0400119 // Intent: Cleanup stale port-forwarding
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400120 // -----------------------------------------------------------------------
Joey Armstrong0251e962023-08-25 20:51:31 -0400121 stage('Cleanup') {
122 if (teardown) {
Joey Armstrong84adc542023-04-11 14:47:34 -0400123 timeout(15) {
Joey Armstrong0251e962023-08-25 20:51:31 -0400124 script {
Joey Armstrongb65ada32023-08-03 12:50:20 -0400125 helmTeardown(['default', infraNamespace, volthaNamespace])
Joey Armstrong84adc542023-04-11 14:47:34 -0400126 }
Joey Armstrong0251e962023-08-25 20:51:31 -0400127 } // timeout
128
129 timeout(5) {
130 script {
131 enter('Cleanup')
132 // remove orphaned port-forward from different namespaces
Joey Armstrongebc18022023-08-26 13:20:49 -0400133 String proc = 'kubectl .*port-forward' // was 'port-forw'
Joey Armstrong0251e962023-08-25 20:51:31 -0400134 pgrep_proc(proc)
135 pkill_proc(proc)
Joey Armstrongebc18022023-08-26 13:20:49 -0400136
137 // todo: fatal unless (proc count==0)
138 pgrep_proc(proc)
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400139 leave('Cleanup')
Joey Armstrong0251e962023-08-25 20:51:31 -0400140 } // script
141 } // timeout
142 } // teardown
143 } // stage('Cleanup')
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500144
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400145 // -----------------------------------------------------------------------
146 // -----------------------------------------------------------------------
Joey Armstrong0251e962023-08-25 20:51:31 -0400147 stage('Deploy common infrastructure') {
148 script {
149 local dashargs = [
150 'kpi_exporter.enabled=false',
151 'dashboards.xos=false',
152 'dashboards.onos=false',
153 'dashboards.aaa=false',
154 'dashboards.voltha=false',
155 ].join(',')
156
157 local promargs = [
158 'prometheus.alertmanager.enabled=false',
159 'prometheus.pushgateway.enabled=false',
160 ].join(',')
161
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400162 sh(label : 'Deploy common infrastructure',
163 script : """
Hardik Windlasse1660492022-03-14 15:12:46 +0000164 helm repo add onf https://charts.opencord.org
165 helm repo update
Joey Armstrong0251e962023-08-25 20:51:31 -0400166
167 echo -e "\nwithMonitoring=[$withMonitoring]"
Hardik Windlasse1660492022-03-14 15:12:46 +0000168 if [ ${withMonitoring} = true ] ; then
169 helm install nem-monitoring onf/nem-monitoring \
Joey Armstrong0251e962023-08-25 20:51:31 -0400170 --set ${promargs} \
171 --set ${dashargs}
Hardik Windlasse1660492022-03-14 15:12:46 +0000172 fi
Joey Armstrong0251e962023-08-25 20:51:31 -0400173 """)
174 } // script
175 } // stage('Deploy Common Infra')
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500176
Joey Armstrong0251e962023-08-25 20:51:31 -0400177 // -----------------------------------------------------------------------
178 // [TODO] Check onos_log output
179 // -----------------------------------------------------------------------
180 stage('Deploy Voltha') {
181 if (teardown) {
182 timeout(10) {
183 script {
184 String iam = getIam('Deploy Voltha')
185 String onosLog = "${logsDir}/onos-voltha-startup-combined.log"
186 sh("""
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700187 mkdir -p ${logsDir}
Joey Armstrong0251e962023-08-25 20:51:31 -0400188 touch "$onosLog"
189 echo "** kail-startup ENTER: \$(date)" > "$onosLog"
Hardik Windlassec9341b2021-06-07 11:58:29 +0000190
Joey Armstrong0251e962023-08-25 20:51:31 -0400191 # Intermixed output (tee -a &) may get conflusing but let(s) see
192 # what messages are logged during startup.
193 # _TAG=ka7il-startup kail -n ${infraNamespace} -n ${volthaNamespace} >> "$onosLog" &
194 _TAG=kail-startup kail -n ${infraNamespace} -n ${volthaNamespace} | tee -a "$onosLog" &
195 """)
Joey Armstrongf404b642023-08-04 14:39:13 -0400196
Joey Armstrong0251e962023-08-25 20:51:31 -0400197 // if we're downloading a voltha-helm-charts patch, then install from a local copy of the charts
198 Boolean localCharts = false
Joey Armstrongf404b642023-08-04 14:39:13 -0400199
Joey Armstrong0251e962023-08-25 20:51:31 -0400200 if (volthaHelmChartsChange != ''
201 || gerritProject == 'voltha-helm-charts'
202 || isReleaseBranch(branch) // branch != 'master'
203 ) {
204 localCharts = true
205 }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000206
Joey Armstrong0251e962023-08-25 20:51:31 -0400207 String branchName = branchName()
208 Boolean isRelease = isReleaseBranch(branch)
209 println([
210 " ** localCharts=${localCharts}",
211 "branchName=${branchName}",
212 "branch=${branch}",
213 "branch=isReleaseBranch=${isRelease}",
214 ].join(', '))
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800215
Joey Armstrong0251e962023-08-25 20:51:31 -0400216 // -----------------------------------------------------------------------
217 // Rewrite localHelmFlags using array join, moving code around and
218 // refactoring into standalone functions
219 // -----------------------------------------------------------------------
220 // NOTE temporary workaround expose ONOS node ports
221 // -----------------------------------------------------------------------
222 String localHelmFlags = [
223 extraHelmFlags.trim(),
224 "--set global.log_level=${logLevel.toUpperCase()}",
225 '--set onos-classic.onosSshPort=30115',
226 '--set onos-classic.onosApiPort=30120',
227 '--set onos-classic.onosOfPort=31653',
228 '--set onos-classic.individualOpenFlowNodePorts=true',
229 testSpecificHelmFlags
230 ].join(' ')
Joey Armstrong28e86ee2023-08-03 15:22:29 -0400231
Joey Armstrong0251e962023-08-25 20:51:31 -0400232 println("** ${iam} localHelmFlags = ${localHelmFlags}")
Hardik Windlassec9341b2021-06-07 11:58:29 +0000233
Joey Armstrong0251e962023-08-25 20:51:31 -0400234 if (gerritProject != '') {
235 localHelmFlags = "${localHelmFlags} " + getVolthaImageFlags("${gerritProject}")
236 }
Matteo Scandolofcfc60d2021-02-24 09:06:48 -0800237
Joey Armstrong0251e962023-08-25 20:51:31 -0400238 println("** ${iam}: ENTER")
239 volthaDeploy([
240 infraNamespace: infraNamespace,
241 volthaNamespace: volthaNamespace,
242 workflow: workflow.toLowerCase(),
243 withMacLearning: enableMacLearning.toBoolean(),
244 extraHelmFlags: localHelmFlags,
245 localCharts: localCharts,
246 bbsimReplica: olts.toInteger(),
247 dockerRegistry: registry,
248 ])
249 println("** ${iam}: LEAVE")
250 } // script
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400251
Joey Armstrong0251e962023-08-25 20:51:31 -0400252 // -----------------------------------------------------------------------
253 // Intent: Replacing P_IDS with pgrep/pkill is a step forward.
254 // Why not simply use a pid file, capture _TAG=kail-startup above
255 // Grep runs the risk of terminating stray commands (??-good <=> bad-??)
256 // -----------------------------------------------------------------------
257 script {
258 String proc = '_TAG=kail-startup'
259
260 println("${iam}: ENTER")
261 println("${iam}: Shutdown process $proc")
262 pgrep_proc(proc)
263 pkill_proc(proc)
264 pgrep_proc(proc)
265 println("${iam}: LEAVE")
266 }
267
268 // -----------------------------------------------------------------------
269 // Bundle onos-voltha / kail logs
270 // -----------------------------------------------------------------------
271 sh("""
272cat <<EOM
273
274** -----------------------------------------------------------------------
275** Combine an compress voltha startup log(s)
276** -----------------------------------------------------------------------
277EOM
278 pushd "${logsDir}" || { echo "ERROR: pushd $logsDir failed"; exit 1; }
Hardik Windlassec9341b2021-06-07 11:58:29 +0000279 gzip -k onos-voltha-startup-combined.log
280 rm onos-voltha-startup-combined.log
Joey Armstrong0251e962023-08-25 20:51:31 -0400281 popd
282 """)
283 } // timeout(10)
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400284
Joey Armstrong0251e962023-08-25 20:51:31 -0400285 // -----------------------------------------------------------------------
286 // -----------------------------------------------------------------------
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400287 sh """
Hardik Windlassec9341b2021-06-07 11:58:29 +0000288 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"&
289 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"&
290 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"&
291 bbsimDmiPortFwd=50075
292 for i in {0..${olts.toInteger() - 1}}; do
293 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"&
294 ((bbsimDmiPortFwd++))
295 done
Hardik Windlass3bb089a2022-03-22 17:56:03 +0000296 if [ ${withMonitoring} = true ] ; then
297 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"&
298 fi
Hardik Windlassec9341b2021-06-07 11:58:29 +0000299 ps aux | grep port-forward
300 """
Joey Armstrong0251e962023-08-25 20:51:31 -0400301 // ---------------------------------
302 // Sanity check port-forward spawned
303 // ---------------------------------
304 script {
305 enter('port-forward check')
Joey Armstrongebc18022023-08-26 13:20:49 -0400306 // String proc = 'kubectl.*port-forward' // was 'port-forward'
Joey Armstrong0251e962023-08-25 20:51:31 -0400307 String proc = 'port-forward'
308 println("Display spawned ${proc}")
309 pgrep_proc(proc)
310 leave('port-forward check')
311 }
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500312
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400313 // setting ONOS log level
Joey Armstrong0251e962023-08-25 20:51:31 -0400314 script {
315 enter('setOnosLogLevels')
316 setOnosLogLevels([
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400317 onosNamespace: infraNamespace,
318 apps: [
319 'org.opencord.dhcpl2relay',
320 'org.opencord.olt',
321 'org.opencord.aaa',
322 'org.opencord.maclearner',
323 'org.onosproject.net.flowobjective.impl.FlowObjectiveManager',
324 'org.onosproject.net.flowobjective.impl.InOrderFlowObjectiveManager'
325 ],
326 logLevel: logLevel
327 ])
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400328 leave('setOnosLogLevels')
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400329 } // script
330 } // if (teardown)
331 } // stage('Deploy Voltha')
332
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400333 // -----------------------------------------------------------------------
334 // -----------------------------------------------------------------------
Joey Armstrongfd896522023-08-04 13:30:48 -0400335 stage("Run test ${testTarget} on workflow ${workflow}")
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400336 {
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400337 sh(
338 label : 'Monitor using mem_consumption.py',
339 script : """
Joey Armstrong0251e962023-08-25 20:51:31 -0400340 echo -e "\n** Monitor using mem_consumption.py ?"
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400341
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000342 if [ ${withMonitoring} = true ] ; then
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400343 cat <<EOM
344
345** -----------------------------------------------------------------------
346** Monitoring memory usage with mem_consumption.py
347** -----------------------------------------------------------------------
348EOM
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500349 mkdir -p "$WORKSPACE/voltha-pods-mem-consumption-${workflow}"
350 cd "$WORKSPACE/voltha-system-tests"
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400351
352 echo '** Installing python virtualenv'
353 make venv-activate-patched
354
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400355 set +u && source .venv/bin/activate && set -u
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000356 # Collect initial memory consumption
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400357 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 +0000358 fi
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400359
360 echo -e '** Monitor memory consumption: LEAVE\n'
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400361 """)
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400362
363 sh """
Joey Armstrong54dec092023-08-03 18:21:38 -0400364 echo -e "\n** make testTarget=[${testTarget}]"
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700365 mkdir -p ${logsDir}
Hardik Windlassd62442d2021-11-30 10:51:20 +0000366 export ROBOT_MISC_ARGS="-d ${logsDir} ${params.extraRobotArgs} "
Matteo Scandolo9c230bb2021-10-22 12:48:39 -0700367 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 +0000368 export KVSTOREPREFIX=voltha/voltha_voltha
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800369
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400370 make -C "$WORKSPACE/voltha-system-tests" ${testTarget}
Hardik Windlass72947302021-06-14 10:36:57 +0000371 """
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400372
373 getPodsInfo("${logsDir}")
374
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400375 sh(
376 label : 'Gather robot Framework logs',
377 script : """
Joey Armstrong54dec092023-08-03 18:21:38 -0400378 echo -e '\n** Gather robot Framework logs: ENTER'
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400379 # set +e
Hardik Windlassdad8e5c2021-11-11 05:19:47 +0000380 # collect logs collected in the Robot Framework StartLogging keyword
381 cd ${logsDir}
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400382 gzip *-combined.log
383 rm -f *-combined.log
Joey Armstrong54dec092023-08-03 18:21:38 -0400384
385 echo -e '** Gather robot Framework logs: LEAVE\n'
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400386 """)
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400387
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400388 // -----------------------------------------------------------------------
389 // -----------------------------------------------------------------------
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400390 sh(
391 label : 'Monitor pod-mem-consumption',
392 script : """
Joey Armstrong54dec092023-08-03 18:21:38 -0400393 echo -e '** Monitor pod-mem-consumption: ENTER'
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000394 if [ ${withMonitoring} = true ] ; then
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400395 cat <<EOM
396
397** -----------------------------------------------------------------------
398** Monitoring pod-memory-consumption using mem_consumption.py
399** -----------------------------------------------------------------------
400EOM
Joey Armstrong8c6f6482023-01-12 12:31:44 -0500401 cd "$WORKSPACE/voltha-system-tests"
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400402
403 echo '** Installing python virtualenv'
404 make venv-activate-patched
405
Joey Armstronge5aae1c2023-07-24 14:11:20 -0400406 set +u && source .venv/bin/activate && set -u
Hardik Windlass8cd517c2022-03-22 04:01:40 +0000407 # Collect memory consumption of voltha pods once all the tests are complete
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400408 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 +0000409 fi
Joey Armstrong54dec092023-08-03 18:21:38 -0400410 echo -e '** Monitor pod-mem-consumption: LEAVE\n'
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400411 """)
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400412 } // stage
Joey Armstrongb65ada32023-08-03 12:50:20 -0400413
414 return
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400415} // execute_test()
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800416
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400417// -----------------------------------------------------------------------
418// -----------------------------------------------------------------------
Joey Armstrongb65ada32023-08-03 12:50:20 -0400419def collectArtifacts(exitStatus) {
Joey Armstrong0251e962023-08-25 20:51:31 -0400420 script {
421 String iam = getIam('collectArtifacts')
422 println("${iam}: ENTER (exitStatus=${exitStatus})")
423 }
Joey Armstrongcd419122023-08-07 14:56:39 -0400424
Joey Armstrong97a8b882023-08-02 16:08:52 -0400425 echo '''
426
427** -----------------------------------------------------------------------
428** collectArtifacts
429** -----------------------------------------------------------------------
430'''
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400431
Joey Armstrongcd419122023-08-07 14:56:39 -0400432 getPodsInfo("$WORKSPACE/${exitStatus}")
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400433
Joey Armstrongcd419122023-08-07 14:56:39 -0400434 sh """
Joey Armstrong0eb8bd82023-07-10 13:26:25 -0400435 kubectl logs -n voltha -l app.kubernetes.io/part-of=voltha > $WORKSPACE/${exitStatus}/voltha.log
Hardik Windlassec9341b2021-06-07 11:58:29 +0000436 """
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400437
Joey Armstrongcd419122023-08-07 14:56:39 -0400438 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.txt,**/*.html,**/voltha-pods-mem-consumption-att/*,**/voltha-pods-mem-consumption-dt/*,**/voltha-pods-mem-consumption-tt/*'
Joey Armstrong66fcb4e2023-08-11 12:09:24 -0400439
Joey Armstrong0251e962023-08-25 20:51:31 -0400440 script {
441 println("${iam}: ENTER")
442 pgrep_proc('kail-startup')
443 pkill_proc('kail')
444 println("${iam}: LEAVE")
445 }
Joey Armstrong97a8b882023-08-02 16:08:52 -0400446
Joey Armstrongcd419122023-08-07 14:56:39 -0400447 println("${iam}: ENTER RobotPublisher")
448 step([$class: 'RobotPublisher',
Joey Armstrong0251e962023-08-25 20:51:31 -0400449 disableArchiveOutput: false,
450 logFileName: '**/*/log*.html',
451 otherFiles: '',
452 outputFileName: '**/*/output*.xml',
453 outputPath: '.',
454 passThreshold: 100,
455 reportFileName: '**/*/report*.html',
456 unstableThreshold: 0,
457 onlyCritical: true])
Joey Armstrongcd419122023-08-07 14:56:39 -0400458 println("${iam}: LEAVE RobotPublisher")
459
460 println("${iam}: LEAVE (exitStatus=${exitStatus})")
461 return
Hardik Windlassec9341b2021-06-07 11:58:29 +0000462}
463
Joey Armstrongb65ada32023-08-03 12:50:20 -0400464// -----------------------------------------------------------------------
465// Intent: main
466// -----------------------------------------------------------------------
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800467pipeline {
Joey Armstrong0251e962023-08-25 20:51:31 -0400468 /* no label, executor is determined by JJB */
469 agent {
470 label "${params.buildNode}"
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800471 }
Joey Armstrong84adc542023-04-11 14:47:34 -0400472
Joey Armstrong0251e962023-08-25 20:51:31 -0400473 options {
474 timeout(time: "${timeout}", unit: 'MINUTES')
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800475 }
Joey Armstronged161f72023-04-11 13:16:59 -0400476
Joey Armstrong0251e962023-08-25 20:51:31 -0400477 environment {
478 KUBECONFIG = "$HOME/.kube/kind-${clusterName}"
479 VOLTCONFIG = "$HOME/.volt/config"
480 PATH = "$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
481 DIAGS_PROFILE = 'VOLTHA_PROFILE'
482 SSHPASS = 'karaf'
483 }
Joey Armstrong0e0a42b2023-08-02 21:04:21 -0400484
Joey Armstrong0251e962023-08-25 20:51:31 -0400485 stages {
486 stage('Download Code') {
Joey Armstrongf404b642023-08-04 14:39:13 -0400487 steps {
Joey Armstrong0251e962023-08-25 20:51:31 -0400488 getVolthaCode([
489 branch: "${branch}",
490 gerritProject: "${gerritProject}",
491 gerritRefspec: "${gerritRefspec}",
492 volthaSystemTestsChange: "${volthaSystemTestsChange}",
493 volthaHelmChartsChange: "${volthaHelmChartsChange}",
494 ])
495 }
496 }
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400497
Joey Armstrong0251e962023-08-25 20:51:31 -0400498 stage('Build patch v1.1') {
499 // build the patch only if gerritProject is specified
500 when {
501 expression { return !gerritProject.isEmpty() }
502 }
503
504 steps {
505 // NOTE that the correct patch has already been checked out
506 // during the getVolthaCode step
507 buildVolthaComponent("${gerritProject}")
508 }
509 }
510
511 // -----------------------------------------------------------------------
512 // -----------------------------------------------------------------------
513 stage('Install Kail')
514 {
515 steps
516 {
517 script
518 {
519 String cmd = [
520 'make',
521 '--no-print-directory',
522 '-C', "$WORKSPACE/voltha-system-tests",
523 "KAIL_PATH=\"$WORKSPACE/bin\"",
524 'kail',
525 ].join(' ')
526
527 println(" ** Running: ${cmd}")
528 sh("${cmd}")
529 } // script
530 } // steps
531 } // stage
532
533 // -----------------------------------------------------------------------
534 // -----------------------------------------------------------------------
535 stage('Install Tools') {
536 steps {
537 script {
538 String branchName = branchName()
539 String iam = getIam('Install Tools')
540
541 println("${iam}: ENTER (branch=$branch)")
542 installKind(branch) // needed early by stage(Cleanup)
543 println("${iam}: LEAVE (branch=$branch)")
544 } // script
545 } // steps
546 } // stage
547
548 // -----------------------------------------------------------------------
549 // -----------------------------------------------------------------------
550 stage('Create K8s Cluster') {
551 steps {
552 script {
553 def clusterExists = sh(
554 returnStdout: true,
555 script: """kind get clusters | grep "${clusterName}" | wc -l""")
556
557 if (clusterExists.trim() == '0') {
558 createKubernetesCluster([nodes: 3, name: clusterName])
559 }
560 } // script
561 } // steps
562 } // stage('Create K8s Cluster')
563
564 // -----------------------------------------------------------------------
565 // -----------------------------------------------------------------------
566 stage('Replace voltctl') {
567 // if the project is voltctl, override the downloaded one with the built one
568 when {
569 expression { return gerritProject == 'voltctl' }
570 }
571
572 // Hmmmm(?) where did the voltctl download happen ?
573 // Likely Makefile but would be helpful to document here.
574 steps {
575 script {
576 String iam = getIam('Replace voltctl')
577
578 println("${iam} Running: installVoltctl($branch)")
579 println("${iam}: ENTER")
580 installVoltctl("$branch")
581 println("${iam}: LEAVE")
582 } // script
583 } // step
584 } // stage
585
586 // -----------------------------------------------------------------------
587 // -----------------------------------------------------------------------
588 stage('Load image in kind nodes')
589 {
590 when {
591 expression { return !gerritProject.isEmpty() }
592 }
593 steps {
594 loadToKind()
595 } // steps
596 } // stage
597
598 // -----------------------------------------------------------------------
599 // [TODO] verify testing output
600 // -----------------------------------------------------------------------
601 stage('Parse and execute tests')
602 {
603 steps {
604 script {
605 // Announce ourselves for log usability
606 enter('Parse and execute tests')
607
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400608 def tests = readYaml text: testTargets // typeof == Map (?)
Joey Armstrong0251e962023-08-25 20:51:31 -0400609 println("** [DEBUG]: tests=$tests")
610
611 // Display expected tests for times when output goes dark
612 tests.eachWithIndex { test, idx ->
613 String target = test['target']
614 println("** test[${idx}]: ${target}\n")
615 }
616
617 println('''
618** -----------------------------------------------------------------------
619** NOTE: For odd/silent job failures verify a few details
620** - All tests mentioned in the tests-to-run index were logged.
621** - Test suites display ENTER/LEAVE mesasge pairs.
622** - Processing terminated prematurely when LEAVE strings are missing.
623** -----------------------------------------------------------------------
624''')
625 tests.eachWithIndex { test, idx ->
626 println "** readYaml test suite[$idx]) test=[${test}]"
627
Joey Armstrongf404b642023-08-04 14:39:13 -0400628 String target = test['target']
629 String workflow = test['workflow']
630 String flags = test['flags']
631 Boolean teardown = test['teardown'].toBoolean()
632 Boolean logging = test['logging'].toBoolean()
633 String testLogging = (logging) ? 'True' : 'False'
634
Joey Armstrong0251e962023-08-25 20:51:31 -0400635 print("""
Joey Armstrong268442d2023-08-22 17:16:10 -0400636** -----------------------------------------------------------------------
Joey Armstrong0251e962023-08-25 20:51:31 -0400637** Executing test ${target} on workflow ${workflow} with logging ${testLogging} and extra flags ${flags}
Joey Armstrong268442d2023-08-22 17:16:10 -0400638** -----------------------------------------------------------------------
Joey Armstrong268442d2023-08-22 17:16:10 -0400639""")
640
Joey Armstrong0251e962023-08-25 20:51:31 -0400641 try {
Joey Armstrong6146f7e2023-08-28 09:05:38 -0400642 enter("execute_test (target=$target)")
Joey Armstrong0251e962023-08-25 20:51:31 -0400643 execute_test(target, workflow, testLogging, teardown, flags)
644 }
645 catch (Exception err) {
646 println("** ${iam}: EXCEPTION ${err}")
647 }
648 finally {
649 leave("execute_test (target=$target)")
650 }
Joey Armstrongb65ada32023-08-03 12:50:20 -0400651 } // for
Joey Armstrong0251e962023-08-25 20:51:31 -0400652 // Premature exit if this message is not logged
653 leave('Parse and execute tests')
Joey Armstrongb65ada32023-08-03 12:50:20 -0400654 } // script
655 } // steps
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400656 } // stage
657 } // stages
Joey Armstrong84adc542023-04-11 14:47:34 -0400658
659 post
660 {
661 aborted { collectArtifacts('aborted') }
662 failure { collectArtifacts('failed') }
Joey Armstrongbf492922023-04-13 17:05:09 -0400663 always { collectArtifacts('always') }
Matteo Scandolo42f6e572021-01-25 15:11:34 -0800664 }
Joey Armstrong2d5a7c12023-04-13 09:37:42 -0400665} // pipeline
Joey Armstronged161f72023-04-11 13:16:59 -0400666
Joey Armstrong0251e962023-08-25 20:51:31 -0400667// [EOF] - 2