blob: 5d5e28f11acbb037d8389df2c6dd8f271aff94a8 [file] [log] [blame]
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -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
15node ("${TestNodeName}") {
Andrea Campanella80dcae02020-01-28 11:23:26 +010016 def withKind = false
17 if (params.withKind != null){
18 withKind = params.withKind
19 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070020 timeout (100) {
21 try {
22 stage ("Parse deployment configuration file") {
23 sh returnStdout: true, script: "rm -rf helm-repo-tools ${configBaseDir} voltha-system-tests kind-voltha"
24 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/helm-repo-tools"
25 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}"
26 sh returnStdout: true, script: "git clone -b master ${cordRepoUrl}/voltha-system-tests"
27 sh returnStdout: true, script: "git clone https://github.com/ciena/kind-voltha.git"
28 deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml"
29 }
30 stage('Clean up') {
31 timeout(10) {
32 sh returnStdout: true, script: """
33 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
34 for hchart in \$(helm list -q | grep -E -v 'docker-registry|mavenrepo|ponnet');
35 do
36 echo "Purging chart: \${hchart}"
37 helm delete --purge "\${hchart}"
38 done
39 """
40 timeout(5) {
41 waitUntil {
42 helm_deleted = sh returnStdout: true, script: """
43 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
44 helm ls -q | grep -E -v 'docker-registry|mavenrepo|ponnet' | wc -l
45 """
46 return helm_deleted.toInteger() == 0
47 }
48 }
49 timeout(5) {
50 waitUntil {
51 kubectl_deleted = sh returnStdout: true, script: """
52 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf &&
53 kubectl get pods --all-namespaces --no-headers | grep -E -v 'kube-system|docker-registry|mavenrepo|ponnet' | wc -l
54 """
55 return kubectl_deleted.toInteger() == 0
56 }
57 }
Andrea Campanella80dcae02020-01-28 11:23:26 +010058 timeout(1) {
59 sh returnStdout: true, script: """
60 port_fwd_pid=`ps -ax | grep "port-forward -n default service/onos-openflow" | grep -v "grep" | awk '{print \$1}'`
61 if [[ "" != "\$port_fwd_pid" ]]; then
62 kill -9 \$port_fwd_pid > /dev/null 2>&1
63 fi
64 """
65 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070066 }
67 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080068 stage('Install Voltha') {
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070069 timeout(10) {
70 sh returnStdout: true, script: """
71 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
72 cd kind-voltha/
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080073 if ( ${released} ); then
Suchitra Vemuria7dae322020-02-19 22:38:18 -080074 export EXTRA_HELM_FLAGS="--set defaults.image_tag=null,images.onos.tag=4.0.0,images.onos.repository=voltha/voltha-onos"
Suchitra Vemuri946da612020-02-25 16:36:30 -080075 git clone -b '2.3.0rc1' --single-branch --depth 1 https://gerrit.opencord.org/voltha-helm-charts.git
76 cd voltha-helm-charts
77 helm dep update voltha-adapter-openolt
78 helm dep update voltha-adapter-openonu
79 helm dep update voltha-adapter-simulated
80 helm dep update voltha
81 export VOLTHA_ADAPTER_OPEN_OLT_CHART=voltha-helm-charts/voltha-adapter-openolt
82 export VOLTHA_ADAPTER_OPEN_ONU_CHART=voltha-helm-charts/voltha-adapter-openonu
83 export VOLTHA_ADAPTER_SIM_CHART=voltha-helm-charts/voltha-adapter-simulated
84 export VOLTHA_CHART=voltha-helm-charts/voltha
85 cd $WORKSPACE/kind-voltha
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080086 else
87 export EXTRA_HELM_FLAGS='-f $WORKSPACE/${configBaseDir}/${configKubernetesDir}/voltha/${configFileName}.yml'
88 fi
89
90 # VOL-2194 ONOS SSH and REST ports hardcoded to 30115/30120 in tests
91 ONOS_SSH_PORT=30115 ONOS_API_PORT=30120 VOLTHA_LOG_LEVEL=DEBUG WITH_SIM_ADAPTERS=n WITH_RADIUS=y WITH_TP=yes DEPLOY_K8S=no INSTALL_KUBECTL=no INSTALL_HELM=no FANCY=0 ./voltha up
92
93 kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c
94 kubectl get nodes -o wide
95 kubectl get pods -n voltha -o wide
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070096 """
Suchitra Vemuri4ac44632019-11-12 13:41:08 -080097 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -070098 }
Andrea Campanella80dcae02020-01-28 11:23:26 +010099 if ( withKind && deployment_config.fabric_switches.size() > 0 ) {
100 stage('OpenFlow port forward for aggregation switch') {
101 timeout(1) {
102 sh returnStdout: true, script: """
103 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
104 #This uses the default route out, porperly configured is the management
105 mgmt_address=`ip route get 1 | awk '{print \$NF;exit}'`
Andrea Campanella12d1ff02020-02-03 16:52:30 +0100106 bash -c "while true; do kubectl port-forward -n default service/onos-openflow --address=\$mgmt_address 6653:6653; done" >> /dev/null 2>&1 &
Andrea Campanella80dcae02020-01-28 11:23:26 +0100107 """
108 }
109 }
110 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800111 if ( params.configurePod && params.profile != "Default") {
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700112 stage('Push Tech-Profile') {
113 timeout(1) {
114 out_push_tp = sh returnStatus: true, script: """
115 export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf
116 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800117 kubectl cp $WORKSPACE/voltha-system-tests/tests/data/TechProfile-${profile}.json voltha/\$etcd_container:/tmp/flexpod.json
118 put_result=\$(kubectl exec -it \$etcd_container -n voltha -- /bin/sh -c 'cat /tmp/flexpod.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/XGS-PON/64')
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700119 """
120 return out_push_tp == 0
121 }
122 timeout(1) {
123 out_get_tp = sh returnStatus: true, script: """
124 etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}')
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800125 get_result=\$(kubectl exec -it \$etcd_container -n voltha -- /bin/sh -c 'ETCDCTL_API=3 etcdctl get --prefix service/voltha/technology_profiles/XGS-PON/64')
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700126 """
127 return out_get_tp == 0
128 }
129 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800130 }
131 stage('Push Sadis-config') {
132 timeout(1) {
133 sadis_out = sh returnStatus: true, script: """
Suchitra Vemurid3bf85c2020-02-14 14:15:39 -0800134 if [[ "${onosVersion}" == "1.13.9" ]]; then
Suchitra Vemuric735bab2020-02-05 14:55:00 -0800135 curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-${onosVersion}-sadis.json
136 else
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700137 curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/voltha-system-tests/tests/data/${configFileName}-sadis.json
Suchitra Vemuric735bab2020-02-05 14:55:00 -0800138 fi
139
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700140 """
141 return sadis_out == 0
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700142 }
Suchitra Vemuri4ac44632019-11-12 13:41:08 -0800143 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700144 if ( params.reinstallOlt ) {
145 stage('Reinstall OLT software') {
146 for(int i=0; i < deployment_config.olts.size(); i++) {
147 sh returnStdout: true, script: """
148 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} "dpkg --install ${oltDebVersion}"
149 sleep 10
150 """
151 timeout(5) {
152 waitUntil {
153 olt_sw_present = sh returnStdout: true, script: """
154 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'dpkg --list | grep asfvolt16 | wc -l'
Suchitra Vemurif574b942020-01-27 16:39:58 -0800155 if ( ${deployment_config.olts[i].fortygig} ); then
156 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'echo "port ce128 sp=40000" >> /broadcom/qax.soc'
157 fi
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700158 """
159 return olt_sw_present.toInteger() == 1
160 }
161 }
162 }
163 }
164 stage('Restart OLT processes') {
165 for(int i=0; i < deployment_config.olts.size(); i++) {
166 timeout(5) {
167 sh returnStdout: true, script: """
168 ssh-keyscan -H ${deployment_config.olts[i].ip} >> ~/.ssh/known_hosts
169 sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'reboot' || true
170 sleep 120
171 """
172 }
173 timeout(15) {
174 waitUntil {
175 devprocess = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'ps -ef | grep dev_mgmt_daemon | wc -l'"
176 return devprocess.toInteger() > 0
177 }
178 }
179 timeout(15) {
180 waitUntil {
181 openoltprocess = sh returnStdout: true, script: "sshpass -p ${deployment_config.olts[i].pass} ssh -l ${deployment_config.olts[i].user} ${deployment_config.olts[i].ip} 'ps -ef | grep openolt | wc -l'"
182 return openoltprocess.toInteger() > 0
183 }
184 }
185 }
186 }
187 }
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700188 if ( deployment_config.fabric_switches.size() > 0 ) {
189 stage('Switch Configurations in ONOS') {
190 timeout(1) {
191 netcfg_out = sh returnStatus: true, script: """
192 curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:30120/onos/v1/network/configuration --data @$WORKSPACE/${configBaseDir}/${configToscaDir}/voltha/${configFileName}-onos-netcfg-switch.json
193 curl -sSL --user karaf:karaf -X POST http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting/active
Suchitra Vemuric735bab2020-02-05 14:55:00 -0800194
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700195 """
196 return netcfg_out == 0
197 }
198 timeout(1) {
199 waitUntil {
200 sr_active_out = sh returnStatus: true, script: """
You Wangeb76aeb2019-12-09 22:08:23 -0800201 ssh-keygen -R [${deployment_config.nodes[0].ip}]:30115
Suchitra Vemuri6db64b22019-12-09 13:00:54 -0800202 ssh-keyscan -p 30115 -H ${deployment_config.nodes[0].ip} >> ~/.ssh/known_hosts
203 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.dhcpl2relay"
204 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.aaa"
205 sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "log:set TRACE org.opencord.olt"
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700206 curl -sSL --user karaf:karaf -X GET http://${deployment_config.nodes[0].ip}:30120/onos/v1/applications/org.onosproject.segmentrouting | jq '.state' | grep ACTIVE
207 """
208 return sr_active_out == 0
209 }
210 }
211 timeout(1) {
212 // FIXME support multiple OLTs
213 for(int i=0; i < deployment_config.hosts.src.size(); i++) {
214 xconnect_out = sh returnStatus: true, script: """
Suchitra Vemuric4d92932020-01-16 21:50:30 -0800215 version=\$(sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "summary" | grep version)
Suchitra Vemurid3bf85c2020-02-14 14:15:39 -0800216 sleep 10
Suchitra Vemuric4d92932020-01-16 21:50:30 -0800217 if [[ \$version == *"version=2.2"* ]]; then
218 curl -X POST --user karaf:karaf --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"deviceId": "${deployment_config.fabric_switches[0].device_id}", "vlanId": "${deployment_config.hosts.src[i].s_tag}", "endpoints": [${deployment_config.fabric_switches[0].bngPort},${deployment_config.fabric_switches[0].oltPort}]}' 'http://${deployment_config.nodes[0].ip}:30120/onos/segmentrouting/xconnect'
219 else
220 curl -X POST --user karaf:karaf --header 'Content-Type: application/json' --header 'Accept: application/json' -d '{"deviceId": "${deployment_config.fabric_switches[0].device_id}", "vlanId": "${deployment_config.hosts.src[i].s_tag}", "ports": [${deployment_config.fabric_switches[0].bngPort},${deployment_config.fabric_switches[0].oltPort}]}' 'http://${deployment_config.nodes[0].ip}:30120/onos/segmentrouting/xconnect'
221 fi
Suchitra Vemuria8e7bb22019-10-22 15:50:05 -0700222 """
223 }
224 }
225 }
226 }
227 currentBuild.result = 'SUCCESS'
228 } catch (err) {
229 currentBuild.result = 'FAILURE'
230 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
231 throw err
232 }
233 echo "RESULT: ${currentBuild.result}"
234 }
235}