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 { |
Zack Williams | b329208 | 2019-10-11 17:15:18 -0700 | [diff] [blame] | 23 | label "${params.buildNode}" |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 24 | } |
| 25 | options { |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 26 | timeout(time: 90, unit: 'MINUTES') |
| 27 | } |
| 28 | environment { |
| 29 | KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal" |
| 30 | VOLTCONFIG="$HOME/.volt/config-minimal" |
| 31 | PATH="$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/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" |
| 39 | CONFIG_SADIS="n" |
| 40 | ROBOT_MISC_ARGS="-d $WORKSPACE/RobotLogs -v teardown_device:False" |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | stages { |
| 44 | |
| 45 | stage('Repo') { |
| 46 | steps { |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 47 | step([$class: 'WsCleanup']) |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 48 | checkout(changelog: false, \ |
| 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 | stage('Patch') { |
| 64 | steps { |
| 65 | sh """ |
| 66 | pushd voltha |
| 67 | PROJECT_PATH=\$(xmllint --xpath "string(//project[@name=\\\"${gerritProject}\\\"]/@path)" .repo/manifest.xml) |
| 68 | repo download "\$PROJECT_PATH" "${gerritChangeNumber}/${gerritPatchsetNumber}" |
| 69 | popd |
| 70 | """ |
| 71 | } |
| 72 | } |
| 73 | stage('Create K8s Cluster') { |
| 74 | steps { |
| 75 | sh """ |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 76 | git clone https://github.com/ciena/kind-voltha.git |
| 77 | cd kind-voltha/ |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 78 | JUST_K8S=y ./voltha up |
| 79 | bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/kind-voltha/bin" |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 80 | """ |
| 81 | } |
| 82 | } |
| 83 | |
| 84 | stage('Build Images') { |
| 85 | steps { |
| 86 | sh """ |
Andy Bavier | ab8a476 | 2020-02-06 17:50:40 -0700 | [diff] [blame] | 87 | if [ "${gerritProject}" = "pyvoltha" ]; then |
| 88 | cd $WORKSPACE/voltha/pyvoltha/ |
| 89 | make dist |
| 90 | cd $WORKSPACE/voltha/voltha-openonu-adapter |
| 91 | export LOCAL_PYVOLTHA=$WORKSPACE/voltha/pyvoltha/ |
| 92 | make local-pyvoltha |
| 93 | make DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build |
| 94 | elif ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests)\$ ]]; then |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 95 | cd $WORKSPACE/voltha/${gerritProject}/ |
| 96 | make DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build |
| 97 | fi |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 98 | """ |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | stage('Push Images') { |
| 103 | steps { |
| 104 | sh ''' |
hwchiu | 9140fd2 | 2019-10-10 15:48:30 -0700 | [diff] [blame] | 105 | if ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests)\$ ]]; then |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 106 | export GOROOT=/usr/local/go |
| 107 | export GOPATH=\$(pwd) |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 108 | docker images | grep citest |
| 109 | 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 |
| 110 | fi |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 111 | ''' |
| 112 | } |
| 113 | } |
| 114 | stage('Deploy Voltha') { |
| 115 | steps { |
Kailash Khalasi | af3a2a6 | 2019-10-02 09:44:08 -0700 | [diff] [blame] | 116 | sh ''' |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 117 | export EXTRA_HELM_FLAGS="--set log_agent.enabled=False ${extraHelmFlags} " |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 118 | |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 119 | IMAGES="" |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 120 | if [ "${gerritProject}" = "voltha-go" ]; then |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 121 | IMAGES="rw_core ro_core " |
| 122 | elif [ "${gerritProject}" = "ofagent-py" ]; then |
| 123 | IMAGES="ofagent " |
| 124 | elif [ "${gerritProject}" = "voltha-onos" ]; then |
| 125 | IMAGES="onos " |
| 126 | elif [ "${gerritProject}" = "voltha-openolt-adapter" ]; then |
| 127 | IMAGES="adapter_open_olt " |
| 128 | elif [ "${gerritProject}" = "voltha-openonu-adapter" ]; then |
| 129 | IMAGES="adapter_open_onu " |
| 130 | elif [ "${gerritProject}" = "voltha-api-server" ]; then |
| 131 | IMAGES="afrouter afrouterd " |
| 132 | elif [ "${gerritProject}" = "bbsim" ]; then |
| 133 | IMAGES="bbsim " |
Andy Bavier | ab8a476 | 2020-02-06 17:50:40 -0700 | [diff] [blame] | 134 | elif [ "${gerritProject}" = "pyvoltha" ]; then |
| 135 | IMAGES="adapter_open_onu " |
Zack Williams | 0499750 | 2019-10-04 14:32:20 -0700 | [diff] [blame] | 136 | else |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 137 | echo "No images to push" |
Scott Baker | 9ac2371 | 2019-10-02 09:26:50 -0700 | [diff] [blame] | 138 | fi |
| 139 | |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 140 | for I in \$IMAGES |
| 141 | do |
| 142 | EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never " |
| 143 | done |
| 144 | |
Kailash Khalasi | af3a2a6 | 2019-10-02 09:44:08 -0700 | [diff] [blame] | 145 | if [ "${gerritProject}" = "voltha-helm-charts" ]; then |
Andy Bavier | 4540634 | 2019-10-02 16:45:40 -0700 | [diff] [blame] | 146 | export CHART_PATH=$WORKSPACE/voltha/voltha-helm-charts |
| 147 | export VOLTHA_CHART=\$CHART_PATH/voltha |
| 148 | export VOLTHA_ADAPTER_OPEN_OLT_CHART=\$CHART_PATH/voltha-adapter-openolt |
| 149 | export VOLTHA_ADAPTER_OPEN_ONU_CHART=\$CHART_PATH/voltha-adapter-openonu |
Kailash Khalasi | af3a2a6 | 2019-10-02 09:44:08 -0700 | [diff] [blame] | 150 | helm dep update \$VOLTHA_CHART |
| 151 | helm dep update \$VOLTHA_ADAPTER_OPEN_OLT_CHART |
| 152 | helm dep update \$VOLTHA_ADAPTER_OPEN_ONU_CHART |
| 153 | fi |
| 154 | |
| 155 | cd $WORKSPACE/kind-voltha/ |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 156 | echo \$EXTRA_HELM_FLAGS |
| 157 | kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log & |
| 158 | ./voltha up |
Kailash Khalasi | af3a2a6 | 2019-10-02 09:44:08 -0700 | [diff] [blame] | 159 | ''' |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 160 | } |
| 161 | } |
| 162 | |
Matteo Scandolo | 84e5f00 | 2020-02-10 11:50:05 -0800 | [diff] [blame] | 163 | stage('ONOS Config') { |
| 164 | steps { |
| 165 | sh ''' |
| 166 | if [[ ${onosVersion} == "1.13.10" ]]; then |
| 167 | curl -sSL --user karaf:karaf \ |
| 168 | -X POST \ |
| 169 | -H Content-Type:application/json \ |
| 170 | http://localhost:8181/onos/v1/network/configuration/apps \ |
| 171 | --data @- << EOF |
| 172 | { |
| 173 | "org.opencord.sadis":{ |
| 174 | "sadis":{ |
| 175 | "integration":{ |
| 176 | "cache":{ |
| 177 | "enabled":false, |
| 178 | "maxsize":50, |
| 179 | "ttl":"PT0m" |
| 180 | } |
| 181 | }, |
| 182 | "entries":[ |
| 183 | { |
| 184 | "id":"BBSIM_OLT_0", |
| 185 | "hardwareIdentifier":"0f:f1:ce:c0:ff:ee", |
| 186 | "nasId":"BBSIMOLT000", |
| 187 | "uplinkPort":1048576 |
| 188 | }, |
| 189 | { |
| 190 | "id":"BBSM00000001-1", |
| 191 | "nasPortId":"BBSM00000001-1", |
| 192 | "circuitId":"BBSM00000001-1", |
| 193 | "remoteId":"BBSM00000001-1", |
| 194 | "uniTagList":[ |
| 195 | { |
| 196 | "ponCTag":900, |
| 197 | "ponSTag":900, |
| 198 | "technologyProfileId":64, |
| 199 | "downstreamBandwidthProfile":"Default", |
| 200 | "upstreamBandwidthProfile":"Default", |
| 201 | "isDhcpRequired":true |
| 202 | } |
| 203 | ] |
| 204 | } |
| 205 | ] |
| 206 | }, |
| 207 | "bandwidthprofile":{ |
| 208 | "integration":{ |
| 209 | "cache":{ |
| 210 | "enabled":true, |
| 211 | "maxsize":40, |
| 212 | "ttl":"PT1m" |
| 213 | } |
| 214 | }, |
| 215 | "entries":[ |
| 216 | { |
| 217 | "id":"Default", |
| 218 | "cir":1000000, |
| 219 | "cbs":1001, |
| 220 | "eir":1002, |
| 221 | "ebs":1003, |
| 222 | "air":1004 |
| 223 | } |
| 224 | ] |
| 225 | } |
| 226 | } |
| 227 | } |
| 228 | EOF |
| 229 | sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.opencord.olt.impl.OltFlowService enableDhcpOnProvisioning true" |
| 230 | sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.opencord.olt.impl.OltFlowService enableDhcpV4 true" |
| 231 | sshpass -p karaf ssh -p 30115 karaf@${deployment_config.nodes[0].ip} "cfg set org.opencord.olt.impl.OltFlowService enableEapol true" |
| 232 | else |
| 233 | echo "Using kind-voltha defaults" |
| 234 | fi |
| 235 | ''' |
| 236 | } |
| 237 | } |
| 238 | |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 239 | stage('Run E2E Tests') { |
| 240 | steps { |
| 241 | sh ''' |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 242 | mkdir -p $WORKSPACE/RobotLogs |
Andy Bavier | db00308 | 2020-02-04 11:57:36 -0700 | [diff] [blame] | 243 | |
| 244 | # By default, all tests tagged 'sanity' are run. This covers basic functionality |
| 245 | # like running through the ATT workflow for a single subscriber. |
| 246 | export TEST_TAGS=sanity |
| 247 | |
| 248 | # If the Gerrit comment contains a line with "functional tests" then run the full |
| 249 | # functional test suite. This covers tests tagged either 'sanity' or 'functional'. |
| 250 | # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| 251 | REGEX="functional tests" |
| 252 | if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| 253 | TEST_TAGS=sanityORfunctional |
| 254 | fi |
| 255 | |
| 256 | make -C $WORKSPACE/voltha/voltha-system-tests single-kind || true |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 257 | ''' |
| 258 | } |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | post { |
| 263 | always { |
| 264 | sh ''' |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 265 | set +e |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 266 | cp $WORKSPACE/kind-voltha/install-minimal.log $WORKSPACE/ |
Andy Bavier | aec6038 | 2019-10-29 15:09:04 -0700 | [diff] [blame] | 267 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 268 | kubectl get nodes -o wide |
| 269 | kubectl get pods -o wide |
| 270 | kubectl get pods -n voltha -o wide |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 271 | |
| 272 | sync |
| 273 | pkill kail || true |
| 274 | |
| 275 | ## Pull out errors from log files |
| 276 | extract_errors_go() { |
| 277 | echo |
| 278 | echo "Error summary for $1:" |
| 279 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg' |
| 280 | echo |
| 281 | } |
| 282 | |
| 283 | extract_errors_python() { |
| 284 | echo |
| 285 | echo "Error summary for $1:" |
| 286 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2- |
| 287 | echo |
| 288 | } |
| 289 | |
| 290 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 291 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 292 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 293 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 294 | |
Andy Bavier | 2178d10 | 2020-02-06 16:22:11 -0700 | [diff] [blame] | 295 | gzip $WORKSPACE/onos-voltha-combined.log |
| 296 | |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 297 | ## shut down kind-voltha |
| 298 | cd $WORKSPACE/kind-voltha |
| 299 | WAIT_ON_DOWN=y ./voltha down |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 300 | ''' |
| 301 | step([$class: 'RobotPublisher', |
| 302 | disableArchiveOutput: false, |
| 303 | logFileName: 'RobotLogs/log*.html', |
| 304 | otherFiles: '', |
| 305 | outputFileName: 'RobotLogs/output*.xml', |
| 306 | outputPath: '.', |
| 307 | passThreshold: 80, |
| 308 | reportFileName: 'RobotLogs/report*.html', |
| 309 | unstableThreshold: 0]); |
Andy Bavier | 2178d10 | 2020-02-06 16:22:11 -0700 | [diff] [blame] | 310 | archiveArtifacts artifacts: '*.log,*.gz' |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 311 | |
| 312 | } |
| 313 | } |
| 314 | } |