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