Andy Bavier | d83bf3a | 2020-08-13 14:55:07 -0700 | [diff] [blame] | 1 | // Copyright 2019-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 | // deploy VOLTHA built from patchset on a physical pod and run e2e test |
| 16 | // uses kind-voltha to deploy voltha-2.X |
| 17 | |
| 18 | // Need this so that deployment_config has global scope when it's read later |
| 19 | deployment_config = null |
| 20 | localDeploymentConfigFile = null |
| 21 | localKindVolthaValuesFile = null |
| 22 | localSadisConfigFile = null |
| 23 | |
| 24 | // The pipeline assumes these variables are always defined |
| 25 | if ( params.manualBranch != "" ) { |
| 26 | GERRIT_EVENT_COMMENT_TEXT = "" |
| 27 | GERRIT_PROJECT = "" |
| 28 | GERRIT_BRANCH = "${params.manualBranch}" |
| 29 | GERRIT_CHANGE_NUMBER = "" |
| 30 | GERRIT_PATCHSET_NUMBER = "" |
| 31 | } |
| 32 | |
| 33 | pipeline { |
| 34 | |
| 35 | /* no label, executor is determined by JJB */ |
| 36 | agent { |
| 37 | label "${params.buildNode}" |
| 38 | } |
| 39 | options { |
| 40 | timeout(time: 120, unit: 'MINUTES') |
| 41 | } |
| 42 | |
| 43 | environment { |
| 44 | KUBECONFIG="$HOME/.kube/kind-config-voltha-minimal" |
| 45 | VOLTCONFIG="$HOME/.volt/config-minimal" |
| 46 | PATH="$WORKSPACE/voltha/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" |
Matteo Scandolo | 4d1a12f | 2020-12-07 16:17:12 -0800 | [diff] [blame] | 47 | NAME="minimal" |
Andy Bavier | d83bf3a | 2020-08-13 14:55:07 -0700 | [diff] [blame] | 48 | FANCY=0 |
| 49 | //VOL-2194 ONOS SSH and REST ports hardcoded to 30115/30120 in tests |
| 50 | ONOS_SSH_PORT=30115 |
| 51 | ONOS_API_PORT=30120 |
| 52 | } |
| 53 | |
| 54 | stages { |
| 55 | stage ('Initialize') { |
| 56 | steps { |
| 57 | sh returnStdout: false, script: """ |
| 58 | test -e $WORKSPACE/voltha/kind-voltha/voltha && cd $WORKSPACE/voltha/kind-voltha && ./voltha down |
| 59 | cd $WORKSPACE |
| 60 | rm -rf $WORKSPACE/* |
| 61 | """ |
| 62 | script { |
| 63 | if (env.configRepo && ! env.localConfigDir) { |
| 64 | env.localConfigDir = "$WORKSPACE" |
| 65 | sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configRepo}" |
| 66 | } |
| 67 | localDeploymentConfigFile = "${env.localConfigDir}/${params.deploymentConfigFile}" |
| 68 | localKindVolthaValuesFile = "${env.localConfigDir}/${params.kindVolthaValuesFile}" |
| 69 | localSadisConfigFile = "${env.localConfigDir}/${params.sadisConfigFile}" |
| 70 | } |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | stage('Repo') { |
| 75 | steps { |
| 76 | checkout(changelog: true, |
| 77 | poll: false, |
| 78 | scm: [$class: 'RepoScm', |
| 79 | manifestRepositoryUrl: "${params.manifestUrl}", |
| 80 | manifestBranch: "${params.branch}", |
| 81 | currentBranch: true, |
| 82 | destinationDir: 'voltha', |
| 83 | forceSync: true, |
| 84 | resetFirst: true, |
| 85 | quiet: true, |
| 86 | jobs: 4, |
| 87 | showAllChanges: true] |
| 88 | ) |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | stage('Get Patch') { |
| 93 | when { |
| 94 | expression { params.manualBranch == "" } |
| 95 | } |
| 96 | steps { |
| 97 | sh returnStdout: false, script: """ |
| 98 | cd voltha |
| 99 | repo download "${gerritProject}" "${gerritChangeNumber}/${gerritPatchsetNumber}" |
| 100 | """ |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | stage('Check config files') { |
| 105 | steps { |
| 106 | script { |
| 107 | try { |
| 108 | deployment_config = readYaml file: "${localDeploymentConfigFile}" |
| 109 | } catch (err) { |
| 110 | echo "Error reading ${localDeploymentConfigFile}" |
| 111 | throw err |
| 112 | } |
| 113 | sh returnStdout: false, script: """ |
| 114 | if [ ! -e ${localKindVolthaValuesFile} ]; then echo "${localKindVolthaValuesFile} not found"; exit 1; fi |
| 115 | if [ ! -e ${localSadisConfigFile} ]; then echo "${localSadisConfigFile} not found"; exit 1; fi |
| 116 | """ |
| 117 | } |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | stage('Create KinD Cluster') { |
| 122 | steps { |
| 123 | sh returnStdout: false, script: """ |
| 124 | if [ "${branch}" != "master" ]; then |
| 125 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| 126 | source "$WORKSPACE/voltha/kind-voltha/releases/${branch}" |
| 127 | else |
| 128 | echo "on master, using default settings for kind-voltha" |
| 129 | fi |
| 130 | |
| 131 | cd $WORKSPACE/voltha/kind-voltha/ |
| 132 | JUST_K8S=y ./voltha up |
| 133 | """ |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | stage('Build and Push Images') { |
| 138 | when { |
| 139 | expression { params.manualBranch == "" } |
| 140 | } |
| 141 | steps { |
| 142 | sh returnStdout: false, script: """ |
| 143 | |
| 144 | if [ "${branch}" != "master" ]; then |
| 145 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| 146 | source "$WORKSPACE/voltha/kind-voltha/releases/${branch}" |
| 147 | else |
| 148 | echo "on master, using default settings for kind-voltha" |
| 149 | fi |
| 150 | |
| 151 | if ! [[ "${gerritProject}" =~ ^(voltha-system-tests|kind-voltha|voltha-helm-charts)\$ ]]; then |
| 152 | make -C $WORKSPACE/voltha/${gerritProject} DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build |
| 153 | docker images | grep citest |
| 154 | for image in \$(docker images -f "reference=*/*citest" --format "{{.Repository}}") |
| 155 | do |
| 156 | echo "Pushing \$image to nodes" |
Matteo Scandolo | 6fede0e | 2020-12-09 17:19:09 -0800 | [diff] [blame] | 157 | kind load docker-image \$image:citest --name voltha-\$NAME --nodes voltha-\$NAME-worker,voltha-\$NAME-worker2 |
Andy Bavier | d83bf3a | 2020-08-13 14:55:07 -0700 | [diff] [blame] | 158 | docker rmi \$image:citest \$image:latest || true |
| 159 | done |
| 160 | fi |
| 161 | """ |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | stage('Deploy Voltha') { |
| 166 | environment { |
| 167 | WITH_RADIUS="no" |
| 168 | WITH_EAPOL="no" |
| 169 | WITH_DHCP="no" |
| 170 | WITH_IGMP="no" |
| 171 | CONFIG_SADIS="no" |
| 172 | WITH_SIM_ADAPTERS="no" |
| 173 | DEPLOY_K8S="no" |
| 174 | VOLTHA_LOG_LEVEL="DEBUG" |
| 175 | } |
| 176 | steps { |
| 177 | script { |
| 178 | sh returnStdout: false, script: """ |
| 179 | if [ "${branch}" != "master" ]; then |
| 180 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| 181 | source "$WORKSPACE/voltha/kind-voltha/releases/${branch}" |
| 182 | else |
| 183 | echo "on master, using default settings for kind-voltha" |
| 184 | fi |
| 185 | |
| 186 | export EXTRA_HELM_FLAGS+='--set log_agent.enabled=False -f ${localKindVolthaValuesFile} ' |
| 187 | |
| 188 | IMAGES="" |
| 189 | if [ "${gerritProject}" = "voltha-go" ]; then |
| 190 | IMAGES="rw_core ro_core " |
| 191 | elif [ "${gerritProject}" = "ofagent-py" ]; then |
| 192 | IMAGES="ofagent " |
| 193 | elif [ "${gerritProject}" = "voltha-onos" ]; then |
| 194 | IMAGES="onos " |
| 195 | elif [ "${gerritProject}" = "voltha-openolt-adapter" ]; then |
| 196 | IMAGES="adapter_open_olt " |
| 197 | elif [ "${gerritProject}" = "voltha-openonu-adapter" ]; then |
| 198 | IMAGES="adapter_open_onu " |
Girish Gowdra | 7beebea | 2021-01-31 18:56:45 -0800 | [diff] [blame] | 199 | elif [ "${gerritProject}" = "voltha-openonu-adapter-go" ]; then |
| 200 | IMAGES="adapter_open_onu_go " |
Andy Bavier | d83bf3a | 2020-08-13 14:55:07 -0700 | [diff] [blame] | 201 | elif [ "${gerritProject}" = "voltha-api-server" ]; then |
| 202 | IMAGES="afrouter afrouterd " |
| 203 | else |
| 204 | echo "No images to push" |
| 205 | fi |
| 206 | |
| 207 | for I in \$IMAGES |
| 208 | do |
| 209 | EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never " |
| 210 | done |
| 211 | |
| 212 | if [ "${gerritProject}" = "voltha-helm-charts" ]; then |
| 213 | export CHART_PATH=$WORKSPACE/voltha/voltha-helm-charts |
| 214 | export VOLTHA_CHART=\$CHART_PATH/voltha |
| 215 | export VOLTHA_ADAPTER_OPEN_OLT_CHART=\$CHART_PATH/voltha-adapter-openolt |
| 216 | export VOLTHA_ADAPTER_OPEN_ONU_CHART=\$CHART_PATH/voltha-adapter-openonu |
| 217 | helm dep update \$VOLTHA_CHART |
| 218 | helm dep update \$VOLTHA_ADAPTER_OPEN_OLT_CHART |
| 219 | helm dep update \$VOLTHA_ADAPTER_OPEN_ONU_CHART |
| 220 | fi |
| 221 | |
| 222 | cd $WORKSPACE/voltha/kind-voltha/ |
| 223 | echo \$EXTRA_HELM_FLAGS |
| 224 | kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log & |
| 225 | ./voltha up |
| 226 | |
| 227 | set +e |
| 228 | |
| 229 | # Remove noise from voltha-core logs |
| 230 | voltctl log level set WARN read-write-core#github.com/opencord/voltha-go/db/model |
| 231 | voltctl log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka |
| 232 | # Remove noise from openolt logs |
| 233 | voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db |
| 234 | voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe |
| 235 | voltctl log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka |
| 236 | """ |
| 237 | } |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | stage('Deploy Kafka Dump Chart') { |
| 242 | steps { |
| 243 | script { |
| 244 | sh returnStdout: false, script: """ |
| 245 | helm repo add cord https://charts.opencord.org |
| 246 | helm repo update |
| 247 | if helm version -c --short|grep v2 -q; then |
| 248 | helm install -n voltha-kafka-dump cord/voltha-kafka-dump |
| 249 | else |
| 250 | helm install voltha-kafka-dump cord/voltha-kafka-dump |
| 251 | fi |
| 252 | """ |
| 253 | } |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | stage('Push Tech-Profile') { |
| 258 | when { |
| 259 | expression { params.profile != "Default" } |
| 260 | } |
| 261 | steps { |
| 262 | sh returnStdout: false, script: """ |
| 263 | etcd_container=\$(kubectl get pods -n voltha | grep voltha-etcd-cluster | awk 'NR==1{print \$1}') |
| 264 | kubectl cp $WORKSPACE/voltha/voltha-system-tests/tests/data/TechProfile-${profile}.json voltha/\$etcd_container:/tmp/flexpod.json |
| 265 | kubectl exec -it \$etcd_container -n voltha -- /bin/sh -c 'cat /tmp/flexpod.json | ETCDCTL_API=3 etcdctl put service/voltha/technology_profiles/XGS-PON/64' |
| 266 | """ |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | stage('Push Sadis-config') { |
| 271 | steps { |
| 272 | sh returnStdout: false, script: """ |
| 273 | curl -sSL --user karaf:karaf -X POST -H Content-Type:application/json http://${deployment_config.nodes[0].ip}:$ONOS_API_PORT/onos/v1/network/configuration --data @${localSadisConfigFile} |
| 274 | """ |
| 275 | } |
| 276 | } |
| 277 | |
| 278 | stage('Reinstall OLT software') { |
| 279 | when { |
| 280 | expression { params.reinstallOlt } |
| 281 | } |
| 282 | steps { |
| 283 | script { |
| 284 | deployment_config.olts.each { olt -> |
| 285 | sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --remove asfvolt16 && dpkg --purge asfvolt16'" |
| 286 | waitUntil { |
| 287 | olt_sw_present = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --list | grep asfvolt16 | wc -l'" |
| 288 | return olt_sw_present.toInteger() == 0 |
| 289 | } |
| 290 | if ( params.branch == 'voltha-2.3' ) { |
| 291 | oltDebVersion = oltDebVersionVoltha23 |
| 292 | } else { |
| 293 | oltDebVersion = oltDebVersionMaster |
| 294 | } |
| 295 | sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --install ${oltDebVersion}'" |
| 296 | waitUntil { |
| 297 | olt_sw_present = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'dpkg --list | grep asfvolt16 | wc -l'" |
| 298 | return olt_sw_present.toInteger() == 1 |
| 299 | } |
| 300 | if ( olt.fortygig ) { |
| 301 | // If the OLT is connected to a 40G switch interface, set the NNI port to be downgraded |
| 302 | sh returnStdout: false, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'echo port ce128 sp=40000 >> /broadcom/qax.soc ; /opt/bcm68620/svk_init.sh'" |
| 303 | } |
| 304 | } |
| 305 | } |
| 306 | } |
| 307 | } |
| 308 | |
| 309 | stage('Restart OLT processes') { |
| 310 | steps { |
| 311 | script { |
| 312 | deployment_config.olts.each { olt -> |
| 313 | sh returnStdout: false, script: """ |
| 314 | ssh-keyscan -H ${olt.ip} >> ~/.ssh/known_hosts |
| 315 | sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'rm -f /var/log/openolt.log; rm -f /var/log/dev_mgmt_daemon.log; reboot' |
| 316 | sleep 120 |
| 317 | """ |
| 318 | waitUntil { |
| 319 | onu_discovered = sh returnStdout: true, script: "sshpass -p ${olt.pass} ssh -l ${olt.user} ${olt.ip} 'grep \"onu discover indication\" /var/log/openolt.log | wc -l'" |
| 320 | return onu_discovered.toInteger() > 0 |
| 321 | } |
| 322 | } |
| 323 | } |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | stage('Run E2E Tests') { |
| 328 | environment { |
| 329 | ROBOT_CONFIG_FILE="${localDeploymentConfigFile}" |
| 330 | ROBOT_MISC_ARGS="${params.extraRobotArgs} --removekeywords wuks -d $WORKSPACE/RobotLogs -v container_log_dir:$WORKSPACE " |
| 331 | ROBOT_FILE="Voltha_DT_PODTests.robot" |
| 332 | } |
| 333 | steps { |
| 334 | sh returnStdout: false, script: """ |
| 335 | cd voltha |
| 336 | mkdir -p $WORKSPACE/RobotLogs |
| 337 | |
| 338 | # If the Gerrit comment contains a line with "functional tests" then run the full |
| 339 | # functional test suite. This covers tests tagged either 'sanity' or 'functional'. |
| 340 | # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| 341 | REGEX="functional tests" |
| 342 | if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| 343 | ROBOT_MISC_ARGS+="-i functionalDt" |
| 344 | fi |
Andy Bavier | c8ee432 | 2020-08-18 16:37:38 -0700 | [diff] [blame] | 345 | # Likewise for dataplane tests |
| 346 | REGEX="dataplane tests" |
| 347 | if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| 348 | ROBOT_MISC_ARGS+="-i dataplaneDt" |
| 349 | fi |
Andy Bavier | d83bf3a | 2020-08-13 14:55:07 -0700 | [diff] [blame] | 350 | |
| 351 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true |
| 352 | """ |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | stage('After-Test Delay') { |
| 357 | when { |
| 358 | expression { params.manualBranch == "" } |
| 359 | } |
| 360 | steps { |
| 361 | sh returnStdout: false, script: """ |
| 362 | # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| 363 | REGEX="hardware test with delay\$" |
| 364 | [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]] && sleep 10m || true |
| 365 | """ |
| 366 | } |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | post { |
| 371 | always { |
| 372 | sh returnStdout: false, script: ''' |
| 373 | set +e |
| 374 | cp $WORKSPACE/voltha/kind-voltha/install-minimal.log $WORKSPACE/ |
| 375 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq |
| 376 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq |
| 377 | kubectl get nodes -o wide |
| 378 | kubectl get pods -o wide |
| 379 | kubectl get pods -n voltha -o wide |
| 380 | |
| 381 | sync |
| 382 | pkill kail || true |
| 383 | |
| 384 | ## Pull out errors from log files |
| 385 | extract_errors_go() { |
| 386 | echo |
| 387 | echo "Error summary for $1:" |
| 388 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg' |
| 389 | echo |
| 390 | } |
| 391 | |
| 392 | extract_errors_python() { |
| 393 | echo |
| 394 | echo "Error summary for $1:" |
| 395 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2- |
| 396 | echo |
| 397 | } |
| 398 | |
| 399 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 400 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 401 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 402 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 403 | |
| 404 | gzip $WORKSPACE/onos-voltha-combined.log |
| 405 | |
| 406 | ## collect events, the chart should be running by now |
| 407 | kubectl get pods | grep -i voltha-kafka-dump | grep -i running |
| 408 | if [[ $? == 0 ]]; then |
| 409 | kubectl exec -it `kubectl get pods | grep -i voltha-kafka-dump | grep -i running | cut -f1 -d " "` ./voltha-dump-events.sh > $WORKSPACE/voltha-events.log |
| 410 | fi |
| 411 | ''' |
| 412 | script { |
| 413 | deployment_config.olts.each { olt -> |
| 414 | sh returnStdout: false, script: """ |
| 415 | until sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log |
| 416 | do |
| 417 | echo "Fetching openolt.log log failed, retrying..." |
| 418 | sleep 10 |
| 419 | done |
| 420 | sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences |
| 421 | until sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/dev_mgmt_daemon.log $WORKSPACE/dev_mgmt_daemon-${olt.ip}.log |
| 422 | do |
| 423 | echo "Fetching dev_mgmt_daemon.log failed, retrying..." |
| 424 | sleep 10 |
| 425 | done |
| 426 | sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/dev_mgmt_daemon-${olt.ip}.log # Remove escape sequences |
| 427 | """ |
| 428 | } |
| 429 | } |
| 430 | step([$class: 'RobotPublisher', |
| 431 | disableArchiveOutput: false, |
| 432 | logFileName: 'RobotLogs/log*.html', |
| 433 | otherFiles: '', |
| 434 | outputFileName: 'RobotLogs/output*.xml', |
| 435 | outputPath: '.', |
| 436 | passThreshold: 100, |
| 437 | reportFileName: 'RobotLogs/report*.html', |
| 438 | unstableThreshold: 0]); |
| 439 | archiveArtifacts artifacts: '*.log,*.gz' |
| 440 | } |
| 441 | } |
| 442 | } |