blob: 20e9fc7c85c1aae8a72585b1a84c82dc51a3fba5 [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 {
Zack Williamsb3292082019-10-11 17:15:18 -070023 label "${params.buildNode}"
Kailash8b8de742019-07-30 08:54:51 -070024 }
Kailash4b323ff2019-08-02 17:52:49 -070025 options {
26 timeout(time: 40, unit: 'MINUTES')
27 }
Andy Bavier218385e2019-11-13 09:51:38 -070028 environment {
29 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
30 VOLTCONFIG="$HOME/.volt/config-minimal"
Andy Bavier36c688c2020-03-17 07:32:30 -070031 PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$HOME/kind-voltha/bin"
Andy Bavier218385e2019-11-13 09:51:38 -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"
Andy Bavier0088c212020-01-08 13:44:03 -070039 CONFIG_SADIS="n"
Andy Bavier3708d072019-12-10 15:22:18 -070040 ROBOT_MISC_ARGS="${params.extraRobotArgs} -d $WORKSPACE/RobotLogs"
Andy Bavier218385e2019-11-13 09:51:38 -070041 }
Kailash8b8de742019-07-30 08:54:51 -070042 stages {
43
Andy Bavier4c8b3232019-11-22 16:17:47 -070044 stage('Repo') {
45 steps {
Andy Bavier2c9ce042019-11-23 07:36:31 -070046 step([$class: 'WsCleanup'])
Andy Bavier4c8b3232019-11-22 16:17:47 -070047 checkout(changelog: true,
48 poll: false,
49 scm: [$class: 'RepoScm',
50 manifestRepositoryUrl: "${params.manifestUrl}",
51 manifestBranch: "${params.manifestBranch}",
52 currentBranch: true,
53 destinationDir: 'voltha',
54 forceSync: true,
55 resetFirst: true,
56 quiet: true,
57 jobs: 4,
58 showAllChanges: true]
59 )
60 }
61 }
62
Kailash8b8de742019-07-30 08:54:51 -070063 stage('Download kind-voltha') {
64 steps {
65 sh """
Andy Bavier36c688c2020-03-17 07:32:30 -070066 cd $HOME
67 [ -d kind-voltha ] || git clone https://github.com/ciena/kind-voltha.git
Andy Bavier2e009302020-03-19 08:46:13 -070068 rm -rf $HOME/kind-voltha/scripts/logger
Andy Bavier36c688c2020-03-17 07:32:30 -070069 cd $HOME/kind-voltha
70 git pull
Kailash8b8de742019-07-30 08:54:51 -070071 """
72 }
73 }
74
75 stage('Deploy Voltha') {
76 steps {
77 sh """
Andy Bavier10926f12020-03-27 16:53:43 -070078 if [ "${manifestBranch}" != "master" ]; then
79 echo "on branch: ${manifestBranch}, sourcing kind-voltha/releases/${manifestBranch}"
80 source "$HOME/kind-voltha/releases/${manifestBranch}"
81 else
82 echo "on master, using default settings for kind-voltha"
83 fi
84
85 EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${params.extraHelmFlags} "
86
Andy Bavier36c688c2020-03-17 07:32:30 -070087 cd $HOME/kind-voltha/
88 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down || ./voltha down
Andy Bavier218385e2019-11-13 09:51:38 -070089 ./voltha up
Kailash8b8de742019-07-30 08:54:51 -070090 """
91 }
92 }
93
Kailash8b8de742019-07-30 08:54:51 -070094 stage('Run E2E Tests') {
95 steps {
96 sh '''
Andy Bavier4af02722020-01-15 10:24:24 -070097 set +e
Andy Bavier2c9ce042019-11-23 07:36:31 -070098 mkdir -p $WORKSPACE/RobotLogs
Kailash8b8de742019-07-30 08:54:51 -070099 git clone https://gerrit.opencord.org/voltha-system-tests
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700100
Andy Bavier36c688c2020-03-17 07:32:30 -0700101 cd $HOME/kind-voltha/scripts
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700102 ./log-collector.sh > /dev/null &
Andy Bavier7afb11c2020-02-13 11:25:20 -0700103 ./log-combine.sh > /dev/null &
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700104
Andy Bavier4af02722020-01-15 10:24:24 -0700105 make -C $WORKSPACE/voltha-system-tests ${makeTarget} || true
Kailash8b8de742019-07-30 08:54:51 -0700106 '''
107 }
108 }
109 }
110
111 post {
112 always {
113 sh '''
Andy Bavier218385e2019-11-13 09:51:38 -0700114 set +e
Andy Bavier36c688c2020-03-17 07:32:30 -0700115 cp $HOME/kind-voltha/install-minimal.log $WORKSPACE/
Andy Bavieraec60382019-10-29 15:09:04 -0700116 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
Kailash887a2962019-08-14 13:26:33 -0700117 kubectl get nodes -o wide
118 kubectl get pods -o wide
119 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700120
Andy Bavier7afb11c2020-02-13 11:25:20 -0700121 sleep 60 # Wait for log-collector and log-combine to complete
122
Andy Bavierb30c0a02020-03-03 17:21:23 -0700123 ## Pull out errors from log files
124 extract_errors_go() {
125 echo
126 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700127 grep '"level":"error"' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700128 echo
129 }
130
131 extract_errors_python() {
132 echo
133 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700134 grep 'ERROR' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavierb30c0a02020-03-03 17:21:23 -0700135 echo
136 }
137
138 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
139 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
140 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
141 extract_errors_go voltha-ofagent >> $WORKSPACE/error-report.log
142 extract_errors_python onos >> $WORKSPACE/error-report.log
143
Andy Bavier36c688c2020-03-17 07:32:30 -0700144 cd $HOME/kind-voltha/scripts/logger/combined/
Andy Bavier7afb11c2020-02-13 11:25:20 -0700145 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier4af02722020-01-15 10:24:24 -0700146
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700147 cd $WORKSPACE
Andy Bavierb86ca422020-02-13 05:19:43 -0700148 gzip *-combined.log || true
Andy Bavier2178d102020-02-06 16:22:11 -0700149
Andy Bavier36c688c2020-03-17 07:32:30 -0700150 ## shut down voltha but leave kind-voltha cluster
151 cd $HOME/kind-voltha/
152 DEPLOY_K8S=n WAIT_ON_DOWN=y ./voltha down
Kailash8b8de742019-07-30 08:54:51 -0700153 '''
154 step([$class: 'RobotPublisher',
155 disableArchiveOutput: false,
156 logFileName: 'RobotLogs/log*.html',
157 otherFiles: '',
158 outputFileName: 'RobotLogs/output*.xml',
159 outputPath: '.',
Matteo Scandolo26bc17e2019-09-24 09:03:01 -0700160 passThreshold: 100,
Kailash8b8de742019-07-30 08:54:51 -0700161 reportFileName: 'RobotLogs/report*.html',
162 unstableThreshold: 0]);
Andy Bavier3c1ccca2020-02-12 16:50:04 -0700163 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Kailash8b8de742019-07-30 08:54:51 -0700164
165 }
166 }
167}