blob: f5c0e5f80f10480291d2a4bc9d0b700f0a348d8a [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 """
Kailash6be1aa92019-08-05 18:11:11 -070034 git clone https://github.com/andybavier/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/
Kailash6be1aa92019-08-05 18:11:11 -070043 TYPE=minimal WITH_RADIUS=y WITH_TP=no WITH_BBSIM=y ./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"
Kailash6be1aa92019-08-05 18:11:11 -070055 export PATH=/w/workspace/voltha-go-e2e-tests/kind-voltha/bin:$PATH
Kailash8b8de742019-07-30 08:54:51 -070056 cd $WORKSPACE/voltha-system-tests/tests/sanity
Kailash07e1a612019-08-06 22:04:36 -070057 robot -e notready --critical sanity --noncritical VOL-1705 -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"
Kailash6be1aa92019-08-05 18:11:11 -070073 export PATH=/w/workspace/voltha-go-e2e-tests/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
Kailash8b8de742019-07-30 08:54:51 -070096 '''
97 step([$class: 'RobotPublisher',
98 disableArchiveOutput: false,
99 logFileName: 'RobotLogs/log*.html',
100 otherFiles: '',
101 outputFileName: 'RobotLogs/output*.xml',
102 outputPath: '.',
Kailash07e1a612019-08-06 22:04:36 -0700103 passThreshold: 80,
Kailash8b8de742019-07-30 08:54:51 -0700104 reportFileName: 'RobotLogs/report*.html',
105 unstableThreshold: 0]);
106 archiveArtifacts artifacts: '*.log'
107
108 }
109 }
110}