blob: 991ecee0b6baf55a86ff30757b8d2227d2cf8c18 [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
hwchiu8585b572019-12-16 11:20:43 -080019
hwchiufdc49242019-11-18 16:37:22 -080020pipeline {
21
22 /* no label, executor is determined by JJB */
23 agent {
24 label "${params.buildNode}"
25 }
26 options {
hwchiu8585b572019-12-16 11:20:43 -080027 timeout(time: 80, unit: 'MINUTES')
hwchiufdc49242019-11-18 16:37:22 -080028 }
29 environment {
hwchiu593a95a2020-01-30 10:09:39 -080030 KUBECONFIG="$HOME/.kube/kind-config-voltha-full"
31 VOLTCONFIG="$HOME/.volt/config-full"
hwchiufdc49242019-11-18 16:37:22 -080032 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WORKSPACE/kind-voltha/bin"
hwchiu593a95a2020-01-30 10:09:39 -080033 TYPE="full"
hwchiufdc49242019-11-18 16:37:22 -080034 FANCY=0
35 WITH_SIM_ADAPTERS="n"
36 WITH_RADIUS="y"
37 WITH_BBSIM="y"
38 DEPLOY_K8S="y"
39 VOLTHA_LOG_LEVEL="DEBUG"
Andrea Campanellaf300fc32020-09-11 14:01:12 +020040 CONFIG_SADIS="external"
41 BBSIM_CFG="configs/bbsim-sadis-att.yaml"
hwchiufdc49242019-11-18 16:37:22 -080042 ROBOT_MISC_ARGS="-d $WORKSPACE/RobotLogs"
Matteo Scandolob611b1f2021-01-05 09:11:49 -080043 NUM_OF_ETCD=3
44 SCHEDULE_ON_CONTROL_NODES="y"
hwchiufdc49242019-11-18 16:37:22 -080045 }
hwchiu593a95a2020-01-30 10:09:39 -080046
hwchiufdc49242019-11-18 16:37:22 -080047 stages {
hwchiucd8fc952020-02-04 13:01:48 -080048 stage('Create Kubernetes Cluster') {
hwchiufdc49242019-11-18 16:37:22 -080049 steps {
50 sh """
Andy Bavierb5c8caf2020-04-06 14:12:07 -070051 git clone https://gerrit.opencord.org/kind-voltha
hwchiuc7d5d032019-12-03 16:42:47 -080052 pushd kind-voltha/
hwchiucd8fc952020-02-04 13:01:48 -080053 JUST_K8S=y ./voltha up
54 popd
55 """
56 }
57 }
58
59 stage('Setup log collector') {
60 steps {
61 sh """
hwchiu593a95a2020-01-30 10:09:39 -080062 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/kind-voltha/bin"
hwchiucd8fc952020-02-04 13:01:48 -080063 kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log &
64 """
65 }
66 }
67
68 stage('Deploy Voltha') {
69 steps {
70 sh """
Andy Bavier22a8da02020-03-31 12:40:09 -070071 export EXTRA_HELM_FLAGS=""
Andy Baviercf2afa42020-03-31 10:20:27 -070072 if [ "${branch}" != "master" ]; then
73 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
74 source "$WORKSPACE/kind-voltha/releases/${branch}"
Andy Bavier10926f12020-03-27 16:53:43 -070075 else
76 echo "on master, using default settings for kind-voltha"
77 fi
78
Matteo Scandolob611b1f2021-01-05 09:11:49 -080079 EXTRA_HELM_FLAGS+="${params.extraHelmFlags} "
Andy Bavier22a8da02020-03-31 12:40:09 -070080 echo \$EXTRA_HELM_FLAGS
Andy Bavierb567af72020-03-30 10:27:15 -070081
hwchiucd8fc952020-02-04 13:01:48 -080082 pushd kind-voltha/
83 ./voltha up
hwchiuc7d5d032019-12-03 16:42:47 -080084 popd
hwchiufdc49242019-11-18 16:37:22 -080085 """
86 }
87 }
88
89 stage('Run E2E Tests') {
90 steps {
91 sh '''
92 rm -rf $WORKSPACE/RobotLogs; mkdir -p $WORKSPACE/RobotLogs
Andy Baviercf2afa42020-03-31 10:20:27 -070093 git clone -b ${branch} https://gerrit.opencord.org/voltha-system-tests
hwchiu593a95a2020-01-30 10:09:39 -080094 make ROBOT_DEBUG_LOG_OPT="-l sanity_log.html -r sanity_report.html -o sanity_output.xml" -C $WORKSPACE/voltha-system-tests ${makeTarget}
hwchiufdc49242019-11-18 16:37:22 -080095 '''
96 }
97 }
98
Andy Bavier4be37062020-06-29 15:17:26 -070099 stage('Kubernetes ETCD Scale Test') {
hwchiufdc49242019-11-18 16:37:22 -0800100 steps {
101 sh '''
hwchiu593a95a2020-01-30 10:09:39 -0800102 make ROBOT_DEBUG_LOG_OPT="-l functional_log.html -r functional_report.html -o functional_output.xml" -C $WORKSPACE/voltha-system-tests system-scale-test
hwchiufdc49242019-11-18 16:37:22 -0800103 '''
104 }
105 }
hwchiu8585b572019-12-16 11:20:43 -0800106
Andy Bavier4be37062020-06-29 15:17:26 -0700107 stage('Kubernetes ETCD Failure Test') {
hwchiu8585b572019-12-16 11:20:43 -0800108 steps {
109 sh '''
hwchiu593a95a2020-01-30 10:09:39 -0800110 make ROBOT_DEBUG_LOG_OPT="-l failure_log.html -r failure_report.html -o failure_output.xml" -C $WORKSPACE/voltha-system-tests failure-test
hwchiu8585b572019-12-16 11:20:43 -0800111 '''
112 }
113 }
114
hwchiufdc49242019-11-18 16:37:22 -0800115 }
116
117 post {
hwchiu593a95a2020-01-30 10:09:39 -0800118 always {
119 sh '''
120 set +e
121 cp $WORKSPACE/kind-voltha/install-full.log $WORKSPACE/
Matteo Scandolo97b12572020-04-13 12:44:46 -0700122 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq
123 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq
hwchiu593a95a2020-01-30 10:09:39 -0800124 kubectl get nodes -o wide
125 kubectl get pods -o wide
126 kubectl get pods -n voltha -o wide
hwchiu8585b572019-12-16 11:20:43 -0800127
hwchiu593a95a2020-01-30 10:09:39 -0800128 sync
129 pkill kail || true
130
131 ## Pull out errors from log files
132 extract_errors_go() {
133 echo
134 echo "Error summary for $1:"
135 grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg'
136 echo
137 }
138
139 extract_errors_python() {
140 echo
141 echo "Error summary for $1:"
142 grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2-
143 echo
144 }
145
146 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
147 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
148 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
149 extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log
150
151 ## shut down kind-voltha
152 cd $WORKSPACE/kind-voltha
153 WAIT_ON_DOWN=y ./voltha down
154
155 '''
hwchiufdc49242019-11-18 16:37:22 -0800156 step([$class: 'RobotPublisher',
157 disableArchiveOutput: false,
158 logFileName: 'RobotLogs/*log*.html',
159 otherFiles: '',
160 outputFileName: 'RobotLogs/*output*.xml',
161 outputPath: '.',
162 passThreshold: 100,
163 reportFileName: 'RobotLogs/*report*.html',
164 unstableThreshold: 0]);
165 archiveArtifacts artifacts: '*.log'
166
167 }
168 }
169}