blob: 5cc185751a0a5329f6b33f6fec9814e0260dd3e5 [file] [log] [blame]
Kailash8b8de742019-07-30 08:54:51 -07001// Copyright 2017-present Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15// voltha-2.x e2e tests
16// uses kind-voltha to deploy voltha-2.X
17// uses bbsim to simulate OLT/ONUs
18
19pipeline {
20
21 /* no label, executor is determined by JJB */
22 agent {
23 label "${params.executorNode}"
24 }
Kailash4b323ff2019-08-02 17:52:49 -070025 options {
26 timeout(time: 40, unit: 'MINUTES')
27 }
Kailash8b8de742019-07-30 08:54:51 -070028
29 stages {
30
31 stage('Download kind-voltha') {
32 steps {
33 sh """
Andy Bavier7787d462019-08-21 15:56:17 -070034 git clone https://github.com/ciena/kind-voltha.git
Kailash8b8de742019-07-30 08:54:51 -070035 """
36 }
37 }
38
39 stage('Deploy Voltha') {
40 steps {
41 sh """
42 cd kind-voltha/
Andy Bavierea26c5c2019-09-18 08:09:17 -070043 EXTRA_HELM_FLAGS="${params.extraHelmFlags}" VOLTHA_LOG_LEVEL=DEBUG TYPE=minimal WITH_RADIUS=y WITH_BBSIM=y INSTALL_ONOS_APPS=y CONFIG_SADIS=y FANCY=0 ./voltha up
Kailash8b8de742019-07-30 08:54:51 -070044 """
45 }
46 }
47
Kailash8b8de742019-07-30 08:54:51 -070048 stage('Run E2E Tests') {
49 steps {
50 sh '''
51 git clone https://gerrit.opencord.org/voltha-system-tests
52 cd kind-voltha/
53 export KUBECONFIG="$(./bin/kind get kubeconfig-path --name="voltha-minimal")"
54 export VOLTCONFIG="/home/jenkins/.volt/config-minimal"
Andy Bavierf96864e2019-09-20 15:10:14 -070055 export PATH=$WORKSPACE/kind-voltha/bin:$PATH
Kailash8b8de742019-07-30 08:54:51 -070056 cd $WORKSPACE/voltha-system-tests/tests/sanity
Andy Bavieraaa60f72019-09-20 09:11:21 -070057 robot -v ONOS_REST_PORT:8181 -v ONOS_SSH_PORT:8101 -e notready --critical sanity -v num_onus:1 sanity.robot || true
Kailash8b8de742019-07-30 08:54:51 -070058 '''
59 }
60 }
61 }
62
63 post {
64 always {
65 sh '''
66 # copy robot logs
67 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
Kailash4b323ff2019-08-02 17:52:49 -070068 cp -r $WORKSPACE/voltha-system-tests/tests/sanity/*ml ./RobotLogs || true
69 cd kind-voltha/
70 cp install-minimal.log $WORKSPACE/
71 export KUBECONFIG="$(./bin/kind get kubeconfig-path --name="voltha-minimal")"
72 export VOLTCONFIG="/home/jenkins/.volt/config-minimal"
Andy Bavierf96864e2019-09-20 15:10:14 -070073 export PATH=$WORKSPACE/kind-voltha/bin:$PATH
Kailash07e1a612019-08-06 22:04:36 -070074 kubectl get pods --all-namespaces -o jsonpath="{..image}" |tr -s "[[:space:]]" "\n" | sort | uniq -c
Kailash887a2962019-08-14 13:26:33 -070075 kubectl get nodes -o wide
76 kubectl get pods -o wide
77 kubectl get pods -n voltha -o wide
Kailash4b323ff2019-08-02 17:52:49 -070078 ## get default pod logs
79 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
80 do
81 if [[ \$pod == *"onos"* && \$pod != *"onos-service"* ]]; then
82 kubectl logs \$pod onos> $WORKSPACE/\$pod.log;
83 else
84 kubectl logs \$pod> $WORKSPACE/\$pod.log;
85 fi
86 done
87 ## get voltha pod logs
88 for pod in \$(kubectl get pods --no-headers -n voltha | awk '{print \$1}');
89 do
Kailash6be1aa92019-08-05 18:11:11 -070090 if [[ \$pod == *"-api-"* ]]; then
Kailash4b323ff2019-08-02 17:52:49 -070091 kubectl logs \$pod arouter -n voltha > $WORKSPACE/\$pod.log;
92 else
93 kubectl logs \$pod -n voltha > $WORKSPACE/\$pod.log;
94 fi
95 done
Andy Bavier3a58ba32019-09-20 16:31:40 -070096 ## clean up node
97 WAIT_ON_DOWN=y ./voltha down
98 cd $WORKSPACE/
99 rm -rf kind-voltha/ voltha-system-tests/ || true
Kailash8b8de742019-07-30 08:54:51 -0700100 '''
101 step([$class: 'RobotPublisher',
102 disableArchiveOutput: false,
103 logFileName: 'RobotLogs/log*.html',
104 otherFiles: '',
105 outputFileName: 'RobotLogs/output*.xml',
106 outputPath: '.',
Kailash07e1a612019-08-06 22:04:36 -0700107 passThreshold: 80,
Kailash8b8de742019-07-30 08:54:51 -0700108 reportFileName: 'RobotLogs/report*.html',
109 unstableThreshold: 0]);
110 archiveArtifacts artifacts: '*.log'
111
112 }
113 }
114}