blob: 21376522dd35924c48373a1765735b3955a90217 [file] [log] [blame]
Zack Williams15bc4a52018-07-23 15:31:58 -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
Zack Williams66500002018-09-06 15:29:05 -070015// Run XOS api tests after changing the containers to use the current XOS
16// container versions as parent, which may include synchronizer framework
17// changes
Zack Williams15bc4a52018-07-23 15:31:58 -070018
19CORE_CONTAINER="null"
20
21pipeline {
22
23 /* no label, executor is determined by JJB */
24 agent {
25 label "${params.executorNode}"
26 }
27
28 stages {
29
30 stage('repo') {
31 steps {
32 checkout(changelog: false, \
33 poll: false,
34 scm: [$class: 'RepoScm', \
35 manifestRepositoryUrl: "${params.manifestUrl}", \
36 manifestBranch: "${params.manifestBranch}", \
37 currentBranch: true, \
38 destinationDir: 'cord', \
39 forceSync: true,
40 resetFirst: true, \
41 quiet: true, \
42 jobs: 4, \
43 showAllChanges: true] \
44 )
45 }
46 }
47
48 stage('patch') {
49 steps {
50 sh """
51 #!/usr/bin/env bash
52 set -eu -o pipefail
53
54 VERSIONFILE="" # file path to file containing version number
55 NEW_VERSION="" # version number found in VERSIONFILE
56 releaseversion=0
57
58 function read_version {
59 if [ -f "VERSION" ]
60 then
61 NEW_VERSION=\$(head -n1 "VERSION")
62 VERSIONFILE="VERSION"
63 elif [ -f "package.json" ]
64 then
65 NEW_VERSION=\$(python -c 'import json,sys;obj=json.load(sys.stdin); print obj["version"]' < package.json)
66 VERSIONFILE="package.json"
67 else
68 echo "ERROR: No versioning file found!"
69 exit 1
70 fi
71 }
72
73 # check if the version is a released version
74 function check_if_releaseversion {
75 if [[ "\$NEW_VERSION" =~ ^([0-9]+)\\.([0-9]+)\\.([0-9]+)\$ ]]
76 then
77 echo "Version string '\$NEW_VERSION' in '\$VERSIONFILE' is a SemVer released version!"
78 releaseversion=1
79 else
80 echo "Version string '\$NEW_VERSION' in '\$VERSIONFILE' is not a SemVer released version, skipping."
81 fi
82 }
83
84 pushd cord
85 PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml)
86 repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}"
87
88 pushd \$PROJECT_PATH
89 echo "Existing git tags:"
90 git tag -n
91
92 read_version
93 check_if_releaseversion
94
95 # perform checks if a released version
96 if [ "\$releaseversion" -eq "1" ]
97 then
98 git config --global user.email "apitest@opencord.org"
99 git config --global user.name "API Test"
100
101 git tag -a "\$NEW_VERSION" -m "Tagged for api test on Gerrit patchset: ${gerritChangeNumber}"
102
103 echo "Tags including new tag:"
104 git tag -n
105
106 fi
107 popd
108 popd
109 """
110 }
111 }
Zack Williams1f672932018-07-24 11:24:10 -0700112
Zack Williams66500002018-09-06 15:29:05 -0700113 stage('tag update') {
Zack Williams15bc4a52018-07-23 15:31:58 -0700114 steps {
115 sh """
Zack Williams66500002018-09-06 15:29:05 -0700116 #!/usr/bin/env bash
117 set -eu -o pipefail
118
Scott Bakerc71f9ca2019-03-04 09:38:13 -0800119 ALLOWED_SERVICES="att-workflow-driver fabric fabric-crossconnect kubernetes-service olt-service onos-service rcord simpleexampleservice"
120
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700121 echo "" > $WORKSPACE/xos_tags.yaml
122 echo "" > $WORKSPACE/updated_dockerfiles
Zack Williams15bc4a52018-07-23 15:31:58 -0700123 XOS_MAJOR=\$(cut -b 1 cord/orchestration/xos/VERSION)
Zack Williams66500002018-09-06 15:29:05 -0700124 XOS_VERSION=\$(cat cord/orchestration/xos/VERSION)
Zack Williams1f672932018-07-24 11:24:10 -0700125
Zack Williams66500002018-09-06 15:29:05 -0700126 # update services
Matteo Scandoloed175c12019-02-14 11:11:36 -0800127 for df in cord/orchestration/xos_services/*/Dockerfile.synchronizer
Zack Williams15bc4a52018-07-23 15:31:58 -0700128 do
Scott Bakerc71f9ca2019-03-04 09:38:13 -0800129 service_dirname=\$(basename \$(dirname "\$df"))
130 if [[ "\$ALLOWED_SERVICES" =~ "\$service_dirname" ]]
Zack Williams42acdd12018-08-17 13:58:07 -0700131 then
Scott Bakerc71f9ca2019-03-04 09:38:13 -0800132 df_contents=\$(cat "\$df")
133 if [[ "\$df_contents" =~ "FROM xosproject/xos-synchronizer-base:\$XOS_MAJOR" ||
134 "\$df_contents" =~ "FROM xosproject/xos-synchronizer-base:master" ]]
135 then
136 sed -i "s/^FROM\\(.*\\):.*\$/FROM\\1:\$XOS_VERSION/" "\$df"
137 echo "$WORKSPACE/\$df" >> $WORKSPACE/updated_dockerfiles
138 fi
139 else
140 echo "\$service_dirname not in ALLOWED_SERVICES. Not Testing."
Zack Williams42acdd12018-08-17 13:58:07 -0700141 fi
Zack Williams15bc4a52018-07-23 15:31:58 -0700142 done
Zack Williams66500002018-09-06 15:29:05 -0700143
144 # create values file with core version tags
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700145 # not indented because heredoc requires it
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700146 cat << EOF > $WORKSPACE/xos_tags.yaml
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700147---
Zack Williamseffda9e2018-10-10 10:49:49 -0700148images:
149 xos_core:
150 tag: '\$XOS_VERSION'
151 xos_chameleon:
152 tag: '\$XOS_VERSION'
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700153EOF
Zack Williams15bc4a52018-07-23 15:31:58 -0700154 """
155 }
156 }
157
Zack Williams1f672932018-07-24 11:24:10 -0700158 stage('unittest') {
159 steps {
160 sh """
161 #!/usr/bin/env bash
162 set -e -o pipefail
163
164 cd "\${WORKSPACE}"
165
166 export XOS_DIR=\${WORKSPACE}/cord/orchestration/xos
167 \$XOS_DIR/scripts/setup_venv.sh
168 source "\${WORKSPACE}/venv-xos/bin/activate"
169
170 for df in \$(cat "\${WORKSPACE}/updated_dockerfiles")
171 do
172 projectdir=\$(dirname "\${df}")
173 if [ -e "\${projectdir}/xos/unittest.cfg" ]
174 then
175 pushd \${projectdir}/xos
176 echo "Performing nose2 tests"
177 nose2 --verbose --coverage-report xml --coverage-report term --junit-xml
178 popd
179 else
180 echo "No unit tests found for project \$(basename \${projectdir})"
181 fi
182 done
183 """
Zack Williams96a73692019-02-27 17:04:00 -0700184 junit testResults: '**/nose2-junit.xml', allowEmptyResults: true
185 cobertura coberturaReportFile: '**/coverage.xml', fileCoverageTargets: '80, 0, 0', methodCoverageTargets: '50, 0, 0', failNoReports: false
Zack Williams1f672932018-07-24 11:24:10 -0700186 }
187 }
188
Zack Williams15bc4a52018-07-23 15:31:58 -0700189 stage('prep') {
190 parallel {
191
192 stage('images') {
193 steps {
194 sh '''
195 pushd cord/automation-tools/developer
196 mkdir ib_logs
197 ./imagebuilder.py -l ib_logs -a ib_actions.yml -g ib_graph.dot -f ../../helm-charts/examples/filter-images.yaml
198 popd
199 '''
200 archiveArtifacts artifacts: 'cord/automation-tools/developer/ib_actions.yml, cord/automation-tools/developer/ib_graph.dot, cord/automation-tools/developer/ib_logs/*', fingerprint: true
201 }
202 }
203
204 stage('minikube') {
205 steps {
206 /* see https://github.com/kubernetes/minikube/#linux-continuous-integration-without-vm-support */
207 sh '''
208 export MINIKUBE_WANTUPDATENOTIFICATION=false
209 export MINIKUBE_WANTREPORTERRORPROMPT=false
210 export CHANGE_MINIKUBE_NONE_USER=true
211 export MINIKUBE_HOME=$HOME
212 mkdir -p $HOME/.kube || true
213 touch $HOME/.kube/config
214 export KUBECONFIG=$HOME/.kube/config
215 sudo -E /usr/bin/minikube start --vm-driver=none
216 '''
217 script {
218 timeout(3) {
219 waitUntil {
220 sleep 5
221 def kc_ret = sh script: "kubectl get po", returnStatus: true
222 return (kc_ret == 0);
223 }
224 }
225 }
226 }
227 }
228 }
229 }
230
231 stage('helm') {
232 steps {
233 sh '''
234 helm init
235 sleep 60
236 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
237 '''
238 }
239 }
240
241 stage('build') {
242 steps {
243 sh """
244 #!/usr/bin/env bash
245 set -eu -o pipefail
246
Zack Williams66500002018-09-06 15:29:05 -0700247 helm_install_args='-f examples/image-tag-candidate.yaml -f examples/imagePullPolicy-IfNotPresent.yaml -f examples/api-test-values.yaml -f $WORKSPACE/xos_tags.yaml'
Zack Williams15bc4a52018-07-23 15:31:58 -0700248
249 pushd cord/helm-charts
250
Zack Williamsa26fc9d2018-09-18 16:49:01 -0700251 helm install -f examples/kafka-single.yaml --version 0.8.8 -n cord-kafka incubator/kafka
Luca Prete2ae90132018-12-13 17:14:01 -0800252
253 git clone https://gerrit.opencord.org/helm-repo-tools
254 helm-repo-tools/wait_for_pods.sh
Zack Williamsa26fc9d2018-09-18 16:49:01 -0700255
Zack Williams15bc4a52018-07-23 15:31:58 -0700256 helm dep up xos-core
257 helm install \${helm_install_args} xos-core -n xos-core
258
259 # Pick which chart(s) to load depending on the project being tested
260 # In regex, please list repos in same order as requirements.yaml in the chart(s) loaded!
261
262 if [[ "$GERRIT_PROJECT" =~ ^(rcord|onos-service|fabric|olt-service|vsg-hw|vrouter)\$ ]]; then
263 helm dep update xos-profiles/rcord-lite
264 helm install \${helm_install_args} xos-profiles/rcord-lite -n rcord-lite
Zack Williams15bc4a52018-07-23 15:31:58 -0700265
266 elif [[ "$GERRIT_PROJECT" =~ ^(vMME|vspgwc|vspgwu|vHSS|hss_db|internetemulator|sdn-controller|epc-service|mcord|progran)\$ ]]; then
267 helm dep update xos-profiles/base-openstack
268 helm dep update xos-profiles/mcord
269 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
270 helm install \${helm_install_args} xos-profiles/mcord -n mcord
Zack Williams15bc4a52018-07-23 15:31:58 -0700271
272 elif [[ "$GERRIT_PROJECT" =~ ^(openstack|vtn-service|exampleservice|addressmanager)\$ ]]; then
273 # NOTE: onos-service is included in base-openstack, but tested w/rcord-lite chart
274
275 helm dep update xos-profiles/base-openstack
276 helm dep update xos-profiles/demo-exampleservice
277 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
278 helm install \${helm_install_args} xos-profiles/demo-exampleservice -n demo-exampleservice
279
280 elif [[ "$GERRIT_PROJECT" =~ ^(kubernetes-service|simpleexampleservice)\$ ]]; then
281 helm dep update xos-profiles/base-kubernetes
282 helm dep update xos-profiles/demo-simpleexampleservice
283 helm install \${helm_install_args} xos-profiles/base-kubernetes -n base-kubernetes
284 helm install \${helm_install_args} xos-profiles/demo-simpleexampleservice -n demo-simpleexampleservice
285
286 elif [[ "$GERRIT_PROJECT" =~ ^(hippie-oss)\$ ]]; then
287 helm dep update xos-services/hippie-oss
288 helm install \${helm_install_args} xos-services/hippie-oss -n hippie-oss
289
290 elif [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
291 echo "No additional charts to install for testing $GERRIT_PROJECT"
292
293 else
294 echo "Couldn't find a chart to test project: $GERRIT_PROJECT!"
295 exit 1
296 fi
297
Kailash Khalasi2bc499b2018-07-25 16:10:11 -0700298 # wait for services to load
Luca Prete2ae90132018-12-13 17:14:01 -0800299 JOBS_TIMEOUT=900 ./helm-repo-tools/wait_for_jobs.sh
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700300
Zack Williams15bc4a52018-07-23 15:31:58 -0700301 echo "# Checking helm deployments"
302 kubectl get pods
303 helm list
304
305 for hchart in \$(helm list -q);
306 do
307 echo "## 'helm status' for chart: \${hchart} ##"
308 helm status "\${hchart}"
309 done
310
311 popd
312 """
313 }
314 }
315
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700316 stage('wait for core') {
317 steps {
318 timeout(time:5) {
319 waitUntil {
320 script {
321 try {
322 sh """
323 CORE_POD=\$(kubectl get pods | grep xos-core | awk '{print \$1}')
324 CHAM_POD=\$(kubectl get pods | grep chameleon | awk '{print \$1}')
325 CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}')
326 XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
327 kubectl logs \$CORE_POD | grep "XOS core entering wait loop"
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700328 curl -I -u admin@opencord.org:letmein http://\$XOS_CHAMELEON:9101/xosapi/v1/core/users | grep "200 OK"
Kailash Khalasi309872a2018-07-31 12:39:02 -0700329 sleep 30
Kailash Khalasi25ee0722018-07-30 14:26:41 -0700330 curl -I -u admin@opencord.org:letmein http://\$XOS_CHAMELEON:9101/xosapi/v1/core/sites | grep "200 OK"
331 """
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700332 return true
333 } catch (exception) {
334 return false
335 }
336 }
337 }
338 }
339 }
340 }
341
Zack Williams15bc4a52018-07-23 15:31:58 -0700342 stage('setup') {
343 steps {
344 sh """
345 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
346
347 docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xosapitests.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xosapitests.xtarget
348 docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xosserviceapitests.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xosserviceapitests.xtarget
349 docker cp $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/targets/xoslibrary.xtarget \$CORE_CONTAINER:/opt/xos/lib/xos-genx/xosgenx/targets/xoslibrary.xtarget
350 docker exec -i \$CORE_CONTAINER /bin/bash -c "xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xosapitests.xtarget /opt/xos/core/models/core.xproto" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/XOSCoreAPITests.robot
351
352 # create additional testing files if services are loaded
353 if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
354 export testname=_service_api.robot
355 export library=_library.robot
356
357 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
358 echo \$SERVICES
359
360 for i in \$SERVICES; do bash -c "docker exec -i \$CORE_CONTAINER /bin/bash -c 'xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xosserviceapitests.xtarget /opt/xos/dynamic_services/\$i/\$i.xproto /opt/xos/core/models/core.xproto'" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/\$i\$testname; done
361
362 for i in \$SERVICES; do bash -c "docker exec -i \$CORE_CONTAINER /bin/bash -c 'xosgenx --target /opt/xos/lib/xos-genx/xosgenx/targets/./xoslibrary.xtarget /opt/xos/dynamic_services/\$i/\$i.xproto /opt/xos/core/models/core.xproto'" > $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/\$i\$library; done
363 fi
364 """
365 }
366 }
367
368 stage('test') {
369 steps {
370 sh """
371 pushd cord/test/cord-tester/src/test/cord-api/Tests
372
373 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
374 CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}')
375 XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
376
377 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Properties/
378 sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'\$XOS_CHAMELEON\'/\" RestApiProperties.py
379 sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'9101\'/\" RestApiProperties.py
380 sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py
381 sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
382 sed -i \"s/^\\(PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
383
384 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests
Kailashf14606e2018-12-06 14:11:11 -0800385 robot -d Log -T XOSCoreAPITests.robot || true
Zack Williams15bc4a52018-07-23 15:31:58 -0700386
387 # do additional tests if services are loaded
388 if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
389 export testname=_service_api.robot
390 export library=_library.robot
391 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
392 echo \$SERVICES
393
Kailashf14606e2018-12-06 14:11:11 -0800394 for i in \$SERVICES; do bash -c "robot -d Log -T -v TESTLIBRARY:\$i\$library \$i\$testname"; sleep 2; done || true
Zack Williams15bc4a52018-07-23 15:31:58 -0700395 fi
396
397 popd
398 """
399 }
400 }
401
402 stage('Publish') {
403 steps {
404 sh """
405 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
406 cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/Log/*ml ./RobotLogs
407 """
408
409 step([$class: 'RobotPublisher',
410 disableArchiveOutput: false,
411 logFileName: 'RobotLogs/log*.html',
412 otherFiles: '',
413 outputFileName: 'RobotLogs/output*.xml',
414 outputPath: '.',
Kailash Khalasiad6cfda2018-07-25 11:31:35 -0700415 passThreshold: 100,
Zack Williams15bc4a52018-07-23 15:31:58 -0700416 reportFileName: 'RobotLogs/report*.html',
417 unstableThreshold: 0]);
418 }
419 }
420
421 }
422
423 post {
424 always {
425 sh '''
Kailash Khalasiecb4eb62018-07-31 15:20:19 -0700426 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
427 do
428 kubectl logs \$pod > $WORKSPACE/\$pod.log;
429 done
430
Zack Williams15bc4a52018-07-23 15:31:58 -0700431 kubectl get pods --all-namespaces
432
433 echo "# removing helm deployments"
434 kubectl get pods
435 helm list
436
437 for hchart in \$(helm list -q);
438 do
439 echo "## Purging chart: \${hchart} ##"
440 helm delete --purge "\${hchart}"
441 done
442
443 sudo minikube delete
444 '''
Kailash Khalasiecb4eb62018-07-31 15:20:19 -0700445 archiveArtifacts artifacts: '*.log'
Zack Williams15bc4a52018-07-23 15:31:58 -0700446 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "suchitra@opennetworking.org, you@opennetworking.org, kailash@opennetworking.org", sendToIndividuals: false])
447 }
448 }
449}