Kailash | 8b8de74 | 2019-07-30 08:54:51 -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 | |
| 15 | // voltha-2.x e2e tests |
| 16 | // uses kind-voltha to deploy voltha-2.X |
| 17 | // uses bbsim to simulate OLT/ONUs |
| 18 | |
| 19 | pipeline { |
| 20 | |
| 21 | /* no label, executor is determined by JJB */ |
| 22 | agent { |
| 23 | label "${params.executorNode}" |
| 24 | } |
Kailash | 4b323ff | 2019-08-02 17:52:49 -0700 | [diff] [blame] | 25 | options { |
| 26 | timeout(time: 40, unit: 'MINUTES') |
| 27 | } |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 28 | |
| 29 | stages { |
| 30 | |
| 31 | stage('Download kind-voltha') { |
| 32 | steps { |
| 33 | sh """ |
Andy Bavier | 7787d46 | 2019-08-21 15:56:17 -0700 | [diff] [blame] | 34 | git clone https://github.com/ciena/kind-voltha.git |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 35 | """ |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | stage('Deploy Voltha') { |
| 40 | steps { |
| 41 | sh """ |
| 42 | cd kind-voltha/ |
Andy Bavier | ea26c5c | 2019-09-18 08:09:17 -0700 | [diff] [blame] | 43 | EXTRA_HELM_FLAGS="${params.extraHelmFlags}" VOLTHA_LOG_LEVEL=DEBUG TYPE=minimal WITH_RADIUS=y WITH_BBSIM=y INSTALL_ONOS_APPS=y CONFIG_SADIS=y FANCY=0 ./voltha up |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 44 | """ |
| 45 | } |
| 46 | } |
| 47 | |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 48 | stage('Run E2E Tests') { |
| 49 | steps { |
| 50 | sh ''' |
| 51 | git clone https://gerrit.opencord.org/voltha-system-tests |
| 52 | cd kind-voltha/ |
| 53 | export KUBECONFIG="$(./bin/kind get kubeconfig-path --name="voltha-minimal")" |
| 54 | export VOLTCONFIG="/home/jenkins/.volt/config-minimal" |
Andy Bavier | f96864e | 2019-09-20 15:10:14 -0700 | [diff] [blame] | 55 | export PATH=$WORKSPACE/kind-voltha/bin:$PATH |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 56 | cd $WORKSPACE/voltha-system-tests/tests/sanity |
Andy Bavier | aaa60f7 | 2019-09-20 09:11:21 -0700 | [diff] [blame] | 57 | robot -v ONOS_REST_PORT:8181 -v ONOS_SSH_PORT:8101 -e notready --critical sanity -v num_onus:1 sanity.robot || true |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 58 | ''' |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | |
| 63 | post { |
| 64 | always { |
| 65 | sh ''' |
| 66 | # copy robot logs |
| 67 | if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs |
Kailash | 4b323ff | 2019-08-02 17:52:49 -0700 | [diff] [blame] | 68 | cp -r $WORKSPACE/voltha-system-tests/tests/sanity/*ml ./RobotLogs || true |
| 69 | cd kind-voltha/ |
| 70 | cp install-minimal.log $WORKSPACE/ |
| 71 | export KUBECONFIG="$(./bin/kind get kubeconfig-path --name="voltha-minimal")" |
| 72 | export VOLTCONFIG="/home/jenkins/.volt/config-minimal" |
Andy Bavier | f96864e | 2019-09-20 15:10:14 -0700 | [diff] [blame] | 73 | export PATH=$WORKSPACE/kind-voltha/bin:$PATH |
Kailash | 07e1a61 | 2019-08-06 22:04:36 -0700 | [diff] [blame] | 74 | kubectl get pods --all-namespaces -o jsonpath="{..image}" |tr -s "[[:space:]]" "\n" | sort | uniq -c |
Kailash | 887a296 | 2019-08-14 13:26:33 -0700 | [diff] [blame] | 75 | kubectl get nodes -o wide |
| 76 | kubectl get pods -o wide |
| 77 | kubectl get pods -n voltha -o wide |
Kailash | 4b323ff | 2019-08-02 17:52:49 -0700 | [diff] [blame] | 78 | ## get default pod logs |
| 79 | for pod in \$(kubectl get pods --no-headers | awk '{print \$1}'); |
| 80 | do |
| 81 | if [[ \$pod == *"onos"* && \$pod != *"onos-service"* ]]; then |
| 82 | kubectl logs \$pod onos> $WORKSPACE/\$pod.log; |
| 83 | else |
| 84 | kubectl logs \$pod> $WORKSPACE/\$pod.log; |
| 85 | fi |
| 86 | done |
| 87 | ## get voltha pod logs |
| 88 | for pod in \$(kubectl get pods --no-headers -n voltha | awk '{print \$1}'); |
| 89 | do |
Kailash | 6be1aa9 | 2019-08-05 18:11:11 -0700 | [diff] [blame] | 90 | if [[ \$pod == *"-api-"* ]]; then |
Kailash | 4b323ff | 2019-08-02 17:52:49 -0700 | [diff] [blame] | 91 | kubectl logs \$pod arouter -n voltha > $WORKSPACE/\$pod.log; |
| 92 | else |
| 93 | kubectl logs \$pod -n voltha > $WORKSPACE/\$pod.log; |
| 94 | fi |
| 95 | done |
Andy Bavier | 3a58ba3 | 2019-09-20 16:31:40 -0700 | [diff] [blame] | 96 | ## clean up node |
| 97 | WAIT_ON_DOWN=y ./voltha down |
| 98 | cd $WORKSPACE/ |
| 99 | rm -rf kind-voltha/ voltha-system-tests/ || true |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 100 | ''' |
| 101 | step([$class: 'RobotPublisher', |
| 102 | disableArchiveOutput: false, |
| 103 | logFileName: 'RobotLogs/log*.html', |
| 104 | otherFiles: '', |
| 105 | outputFileName: 'RobotLogs/output*.xml', |
| 106 | outputPath: '.', |
Kailash | 07e1a61 | 2019-08-06 22:04:36 -0700 | [diff] [blame] | 107 | passThreshold: 80, |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 108 | reportFileName: 'RobotLogs/report*.html', |
| 109 | unstableThreshold: 0]); |
| 110 | archiveArtifacts artifacts: '*.log' |
| 111 | |
| 112 | } |
| 113 | } |
| 114 | } |