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 { |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 29 | PATH="$WORKSPACE/kind-voltha/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 30 | VOLTHA_LOG_LEVEL="DEBUG" |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 31 | FANCY=0 |
| 32 | WITH_SIM_ADAPTERS="n" |
Matteo Scandolo | 39045a9 | 2020-07-29 08:58:29 -0700 | [diff] [blame] | 33 | NAME="test" |
| 34 | VOLTCONFIG="$HOME/.volt/config-$NAME" |
| 35 | KUBECONFIG="$HOME/.kube/kind-config-voltha-$NAME" |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | stages { |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 39 | stage('Clone kind-voltha') { |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 40 | steps { |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 41 | checkout([ |
| 42 | $class: 'GitSCM', |
| 43 | userRemoteConfigs: [[ |
| 44 | url: "https://gerrit.opencord.org/kind-voltha", |
Matteo Scandolo | a42c6f5 | 2020-09-19 01:35:12 +0000 | [diff] [blame] | 45 | refspec: "${kindVolthaChange}" |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 46 | ]], |
| 47 | branches: [[ name: "master", ]], |
| 48 | extensions: [ |
| 49 | [$class: 'WipeWorkspace'], |
| 50 | [$class: 'RelativeTargetDirectory', relativeTargetDir: "kind-voltha"], |
| 51 | [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false], |
| 52 | ], |
| 53 | ]) |
Matteo Scandolo | 57a0663 | 2020-09-18 18:38:54 -0700 | [diff] [blame] | 54 | sh """ |
| 55 | if [ '${kindVolthaChange}' != '' ] ; then |
| 56 | cd $WORKSPACE/kind-voltha |
| 57 | git fetch https://gerrit.opencord.org/kind-voltha ${kindVolthaChange} && git checkout FETCH_HEAD |
| 58 | fi |
| 59 | """ |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 60 | } |
| 61 | } |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 62 | stage('Clone voltha-system-tests') { |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 63 | steps { |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 64 | checkout([ |
| 65 | $class: 'GitSCM', |
| 66 | userRemoteConfigs: [[ |
| 67 | url: "https://gerrit.opencord.org/voltha-system-tests", |
Matteo Scandolo | a42c6f5 | 2020-09-19 01:35:12 +0000 | [diff] [blame] | 68 | refspec: "${volthaSystemTestsChange}" |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 69 | ]], |
| 70 | branches: [[ name: "${branch}", ]], |
| 71 | extensions: [ |
| 72 | [$class: 'WipeWorkspace'], |
| 73 | [$class: 'RelativeTargetDirectory', relativeTargetDir: "voltha-system-tests"], |
| 74 | [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false], |
| 75 | ], |
| 76 | ]) |
Matteo Scandolo | 57a0663 | 2020-09-18 18:38:54 -0700 | [diff] [blame] | 77 | sh """ |
| 78 | if [ '${volthaSystemTestsChange}' != '' ] ; then |
| 79 | cd $WORKSPACE/voltha-system-tests |
| 80 | git fetch https://gerrit.opencord.org/voltha-system-tests ${volthaSystemTestsChange} && git checkout FETCH_HEAD |
| 81 | fi |
| 82 | """ |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 83 | } |
| 84 | } |
Matteo Scandolo | 8fc674c | 2020-09-14 18:05:37 -0700 | [diff] [blame] | 85 | // If the repo under test is not kind-voltha |
| 86 | // then download it and checkout the patch |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 87 | stage('Download Patch') { |
Matteo Scandolo | 8fc674c | 2020-09-14 18:05:37 -0700 | [diff] [blame] | 88 | when { |
| 89 | expression { |
| 90 | return "${gerritProject}" != 'kind-voltha'; |
| 91 | } |
| 92 | } |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 93 | steps { |
| 94 | checkout([ |
| 95 | $class: 'GitSCM', |
| 96 | userRemoteConfigs: [[ |
| 97 | url: "https://gerrit.opencord.org/${gerritProject}", |
Matteo Scandolo | a42c6f5 | 2020-09-19 01:35:12 +0000 | [diff] [blame] | 98 | refspec: "${gerritRefspec}" |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 99 | ]], |
| 100 | branches: [[ name: "${branch}", ]], |
| 101 | extensions: [ |
| 102 | [$class: 'WipeWorkspace'], |
| 103 | [$class: 'RelativeTargetDirectory', relativeTargetDir: "${gerritProject}"], |
| 104 | [$class: 'CloneOption', depth: 0, noTags: false, reference: '', shallow: false], |
| 105 | ], |
| 106 | ]) |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 107 | sh """ |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 108 | pushd $WORKSPACE/${gerritProject} |
Matteo Scandolo | 57a0663 | 2020-09-18 18:38:54 -0700 | [diff] [blame] | 109 | git fetch https://gerrit.opencord.org/${gerritProject} ${gerritRefspec} && git checkout FETCH_HEAD |
| 110 | |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 111 | echo "Currently on commit: \n" |
| 112 | git log -1 --oneline |
| 113 | popd |
| 114 | """ |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 115 | } |
| 116 | } |
Matteo Scandolo | 8fc674c | 2020-09-14 18:05:37 -0700 | [diff] [blame] | 117 | // If the repo under test is kind-voltha we don't need to download it again, |
| 118 | // as we already have it, simply checkout the patch |
| 119 | stage('Checkout kind-voltha patch') { |
| 120 | when { |
| 121 | expression { |
| 122 | return "${gerritProject}" == 'kind-voltha'; |
| 123 | } |
| 124 | } |
| 125 | steps { |
| 126 | sh """ |
| 127 | cd $WORKSPACE/kind-voltha |
| 128 | git fetch https://gerrit.opencord.org/kind-voltha ${gerritRefspec} && git checkout FETCH_HEAD |
| 129 | """ |
| 130 | } |
| 131 | } |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 132 | stage('Create K8s Cluster') { |
| 133 | steps { |
| 134 | sh """ |
Zack Williams | 03ebb27 | 2020-03-27 09:42:33 -0700 | [diff] [blame] | 135 | if [ "${branch}" != "master" ]; then |
| 136 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 137 | source "$WORKSPACE/kind-voltha/releases/${branch}" |
Zack Williams | 03ebb27 | 2020-03-27 09:42:33 -0700 | [diff] [blame] | 138 | else |
| 139 | echo "on master, using default settings for kind-voltha" |
| 140 | fi |
| 141 | |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 142 | cd $WORKSPACE/kind-voltha/ |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 143 | JUST_K8S=y ./voltha up |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 144 | 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] | 145 | """ |
| 146 | } |
| 147 | } |
| 148 | |
| 149 | stage('Build Images') { |
| 150 | steps { |
| 151 | sh """ |
Andy Bavier | b99c3d3 | 2020-02-18 11:14:17 -0700 | [diff] [blame] | 152 | make-local () { |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 153 | make -C $WORKSPACE/\$1 DOCKER_REPOSITORY=voltha/ DOCKER_TAG=citest docker-build |
Andy Bavier | b99c3d3 | 2020-02-18 11:14:17 -0700 | [diff] [blame] | 154 | } |
Andy Bavier | 0ed7706 | 2020-02-18 10:09:19 -0700 | [diff] [blame] | 155 | if [ "${gerritProject}" = "pyvoltha" ]; then |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 156 | make -C $WORKSPACE/pyvoltha/ dist |
| 157 | export LOCAL_PYVOLTHA=$WORKSPACE/pyvoltha/ |
Andy Bavier | b99c3d3 | 2020-02-18 11:14:17 -0700 | [diff] [blame] | 158 | make-local voltha-openonu-adapter |
| 159 | elif [ "${gerritProject}" = "voltha-lib-go" ]; then |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 160 | make -C $WORKSPACE/voltha-lib-go/ build |
| 161 | export LOCAL_LIB_GO=$WORKSPACE/voltha-lib-go/ |
Andy Bavier | b99c3d3 | 2020-02-18 11:14:17 -0700 | [diff] [blame] | 162 | make-local voltha-go |
| 163 | make-local voltha-openolt-adapter |
| 164 | elif [ "${gerritProject}" = "voltha-protos" ]; then |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 165 | make -C $WORKSPACE/voltha-protos/ build |
| 166 | export LOCAL_PROTOS=$WORKSPACE/voltha-protos/ |
Andy Bavier | b99c3d3 | 2020-02-18 11:14:17 -0700 | [diff] [blame] | 167 | make-local voltha-go |
| 168 | make-local voltha-openolt-adapter |
| 169 | make-local voltha-openonu-adapter |
| 170 | make-local ofagent-py |
Andy Bavier | 178c47b | 2020-04-01 13:05:43 -0700 | [diff] [blame] | 171 | elif [ "${gerritProject}" = "voltctl" ]; then |
Andy Bavier | decde3f | 2020-04-01 15:29:43 -0700 | [diff] [blame] | 172 | # Set and handle GOPATH and PATH |
| 173 | export GOPATH=\${GOPATH:-$WORKSPACE/go} |
| 174 | export PATH=\$PATH:/usr/lib/go-1.12/bin:/usr/local/go/bin:\$GOPATH/bin |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 175 | make -C $WORKSPACE/voltctl/ build |
Andy Bavier | 4318f8d | 2020-04-09 13:50:53 -0700 | [diff] [blame] | 176 | elif ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests|kind-voltha)\$ ]]; then |
Andy Bavier | b99c3d3 | 2020-02-18 11:14:17 -0700 | [diff] [blame] | 177 | make-local ${gerritProject} |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 178 | fi |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 179 | """ |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | stage('Push Images') { |
| 184 | steps { |
| 185 | sh ''' |
Zack Williams | 03ebb27 | 2020-03-27 09:42:33 -0700 | [diff] [blame] | 186 | if [ "${branch}" != "master" ]; then |
| 187 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 188 | source "$WORKSPACE/kind-voltha/releases/${branch}" |
Zack Williams | 03ebb27 | 2020-03-27 09:42:33 -0700 | [diff] [blame] | 189 | else |
| 190 | echo "on master, using default settings for kind-voltha" |
| 191 | fi |
| 192 | |
Andy Bavier | b5c8caf | 2020-04-06 14:12:07 -0700 | [diff] [blame] | 193 | if ! [[ "${gerritProject}" =~ ^(voltha-helm-charts|voltha-system-tests|voltctl|kind-voltha)\$ ]]; then |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 194 | export GOROOT=/usr/local/go |
| 195 | export GOPATH=\$(pwd) |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 196 | docker images | grep citest |
Matteo Scandolo | 2e64c10 | 2020-07-29 19:41:02 -0700 | [diff] [blame] | 197 | for image in \$(docker images -f "reference=*/*citest" --format "{{.Repository}}"); do echo "Pushing \$image to nodes"; kind load docker-image \$image:citest --name voltha-\$NAME --nodes voltha-\$NAME-worker,voltha-\$NAME-worker2; done |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 198 | fi |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 199 | ''' |
| 200 | } |
| 201 | } |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 202 | |
| 203 | stage('ATT workflow') { |
| 204 | environment { |
| 205 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ATTWorkflow" |
| 206 | } |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 207 | steps { |
Kailash Khalasi | af3a2a6 | 2019-10-02 09:44:08 -0700 | [diff] [blame] | 208 | sh ''' |
Zack Williams | 03ebb27 | 2020-03-27 09:42:33 -0700 | [diff] [blame] | 209 | if [ "${branch}" != "master" ]; then |
| 210 | echo "on branch: ${branch}, sourcing kind-voltha/releases/${branch}" |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 211 | source "$WORKSPACE/kind-voltha/releases/${branch}" |
Zack Williams | 03ebb27 | 2020-03-27 09:42:33 -0700 | [diff] [blame] | 212 | else |
| 213 | echo "on master, using default settings for kind-voltha" |
| 214 | fi |
| 215 | |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 216 | # Workflow-specific flags |
| 217 | export WITH_RADIUS=yes |
| 218 | export WITH_BBSIM=yes |
| 219 | export DEPLOY_K8S=yes |
Matteo Scandolo | 3d6a21d | 2020-09-04 07:34:24 -0700 | [diff] [blame] | 220 | export CONFIG_SADIS="external" |
| 221 | export BBSIM_CFG="configs/bbsim-sadis-att.yaml" |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 222 | |
Zack Williams | 03ebb27 | 2020-03-27 09:42:33 -0700 | [diff] [blame] | 223 | export EXTRA_HELM_FLAGS+="--set log_agent.enabled=False ${extraHelmFlags} " |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 224 | |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 225 | IMAGES="" |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 226 | if [ "${gerritProject}" = "voltha-go" ]; then |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 227 | IMAGES="rw_core ro_core " |
| 228 | elif [ "${gerritProject}" = "ofagent-py" ]; then |
Andy Bavier | 8d81642 | 2020-03-23 15:34:26 -0700 | [diff] [blame] | 229 | IMAGES="ofagent_py " |
| 230 | EXTRA_HELM_FLAGS+="--set use_ofagent_go=false " |
Andy Bavier | 9c412a8 | 2020-03-23 12:00:28 -0700 | [diff] [blame] | 231 | elif [ "${gerritProject}" = "ofagent-go" ]; then |
Andy Bavier | 8d81642 | 2020-03-23 15:34:26 -0700 | [diff] [blame] | 232 | IMAGES="ofagent_go " |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 233 | elif [ "${gerritProject}" = "voltha-onos" ]; then |
| 234 | IMAGES="onos " |
| 235 | elif [ "${gerritProject}" = "voltha-openolt-adapter" ]; then |
| 236 | IMAGES="adapter_open_olt " |
| 237 | elif [ "${gerritProject}" = "voltha-openonu-adapter" ]; then |
| 238 | IMAGES="adapter_open_onu " |
| 239 | elif [ "${gerritProject}" = "voltha-api-server" ]; then |
| 240 | IMAGES="afrouter afrouterd " |
| 241 | elif [ "${gerritProject}" = "bbsim" ]; then |
| 242 | IMAGES="bbsim " |
Andy Bavier | ec0c10d | 2020-02-14 13:06:27 -0700 | [diff] [blame] | 243 | elif [ "${gerritProject}" = "pyvoltha" ]; then |
| 244 | IMAGES="adapter_open_onu " |
Andy Bavier | b99c3d3 | 2020-02-18 11:14:17 -0700 | [diff] [blame] | 245 | elif [ "${gerritProject}" = "voltha-lib-go" ]; then |
| 246 | IMAGES="rw_core ro_core adapter_open_olt " |
| 247 | elif [ "${gerritProject}" = "voltha-protos" ]; then |
| 248 | IMAGES="rw_core ro_core adapter_open_olt adapter_open_onu ofagent " |
Zack Williams | 0499750 | 2019-10-04 14:32:20 -0700 | [diff] [blame] | 249 | else |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 250 | echo "No images to push" |
Scott Baker | 9ac2371 | 2019-10-02 09:26:50 -0700 | [diff] [blame] | 251 | fi |
| 252 | |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 253 | for I in \$IMAGES |
| 254 | do |
| 255 | EXTRA_HELM_FLAGS+="--set images.\$I.tag=citest,images.\$I.pullPolicy=Never " |
| 256 | done |
| 257 | |
Kailash Khalasi | af3a2a6 | 2019-10-02 09:44:08 -0700 | [diff] [blame] | 258 | if [ "${gerritProject}" = "voltha-helm-charts" ]; then |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 259 | export CHART_PATH=$WORKSPACE/voltha-helm-charts |
Andy Bavier | 4540634 | 2019-10-02 16:45:40 -0700 | [diff] [blame] | 260 | export VOLTHA_CHART=\$CHART_PATH/voltha |
| 261 | export VOLTHA_ADAPTER_OPEN_OLT_CHART=\$CHART_PATH/voltha-adapter-openolt |
| 262 | export VOLTHA_ADAPTER_OPEN_ONU_CHART=\$CHART_PATH/voltha-adapter-openonu |
Kailash Khalasi | af3a2a6 | 2019-10-02 09:44:08 -0700 | [diff] [blame] | 263 | helm dep update \$VOLTHA_CHART |
| 264 | helm dep update \$VOLTHA_ADAPTER_OPEN_OLT_CHART |
| 265 | helm dep update \$VOLTHA_ADAPTER_OPEN_ONU_CHART |
| 266 | fi |
| 267 | |
Andy Bavier | 178c47b | 2020-04-01 13:05:43 -0700 | [diff] [blame] | 268 | if [ "${gerritProject}" = "voltctl" ]; then |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 269 | export VOLTCTL_VERSION=$(cat $WORKSPACE/voltctl/VERSION) |
| 270 | cp $WORKSPACE/voltctl/voltctl $WORKSPACE/kind-voltha/bin/voltctl |
| 271 | md5sum $WORKSPACE/kind-voltha/bin/voltctl |
Andy Bavier | 178c47b | 2020-04-01 13:05:43 -0700 | [diff] [blame] | 272 | fi |
| 273 | |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 274 | printenv |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 275 | kail -n voltha -n default > $WORKSPACE/onos-voltha-combined.log & |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 276 | |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 277 | cd $WORKSPACE/kind-voltha/ |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 278 | ./voltha up |
| 279 | |
Matteo Scandolo | 39045a9 | 2020-07-29 08:58:29 -0700 | [diff] [blame] | 280 | # $NAME-env.sh contains the environment we used |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 281 | # Save value of EXTRA_HELM_FLAGS there to use in subsequent stages |
Matteo Scandolo | 39045a9 | 2020-07-29 08:58:29 -0700 | [diff] [blame] | 282 | echo export EXTRA_HELM_FLAGS=\\"\$EXTRA_HELM_FLAGS\\" >> $NAME-env.sh |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 283 | |
| 284 | mkdir -p $ROBOT_LOGS_DIR |
Andy Bavier | d987004 | 2020-06-23 13:16:47 -0700 | [diff] [blame] | 285 | export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch" |
Andy Bavier | db00308 | 2020-02-04 11:57:36 -0700 | [diff] [blame] | 286 | |
| 287 | # By default, all tests tagged 'sanity' are run. This covers basic functionality |
| 288 | # like running through the ATT workflow for a single subscriber. |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 289 | export TARGET=sanity-single-kind |
Andy Bavier | db00308 | 2020-02-04 11:57:36 -0700 | [diff] [blame] | 290 | |
| 291 | # If the Gerrit comment contains a line with "functional tests" then run the full |
| 292 | # functional test suite. This covers tests tagged either 'sanity' or 'functional'. |
| 293 | # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| 294 | REGEX="functional tests" |
| 295 | if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 296 | TARGET=functional-single-kind |
Andy Bavier | db00308 | 2020-02-04 11:57:36 -0700 | [diff] [blame] | 297 | fi |
| 298 | |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 299 | make -C $WORKSPACE/voltha-system-tests \$TARGET || true |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 300 | ''' |
| 301 | } |
| 302 | } |
| 303 | |
| 304 | stage('DT workflow') { |
| 305 | environment { |
| 306 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/DTWorkflow" |
| 307 | } |
| 308 | steps { |
| 309 | sh ''' |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 310 | cd $WORKSPACE/kind-voltha/ |
Matteo Scandolo | 39045a9 | 2020-07-29 08:58:29 -0700 | [diff] [blame] | 311 | source $NAME-env.sh |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 312 | WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down |
| 313 | |
| 314 | # Workflow-specific flags |
| 315 | export WITH_RADIUS=no |
| 316 | export WITH_EAPOL=no |
| 317 | export WITH_DHCP=no |
| 318 | export WITH_IGMP=no |
Matteo Scandolo | 3d6a21d | 2020-09-04 07:34:24 -0700 | [diff] [blame] | 319 | export CONFIG_SADIS="external" |
| 320 | export BBSIM_CFG="configs/bbsim-sadis-dt.yaml" |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 321 | |
| 322 | DEPLOY_K8S=n ./voltha up |
| 323 | |
| 324 | mkdir -p $ROBOT_LOGS_DIR |
Andy Bavier | d987004 | 2020-06-23 13:16:47 -0700 | [diff] [blame] | 325 | export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch" |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 326 | |
| 327 | # By default, all tests tagged 'sanityDt' are run. This covers basic functionality |
| 328 | # like running through the DT workflow for a single subscriber. |
| 329 | export TARGET=sanity-kind-dt |
| 330 | |
| 331 | # If the Gerrit comment contains a line with "functional tests" then run the full |
| 332 | # functional test suite. This covers tests tagged either 'sanityDt' or 'functionalDt'. |
| 333 | # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| 334 | REGEX="functional tests" |
| 335 | if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| 336 | TARGET=functional-single-kind-dt |
| 337 | fi |
| 338 | |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 339 | make -C $WORKSPACE/voltha-system-tests \$TARGET || true |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 340 | ''' |
| 341 | } |
| 342 | } |
Matteo Scandolo | 294133a | 2020-09-04 11:19:43 -0700 | [diff] [blame] | 343 | |
| 344 | stage('TT workflow') { |
| 345 | environment { |
| 346 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/TTWorkflow" |
| 347 | } |
| 348 | steps { |
| 349 | sh ''' |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 350 | cd $WORKSPACE/kind-voltha/ |
Matteo Scandolo | 294133a | 2020-09-04 11:19:43 -0700 | [diff] [blame] | 351 | source $NAME-env.sh |
| 352 | WAIT_ON_DOWN=y DEPLOY_K8S=n ./voltha down |
| 353 | |
| 354 | # Workflow-specific flags |
| 355 | export WITH_RADIUS=no |
| 356 | export WITH_EAPOL=no |
| 357 | export WITH_DHCP=yes |
| 358 | export WITH_IGMP=yes |
| 359 | export CONFIG_SADIS="external" |
| 360 | export BBSIM_CFG="configs/bbsim-sadis-tt.yaml" |
| 361 | |
| 362 | DEPLOY_K8S=n ./voltha up |
| 363 | |
| 364 | mkdir -p $ROBOT_LOGS_DIR |
| 365 | export ROBOT_MISC_ARGS="-d $ROBOT_LOGS_DIR -e PowerSwitch" |
| 366 | |
| 367 | # By default, all tests tagged 'sanityTt' are run. This covers basic functionality |
| 368 | # like running through the TT workflow for a single subscriber. |
| 369 | export TARGET=sanity-kind-tt |
| 370 | |
| 371 | # If the Gerrit comment contains a line with "functional tests" then run the full |
| 372 | # functional test suite. This covers tests tagged either 'sanityTt' or 'functionalTt'. |
| 373 | # Note: Gerrit comment text will be prefixed by "Patch set n:" and a blank line |
| 374 | REGEX="functional tests" |
| 375 | if [[ "$GERRIT_EVENT_COMMENT_TEXT" =~ \$REGEX ]]; then |
| 376 | TARGET=functional-single-kind-tt |
| 377 | fi |
| 378 | |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 379 | make -C $WORKSPACE/voltha-system-tests \$TARGET || true |
Matteo Scandolo | 294133a | 2020-09-04 11:19:43 -0700 | [diff] [blame] | 380 | ''' |
| 381 | } |
| 382 | } |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | post { |
| 386 | always { |
| 387 | sh ''' |
Andy Bavier | 07615f9 | 2019-10-03 12:31:18 -0700 | [diff] [blame] | 388 | set +e |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 389 | cp $WORKSPACE/kind-voltha/install-$NAME.log $WORKSPACE/ |
Matteo Scandolo | 97b1257 | 2020-04-13 12:44:46 -0700 | [diff] [blame] | 390 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq |
| 391 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 392 | kubectl get nodes -o wide |
| 393 | kubectl get pods -o wide |
| 394 | kubectl get pods -n voltha -o wide |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 395 | |
| 396 | sync |
| 397 | pkill kail || true |
Matteo Scandolo | 9aae495 | 2020-09-14 13:05:53 -0700 | [diff] [blame] | 398 | md5sum $WORKSPACE/kind-voltha/bin/voltctl |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 399 | |
| 400 | ## Pull out errors from log files |
| 401 | extract_errors_go() { |
| 402 | echo |
| 403 | echo "Error summary for $1:" |
| 404 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep '"level":"error"' | cut -d ' ' -f 2- | jq -r '.msg' |
| 405 | echo |
| 406 | } |
| 407 | |
| 408 | extract_errors_python() { |
| 409 | echo |
| 410 | echo "Error summary for $1:" |
| 411 | grep $1 $WORKSPACE/onos-voltha-combined.log | grep 'ERROR' | cut -d ' ' -f 2- |
| 412 | echo |
| 413 | } |
| 414 | |
| 415 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 416 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 417 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 418 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 419 | |
Andy Bavier | 2178d10 | 2020-02-06 16:22:11 -0700 | [diff] [blame] | 420 | gzip $WORKSPACE/onos-voltha-combined.log |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 421 | ''' |
| 422 | step([$class: 'RobotPublisher', |
| 423 | disableArchiveOutput: false, |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 424 | logFileName: 'RobotLogs/*/log*.html', |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 425 | otherFiles: '', |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 426 | outputFileName: 'RobotLogs/*/output*.xml', |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 427 | outputPath: '.', |
Andy Bavier | 8b118b7 | 2020-04-28 12:59:30 -0700 | [diff] [blame] | 428 | passThreshold: 100, |
| 429 | reportFileName: 'RobotLogs/*/report*.html', |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 430 | unstableThreshold: 0]); |
Andy Bavier | 2178d10 | 2020-02-06 16:22:11 -0700 | [diff] [blame] | 431 | archiveArtifacts artifacts: '*.log,*.gz' |
Kailash | aad7101 | 2019-08-27 10:36:53 -0700 | [diff] [blame] | 432 | } |
| 433 | } |
| 434 | } |