Kailash | aad7101 | 2019-08-27 10:36:53 -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 | } |
| 25 | options { |
| 26 | timeout(time: 60, unit: 'MINUTES') |
| 27 | } |
| 28 | |
| 29 | stages { |
| 30 | |
| 31 | stage('Repo') { |
| 32 | steps { |
| 33 | checkout(changelog: false, \ |
| 34 | poll: false, |
| 35 | scm: [$class: 'RepoScm', \ |
| 36 | manifestRepositoryUrl: "${params.manifestUrl}", \ |
| 37 | manifestBranch: "${params.manifestBranch}", \ |
| 38 | currentBranch: true, \ |
| 39 | destinationDir: 'voltha', \ |
| 40 | forceSync: true, |
| 41 | resetFirst: true, \ |
| 42 | quiet: true, \ |
| 43 | jobs: 4, \ |
| 44 | showAllChanges: true] \ |
| 45 | ) |
| 46 | } |
| 47 | } |
| 48 | stage('Patch') { |
| 49 | steps { |
| 50 | sh """ |
| 51 | pushd voltha |
| 52 | PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml) |
| 53 | repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}" |
| 54 | popd |
| 55 | """ |
| 56 | } |
| 57 | } |
| 58 | stage('Create K8s Cluster') { |
| 59 | steps { |
| 60 | sh """ |
| 61 | git clone https://gerrit.opencord.org/voltha-system-tests |
| 62 | git clone https://github.com/ciena/kind-voltha.git |
| 63 | cd kind-voltha/ |
| 64 | DEPLOY_K8S=y JUST_K8S=y ./voltha up |
| 65 | """ |
| 66 | } |
| 67 | } |
| 68 | |
| 69 | stage('Build Images') { |
| 70 | steps { |
| 71 | sh """ |
| 72 | cd $WORKSPACE/voltha/${gerritProject}/ |
| 73 | make DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest build |
| 74 | """ |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | stage('Push Images') { |
| 79 | steps { |
| 80 | sh ''' |
| 81 | export GOROOT=/usr/local/go |
| 82 | export GOPATH=\$(pwd) |
| 83 | export TYPE=minimal |
| 84 | export KUBECONFIG="$(./bin/kind get kubeconfig-path --name="voltha-minimal")" |
| 85 | export VOLTCONFIG="/home/jenkins/.volt/config-minimal" |
| 86 | export PATH=/w/workspace/voltha-go-e2e-tests/kind-voltha/bin:$PATH |
| 87 | docker images | grep citest |
| 88 | for image in \$(docker images -f "reference=*/*citest" --format "{{.Repository}}"); do echo "Pushing \$image to nodes"; kind load docker-image \$image:citest --name voltha-\$TYPE --nodes voltha-\$TYPE-worker,voltha-\$TYPE-worker2; done |
| 89 | ''' |
| 90 | } |
| 91 | } |
| 92 | stage('Deploy Voltha') { |
| 93 | steps { |
| 94 | sh """ |
| 95 | HELM_FLAG="--set defaults.image_tag=2.1.0 " |
| 96 | |
| 97 | if [ "${gerritProject}" = "voltha-go" ]; then |
| 98 | HELM_FLAG+="-f $WORKSPACE/voltha-system-tests/tests/data/ci-test.yaml" |
| 99 | fi |
| 100 | |
| 101 | if [ "${gerritProject}" = "voltha-openolt-adapter" ]; then |
| 102 | HELM_FLAG+="--set images.adapter_open_olt.tag=citest,images.adapter_open_olt.pullPolicy=Never" |
| 103 | fi |
| 104 | |
| 105 | if [ "${gerritProject}" = "voltha-openonu-adapter" ]; then |
| 106 | HELM_FLAG+="--set images.adapter_open_onu.tag=citest,images.adapter_open_onu.pullPolicy=Never" |
| 107 | fi |
| 108 | |
| 109 | cd kind-voltha/ |
| 110 | EXTRA_HELM_FLAGS='\${HELM_FLAG}' VOLTHA_LOG_LEVEL=DEBUG TYPE=minimal WITH_RADIUS=y WITH_BBSIM=y INSTALL_ONOS_APPS=y CONFIG_SADIS=y FANCY=0 ./voltha up |
| 111 | """ |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | stage('Run E2E Tests') { |
| 116 | steps { |
| 117 | sh ''' |
| 118 | cd kind-voltha/ |
| 119 | export KUBECONFIG="$(./bin/kind get kubeconfig-path --name="voltha-minimal")" |
| 120 | export VOLTCONFIG="/home/jenkins/.volt/config-minimal" |
| 121 | export PATH=/w/workspace/voltha-go-e2e-tests/kind-voltha/bin:$PATH |
| 122 | cd $WORKSPACE/voltha-system-tests/tests/sanity |
| 123 | robot -e notready --critical sanity --noncritical VOL-1705 -v num_onus:1 sanity.robot || true |
| 124 | ''' |
| 125 | } |
| 126 | } |
| 127 | } |
| 128 | |
| 129 | post { |
| 130 | always { |
| 131 | sh ''' |
| 132 | # copy robot logs |
| 133 | if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs |
| 134 | cp -r $WORKSPACE/voltha-system-tests/tests/sanity/*ml ./RobotLogs || true |
| 135 | cd kind-voltha/ |
| 136 | cp install-minimal.log $WORKSPACE/ |
| 137 | export KUBECONFIG="$(./bin/kind get kubeconfig-path --name="voltha-minimal")" |
| 138 | export VOLTCONFIG="/home/jenkins/.volt/config-minimal" |
| 139 | export PATH=/w/workspace/voltha-go-e2e-tests/kind-voltha/bin:$PATH |
| 140 | kubectl get pods --all-namespaces -o jsonpath="{..image}" |tr -s "[[:space:]]" "\n" | sort | uniq -c |
| 141 | kubectl get nodes -o wide |
| 142 | kubectl get pods -o wide |
| 143 | kubectl get pods -n voltha -o wide |
| 144 | ## get default pod logs |
| 145 | for pod in \$(kubectl get pods --no-headers | awk '{print \$1}'); |
| 146 | do |
| 147 | if [[ \$pod == *"onos"* && \$pod != *"onos-service"* ]]; then |
| 148 | kubectl logs \$pod onos> $WORKSPACE/\$pod.log; |
| 149 | else |
| 150 | kubectl logs \$pod> $WORKSPACE/\$pod.log; |
| 151 | fi |
| 152 | done |
| 153 | ## get voltha pod logs |
| 154 | for pod in \$(kubectl get pods --no-headers -n voltha | awk '{print \$1}'); |
| 155 | do |
| 156 | if [[ \$pod == *"-api-"* ]]; then |
| 157 | kubectl logs \$pod arouter -n voltha > $WORKSPACE/\$pod.log; |
| 158 | else |
| 159 | kubectl logs \$pod -n voltha > $WORKSPACE/\$pod.log; |
| 160 | fi |
| 161 | done |
| 162 | ''' |
| 163 | step([$class: 'RobotPublisher', |
| 164 | disableArchiveOutput: false, |
| 165 | logFileName: 'RobotLogs/log*.html', |
| 166 | otherFiles: '', |
| 167 | outputFileName: 'RobotLogs/output*.xml', |
| 168 | outputPath: '.', |
| 169 | passThreshold: 80, |
| 170 | reportFileName: 'RobotLogs/report*.html', |
| 171 | unstableThreshold: 0]); |
| 172 | archiveArtifacts artifacts: '*.log' |
| 173 | |
| 174 | } |
| 175 | } |
| 176 | } |