blob: 14410acd26883cbe6aa56abbb2553692826de403 [file] [log] [blame]
hwchiufdc49242019-11-18 16:37:22 -08001// 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: 40, unit: 'MINUTES')
27 }
28 environment {
29 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
30 VOLTCONFIG="$HOME/.volt/config-minimal"
31 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WORKSPACE/kind-voltha/bin"
32 TYPE="minimal"
33 FANCY=0
34 WITH_SIM_ADAPTERS="n"
35 WITH_RADIUS="y"
36 WITH_BBSIM="y"
37 DEPLOY_K8S="y"
38 VOLTHA_LOG_LEVEL="DEBUG"
39 CONFIG_SADIS="y"
40 EXTRA_HELM_FLAGS="${params.extraHelmFlags} --set voltha-etcd-cluster.clusterSize=3"
41 ROBOT_MISC_ARGS="-d $WORKSPACE/RobotLogs"
42 }
43 stages {
44
45 stage('Download kind-voltha') {
46 steps {
47 sh """
48 git clone https://github.com/ciena/kind-voltha.git
49 """
50 }
51 }
52
53 stage('Deploy Voltha') {
54 steps {
55 sh """
56 cd kind-voltha/
57 ./voltha up
58 """
59 }
60 }
61
62 stage('Run E2E Tests') {
63 steps {
64 sh '''
65 rm -rf $WORKSPACE/RobotLogs; mkdir -p $WORKSPACE/RobotLogs
66 git clone https://gerrit.opencord.org/voltha-system-tests
67 make -C $WORKSPACE/voltha-system-tests ${makeTarget} || true
68 '''
69 }
70 }
71
72 //Remove this stage once https://jira.opencord.org/browse/VOL-1977 be resolved
73 stage('Deploy Voltha Again') {
74 steps {
75 sh """
76 cd kind-voltha/
77 ./voltha down
78 ./voltha up
79 """
80 }
81 }
82 stage('Kubernetes Functional Tests') {
83 steps {
84 sh '''
85 rm -rf $WORKSPACE/RobotLogs; mkdir -p $WORKSPACE/RobotLogs
86 make -C $WORKSPACE/voltha-system-tests system-scale-test || true
87 '''
88 }
89 }
90 }
91
92 post {
93 always {
94 sh '''
95 set +e
96 cd kind-voltha/
97 cp install-minimal.log $WORKSPACE/
98 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
99 kubectl get nodes -o wide
100 kubectl get pods -o wide
101 kubectl get pods -n voltha -o wide
102 ## get default pod logs
103 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
104 do
105 if [[ \$pod == *"onos"* && \$pod != *"onos-service"* ]]; then
106 kubectl logs \$pod onos> $WORKSPACE/\$pod.log;
107 else
108 kubectl logs \$pod> $WORKSPACE/\$pod.log;
109 fi
110 done
111 ## get voltha pod logs
112 for pod in \$(kubectl get pods --no-headers -n voltha | awk '{print \$1}');
113 do
114 if [[ \$pod == *"-api-"* ]]; then
115 kubectl logs \$pod arouter -n voltha > $WORKSPACE/\$pod.log;
116 elif [[ \$pod == "bbsim-"* ]]; then
117 kubectl logs \$pod -n voltha -p > $WORKSPACE/\$pod.log;
118 else
119 kubectl logs \$pod -n voltha > $WORKSPACE/\$pod.log;
120 fi
121 done
122 ## clean up node
123 WAIT_ON_DOWN=y ./voltha down
124 cd $WORKSPACE/
125 rm -rf kind-voltha/ voltha-system-tests/ || true
126 '''
127 step([$class: 'RobotPublisher',
128 disableArchiveOutput: false,
129 logFileName: 'RobotLogs/*log*.html',
130 otherFiles: '',
131 outputFileName: 'RobotLogs/*output*.xml',
132 outputPath: '.',
133 passThreshold: 100,
134 reportFileName: 'RobotLogs/*report*.html',
135 unstableThreshold: 0]);
136 archiveArtifacts artifacts: '*.log'
137
138 }
139 }
140}