blob: e86d61f53be4385898bf0b7d52b4c2b9726cb156 [file] [log] [blame]
Matteo Scandolofff6e062020-04-29 13:36:33 -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 {
23 label "${params.buildNode}"
24 }
25 options {
26 timeout(time: 90, unit: 'MINUTES')
27 }
28 environment {
29 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
30 VOLTCONFIG="$HOME/.volt/config-minimal"
Andrea Campanella919361e2020-09-21 14:27:19 +020031 PATH="$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Matteo Scandolo4d1a12f2020-12-07 16:17:12 -080032 NAME="minimal"
Matteo Scandolofff6e062020-04-29 13:36:33 -070033 FANCY=0
34 WITH_SIM_ADAPTERS="n"
35 WITH_RADIUS="y"
36 WITH_BBSIM="y"
37 DEPLOY_K8S="y"
38 VOLTHA_LOG_LEVEL="DEBUG"
Andrea Campanellaa0cd5be2020-09-07 15:47:18 +020039 CONFIG_SADIS="external"
40 BBSIM_CFG="configs/bbsim-sadis-att.yaml"
Matteo Scandolofff6e062020-04-29 13:36:33 -070041 ROBOT_MISC_ARGS="-d $WORKSPACE/RobotLogs"
Matteo Scandolo697b8b82021-01-27 13:07:59 -080042 EXTRA_HELM_FLAGS=" --set global.image_registry=mirror.registry.opennetworking.org/ --set defaults.image_registry=mirror.registry.opennetworking.org/ "
Matteo Scandolofff6e062020-04-29 13:36:33 -070043 }
Matteo Scandolofff6e062020-04-29 13:36:33 -070044 stages {
Andrea Campanella919361e2020-09-21 14:27:19 +020045 stage('Clone kind-voltha') {
Matteo Scandolofff6e062020-04-29 13:36:33 -070046 steps {
Andrea Campanella919361e2020-09-21 14:27:19 +020047 checkout([
48 $class: 'GitSCM',
49 userRemoteConfigs: [[
50 url: "https://gerrit.opencord.org/kind-voltha",
51 refspec: "${kindVolthaChange}"
52 ]],
53 branches: [[ name: "master", ]],
54 extensions: [
55 [$class: 'WipeWorkspace'],
56 [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"],
57 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
58 ],
59 ])
60 sh """
61 if [ '${kindVolthaChange}' != '' ] ; then
62 cd $WORKSPACE/kind-voltha
63 git fetch https://gerrit.opencord.org/kind-voltha ${kindVolthaChange} && git checkout FETCH_HEAD
64 fi
65 """
Matteo Scandolofff6e062020-04-29 13:36:33 -070066 }
67 }
Andrea Campanella919361e2020-09-21 14:27:19 +020068 stage('Clone voltha-system-tests') {
69 steps {
70 checkout([
71 $class: 'GitSCM',
72 userRemoteConfigs: [[
73 url: "https://gerrit.opencord.org/voltha-system-tests",
74 refspec: "${volthaSystemTestsChange}"
75 ]],
76 branches: [[ name: "${branch}", ]],
77 extensions: [
78 [$class: 'WipeWorkspace'],
79 [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"],
80 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
81 ],
82 ])
83 sh """
84 if [ '${volthaSystemTestsChange}' != '' ] ; then
85 cd $WORKSPACE/voltha-system-tests
86 git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD
87 fi
88 """
89 }
90 }
91 // If the repo under test is not kind-voltha
92 // then download it and checkout the patch
93 stage('Download Patch') {
94 when {
95 expression {
96 return "${gerritProject}" != 'kind-voltha';
97 }
98 }
99 steps {
100 checkout([
101 $class: 'GitSCM',
102 userRemoteConfigs: [[
103 url: "https://gerrit.opencord.org/${gerritProject}",
104 refspec: "${gerritRefspec}"
105 ]],
106 branches: [[ name: "${branch}", ]],
107 extensions: [
108 [$class: 'WipeWorkspace'],
109 [$class: 'RelativeTargetDirectory', relativeTargetDir: "${gerritProject}"],
110 [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false],
111 ],
112 ])
113 sh """
114 pushd $WORKSPACE/${gerritProject}
115 git fetch https://gerrit.opencord.org/${gerritProject} ${gerritRefspec} && git checkout FETCH_HEAD
116 echo "Currently on commit: \n"
117 git log -1 --oneline
118 popd
119 """
120 }
121 }
122 // If the repo under test is kind-voltha we don't need to download it again,
123 // as we already have it, simply checkout the patch
124 stage('Checkout kind-voltha patch') {
125 when {
126 expression {
127 return "${gerritProject}" == 'kind-voltha';
128 }
129 }
Matteo Scandolofff6e062020-04-29 13:36:33 -0700130 steps {
131 sh """
Andrea Campanella919361e2020-09-21 14:27:19 +0200132 cd $WORKSPACE/kind-voltha
133 git fetch https://gerrit.opencord.org/kind-voltha ${gerritRefspec} && git checkout FETCH_HEAD
134 """
Matteo Scandolofff6e062020-04-29 13:36:33 -0700135 }
136 }
137 stage('Create K8s Cluster') {
138 steps {
139 sh """
Andrea Campanella919361e2020-09-21 14:27:19 +0200140 cd $WORKSPACE/kind-voltha/
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800141
142 if [ "${branch}" != "master" ]; then
143 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
144 source "$WORKSPACE/kind-voltha/releases/${branch}"
145 else
146 echo "on master, using default settings for kind-voltha"
147 fi
148
Matteo Scandolofff6e062020-04-29 13:36:33 -0700149 JUST_K8S=y ./voltha up
Andrea Campanella919361e2020-09-21 14:27:19 +0200150 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/kind-voltha/bin"
Matteo Scandolofff6e062020-04-29 13:36:33 -0700151 """
152 }
153 }
154
155 stage('Build Images') {
156 steps {
157 sh """
Matteo Scandolo4adf1192020-12-15 09:44:14 -1000158 make -C $WORKSPACE/voltha-openonu-adapter-go DOCKER_REGISTRY=mirror.registry.opennetworking.org/ DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build
Matteo Scandolofff6e062020-04-29 13:36:33 -0700159 """
160 }
161 }
162
163 stage('Push Images') {
164 steps {
165 sh '''
166 docker images | grep citest
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800167 for image in \$(docker images -f "reference=*/*/*citest" --format "{{.Repository}}"); do echo "Pushing \$image to nodes"; kind load docker-image \$image:citest --name voltha-\$NAME --nodes voltha-\$NAME-control-plane,voltha-\$NAME-worker,voltha-\$NAME-worker2; done
Matteo Scandolofff6e062020-04-29 13:36:33 -0700168 '''
169 }
170 }
171 stage('Deploy Voltha') {
172 steps {
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800173 sh """
TorstenThieme326e7972021-01-19 14:27:59 +0000174 export EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${extraHelmFlags} "
Matteo Scandolofff6e062020-04-29 13:36:33 -0700175
176 IMAGES="adapter_open_onu_go"
177
178 for I in \$IMAGES
179 do
180 EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never "
181 done
182
Andrea Campanella919361e2020-09-21 14:27:19 +0200183 cd $WORKSPACE/kind-voltha/
Matteo Scandolofff6e062020-04-29 13:36:33 -0700184 echo \$EXTRA_HELM_FLAGS
Matteo Scandoloaca27622020-12-11 09:04:07 -0800185
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800186 if [ "${branch}" != "master" ]; then
187 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
188 source "$WORKSPACE/kind-voltha/releases/${branch}"
189 else
190 echo "on master, using default settings for kind-voltha"
191 fi
192
Matteo Scandolofff6e062020-04-29 13:36:33 -0700193 ./voltha up
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800194 """
Matteo Scandolofff6e062020-04-29 13:36:33 -0700195 }
196 }
197
Andrea Campanellaa2f32c32020-12-17 18:30:47 +0100198 stage('Run E2E Tests 1t8gem') {
199 environment {
200 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/1t8gem"
201 }
202 steps {
203 sh '''
204 cd $WORKSPACE/kind-voltha/
205 #source $NAME-env.sh
206 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down
207
TorstenThieme326e7972021-01-19 14:27:59 +0000208 export EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${extraHelmFlags} "
Andrea Campanellaa2f32c32020-12-17 18:30:47 +0100209
210 IMAGES="adapter_open_onu_go"
211
212 for I in \$IMAGES
213 do
214 EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never "
215 done
216 #1t8gem
217 mkdir -p $WORKSPACE/1t8gem
Matteo Scandolof566cc42020-12-11 14:05:29 -0800218 _TAG=kail-1t8gem kail -n voltha -n default > $WORKSPACE/1t8gem/onos-voltha-combined.log &
219
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800220 if [ "${branch}" != "master" ]; then
221 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
222 source "$WORKSPACE/kind-voltha/releases/${branch}"
223 else
224 echo "on master, using default settings for kind-voltha"
225 fi
226
Andrea Campanellaa2f32c32020-12-17 18:30:47 +0100227 DEPLOY_K8S=n ./voltha up
228
Matteo Scandolof566cc42020-12-11 14:05:29 -0800229 mkdir -p $ROBOT_LOGS_DIR/1t8gem
Andrea Campanellaa2f32c32020-12-17 18:30:47 +0100230 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR"
Matteo Scandolof566cc42020-12-11 14:05:29 -0800231 export TARGET_1T8GEM=1t8gem-openonu-go-adapter-test
Andrea Campanella71bb9102021-01-28 11:24:56 +0100232
233 if [ "${branch}" != "voltha-2.6" ]; then
234 export NAME=voltha_voltha
235 fi
Matteo Scandolof566cc42020-12-11 14:05:29 -0800236
237 make -C $WORKSPACE/voltha-system-tests \$TARGET_1T8GEM || true
238
239 # stop logging
240 P_IDS="$(ps e -ww -A | grep "_TAG=kail-1t8gem" | grep -v grep | awk '{print $1}')"
241 if [ -n "$P_IDS" ]; then
242 echo $P_IDS
243 for P_ID in $P_IDS; do
244 kill -9 $P_ID
245 done
246 fi
247
248 # get pods information
249 kubectl get pods -o wide --all-namespaces > $WORKSPACE/1t8gem/pods.txt || true
Matteo Scandolofff6e062020-04-29 13:36:33 -0700250 '''
251 }
252 }
Andrea Campanella40ff56f2020-05-11 15:22:29 +0200253
TorstenThieme987a7302020-09-23 08:54:58 +0000254 stage('DT workflow') {
255 environment {
256 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DTWorkflow"
257 }
258 steps {
259 sh '''
260 cd $WORKSPACE/kind-voltha/
261 #source $NAME-env.sh
262 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down
263
TorstenThieme326e7972021-01-19 14:27:59 +0000264 export EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${extraHelmFlags} "
TorstenThieme987a7302020-09-23 08:54:58 +0000265
266 IMAGES="adapter_open_onu_go"
267
268 for I in \$IMAGES
269 do
270 EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never "
271 done
272
273 # Workflow-specific flags
274 export WITH_RADIUS=no
275 export WITH_EAPOL=no
276 export WITH_DHCP=no
277 export WITH_IGMP=no
278 export CONFIG_SADIS="external"
279 export BBSIM_CFG="configs/bbsim-sadis-dt.yaml"
280
Matteo Scandoloaca27622020-12-11 09:04:07 -0800281 # start logging
282 mkdir -p $WORKSPACE/dt
283 _TAG=kail-dt kail -n voltha -n default > $WORKSPACE/dt/onos-voltha-combined.log &
284
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800285 if [ "${branch}" != "master" ]; then
286 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
287 source "$WORKSPACE/kind-voltha/releases/${branch}"
288 else
289 echo "on master, using default settings for kind-voltha"
290 fi
291
TorstenThieme987a7302020-09-23 08:54:58 +0000292 DEPLOY_K8S=n ./voltha up
293
294 mkdir -p $ROBOT_LOGS_DIR
295 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch"
296
297 # By default, all tests tagged 'sanityDt' are run. This covers basic functionality
298 # like running through the DT workflow for a single subscriber.
299 export TARGET=sanity-kind-dt
300
301 # If the Gerrit comment contains a line with "functional tests" then run the full
302 # functional test suite. This covers tests tagged either 'sanityDt' or 'functionalDt'.
303 # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line
304 REGEX="functional tests"
305 if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then
306 TARGET=functional-single-kind-dt
307 fi
308
309 make -C $WORKSPACE/voltha-system-tests \$TARGET || true
Matteo Scandoloaca27622020-12-11 09:04:07 -0800310
311 # stop logging
312 P_IDS="$(ps e -ww -A | grep "_TAG=kail-dt" | grep -v grep | awk '{print $1}')"
313 if [ -n "$P_IDS" ]; then
314 echo $P_IDS
315 for P_ID in $P_IDS; do
316 kill -9 $P_ID
317 done
318 fi
319
320 # get pods information
Matteo Scandolof566cc42020-12-11 14:05:29 -0800321 kubectl get pods -o wide --all-namespaces > $WORKSPACE/dt/pods.txt || true
TorstenThieme987a7302020-09-23 08:54:58 +0000322 '''
323 }
324 }
325
TorstenThieme30b7a322020-09-28 11:13:18 +0000326 stage('ATT workflow') {
327 environment {
328 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ATTWorkflow"
329 }
330 steps {
331 sh '''
332 cd $WORKSPACE/kind-voltha/
333 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down
Matteo Scandolofff6e062020-04-29 13:36:33 -0700334
TorstenThieme326e7972021-01-19 14:27:59 +0000335 export EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${extraHelmFlags} "
TorstenThieme30b7a322020-09-28 11:13:18 +0000336
337 IMAGES="adapter_open_onu_go"
338
339 for I in \$IMAGES
340 do
341 EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never "
342 done
343
344 # Workflow-specific flags
345 export WITH_RADIUS=yes
346 export WITH_EAPOL=yes
347 export WITH_BBSIM=yes
348 export DEPLOY_K8S=yes
349 export CONFIG_SADIS="external"
350 export BBSIM_CFG="configs/bbsim-sadis-att.yaml"
351
352 if [ "${gerritProject}" = "voltctl" ]; then
353 export VOLTCTL_VERSION=$(cat $WORKSPACE/voltctl/VERSION)
354 cp $WORKSPACE/voltctl/voltctl $WORKSPACE/kind-voltha/bin/voltctl
355 md5sum $WORKSPACE/kind-voltha/bin/voltctl
356 fi
357
Matteo Scandoloaca27622020-12-11 09:04:07 -0800358 # start logging
359 mkdir -p $WORKSPACE/att
360 _TAG=kail-att kail -n voltha -n default > $WORKSPACE/att/onos-voltha-combined.log &
361
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800362 if [ "${branch}" != "master" ]; then
363 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
364 source "$WORKSPACE/kind-voltha/releases/${branch}"
365 else
366 echo "on master, using default settings for kind-voltha"
367 fi
368
TorstenThieme30b7a322020-09-28 11:13:18 +0000369 DEPLOY_K8S=n ./voltha up
370
371 mkdir -p $ROBOT_LOGS_DIR
372 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch"
373
374 # By default, all tests tagged 'sanity' are run. This covers basic functionality
375 # like running through the ATT workflow for a single subscriber.
376 export TARGET=sanity-single-kind
377
378 # If the Gerrit comment contains a line with "functional tests" then run the full
379 # functional test suite. This covers tests tagged either 'sanity' or 'functional'.
380 # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line
381 REGEX="functional tests"
382 if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then
383 TARGET=functional-single-kind
384 fi
385
386 make -C $WORKSPACE/voltha-system-tests \$TARGET || true
Matteo Scandoloaca27622020-12-11 09:04:07 -0800387
388 # stop logging
389 P_IDS="$(ps e -ww -A | grep "_TAG=kail-att" | grep -v grep | awk '{print $1}')"
390 if [ -n "$P_IDS" ]; then
391 echo $P_IDS
392 for P_ID in $P_IDS; do
393 kill -9 $P_ID
394 done
395 fi
396
397 # get pods information
Matteo Scandolof566cc42020-12-11 14:05:29 -0800398 kubectl get pods -o wide --all-namespaces > $WORKSPACE/att/pods.txt || true
TorstenThieme30b7a322020-09-28 11:13:18 +0000399 '''
400 }
401 }
Andrea Campanella50e3a0b2020-10-01 06:28:08 +0000402
403 stage('TT workflow') {
404 environment {
405 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/TTWorkflow"
406 }
407 steps {
408 sh '''
409 cd $WORKSPACE/kind-voltha/
410 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down
411
TorstenThieme326e7972021-01-19 14:27:59 +0000412 export EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${extraHelmFlags} "
Andrea Campanella50e3a0b2020-10-01 06:28:08 +0000413
414 IMAGES="adapter_open_onu_go"
415
416 for I in \$IMAGES
417 do
418 EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never "
419 done
420
421 # Workflow-specific flags
422 export WITH_RADIUS=no
423 export WITH_EAPOL=no
424 export WITH_DHCP=yes
425 export WITH_IGMP=yes
426 export CONFIG_SADIS="external"
427 export BBSIM_CFG="configs/bbsim-sadis-tt.yaml"
428
Matteo Scandoloaca27622020-12-11 09:04:07 -0800429 # start logging
430 mkdir -p $WORKSPACE/tt
431 _TAG=kail-tt kail -n voltha -n default > $WORKSPACE/tt/onos-voltha-combined.log &
432
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800433 if [ "${branch}" != "master" ]; then
434 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
435 source "$WORKSPACE/kind-voltha/releases/${branch}"
436 else
437 echo "on master, using default settings for kind-voltha"
438 fi
439
Andrea Campanella50e3a0b2020-10-01 06:28:08 +0000440 DEPLOY_K8S=n ./voltha up
441
442 mkdir -p $ROBOT_LOGS_DIR
443 export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch"
444
445 # By default, all tests tagged 'sanityTt' are run. This covers basic functionality
446 # like running through the TT workflow for a single subscriber.
447 export TARGET=sanity-kind-tt
448
449 # If the Gerrit comment contains a line with "functional tests" then run the full
450 # functional test suite. This covers tests tagged either 'sanityTt' or 'functionalTt'.
451 # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line
452 REGEX="functional tests"
453 if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then
454 TARGET=functional-single-kind-tt
455 fi
456
457 make -C $WORKSPACE/voltha-system-tests \$TARGET || true
Matteo Scandoloaca27622020-12-11 09:04:07 -0800458
459 # stop logging
460 P_IDS="$(ps e -ww -A | grep "_TAG=kail-tt" | grep -v grep | awk '{print $1}')"
461 if [ -n "$P_IDS" ]; then
462 echo $P_IDS
463 for P_ID in $P_IDS; do
464 kill -9 $P_ID
465 done
466 fi
467
468 # get pods information
Matteo Scandolof566cc42020-12-11 14:05:29 -0800469 kubectl get pods -o wide --all-namespaces > $WORKSPACE/tt/pods.txt || true
Andrea Campanella50e3a0b2020-10-01 06:28:08 +0000470 '''
471 }
472 }
TorstenThieme30b7a322020-09-28 11:13:18 +0000473 }
Matteo Scandolofff6e062020-04-29 13:36:33 -0700474 post {
475 always {
476 sh '''
477 set +e
Matteo Scandolo7eba41c2020-12-15 08:59:36 -1000478 # get pods information
Matteo Scandolo697b8b82021-01-27 13:07:59 -0800479 kubectl get pods -o wide --all-namespaces
Matteo Scandolo7eba41c2020-12-15 08:59:36 -1000480 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}"
481 helm ls
Matteo Scandolofff6e062020-04-29 13:36:33 -0700482
483 sync
484 pkill kail || true
Andrea Campanella919361e2020-09-21 14:27:19 +0200485 md5sum $WORKSPACE/kind-voltha/bin/voltctl
Matteo Scandolofff6e062020-04-29 13:36:33 -0700486
487 ## Pull out errors from log files
488 extract_errors_go() {
489 echo
490 echo "Error summary for $1:"
491 grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg'
492 echo
493 }
494
495 extract_errors_python() {
496 echo
497 echo "Error summary for $1:"
498 grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2-
499 echo
500 }
501
Matteo Scandolo7eba41c2020-12-15 08:59:36 -1000502 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log || true
503 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log || true
504 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log || true
505 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log || true
Matteo Scandolofff6e062020-04-29 13:36:33 -0700506
Matteo Scandolo7eba41c2020-12-15 08:59:36 -1000507 gzip $WORKSPACE/onos-voltha-combined.log || true
Matteo Scandolofff6e062020-04-29 13:36:33 -0700508 '''
Andrea Campanella40ff56f2020-05-11 15:22:29 +0200509 step([$class: 'RobotPublisher',
510 disableArchiveOutput: false,
511 logFileName: 'RobotLogs/*/log*.html',
512 otherFiles: '',
513 outputFileName: 'RobotLogs/*/output*.xml',
514 outputPath: '.',
515 passThreshold: 100,
516 reportFileName: 'RobotLogs/*/report*.html',
517 unstableThreshold: 0]);
Matteo Scandoloaca27622020-12-11 09:04:07 -0800518 archiveArtifacts artifacts: '**/*.log,**/*.gz,**/*.txt'
Matteo Scandolofff6e062020-04-29 13:36:33 -0700519 }
520 }
521}