blob: dd7094399bbba9b078f5b43bbfa6fc57003df67a [file] [log] [blame]
Kailash Khalasi54170812018-05-24 12:50:22 -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 Williams9d68aa32018-07-12 11:50:37 -070015// Run XOS api tests on HEAD of a branch (usually master), loading the
16// corresponding charts
17
Kailash Khalasi54170812018-05-24 12:50:22 -070018CORE_CONTAINER="null"
19
20pipeline {
21
22 /* no label, executor is determined by JJB */
23 agent {
24 label "${params.executorNode}"
25 }
26
27 stages {
28
29 stage('repo') {
30 steps {
31 checkout(changelog: false, \
32 poll: false,
33 scm: [$class: 'RepoScm', \
34 manifestRepositoryUrl: "${params.manifestUrl}", \
35 manifestBranch: "${params.manifestBranch}", \
36 currentBranch: true, \
37 destinationDir: 'cord', \
38 forceSync: true,
39 resetFirst: true, \
40 quiet: true, \
41 jobs: 4, \
42 showAllChanges: true] \
43 )
44 }
45 }
46
47 stage('patch') {
48 steps {
49 sh """
Zack Williams0efdd262018-06-28 14:17:29 -070050 #!/usr/bin/env bash
51 set -eu -o pipefail
52
53 VERSIONFILE="" # file path to file containing version number
54 NEW_VERSION="" # version number found in VERSIONFILE
Zack Williams2d0ac6b2018-06-29 09:17:41 -070055 releaseversion=0
Zack Williams0efdd262018-06-28 14:17:29 -070056
57 function read_version {
58 if [ -f "VERSION" ]
59 then
60 NEW_VERSION=\$(head -n1 "VERSION")
61 VERSIONFILE="VERSION"
62 elif [ -f "package.json" ]
63 then
64 NEW_VERSION=\$(python -c 'import json,sys;obj=json.load(sys.stdin); print obj["version"]' < package.json)
65 VERSIONFILE="package.json"
66 else
67 echo "ERROR: No versioning file found!"
68 exit 1
69 fi
70 }
71
72 # check if the version is a released version
73 function check_if_releaseversion {
74 if [[ "\$NEW_VERSION" =~ ^([0-9]+)\\.([0-9]+)\\.([0-9]+)\$ ]]
75 then
76 echo "Version string '\$NEW_VERSION' in '\$VERSIONFILE' is a SemVer released version!"
77 releaseversion=1
78 else
79 echo "Version string '\$NEW_VERSION' in '\$VERSIONFILE' is not a SemVer released version, skipping."
80 fi
81 }
82
Kailash Khalasi54170812018-05-24 12:50:22 -070083 pushd cord
84 PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml)
85 repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}"
Zack Williams0efdd262018-06-28 14:17:29 -070086
87 pushd \$PROJECT_PATH
88 echo "Existing git tags:"
89 git tag -n
90
91 read_version
92 check_if_releaseversion
93
94 # perform checks if a released version
95 if [ "\$releaseversion" -eq "1" ]
96 then
97 git config --global user.email "apitest@opencord.org"
98 git config --global user.name "API Test"
99
100 git tag -a "\$NEW_VERSION" -m "Tagged for api test on Gerrit patchset: ${gerritChangeNumber}"
101
102 echo "Tags including new tag:"
103 git tag -n
104
105 fi
Kailash Khalasi54170812018-05-24 12:50:22 -0700106 popd
Zack Williams0efdd262018-06-28 14:17:29 -0700107 popd
108 """
Kailash Khalasi54170812018-05-24 12:50:22 -0700109 }
110 }
111
Zack Williams0efdd262018-06-28 14:17:29 -0700112
Kailash Khalasi54170812018-05-24 12:50:22 -0700113 stage('prep') {
114 parallel {
115
116 stage('images') {
117 steps {
118 sh '''
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700119 pushd cord/automation-tools/developer
Zack Williamsa3185032018-07-03 17:38:33 -0700120 mkdir ib_logs
Zack Williams7fea5722018-07-03 21:17:47 -0700121 ./imagebuilder.py -l ib_logs -a ib_actions.yml -g ib_graph.dot -f ../../helm-charts/examples/filter-images.yaml
Kailash Khalasi54170812018-05-24 12:50:22 -0700122 popd
123 '''
Zack Williamsa3185032018-07-03 17:38:33 -0700124 archiveArtifacts artifacts: 'cord/automation-tools/developer/ib_actions.yml, cord/automation-tools/developer/ib_graph.dot, cord/automation-tools/developer/ib_logs/*', fingerprint: true
Kailash Khalasi54170812018-05-24 12:50:22 -0700125 }
126 }
127
128 stage('minikube') {
129 steps {
130 /* see https://github.com/kubernetes/minikube/#linux-continuous-integration-without-vm-support */
131 sh '''
132 export MINIKUBE_WANTUPDATENOTIFICATION=false
133 export MINIKUBE_WANTREPORTERRORPROMPT=false
134 export CHANGE_MINIKUBE_NONE_USER=true
135 export MINIKUBE_HOME=$HOME
136 mkdir -p $HOME/.kube || true
137 touch $HOME/.kube/config
138 export KUBECONFIG=$HOME/.kube/config
139 sudo -E /usr/bin/minikube start --vm-driver=none
140 '''
141 script {
142 timeout(3) {
143 waitUntil {
144 sleep 5
145 def kc_ret = sh script: "kubectl get po", returnStatus: true
146 return (kc_ret == 0);
147 }
148 }
149 }
150 }
151 }
152 }
153 }
154 stage('helm') {
155 steps {
156 sh '''
157 helm init
158 sleep 60
159 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
160 '''
161 }
162 }
163 stage('Build') {
164 steps {
165 sh """
Zack Williamsc8cfb222018-07-05 13:29:28 -0700166 #!/usr/bin/env bash
167 set -eu -o pipefail
Kailash Khalasi12b2e222018-06-13 09:45:25 -0700168
Zack Williamsc8cfb222018-07-05 13:29:28 -0700169 helm_install_args='-f examples/image-tag-candidate.yaml -f examples/imagePullPolicy-IfNotPresent.yaml -f examples/api-test-values.yaml'
170 basesleep=300
171 extrasleep=60
172
173 pushd cord/helm-charts
174
175 helm dep up xos-core
176 helm install \${helm_install_args} xos-core -n xos-core
177
178 # Pick which chart(s) to load depending on the project being tested
179 # In regex, please list repos in same order as requirements.yaml in the chart(s) loaded!
180
181 if [[ "$GERRIT_PROJECT" =~ ^(rcord|onos-service|fabric|olt-service|vsg-hw|vrouter)\$ ]]; then
182 helm dep update xos-profiles/rcord-lite
183 helm install \${helm_install_args} xos-profiles/rcord-lite -n rcord-lite
184 extrasleep=300
185
186 elif [[ "$GERRIT_PROJECT" =~ ^(vMME|vspgwc|vspgwu|vHSS|hss_db|internetemulator|sdn-controller|epc-service|mcord|progran)\$ ]]; then
Zack Williamsee86e662018-07-06 10:18:28 -0700187 helm dep update xos-profiles/base-openstack
Zack Williamsc8cfb222018-07-05 13:29:28 -0700188 helm dep update xos-profiles/mcord
Zack Williamsee86e662018-07-06 10:18:28 -0700189 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
190 helm install \${helm_install_args} xos-profiles/mcord -n mcord
Zack Williamsc8cfb222018-07-05 13:29:28 -0700191 extrasleep=900
192
193 elif [[ "$GERRIT_PROJECT" =~ ^(openstack|vtn-service|exampleservice|addressmanager)\$ ]]; then
194 # NOTE: onos-service is included in base-openstack, but tested w/rcord-lite chart
195
196 helm dep update xos-profiles/base-openstack
197 helm dep update xos-profiles/demo-exampleservice
198 helm install \${helm_install_args} xos-profiles/base-openstack -n base-openstack
199 helm install \${helm_install_args} xos-profiles/demo-exampleservice -n demo-exampleservice
200
201 elif [[ "$GERRIT_PROJECT" =~ ^(kubernetes-service|simpleexampleservice)\$ ]]; then
202 helm dep update xos-profiles/base-kubernetes
203 helm dep update xos-profiles/demo-simpleexampleservice
204 helm install \${helm_install_args} xos-profiles/base-kubernetes -n base-kubernetes
205 helm install \${helm_install_args} xos-profiles/demo-simpleexampleservice -n demo-simpleexampleservice
206
207 elif [[ "$GERRIT_PROJECT" =~ ^(hippie-oss)\$ ]]; then
208 helm dep update xos-services/hippie-oss
209 helm install \${helm_install_args} xos-services/hippie-oss -n hippie-oss
210
Zack Williams9d68aa32018-07-12 11:50:37 -0700211 elif [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester|helm-charts)\$ ]]; then
Zack Williamsbafed362018-07-05 16:32:27 -0700212 echo "No additional charts to install for testing $GERRIT_PROJECT"
213
Zack Williamsc8cfb222018-07-05 13:29:28 -0700214 else
215 echo "Couldn't find a chart to test project: $GERRIT_PROJECT!"
216 exit 1
Kailash Khalasi54170812018-05-24 12:50:22 -0700217 fi
Zack Williamsc8cfb222018-07-05 13:29:28 -0700218
219 # sleep to wait for services to load
220 sleep "\$basesleep"
221 sleep "\$extrasleep"
222
223 echo "# Checking helm deployments"
Kailash Khalasi12b2e222018-06-13 09:45:25 -0700224 kubectl get pods
Zack Williamsc8cfb222018-07-05 13:29:28 -0700225 helm list
226
227 for hchart in \$(helm list -q);
228 do
229 echo "## 'helm status' for chart: \${hchart} ##"
230 helm status "\${hchart}"
231 done
232
Kailash Khalasi54170812018-05-24 12:50:22 -0700233 popd
234 """
235 }
236 }
237 stage('Setup') {
238 steps {
239 sh """
240 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
Zack Williamsc8cfb222018-07-05 13:29:28 -0700241
Kailash Khalasi54170812018-05-24 12:50:22 -0700242 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
243 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
244 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
245 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
Zack Williamsc8cfb222018-07-05 13:29:28 -0700246
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700247 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
Zack Williamsc8cfb222018-07-05 13:29:28 -0700248
Kailash Khalasi54170812018-05-24 12:50:22 -0700249 export testname=_service_api.robot
250 export library=_library.robot
Zack Williamsc8cfb222018-07-05 13:29:28 -0700251
252 # do addtional tests if additional services are loaded
Zack Williamsbafed362018-07-05 16:32:27 -0700253 if ! [[ "$GERRIT_PROJECT" =~ ^(xos|xos-tosca|cord-tester)\$ ]]; then
Zack Williamsc8cfb222018-07-05 13:29:28 -0700254 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
255 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
Kailash Khalasia1f3a8d2018-05-30 12:36:29 -0700256 fi
Kailash Khalasi54170812018-05-24 12:50:22 -0700257 """
258 }
259 }
260 stage('Test') {
261 steps {
262 sh """
263 pushd cord/test/cord-tester/src/test/cord-api/Tests
264 CORE_CONTAINER=\$(docker ps | grep k8s_xos-core | awk '{print \$1}')
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700265 CHAM_CONTAINER=\$(docker ps | grep k8s_xos-chameleon | awk '{print \$1}')
266 XOS_CHAMELEON=\$(docker exec \$CHAM_CONTAINER ip a | grep -oE "([0-9]{1,3}\\.){3}[0-9]{1,3}\\b" | grep 172)
Kailash Khalasi54170812018-05-24 12:50:22 -0700267 export testname=_service_api.robot
268 export library=_library.robot
269 SERVICES=\$(docker exec -i \$CORE_CONTAINER /bin/bash -c "cd /opt/xos/dynamic_services/;find -name '*.xproto'" | awk -F[//] '{print \$2}')
270 echo \$SERVICES
Kailash Khalasi54170812018-05-24 12:50:22 -0700271 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Properties/
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700272 sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'\$XOS_CHAMELEON\'/\" RestApiProperties.py
Kailash Khalasi54170812018-05-24 12:50:22 -0700273 sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'9101\'/\" RestApiProperties.py
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700274 sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py
275 sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
276 sed -i \"s/^\\(PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
Kailash Khalasi54170812018-05-24 12:50:22 -0700277 cd $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests
278 pybot -d Log -T -e TenantWithContainer -e Port -e ControllerImages -e ControllerNetwork -e ControllerSlice -e ControllerUser XOSCoreAPITests.robot || true
Kailash Khalasieaea6052018-06-15 17:51:19 -0700279 if ! [[ "$GERRIT_PROJECT" =~ ^(cord|platform-install|xos|xos-tosca|cord-tester)\$ ]]; then
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700280 for i in \$SERVICES; do bash -c "pybot -d Log -T -e AddressManagerServiceInstance -v TESTLIBRARY:\$i\$library \$i\$testname"; sleep 2; done || true
281 fi
Kailash Khalasi54170812018-05-24 12:50:22 -0700282 popd
283 """
284 }
285 }
286 stage('Publish') {
287 steps {
288 sh """
289 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
290 cp -r $WORKSPACE/cord/test/cord-tester/src/test/cord-api/Tests/Log/*ml ./RobotLogs
291 """
292 step([$class: 'RobotPublisher',
293 disableArchiveOutput: false,
294 logFileName: 'RobotLogs/log*.html',
295 otherFiles: '',
296 outputFileName: 'RobotLogs/output*.xml',
297 outputPath: '.',
Kailash Khalasia4cad352018-07-02 10:58:07 -0700298 passThreshold: 95,
Kailash Khalasi54170812018-05-24 12:50:22 -0700299 reportFileName: 'RobotLogs/report*.html',
300 unstableThreshold: 0]);
301 }
302 }
303 }
304 post {
305 always {
306 sh '''
Zack Williamsa834c342018-05-31 11:30:15 -0700307 kubectl get pods --all-namespaces
Zack Williamsc8cfb222018-07-05 13:29:28 -0700308
309 echo "# removing helm deployments"
310 kubectl get pods
Zack Williamsa834c342018-05-31 11:30:15 -0700311 helm list
Zack Williamsc8cfb222018-07-05 13:29:28 -0700312
313 for hchart in \$(helm list -q);
314 do
315 echo "## Purging chart: \${hchart} ##"
316 helm delete --purge "\${hchart}"
317 done
318
Zack Williamsa834c342018-05-31 11:30:15 -0700319 minikube delete
Kailash Khalasi54170812018-05-24 12:50:22 -0700320 '''
Kailash Khalasi934d39b2018-05-30 10:59:49 -0700321 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "suchitra@opennetworking.org, you@opennetworking.org, kailash@opennetworking.org", sendToIndividuals: false])
Kailash Khalasi54170812018-05-24 12:50:22 -0700322 }
323 }
324}