hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [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 | |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 19 | |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 20 | pipeline { |
| 21 | |
| 22 | /* no label, executor is determined by JJB */ |
| 23 | agent { |
| 24 | label "${params.buildNode}" |
| 25 | } |
| 26 | options { |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 27 | timeout(time: 80, unit: 'MINUTES') |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 28 | } |
| 29 | environment { |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 30 | KUBECONFIG="$HOME/.kube/kind-config-voltha-full" |
| 31 | VOLTCONFIG="$HOME/.volt/config-full" |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 32 | PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WORKSPACE/kind-voltha/bin" |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 33 | TYPE="full" |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 34 | FANCY=0 |
| 35 | WITH_SIM_ADAPTERS="n" |
| 36 | WITH_RADIUS="y" |
| 37 | WITH_BBSIM="y" |
| 38 | DEPLOY_K8S="y" |
| 39 | VOLTHA_LOG_LEVEL="DEBUG" |
| 40 | CONFIG_SADIS="y" |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 41 | ROBOT_MISC_ARGS="-d $WORKSPACE/RobotLogs" |
| 42 | } |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 43 | |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 44 | stages { |
hwchiu | cd8fc95 | 2020-02-04 13:01:48 -0800 | [diff] [blame] | 45 | stage('Create Kubernetes Cluster') { |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 46 | steps { |
| 47 | sh """ |
Andy Bavier | b5c8caf | 2020-04-06 14:12:07 -0700 | [diff] [blame] | 48 | git clone https://gerrit.opencord.org/kind-voltha |
hwchiu | c7d5d03 | 2019-12-03 16:42:47 -0800 | [diff] [blame] | 49 | pushd kind-voltha/ |
hwchiu | cd8fc95 | 2020-02-04 13:01:48 -0800 | [diff] [blame] | 50 | JUST_K8S=y ./voltha up |
| 51 | popd |
| 52 | """ |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | stage('Setup log collector') { |
| 57 | steps { |
| 58 | sh """ |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 59 | bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/kind-voltha/bin" |
hwchiu | cd8fc95 | 2020-02-04 13:01:48 -0800 | [diff] [blame] | 60 | kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log & |
| 61 | """ |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | stage('Deploy Voltha') { |
| 66 | steps { |
| 67 | sh """ |
Andy Bavier | 22a8da0 | 2020-03-31 12:40:09 -0700 | [diff] [blame] | 68 | export EXTRA_HELM_FLAGS="" |
Andy Bavier | cf2afa4 | 2020-03-31 10:20:27 -0700 | [diff] [blame] | 69 | if [ "${branch}" != "master" ]; then |
| 70 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| 71 | source "$WORKSPACE/kind-voltha/releases/${branch}" |
Andy Bavier | 10926f1 | 2020-03-27 16:53:43 -0700 | [diff] [blame] | 72 | else |
| 73 | echo "on master, using default settings for kind-voltha" |
| 74 | fi |
| 75 | |
Andy Bavier | b567af7 | 2020-03-30 10:27:15 -0700 | [diff] [blame] | 76 | EXTRA_HELM_FLAGS+="${params.extraHelmFlags} --set voltha-etcd-cluster.clusterSize=3 " |
Andy Bavier | 22a8da0 | 2020-03-31 12:40:09 -0700 | [diff] [blame] | 77 | echo \$EXTRA_HELM_FLAGS |
Andy Bavier | b567af7 | 2020-03-30 10:27:15 -0700 | [diff] [blame] | 78 | |
hwchiu | cd8fc95 | 2020-02-04 13:01:48 -0800 | [diff] [blame] | 79 | pushd kind-voltha/ |
| 80 | ./voltha up |
hwchiu | c7d5d03 | 2019-12-03 16:42:47 -0800 | [diff] [blame] | 81 | popd |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 82 | """ |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | stage('Run E2E Tests') { |
| 87 | steps { |
| 88 | sh ''' |
| 89 | rm -rf $WORKSPACE/RobotLogs; mkdir -p $WORKSPACE/RobotLogs |
Andy Bavier | cf2afa4 | 2020-03-31 10:20:27 -0700 | [diff] [blame] | 90 | git clone -b ${branch} https://gerrit.opencord.org/voltha-system-tests |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 91 | make ROBOT_DEBUG_LOG_OPT="-l sanity_log.html -r sanity_report.html -o sanity_output.xml" -C $WORKSPACE/voltha-system-tests ${makeTarget} |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 92 | ''' |
| 93 | } |
| 94 | } |
| 95 | |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 96 | stage('Kubernetes Functional Tests') { |
| 97 | steps { |
| 98 | sh ''' |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 99 | make ROBOT_DEBUG_LOG_OPT="-l functional_log.html -r functional_report.html -o functional_output.xml" -C $WORKSPACE/voltha-system-tests system-scale-test |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 100 | ''' |
| 101 | } |
| 102 | } |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 103 | |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 104 | stage('Kubernetes Failure Scenario Tests') { |
| 105 | steps { |
| 106 | sh ''' |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 107 | make ROBOT_DEBUG_LOG_OPT="-l failure_log.html -r failure_report.html -o failure_output.xml" -C $WORKSPACE/voltha-system-tests failure-test |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 108 | ''' |
| 109 | } |
| 110 | } |
| 111 | |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | post { |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 115 | always { |
| 116 | sh ''' |
| 117 | set +e |
| 118 | cp $WORKSPACE/kind-voltha/install-full.log $WORKSPACE/ |
Matteo Scandolo | 97b1257 | 2020-04-13 12:44:46 -0700 | [diff] [blame] | 119 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq |
| 120 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 121 | kubectl get nodes -o wide |
| 122 | kubectl get pods -o wide |
| 123 | kubectl get pods -n voltha -o wide |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 124 | |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 125 | sync |
| 126 | pkill kail || true |
| 127 | |
| 128 | ## Pull out errors from log files |
| 129 | extract_errors_go() { |
| 130 | echo |
| 131 | echo "Error summary for $1:" |
| 132 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg' |
| 133 | echo |
| 134 | } |
| 135 | |
| 136 | extract_errors_python() { |
| 137 | echo |
| 138 | echo "Error summary for $1:" |
| 139 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2- |
| 140 | echo |
| 141 | } |
| 142 | |
| 143 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 144 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 145 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 146 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 147 | |
| 148 | ## shut down kind-voltha |
| 149 | cd $WORKSPACE/kind-voltha |
| 150 | WAIT_ON_DOWN=y ./voltha down |
| 151 | |
| 152 | ''' |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 153 | step([$class: 'RobotPublisher', |
| 154 | disableArchiveOutput: false, |
| 155 | logFileName: 'RobotLogs/*log*.html', |
| 156 | otherFiles: '', |
| 157 | outputFileName: 'RobotLogs/*output*.xml', |
| 158 | outputPath: '.', |
| 159 | passThreshold: 100, |
| 160 | reportFileName: 'RobotLogs/*report*.html', |
| 161 | unstableThreshold: 0]); |
| 162 | archiveArtifacts artifacts: '*.log' |
| 163 | |
| 164 | } |
| 165 | } |
| 166 | } |