blob: 9b099d7760a20eb71706ce057694b257c0c199c7 [file] [log] [blame]
Andy Bavier0088c212020-01-08 13:44:03 -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 {
Andrea Campanella2f21f982020-09-11 13:26:40 +020026 timeout(time: 60, unit: 'MINUTES')
Andy Bavier0088c212020-01-08 13:44:03 -070027 }
28 environment {
29 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
30 VOLTCONFIG="$HOME/.volt/config-minimal"
Andy Bavierb5c8caf2020-04-06 14:12:07 -070031 PATH="$HOME/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
Andy Bavier0088c212020-01-08 13:44:03 -070032 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"
Andrea Campanella2f21f982020-09-11 13:26:40 +020039 CONFIG_SADIS="external"
40 BBSIM_CFG="configs/bbsim-sadis-att.yaml"
Andy Bavierd9870042020-06-23 13:16:47 -070041 ROBOT_MISC_ARGS="${params.extraRobotArgs} -d $WORKSPACE/RobotLogs -e PowerSwitch"
Andy Bavier0088c212020-01-08 13:44:03 -070042 }
43 stages {
44
45 stage('Repo') {
46 steps {
47 step([$class: 'WsCleanup'])
48 checkout(changelog: true,
49 poll: false,
50 scm: [$class: 'RepoScm',
51 manifestRepositoryUrl: "${params.manifestUrl}",
Andy Bavier6dfaf7e2020-03-30 14:52:59 -070052 manifestBranch: "${params.branch}",
Andy Bavier0088c212020-01-08 13:44:03 -070053 currentBranch: true,
54 destinationDir: 'voltha',
55 forceSync: true,
56 resetFirst: true,
57 quiet: true,
58 jobs: 4,
59 showAllChanges: true]
60 )
61 }
62 }
63
64 stage('Download kind-voltha') {
65 steps {
66 sh """
Andy Bavier36c688c2020-03-17 07:32:30 -070067 cd $HOME
Andy Bavierb5c8caf2020-04-06 14:12:07 -070068 [ -d kind-voltha ] || git clone https://gerrit.opencord.org/kind-voltha
Andy Bavier2e009302020-03-19 08:46:13 -070069 rm -rf $HOME/kind-voltha/scripts/logger
Andy Bavier36c688c2020-03-17 07:32:30 -070070 cd $HOME/kind-voltha
71 git pull
Andy Bavier0088c212020-01-08 13:44:03 -070072 """
73 }
74 }
75
76 stage('Deploy Voltha') {
77 steps {
78 sh """
Andy Bavierdc8bc2c2020-03-29 16:25:02 -070079 export EXTRA_HELM_FLAGS=""
Andy Bavier6dfaf7e2020-03-30 14:52:59 -070080 if [ "${branch}" != "master" ]; then
81 echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}"
82 source "$HOME/kind-voltha/releases/${branch}"
Andy Bavier10926f12020-03-27 16:53:43 -070083 else
84 echo "on master, using default settings for kind-voltha"
85 fi
86
87 EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${params.extraHelmFlags} "
88
Andy Bavier36c688c2020-03-17 07:32:30 -070089 cd $HOME/kind-voltha/
90 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down || ./voltha down
Andy Bavier0088c212020-01-08 13:44:03 -070091 ./voltha up
92 """
93 }
94 }
95
96 stage('Run E2E Tests') {
97 steps {
98 sh '''
Andy Bavier36c688c2020-03-17 07:32:30 -070099 set +e
Andy Bavier0088c212020-01-08 13:44:03 -0700100 mkdir -p $WORKSPACE/RobotLogs
Andy Bavier36c688c2020-03-17 07:32:30 -0700101
102 cd $HOME/kind-voltha/scripts
103 ./log-collector.sh > /dev/null &
104 ./log-combine.sh > /dev/null &
105
Andy Bavier0d101392020-03-17 09:36:41 -0700106 for i in \$(seq 1 ${testRuns})
Andy Bavier0088c212020-01-08 13:44:03 -0700107 do
Andy Bavier6612f072020-04-16 10:22:19 -0700108 make -C $WORKSPACE/voltha/voltha-system-tests ${makeTarget}
Andy Bavier0088c212020-01-08 13:44:03 -0700109 echo "Completed run: \$i"
110 echo ""
Andy Bavier0088c212020-01-08 13:44:03 -0700111 done
112 '''
113 }
114 }
115 }
116
117 post {
118 always {
119 sh '''
120 set +e
Andy Bavier36c688c2020-03-17 07:32:30 -0700121 cp $HOME/kind-voltha/install-minimal.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
Andy Bavier0088c212020-01-08 13:44:03 -0700124 kubectl get nodes -o wide
125 kubectl get pods -o wide
126 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700127
Andy Bavier36c688c2020-03-17 07:32:30 -0700128 sleep 60 # Wait for log-collector and log-combine to complete
Andy Bavier4af02722020-01-15 10:24:24 -0700129
130 ## Pull out errors from log files
131 extract_errors_go() {
132 echo
133 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700134 grep '"level":"error"' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavier4af02722020-01-15 10:24:24 -0700135 echo
136 }
137
138 extract_errors_python() {
139 echo
140 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700141 grep 'ERROR' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavier4af02722020-01-15 10:24:24 -0700142 echo
143 }
144
145 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
146 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
147 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
Andy Bavier36c688c2020-03-17 07:32:30 -0700148 extract_errors_go voltha-ofagent >> $WORKSPACE/error-report.log
149 extract_errors_python onos >> $WORKSPACE/error-report.log
Andy Bavier4af02722020-01-15 10:24:24 -0700150
Andrea Campanella9a95cb72020-09-03 11:28:35 +0200151 gzip error-report.log || true
152
Andy Bavier36c688c2020-03-17 07:32:30 -0700153 cd $HOME/kind-voltha/scripts/logger/combined/
154 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier2178d102020-02-06 16:22:11 -0700155
Andy Bavier36c688c2020-03-17 07:32:30 -0700156 cd $WORKSPACE
157 gzip *-combined.log || true
158
159 ## shut down voltha but leave kind-voltha cluster
160 cd $HOME/kind-voltha/
161 DEPLOY_K8S=n WAIT_ON_DOWN=y ./voltha down
Andy Bavier0088c212020-01-08 13:44:03 -0700162 '''
Andrea Campanellacd025202020-07-31 13:29:40 +0200163 step([$class: 'RobotPublisher',
Andy Bavier0088c212020-01-08 13:44:03 -0700164 disableArchiveOutput: false,
Andrea Campanellacd025202020-07-31 13:29:40 +0200165 logFileName: '**/log*.html',
Andy Bavier0088c212020-01-08 13:44:03 -0700166 otherFiles: '',
Andrea Campanellacd025202020-07-31 13:29:40 +0200167 outputFileName: '**/output*.xml',
168 outputPath: 'RobotLogs',
Andy Bavier0088c212020-01-08 13:44:03 -0700169 passThreshold: 100,
Andrea Campanellacd025202020-07-31 13:29:40 +0200170 reportFileName: '**/report*.html',
Andy Bavier0088c212020-01-08 13:44:03 -0700171 unstableThreshold: 0]);
Andy Bavier36c688c2020-03-17 07:32:30 -0700172 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Andy Bavier0088c212020-01-08 13:44:03 -0700173
174 }
175 }
176}