blob: 4d0fde189d6e9c6ab8bde4a924e9b217749b0651 [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 {
26 timeout(time: 40, unit: 'MINUTES')
27 }
28 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 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"
39 CONFIG_SADIS="n"
Andy Bavier4af02722020-01-15 10:24:24 -070040 EXTRA_HELM_FLAGS="--set log_agent.enabled=False ${params.extraHelmFlags}"
Andy Bavier4a02b232020-01-09 14:50:30 -070041 ROBOT_MISC_ARGS="${params.extraRobotArgs} -d $WORKSPACE/RobotLogs"
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}",
52 manifestBranch: "${params.manifestBranch}",
53 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
68 [ -d kind-voltha ] || git clone https://github.com/ciena/kind-voltha.git
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 Bavier36c688c2020-03-17 07:32:30 -070079 cd $HOME/kind-voltha/
80 WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down || ./voltha down
Andy Bavier0088c212020-01-08 13:44:03 -070081 ./voltha up
82 """
83 }
84 }
85
86 stage('Run E2E Tests') {
87 steps {
88 sh '''
Andy Bavier36c688c2020-03-17 07:32:30 -070089 set +e
Andy Bavier0088c212020-01-08 13:44:03 -070090 mkdir -p $WORKSPACE/RobotLogs
91 git clone https://gerrit.opencord.org/voltha-system-tests
Andy Bavier36c688c2020-03-17 07:32:30 -070092
93 cd $HOME/kind-voltha/scripts
94 ./log-collector.sh > /dev/null &
95 ./log-combine.sh > /dev/null &
96
Andy Bavier0d101392020-03-17 09:36:41 -070097 for i in \$(seq 1 ${testRuns})
Andy Bavier0088c212020-01-08 13:44:03 -070098 do
99 make -C $WORKSPACE/voltha-system-tests ${makeTarget}
100 echo "Completed run: \$i"
101 echo ""
Andy Bavier0088c212020-01-08 13:44:03 -0700102 done
103 '''
104 }
105 }
106 }
107
108 post {
109 always {
110 sh '''
111 set +e
Andy Bavier36c688c2020-03-17 07:32:30 -0700112 cp $HOME/kind-voltha/install-minimal.log $WORKSPACE/
Andy Bavier0088c212020-01-08 13:44:03 -0700113 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
114 kubectl get nodes -o wide
115 kubectl get pods -o wide
116 kubectl get pods -n voltha -o wide
Andy Bavier4af02722020-01-15 10:24:24 -0700117
Andy Bavier36c688c2020-03-17 07:32:30 -0700118 sleep 60 # Wait for log-collector and log-combine to complete
Andy Bavier4af02722020-01-15 10:24:24 -0700119
120 ## Pull out errors from log files
121 extract_errors_go() {
122 echo
123 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700124 grep '"level":"error"' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavier4af02722020-01-15 10:24:24 -0700125 echo
126 }
127
128 extract_errors_python() {
129 echo
130 echo "Error summary for $1:"
Andy Bavier36c688c2020-03-17 07:32:30 -0700131 grep 'ERROR' $HOME/kind-voltha/scripts/logger/combined/$1*
Andy Bavier4af02722020-01-15 10:24:24 -0700132 echo
133 }
134
135 extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log
136 extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log
137 extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log
Andy Bavier36c688c2020-03-17 07:32:30 -0700138 extract_errors_go voltha-ofagent >> $WORKSPACE/error-report.log
139 extract_errors_python onos >> $WORKSPACE/error-report.log
Andy Bavier4af02722020-01-15 10:24:24 -0700140
Andy Bavier36c688c2020-03-17 07:32:30 -0700141 cd $HOME/kind-voltha/scripts/logger/combined/
142 tar czf $WORKSPACE/container-logs.tgz *
Andy Bavier2178d102020-02-06 16:22:11 -0700143
Andy Bavier36c688c2020-03-17 07:32:30 -0700144 cd $WORKSPACE
145 gzip *-combined.log || true
146
147 ## shut down voltha but leave kind-voltha cluster
148 cd $HOME/kind-voltha/
149 DEPLOY_K8S=n WAIT_ON_DOWN=y ./voltha down
Andy Bavier0088c212020-01-08 13:44:03 -0700150 '''
151 step([$class: 'RobotPublisher',
152 disableArchiveOutput: false,
153 logFileName: 'RobotLogs/log*.html',
154 otherFiles: '',
155 outputFileName: 'RobotLogs/output*.xml',
156 outputPath: '.',
157 passThreshold: 100,
158 reportFileName: 'RobotLogs/report*.html',
159 unstableThreshold: 0]);
Andy Bavier36c688c2020-03-17 07:32:30 -0700160 archiveArtifacts artifacts: '*.log,*.gz,*.tgz'
Andy Bavier0088c212020-01-08 13:44:03 -0700161
162 }
163 }
164}