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 { |
Zack Williams | b329208 | 2019-10-11 17:15:18 -0700 | [diff] [blame] | 23 | label "${params.buildNode}" |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 24 | } |
Kailash | 4b323ff | 2019-08-02 17:52:49 -0700 | [diff] [blame] | 25 | options { |
| 26 | timeout(time: 40, unit: 'MINUTES') |
| 27 | } |
Andy Bavier | 218385e | 2019-11-13 09:51:38 -0700 | [diff] [blame] | 28 | environment { |
| 29 | KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal" |
| 30 | VOLTCONFIG="$HOME/.volt/config-minimal" |
| 31 | PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WORKSPACE/kind-voltha/bin" |
| 32 | TYPE="minimal" |
| 33 | FANCY=0 |
| 34 | WITH_SIM_ADAPTERS="n" |
| 35 | WITH_RADIUS="y" |
| 36 | WITH_BBSIM="y" |
| 37 | DEPLOY_K8S="y" |
| 38 | VOLTHA_LOG_LEVEL="DEBUG" |
Andy Bavier | 0088c21 | 2020-01-08 13:44:03 -0700 | [diff] [blame] | 39 | CONFIG_SADIS="n" |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 40 | EXTRA_HELM_FLAGS="--set log_agent.enabled=False ${params.extraHelmFlags}" |
Andy Bavier | 3708d07 | 2019-12-10 15:22:18 -0700 | [diff] [blame] | 41 | ROBOT_MISC_ARGS="${params.extraRobotArgs} -d $WORKSPACE/RobotLogs" |
Andy Bavier | 218385e | 2019-11-13 09:51:38 -0700 | [diff] [blame] | 42 | } |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 43 | stages { |
| 44 | |
Andy Bavier | 4c8b323 | 2019-11-22 16:17:47 -0700 | [diff] [blame] | 45 | stage('Repo') { |
| 46 | steps { |
Andy Bavier | 2c9ce04 | 2019-11-23 07:36:31 -0700 | [diff] [blame] | 47 | step([$class: 'WsCleanup']) |
Andy Bavier | 4c8b323 | 2019-11-22 16:17:47 -0700 | [diff] [blame] | 48 | checkout(changelog: true, |
| 49 | poll: false, |
| 50 | scm: [$class: 'RepoScm', |
| 51 | manifestRepositoryUrl: "${params.manifestUrl}", |
| 52 | manifestBranch: "${params.manifestBranch}", |
| 53 | currentBranch: true, |
| 54 | destinationDir: 'voltha', |
| 55 | forceSync: true, |
| 56 | resetFirst: true, |
| 57 | quiet: true, |
| 58 | jobs: 4, |
| 59 | showAllChanges: true] |
| 60 | ) |
| 61 | } |
| 62 | } |
| 63 | |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 64 | stage('Download kind-voltha') { |
| 65 | steps { |
| 66 | sh """ |
Andy Bavier | 7787d46 | 2019-08-21 15:56:17 -0700 | [diff] [blame] | 67 | git clone https://github.com/ciena/kind-voltha.git |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 68 | """ |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | stage('Deploy Voltha') { |
| 73 | steps { |
| 74 | sh """ |
| 75 | cd kind-voltha/ |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 76 | JUST_K8S=y ./voltha up |
Andy Bavier | 218385e | 2019-11-13 09:51:38 -0700 | [diff] [blame] | 77 | ./voltha up |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 78 | """ |
| 79 | } |
| 80 | } |
| 81 | |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 82 | stage('Run E2E Tests') { |
| 83 | steps { |
| 84 | sh ''' |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 85 | set +e |
Andy Bavier | 2c9ce04 | 2019-11-23 07:36:31 -0700 | [diff] [blame] | 86 | mkdir -p $WORKSPACE/RobotLogs |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 87 | git clone https://gerrit.opencord.org/voltha-system-tests |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 88 | |
| 89 | cd $WORKSPACE/kind-voltha/scripts |
| 90 | ./log-collector.sh > /dev/null & |
Andy Bavier | 7afb11c | 2020-02-13 11:25:20 -0700 | [diff] [blame] | 91 | ./log-combine.sh > /dev/null & |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 92 | |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 93 | make -C $WORKSPACE/voltha-system-tests ${makeTarget} || true |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 94 | ''' |
| 95 | } |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | post { |
| 100 | always { |
| 101 | sh ''' |
Andy Bavier | 218385e | 2019-11-13 09:51:38 -0700 | [diff] [blame] | 102 | set +e |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 103 | cp $WORKSPACE/kind-voltha/install-minimal.log $WORKSPACE/ |
Andy Bavier | aec6038 | 2019-10-29 15:09:04 -0700 | [diff] [blame] | 104 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c |
Kailash | 887a296 | 2019-08-14 13:26:33 -0700 | [diff] [blame] | 105 | kubectl get nodes -o wide |
| 106 | kubectl get pods -o wide |
| 107 | kubectl get pods -n voltha -o wide |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 108 | |
Andy Bavier | 7afb11c | 2020-02-13 11:25:20 -0700 | [diff] [blame] | 109 | sleep 60 # Wait for log-collector and log-combine to complete |
| 110 | |
| 111 | cd $WORKSPACE/kind-voltha/scripts/logger/combined/ |
| 112 | tar czf $WORKSPACE/container-logs.tgz * |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 113 | |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 114 | cd $WORKSPACE |
Andy Bavier | b86ca42 | 2020-02-13 05:19:43 -0700 | [diff] [blame] | 115 | gzip *-combined.log || true |
Andy Bavier | 2178d10 | 2020-02-06 16:22:11 -0700 | [diff] [blame] | 116 | |
Andy Bavier | 2c9ce04 | 2019-11-23 07:36:31 -0700 | [diff] [blame] | 117 | ## shut down voltha |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 118 | cd $WORKSPACE/kind-voltha/ |
Andy Bavier | 3a58ba3 | 2019-09-20 16:31:40 -0700 | [diff] [blame] | 119 | WAIT_ON_DOWN=y ./voltha down |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 120 | ''' |
| 121 | step([$class: 'RobotPublisher', |
| 122 | disableArchiveOutput: false, |
| 123 | logFileName: 'RobotLogs/log*.html', |
| 124 | otherFiles: '', |
| 125 | outputFileName: 'RobotLogs/output*.xml', |
| 126 | outputPath: '.', |
Matteo Scandolo | 26bc17e | 2019-09-24 09:03:01 -0700 | [diff] [blame] | 127 | passThreshold: 100, |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 128 | reportFileName: 'RobotLogs/report*.html', |
| 129 | unstableThreshold: 0]); |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 130 | archiveArtifacts artifacts: '*.log,*.gz,*.tgz' |
Kailash | 8b8de74 | 2019-07-30 08:54:51 -0700 | [diff] [blame] | 131 | |
| 132 | } |
| 133 | } |
| 134 | } |