blob: 811d64247342ec2ac246bb5221663c507ac3b92f [file] [log] [blame]
Matteo Scandolof593a0f2021-04-14 10:16:06 -07001// Copyright 2021-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// voltha-2.x e2e tests
15// uses bbsim to simulate OLT/ONUs
16// NOTE we are importing the library even if it's global so that it's
17// easier to change the keywords during a replay
18library identifier: 'cord-jenkins-libraries@master',
19 retriever: modernSCM([
20 $class: 'GitSCMSource',
21 remote: 'https://gerrit.opencord.org/ci-management.git'
22])
23def test_software_upgrade(name) {
24 stage('Deploy Voltha - '+ name) {
25 def extraHelmFlags = "${extraHelmFlags} --set global.log_level=DEBUG,onu=1,pon=1 --set onos-classic.replicas=3,onos-classic.atomix.replicas=3 "
26 if ("${name}" == "onos-app-upgrade") {
27 extraHelmFlags = extraHelmFlags + "--set global.image_tag=master "
28 }
29 extraHelmFlags = extraHelmFlags + """ --set voltha.services.controller[0].service=voltha-infra-onos-classic-0.voltha-infra-onos-classic-hs.infra.svc \
30 --set voltha.services.controller[0].port=6653 \
31 --set voltha.services.controller[0].address=voltha-infra-onos-classic-0.voltha-infra-onos-classic-hs.infra.svc:6653 \
32 --set voltha.services.controller[1].service=voltha-infra-onos-classic-1.voltha-infra-onos-classic-hs.infra.svc \
33 --set voltha.services.controller[1].port=6653 \
34 --set voltha.services.controller[1].address=voltha-infra-onos-classic-1.voltha-infra-onos-classic-hs.infra.svc:6653 \
35 --set voltha.services.controller[2].service=voltha-infra-onos-classic-2.voltha-infra-onos-classic-hs.infra.svc \
36 --set voltha.services.controller[2].port=6653 \
37 --set voltha.services.controller[2].address=voltha-infra-onos-classic-2.voltha-infra-onos-classic-hs.infra.svc:6653 """
38 //ONOS custom image handling
39 if ( onosImg.trim() != '' ) {
40 String[] split;
41 onosImg = onosImg.trim()
42 split = onosImg.split(':')
43 extraHelmFlags = extraHelmFlags + "--set onos-classic.image.repository=" + split[0] +",onos-classic.image.tag=" + split[1] + " "
44 }
45 def localCharts = false
46 // Currently only testing with ATT workflow
47 // TODO: Support for other workflows
48 volthaDeploy([workflow: "att", extraHelmFlags: extraHelmFlags, localCharts: localCharts])
49 // start logging
50 sh """
51 rm -rf $WORKSPACE/${name} || true
52 mkdir -p $WORKSPACE/${name}
53 _TAG=kail-${name} kail -n infra -n voltha > $WORKSPACE/${name}/onos-voltha-combined.log &
54 """
55 // forward ONOS and VOLTHA ports
56 sh """
57 _TAG=onos-port-forward bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n infra svc/voltha-infra-onos-classic-hs 8101:8101; done &"
58 _TAG=onos-port-forward bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n infra svc/voltha-infra-onos-classic-hs 8181:8181; done &"
59 _TAG=port-forward-voltha-api bash -c "while true; do kubectl port-forward --address 0.0.0.0 -n voltha svc/voltha-voltha-api 55555:55555; done &"
60 """
61 sh """
62 sshpass -e ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 8101 karaf@127.0.0.1 log:set DEBUG org.opencord
63 """
64 }
65 stage('Test - '+ name) {
66 sh """
67 ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/${name}"
68 mkdir -p \$ROBOT_LOGS_DIR
69 if [[ ${name} == 'onos-app-upgrade' ]]; then
70 export ONOS_APPS_UNDER_TEST+=''
71 if [ ${aaaVer.trim()} != '' ] && [ ${aaaOarUrl.trim()} != '' ]; then
72 ONOS_APPS_UNDER_TEST+="org.opencord.aaa,${aaaVer.trim()},${aaaOarUrl.trim()}*"
73 fi
74 if [ ${oltVer.trim()} != '' ] && [ ${oltOarUrl.trim()} != '' ]; then
75 ONOS_APPS_UNDER_TEST+="org.opencord.olt,${oltVer.trim()},${oltOarUrl.trim()}*"
76 fi
77 if [ ${dhcpl2relayVer.trim()} != '' ] && [ ${dhcpl2relayOarUrl.trim()} != '' ]; then
78 ONOS_APPS_UNDER_TEST+="org.opencord.dhcpl2relay,${dhcpl2relayVer.trim()},${dhcpl2relayOarUrl.trim()}*"
79 fi
80 if [ ${igmpproxyVer.trim()} != '' ] && [ ${igmpproxyOarUrl.trim()} != '' ]; then
81 ONOS_APPS_UNDER_TEST+="org.opencord.igmpproxy,${igmpproxyVer.trim()},${igmpproxyOarUrl.trim()}*"
82 fi
83 if [ ${sadisVer.trim()} != '' ] && [ ${sadisOarUrl.trim()} != '' ]; then
84 ONOS_APPS_UNDER_TEST+="org.opencord.sadis,${sadisVer.trim()},${sadisOarUrl.trim()}*"
85 fi
86 if [ ${mcastVer.trim()} != '' ] && [ ${mcastOarUrl.trim()} != '' ]; then
87 ONOS_APPS_UNDER_TEST+="org.opencord.mcast,${mcastVer.trim()},${mcastOarUrl.trim()}*"
88 fi
89 if [ ${kafkaVer.trim()} != '' ] && [ ${kafkaOarUrl.trim()} != '' ]; then
90 ONOS_APPS_UNDER_TEST+="org.opencord.kafka,${kafkaVer.trim()},${kafkaOarUrl.trim()}*"
91 fi
92 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v onos_apps_under_test:\$ONOS_APPS_UNDER_TEST -e PowerSwitch"
93 export TARGET=onos-app-upgrade-test
94 fi
95 if [[ ${name} == 'voltha-component-upgrade' ]]; then
96 export VOLTHA_COMPS_UNDER_TEST+=''
97 if [ ${adapterOpenOltImage.trim()} != '' ]; then
98 VOLTHA_COMPS_UNDER_TEST+="adapter-open-olt,adapter-open-olt,${adapterOpenOltImage.trim()}*"
99 fi
100 if [ ${adapterOpenOnuImage.trim()} != '' ]; then
101 VOLTHA_COMPS_UNDER_TEST+="adapter-open-onu,adapter-open-onu,${adapterOpenOnuImage.trim()}*"
102 fi
103 if [ ${rwCoreImage.trim()} != '' ]; then
104 VOLTHA_COMPS_UNDER_TEST+="rw-core,voltha,${rwCoreImage.trim()}*"
105 fi
106 if [ ${ofAgentImage.trim()} != '' ]; then
107 VOLTHA_COMPS_UNDER_TEST+="ofagent,ofagent,${ofAgentImage.trim()}*"
108 fi
109 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v voltha_comps_under_test:\$VOLTHA_COMPS_UNDER_TEST -e PowerSwitch"
110 export TARGET=voltha-comp-upgrade-test
111 fi
112 if [[ ${name} == 'onu-software-upgrade' ]]; then
113 export ROBOT_MISC_ARGS="-d \$ROBOT_LOGS_DIR -v onu_image_name:${onuImageName.trim()} -v onu_image_url:${onuImageUrl.trim()} -v onu_image_version:${onuImageVersion.trim()} -v onu_image_crc:${onuImageCrc.trim()} -v onu_image_local_dir:${onuImageLocalDir.trim()} -e PowerSwitch"
114 export TARGET=onu-upgrade-test
115 fi
116 export VOLTCONFIG=$HOME/.volt/config-minimal
117 export KUBECONFIG=$HOME/.kube/kind-config-voltha-minimal
118 # Run the specified tests
119 make -C $WORKSPACE/voltha-system-tests \$TARGET || true
120 """
121 // stop logging
122 sh """
123 P_IDS="\$(ps e -ww -A | grep "_TAG=kail-${name}" | grep -v grep | awk '{print \$1}')"
124 if [ -n "\$P_IDS" ]; then
125 echo \$P_IDS
126 for P_ID in \$P_IDS; do
127 kill -9 \$P_ID
128 done
129 fi
130 """
131 // remove port-forwarding
132 sh """
133 # remove orphaned port-forward from different namespaces
134 ps aux | grep port-forw | grep -v grep | awk '{print \$2}' | xargs --no-run-if-empty kill -9
135 """
136 // collect pod details
137 get_pods_info("$WORKSPACE/${name}")
138 helmTeardown(['infra', 'voltha'])
139 }
140}
141def get_pods_info(dest) {
142 // collect pod details, this is here in case of failure
143 sh """
144 mkdir -p ${dest} || true
145 kubectl get pods --all-namespaces -o wide > ${dest}/pods.txt || true
146 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq | tee ${dest}/pod-images.txt || true
147 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq | tee ${dest}/pod-imagesId.txt || true
148 kubectl describe pods --all-namespaces -l app.kubernetes.io/part-of=voltha > ${dest}/voltha-pods-describe.txt
149 kubectl describe pods -n infra -l app=onos-classic > ${dest}/onos-pods-describe.txt
150 helm ls --all-namespaces > ${dest}/helm-charts.txt
151 """
152 sh '''
153 # copy the ONOS logs directly from the container to avoid the color codes
154 printf '%s\\n' $(kubectl get pods -n infra -l app=onos-classic -o=jsonpath="{.items[*]['metadata.name']}") | xargs --no-run-if-empty -I# bash -c 'kubectl -n infra cp #:apache-karaf-4.2.9/data/log/karaf.log ''' + dest + '''/#.log' || true
155 '''
156}
157pipeline {
158 /* no label, executor is determined by JJB */
159 agent {
160 label "${params.buildNode}"
161 }
162 options {
163 timeout(time: 40, unit: 'MINUTES')
164 }
165 environment {
166 PATH="$PATH:$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin"
167 KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal"
168 SSHPASS="karaf"
169 }
170 stages{
171 stage('Download Code') {
172 steps {
173 getVolthaCode([
174 branch: "${branch}",
175 volthaSystemTestsChange: "${volthaSystemTestsChange}",
176 volthaHelmChartsChange: "${volthaHelmChartsChange}",
177 ])
178 }
179 }
180 stage('Cleanup') {
181 steps {
182 // remove port-forwarding
183 sh """
184 # remove orphaned port-forward from different namespaces
185 ps aux | grep port-forw | grep -v grep | awk '{print \$2}' | xargs --no-run-if-empty kill -9
186 """
187 helmTeardown(['infra', 'voltha'])
188 }
189 }
190 stage('Install latest voltctl') {
191 steps {
192 sh """
193 mkdir -p $WORKSPACE/bin || true
194 # install voltctl
195 HOSTOS="\$(uname -s | tr "[:upper:]" "[:lower:"])"
196 HOSTARCH="\$(uname -m | tr "[:upper:]" "[:lower:"])"
197 if [ "\$HOSTARCH" == "x86_64" ]; then
198 HOSTARCH="amd64"
199 fi
200 VC_VERSION="\$(curl --fail -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')"
201 curl -Lo $WORKSPACE/bin/voltctl https://github.com/opencord/voltctl/releases/download/v\$VC_VERSION/voltctl-\$VC_VERSION-\$HOSTOS-\$HOSTARCH
202 chmod +x $WORKSPACE/bin/voltctl
203 """
204 }
205 }
206 stage('Run Test') {
207 steps {
208 test_software_upgrade("onos-app-upgrade")
209 test_software_upgrade("voltha-component-upgrade")
210 test_software_upgrade("onu-software-upgrade")
211 }
212 }
213 }
214 post {
215 aborted {
216 get_pods_info("$WORKSPACE/failed")
217 }
218 failure {
219 get_pods_info("$WORKSPACE/failed")
220 }
221 always {
222 sh '''
223 gzip $WORKSPACE/onos-app-upgrade/onos-voltha-combined.log || true
224 gzip $WORKSPACE/voltha-component-upgrade/onos-voltha-combined.log || true
225 gzip $WORKSPACE/onu-software-upgrade/onos-voltha-combined.log || true
226 '''
227 step([$class: 'RobotPublisher',
228 disableArchiveOutput: false,
229 logFileName: 'RobotLogs/*/log*.html',
230 otherFiles: '',
231 outputFileName: 'RobotLogs/*/output*.xml',
232 outputPath: '.',
233 passThreshold: 100,
234 reportFileName: 'RobotLogs/*/report*.html',
235 unstableThreshold: 0]);
236 archiveArtifacts artifacts: '*.log,**/*.log,**/*.gz,*.gz,*.txt,**/*.txt'
237 }
238 }
239}