blob: 208d8b4a13e2d84d2f50d2e2ac99ad42787a776f [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
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700119 echo "" > $WORKSPACE/xos_tags.yaml
120 echo "" > $WORKSPACE/updated_dockerfiles
Zack Williams15bc4a52018-07-23 15:31:58 -0700121 XOS_MAJOR=\$(cut -b 1 cord/orchestration/xos/VERSION)
Zack Williams66500002018-09-06 15:29:05 -0700122 XOS_VERSION=\$(cat cord/orchestration/xos/VERSION)
Zack Williams1f672932018-07-24 11:24:10 -0700123
Zack Williams66500002018-09-06 15:29:05 -0700124 # update services
Zack Williams15bc4a52018-07-23 15:31:58 -0700125 for df in cord/orchestration/xos_services/*/Dockerfile.synchronizer cord/orchestration/profiles/*/Dockerfile.synchronizer
126 do
Kailash Khalasi70b626e2018-08-21 11:12:02 -0700127 df_contents=\$(cat "\$df")
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700128 if [[ "\$df_contents" =~ "FROM xosproject/xos-synchronizer-base:\$XOS_MAJOR" ||
Zack Williams42acdd12018-08-17 13:58:07 -0700129 "\$df_contents" =~ "FROM xosproject/xos-synchronizer-base:master" ]]
130 then
Zack Williams66500002018-09-06 15:29:05 -0700131 sed -i "s/^FROM\\(.*\\):.*\$/FROM\\1:\$XOS_VERSION/" "\$df"
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700132 echo "$WORKSPACE/\$df" >> $WORKSPACE/updated_dockerfiles
Zack Williams42acdd12018-08-17 13:58:07 -0700133 fi
Zack Williams15bc4a52018-07-23 15:31:58 -0700134 done
Zack Williams66500002018-09-06 15:29:05 -0700135
136 # create values file with core version tags
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700137 # not indented because heredoc requires it
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700138 cat << EOF > $WORKSPACE/xos_tags.yaml
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700139---
Kailash Khalasif57dcdd2018-09-16 09:22:27 -0700140xos_coreImage: 'xosproject/xos-core:\$XOS_VERSION'
141xos_chameleonImage: 'xosproject/chameleon:\$XOS_VERSION'
142xos_toscaImage: 'xosproject/xos-tosca:\$XOS_VERSION'
Zack Williams9b6b5eb2018-09-14 13:45:18 -0700143EOF
Zack Williams15bc4a52018-07-23 15:31:58 -0700144 """
145 }
146 }
147
Zack Williams1f672932018-07-24 11:24:10 -0700148 stage('unittest') {
149 steps {
150 sh """
151 #!/usr/bin/env bash
152 set -e -o pipefail
153
154 cd "\${WORKSPACE}"
155
156 export XOS_DIR=\${WORKSPACE}/cord/orchestration/xos
157 \$XOS_DIR/scripts/setup_venv.sh
158 source "\${WORKSPACE}/venv-xos/bin/activate"
159
160 for df in \$(cat "\${WORKSPACE}/updated_dockerfiles")
161 do
162 projectdir=\$(dirname "\${df}")
163 if [ -e "\${projectdir}/xos/unittest.cfg" ]
164 then
165 pushd \${projectdir}/xos
166 echo "Performing nose2 tests"
167 nose2 --verbose --coverage-report xml --coverage-report term --junit-xml
168 popd
169 else
170 echo "No unit tests found for project \$(basename \${projectdir})"
171 fi
172 done
173 """
174 junit '**/nose2-junit.xml'
175 cobertura coberturaReportFile: '**/coverage.xml', fileCoverageTargets: '80, 0, 0', methodCoverageTargets: '50, 0, 0'
176 }
177 }
178
Zack Williams15bc4a52018-07-23 15:31:58 -0700179 stage('prep') {
180 parallel {
181
182 stage('images') {
183 steps {
184 sh '''
185 pushd cord/automation-tools/developer
186 mkdir ib_logs
187 ./imagebuilder.py -l ib_logs -a ib_actions.yml -g ib_graph.dot -f ../../helm-charts/examples/filter-images.yaml
188 popd
189 '''
190 archiveArtifacts artifacts: 'cord/automation-tools/developer/ib_actions.yml, cord/automation-tools/developer/ib_graph.dot, cord/automation-tools/developer/ib_logs/*', fingerprint: true
191 }
192 }
193
194 stage('minikube') {
195 steps {
196 /* see https://github.com/kubernetes/minikube/#linux-continuous-integration-without-vm-support */
197 sh '''
198 export MINIKUBE_WANTUPDATENOTIFICATION=false
199 export MINIKUBE_WANTREPORTERRORPROMPT=false
200 export CHANGE_MINIKUBE_NONE_USER=true
201 export MINIKUBE_HOME=$HOME
202 mkdir -p $HOME/.kube || true
203 touch $HOME/.kube/config
204 export KUBECONFIG=$HOME/.kube/config
205 sudo -E /usr/bin/minikube start --vm-driver=none
206 '''
207 script {
208 timeout(3) {
209 waitUntil {
210 sleep 5
211 def kc_ret = sh script: "kubectl get po", returnStatus: true
212 return (kc_ret == 0);
213 }
214 }
215 }
216 }
217 }
218 }
219 }
220
221 stage('helm') {
222 steps {
223 sh '''
224 helm init
225 sleep 60
226 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
227 '''
228 }
229 }
230
231 stage('build') {
232 steps {
233 sh """
234 #!/usr/bin/env bash
235 set -eu -o pipefail
236
Zack Williams66500002018-09-06 15:29:05 -0700237 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 -0700238
239 pushd cord/helm-charts
240
241 helm dep up xos-core
242 helm install \${helm_install_args} xos-core -n xos-core
243
244 # Pick which chart(s) to load depending on the project being tested
245 # In regex, please list repos in same order as requirements.yaml in the chart(s) loaded!
246
247 if [[ "$GERRIT_PROJECT" =~ ^(rcord|onos-service|fabric|olt-service|vsg-hw|vrouter)\$ ]]; then
248 helm dep update xos-profiles/rcord-lite
249 helm install \${helm_install_args} xos-profiles/rcord-lite -n rcord-lite
Zack Williams15bc4a52018-07-23 15:31:58 -0700250
251 elif [[ "$GERRIT_PROJECT" =~ ^(vMME|vspgwc|vspgwu|vHSS|hss_db|internetemulator|sdn-controller|epc-service|mcord|progran)\$ ]]; then
252 helm dep update xos-profiles/base-openstack
253 helm dep update xos-profiles/mcord
254 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
255 helm install \${helm_install_args} xos-profiles/mcord -n mcord
Zack Williams15bc4a52018-07-23 15:31:58 -0700256
257 elif [[ "$GERRIT_PROJECT" =~ ^(openstack|vtn-service|exampleservice|addressmanager)\$ ]]; then
258 # NOTE: onos-service is included in base-openstack, but tested w/rcord-lite chart
259
260 helm dep update xos-profiles/base-openstack
261 helm dep update xos-profiles/demo-exampleservice
262 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
263 helm install \${helm_install_args} xos-profiles/demo-exampleservice -n demo-exampleservice
264
265 elif [[ "$GERRIT_PROJECT" =~ ^(kubernetes-service|simpleexampleservice)\$ ]]; then
266 helm dep update xos-profiles/base-kubernetes
267 helm dep update xos-profiles/demo-simpleexampleservice
268 helm install \${helm_install_args} xos-profiles/base-kubernetes -n base-kubernetes
269 helm install \${helm_install_args} xos-profiles/demo-simpleexampleservice -n demo-simpleexampleservice
270
271 elif [[ "$GERRIT_PROJECT" =~ ^(hippie-oss)\$ ]]; then
272 helm dep update xos-services/hippie-oss
273 helm install \${helm_install_args} xos-services/hippie-oss -n hippie-oss
274
275 elif [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
276 echo "No additional charts to install for testing $GERRIT_PROJECT"
277
278 else
279 echo "Couldn't find a chart to test project: $GERRIT_PROJECT!"
280 exit 1
281 fi
282
Kailash Khalasi2bc499b2018-07-25 16:10:11 -0700283 # wait for services to load
Kailash Khalasiedb48b12018-07-31 13:01:01 -0700284 JOBS_TIMEOUT=900 ./scripts/wait_for_jobs.sh
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700285
Zack Williams15bc4a52018-07-23 15:31:58 -0700286 echo "# Checking helm deployments"
287 kubectl get pods
288 helm list
289
290 for hchart in \$(helm list -q);
291 do
292 echo "## 'helm status' for chart: \${hchart} ##"
293 helm status "\${hchart}"
294 done
295
296 popd
297 """
298 }
299 }
300
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700301 stage('wait for core') {
302 steps {
303 timeout(time:5) {
304 waitUntil {
305 script {
306 try {
307 sh """
308 CORE_POD=\$(kubectl get pods | grep xos-core | awk '{print \$1}')
309 CHAM_POD=\$(kubectl get pods | grep chameleon | awk '{print \$1}')
310 CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}')
311 XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
312 kubectl logs \$CORE_POD | grep "XOS core entering wait loop"
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700313 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 -0700314 sleep 30
Kailash Khalasi25ee0722018-07-30 14:26:41 -0700315 curl -I -u admin@opencord.org:letmein http://\$XOS_CHAMELEON:9101/xosapi/v1/core/sites | grep "200 OK"
316 """
Kailash Khalasi512a7e52018-07-30 09:12:16 -0700317 return true
318 } catch (exception) {
319 return false
320 }
321 }
322 }
323 }
324 }
325 }
326
Zack Williams15bc4a52018-07-23 15:31:58 -0700327 stage('setup') {
328 steps {
329 sh """
330 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
331
332 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
333 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
334 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
335 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
336
337 # create additional testing files if services are loaded
338 if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
339 export testname=_service_api.robot
340 export library=_library.robot
341
342 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
343 echo \$SERVICES
344
345 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
346
347 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
348 fi
349 """
350 }
351 }
352
353 stage('test') {
354 steps {
355 sh """
356 pushd cord/test/cord-tester/src/test/cord-api/Tests
357
358 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
359 CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}')
360 XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
361
362 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Properties/
363 sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'\$XOS_CHAMELEON\'/\" RestApiProperties.py
364 sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'9101\'/\" RestApiProperties.py
365 sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py
366 sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
367 sed -i \"s/^\\(PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
368
369 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests
Kailash Khalasi07c97a42018-08-06 12:15:43 -0700370 pybot -d Log -T XOSCoreAPITests.robot || true
Zack Williams15bc4a52018-07-23 15:31:58 -0700371
372 # do additional tests if services are loaded
373 if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
374 export testname=_service_api.robot
375 export library=_library.robot
376 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
377 echo \$SERVICES
378
Kailash Khalasi07c97a42018-08-06 12:15:43 -0700379 for i in \$SERVICES; do bash -c "pybot -d Log -T -v TESTLIBRARY:\$i\$library \$i\$testname"; sleep 2; done || true
Zack Williams15bc4a52018-07-23 15:31:58 -0700380 fi
381
382 popd
383 """
384 }
385 }
386
387 stage('Publish') {
388 steps {
389 sh """
390 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
391 cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/Log/*ml ./RobotLogs
392 """
393
394 step([$class: 'RobotPublisher',
395 disableArchiveOutput: false,
396 logFileName: 'RobotLogs/log*.html',
397 otherFiles: '',
398 outputFileName: 'RobotLogs/output*.xml',
399 outputPath: '.',
Kailash Khalasiad6cfda2018-07-25 11:31:35 -0700400 passThreshold: 100,
Zack Williams15bc4a52018-07-23 15:31:58 -0700401 reportFileName: 'RobotLogs/report*.html',
402 unstableThreshold: 0]);
403 }
404 }
405
406 }
407
408 post {
409 always {
410 sh '''
Kailash Khalasiecb4eb62018-07-31 15:20:19 -0700411 for pod in \$(kubectl get pods --no-headers | awk '{print \$1}');
412 do
413 kubectl logs \$pod > $WORKSPACE/\$pod.log;
414 done
415
Zack Williams15bc4a52018-07-23 15:31:58 -0700416 kubectl get pods --all-namespaces
417
418 echo "# removing helm deployments"
419 kubectl get pods
420 helm list
421
422 for hchart in \$(helm list -q);
423 do
424 echo "## Purging chart: \${hchart} ##"
425 helm delete --purge "\${hchart}"
426 done
427
428 sudo minikube delete
429 '''
Kailash Khalasiecb4eb62018-07-31 15:20:19 -0700430 archiveArtifacts artifacts: '*.log'
Zack Williams15bc4a52018-07-23 15:31:58 -0700431 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "suchitra@opennetworking.org, you@opennetworking.org, kailash@opennetworking.org", sendToIndividuals: false])
432 }
433 }
434}