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" |
Andrea Campanella | f300fc3 | 2020-09-11 14:01:12 +0200 | [diff] [blame] | 40 | CONFIG_SADIS="external" |
| 41 | BBSIM_CFG="configs/bbsim-sadis-att.yaml" |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 42 | ROBOT_MISC_ARGS="-d $WORKSPACE/RobotLogs" |
Matteo Scandolo | b611b1f | 2021-01-05 09:11:49 -0800 | [diff] [blame] | 43 | NUM_OF_ETCD=3 |
| 44 | SCHEDULE_ON_CONTROL_NODES="y" |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 45 | } |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 46 | |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 47 | stages { |
hwchiu | cd8fc95 | 2020-02-04 13:01:48 -0800 | [diff] [blame] | 48 | stage('Create Kubernetes Cluster') { |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 49 | steps { |
Matteo Scandolo | e4abf85 | 2021-05-18 09:12:11 -0700 | [diff] [blame] | 50 | timeout(time: 10, unit: 'MINUTES') { |
| 51 | sh """ |
| 52 | git clone https://gerrit.opencord.org/kind-voltha |
| 53 | pushd kind-voltha/ |
| 54 | if [ "${branch}" != "master" ]; then |
| 55 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| 56 | source "$WORKSPACE/kind-voltha/releases/${branch}" |
| 57 | else |
| 58 | echo "on master, using default settings for kind-voltha" |
| 59 | fi |
| 60 | JUST_K8S=y ./voltha up |
| 61 | popd |
| 62 | """ |
| 63 | } |
hwchiu | cd8fc95 | 2020-02-04 13:01:48 -0800 | [diff] [blame] | 64 | } |
| 65 | } |
| 66 | |
| 67 | stage('Setup log collector') { |
| 68 | steps { |
| 69 | sh """ |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 70 | 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] | 71 | kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log & |
| 72 | """ |
| 73 | } |
| 74 | } |
| 75 | |
| 76 | stage('Deploy Voltha') { |
| 77 | steps { |
Matteo Scandolo | e4abf85 | 2021-05-18 09:12:11 -0700 | [diff] [blame] | 78 | timeout(time: 10, unit: 'MINUTES') { |
| 79 | sh """ |
| 80 | export EXTRA_HELM_FLAGS="" |
| 81 | if [ "${branch}" != "master" ]; then |
| 82 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| 83 | source "$WORKSPACE/kind-voltha/releases/${branch}" |
| 84 | else |
| 85 | echo "on master, using default settings for kind-voltha" |
| 86 | fi |
Andy Bavier | 10926f1 | 2020-03-27 16:53:43 -0700 | [diff] [blame] | 87 | |
Matteo Scandolo | e4abf85 | 2021-05-18 09:12:11 -0700 | [diff] [blame] | 88 | EXTRA_HELM_FLAGS+="${params.extraHelmFlags} " |
| 89 | echo \$EXTRA_HELM_FLAGS |
Andy Bavier | b567af7 | 2020-03-30 10:27:15 -0700 | [diff] [blame] | 90 | |
Matteo Scandolo | e4abf85 | 2021-05-18 09:12:11 -0700 | [diff] [blame] | 91 | pushd kind-voltha/ |
| 92 | ./voltha up |
| 93 | popd |
| 94 | """ |
| 95 | } |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 96 | } |
| 97 | } |
| 98 | |
| 99 | stage('Run E2E Tests') { |
| 100 | steps { |
Matteo Scandolo | e4abf85 | 2021-05-18 09:12:11 -0700 | [diff] [blame] | 101 | timeout(time: 10, unit: 'MINUTES') { |
| 102 | sh ''' |
| 103 | rm -rf $WORKSPACE/RobotLogs; mkdir -p $WORKSPACE/RobotLogs |
| 104 | git clone -b ${branch} https://gerrit.opencord.org/voltha-system-tests |
| 105 | make ROBOT_DEBUG_LOG_OPT="-l sanity_log.html -r sanity_report.html -o sanity_output.xml" -C $WORKSPACE/voltha-system-tests ${makeTarget} |
| 106 | ''' |
| 107 | } |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 108 | } |
| 109 | } |
| 110 | |
Andy Bavier | 4be3706 | 2020-06-29 15:17:26 -0700 | [diff] [blame] | 111 | stage('Kubernetes ETCD Scale Test') { |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 112 | steps { |
Matteo Scandolo | e4abf85 | 2021-05-18 09:12:11 -0700 | [diff] [blame] | 113 | timeout(time: 10, unit: 'MINUTES') { |
| 114 | sh ''' |
| 115 | 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 |
| 116 | ''' |
| 117 | } |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 118 | } |
| 119 | } |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 120 | |
Andy Bavier | 4be3706 | 2020-06-29 15:17:26 -0700 | [diff] [blame] | 121 | stage('Kubernetes ETCD Failure Test') { |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 122 | steps { |
Matteo Scandolo | e4abf85 | 2021-05-18 09:12:11 -0700 | [diff] [blame] | 123 | timeout(time: 10, unit: 'MINUTES') { |
| 124 | sh ''' |
| 125 | make ROBOT_DEBUG_LOG_OPT="-l failure_log.html -r failure_report.html -o failure_output.xml" -C $WORKSPACE/voltha-system-tests failure-test |
| 126 | ''' |
| 127 | } |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 128 | } |
| 129 | } |
| 130 | |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | post { |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 134 | always { |
| 135 | sh ''' |
| 136 | set +e |
| 137 | cp $WORKSPACE/kind-voltha/install-full.log $WORKSPACE/ |
Matteo Scandolo | 97b1257 | 2020-04-13 12:44:46 -0700 | [diff] [blame] | 138 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq |
| 139 | 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] | 140 | kubectl get nodes -o wide |
| 141 | kubectl get pods -o wide |
| 142 | kubectl get pods -n voltha -o wide |
hwchiu | 8585b57 | 2019-12-16 11:20:43 -0800 | [diff] [blame] | 143 | |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 144 | sync |
| 145 | pkill kail || true |
| 146 | |
| 147 | ## Pull out errors from log files |
| 148 | extract_errors_go() { |
| 149 | echo |
| 150 | echo "Error summary for $1:" |
| 151 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg' |
| 152 | echo |
| 153 | } |
| 154 | |
| 155 | extract_errors_python() { |
| 156 | echo |
| 157 | echo "Error summary for $1:" |
| 158 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2- |
| 159 | echo |
| 160 | } |
| 161 | |
| 162 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 163 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 164 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 165 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 166 | |
| 167 | ## shut down kind-voltha |
Andrea Campanella | 57735a8 | 2021-05-18 13:22:49 +0200 | [diff] [blame] | 168 | if [ "${branch}" != "master" ]; then |
| 169 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
| 170 | source "$WORKSPACE/kind-voltha/releases/${branch}" |
| 171 | else |
| 172 | echo "on master, using default settings for kind-voltha" |
| 173 | fi |
hwchiu | 593a95a | 2020-01-30 10:09:39 -0800 | [diff] [blame] | 174 | cd $WORKSPACE/kind-voltha |
| 175 | WAIT_ON_DOWN=y ./voltha down |
| 176 | |
| 177 | ''' |
hwchiu | fdc4924 | 2019-11-18 16:37:22 -0800 | [diff] [blame] | 178 | step([$class: 'RobotPublisher', |
| 179 | disableArchiveOutput: false, |
| 180 | logFileName: 'RobotLogs/*log*.html', |
| 181 | otherFiles: '', |
| 182 | outputFileName: 'RobotLogs/*output*.xml', |
| 183 | outputPath: '.', |
| 184 | passThreshold: 100, |
| 185 | reportFileName: 'RobotLogs/*report*.html', |
| 186 | unstableThreshold: 0]); |
| 187 | archiveArtifacts artifacts: '*.log' |
| 188 | |
| 189 | } |
| 190 | } |
| 191 | } |