Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -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 | node { |
| 16 | // Need this so that deployment_config has global scope when it's read later |
| 17 | deployment_config = null |
| 18 | } |
| 19 | |
| 20 | pipeline { |
| 21 | /* no label, executor is determined by JJB */ |
| 22 | agent { |
| 23 | label "${params.buildNode}" |
| 24 | } |
| 25 | options { |
Andrea Campanella | 49e6503 | 2020-04-28 11:52:17 +0200 | [diff] [blame] | 26 | timeout(time: 180, unit: 'MINUTES') |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | environment { |
| 30 | KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf" |
| 31 | VOLTCONFIG="$HOME/.volt/config-minimal" |
| 32 | PATH="$WORKSPACE/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" |
| 33 | } |
| 34 | |
| 35 | stages { |
| 36 | stage ('Initialize') { |
| 37 | steps { |
| 38 | step([$class: 'WsCleanup']) |
Suchitra Vemuri | 2a5a5ea | 2020-03-27 22:53:11 -0700 | [diff] [blame] | 39 | sh returnStdout: false, script: "git clone -b master ${cordRepoUrl}/${configBaseDir}" |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 40 | script { |
| 41 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml" |
| 42 | } |
Andy Bavier | b5c8caf | 2020-04-06 14:12:07 -0700 | [diff] [blame] | 43 | // This checkout allows us to show changes in Jenkins |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 44 | checkout(changelog: true, |
| 45 | poll: false, |
| 46 | scm: [$class: 'RepoScm', |
| 47 | manifestRepositoryUrl: "${params.manifestUrl}", |
Suchitra Vemuri | 2a5a5ea | 2020-03-27 22:53:11 -0700 | [diff] [blame] | 48 | manifestBranch: "${params.branch}", |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 49 | currentBranch: true, |
| 50 | destinationDir: 'voltha', |
| 51 | forceSync: true, |
| 52 | resetFirst: true, |
| 53 | quiet: true, |
| 54 | jobs: 4, |
| 55 | showAllChanges: true] |
| 56 | ) |
| 57 | sh returnStdout: false, script: """ |
| 58 | cd voltha |
Suchitra Vemuri | 05946a6 | 2020-04-12 12:40:59 -0700 | [diff] [blame] | 59 | git clone -b master ${cordRepoUrl}/cord-tester |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 60 | mkdir -p $WORKSPACE/bin |
| 61 | bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin" |
| 62 | cd $WORKSPACE |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 63 | |
| 64 | VC_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g') |
| 65 | HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"]) |
| 66 | HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"]) |
| 67 | if [ \$HOSTARCH == "x86_64" ]; then |
| 68 | HOSTARCH="amd64" |
| 69 | fi |
| 70 | curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VC_VERSION}/voltctl-\${VC_VERSION}-\${HOSTOS}-\${HOSTARCH} |
| 71 | chmod 755 $WORKSPACE/bin/voltctl |
| 72 | voltctl version --clientonly |
Andrea Campanella | 9b23433 | 2020-04-24 12:22:18 +0200 | [diff] [blame] | 73 | |
| 74 | # Default kind-voltha config doesn't work on ONF demo pod for accessing kvstore. |
| 75 | # The issue is that the mgmt node is also one of the k8s nodes and so port forwarding doesn't work. |
| 76 | # We should change this. In the meantime here is a workaround. |
| 77 | set +e |
| 78 | |
Andy Bavier | 7d5c235 | 2020-04-27 11:56:58 -0700 | [diff] [blame] | 79 | voltctl log level list |
Andrea Campanella | 9b23433 | 2020-04-24 12:22:18 +0200 | [diff] [blame] | 80 | if [ \$? -ne 0 ] |
| 81 | then |
| 82 | export KVSTORE="-e \$(kubectl -n voltha get svc voltha-etcd-cluster-client -o jsonpath='{.spec.clusterIP}:{.spec.ports[0].port}')" |
| 83 | else |
| 84 | export KVSTORE="" |
| 85 | fi |
| 86 | |
| 87 | # Remove noise from voltha-core logs |
Andy Bavier | 7d5c235 | 2020-04-27 11:56:58 -0700 | [diff] [blame] | 88 | voltctl \$KVSTORE log level set WARN read-write-core#github.com/opencord/voltha-go/db/model |
| 89 | voltctl \$KVSTORE log level set WARN read-write-core#github.com/opencord/voltha-lib-go/v3/pkg/kafka |
Andrea Campanella | 9b23433 | 2020-04-24 12:22:18 +0200 | [diff] [blame] | 90 | # Remove noise from openolt logs |
Andy Bavier | 7d5c235 | 2020-04-27 11:56:58 -0700 | [diff] [blame] | 91 | voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/db |
| 92 | voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/probe |
| 93 | voltctl \$KVSTORE log level set WARN adapter-open-olt#github.com/opencord/voltha-lib-go/v3/pkg/kafka |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 94 | """ |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | stage('Functional Tests') { |
| 99 | environment { |
Suchitra Vemuri | e4a5bcc | 2020-03-16 12:43:03 -0700 | [diff] [blame] | 100 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml" |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 101 | ROBOT_FILE="Voltha_DT_PODTests.robot" |
Andrea Campanella | d924ce2 | 2020-04-20 16:40:41 +0200 | [diff] [blame] | 102 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FunctionalTests" |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 103 | } |
| 104 | steps { |
| 105 | sh """ |
Andy Bavier | b5c8caf | 2020-04-06 14:12:07 -0700 | [diff] [blame] | 106 | cd $WORKSPACE/voltha/kind-voltha/scripts |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 107 | ./log-collector.sh > /dev/null & |
| 108 | ./log-combine.sh > /dev/null & |
| 109 | |
| 110 | mkdir -p $ROBOT_LOGS_DIR |
Suchitra Vemuri | 2a5a5ea | 2020-03-27 22:53:11 -0700 | [diff] [blame] | 111 | export ROBOT_MISC_ARGS="--removekeywords wuks -i sanityDt -i functionalDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 112 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true |
| 113 | """ |
| 114 | } |
| 115 | } |
Andrea Campanella | d924ce2 | 2020-04-20 16:40:41 +0200 | [diff] [blame] | 116 | |
Andrea Campanella | f47a198 | 2020-04-21 11:53:31 +0200 | [diff] [blame] | 117 | stage('Failure/Recovery Tests') { |
| 118 | environment { |
| 119 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml" |
| 120 | ROBOT_FILE="Voltha_DT_FailureScenarios.robot" |
| 121 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/FailureScenarios" |
| 122 | } |
| 123 | steps { |
| 124 | sh """ |
| 125 | mkdir -p $ROBOT_LOGS_DIR |
| 126 | if ( ${powerSwitch} ); then |
| 127 | export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -i PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
| 128 | else |
| 129 | export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functionalDt -e PowerSwitch -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
| 130 | fi |
| 131 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true |
| 132 | """ |
| 133 | } |
| 134 | } |
| 135 | |
Andy Bavier | 5ad87c9 | 2020-05-11 16:31:35 -0700 | [diff] [blame] | 136 | stage('Dataplane Tests') { |
| 137 | environment { |
Andy Bavier | 1541da8 | 2020-05-15 09:41:38 -0700 | [diff] [blame] | 138 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml" |
Andy Bavier | 5ad87c9 | 2020-05-11 16:31:35 -0700 | [diff] [blame] | 139 | ROBOT_FILE="Voltha_DT_PODTests.robot" |
| 140 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/DataplaneTests" |
| 141 | } |
| 142 | steps { |
| 143 | sh """ |
| 144 | mkdir -p $ROBOT_LOGS_DIR |
Andy Bavier | 9b1c103 | 2020-05-12 17:33:21 +0000 | [diff] [blame] | 145 | export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i dataplaneDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
Andy Bavier | 5ad87c9 | 2020-05-11 16:31:35 -0700 | [diff] [blame] | 146 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true |
| 147 | """ |
| 148 | } |
| 149 | } |
| 150 | |
Andrea Campanella | d924ce2 | 2020-04-20 16:40:41 +0200 | [diff] [blame] | 151 | stage('Error Scenario Tests') { |
| 152 | environment { |
| 153 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml" |
| 154 | ROBOT_FILE="Voltha_ErrorScenarios.robot" |
| 155 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow/ErrorScenarios" |
| 156 | } |
| 157 | steps { |
| 158 | sh """ |
| 159 | mkdir -p $ROBOT_LOGS_DIR |
| 160 | export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v workflow:${params.workFlow} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
| 161 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true |
| 162 | """ |
| 163 | } |
Andrea Campanella | 7166637 | 2020-04-21 10:56:17 +0200 | [diff] [blame] | 164 | } |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 165 | } |
| 166 | post { |
| 167 | always { |
| 168 | sh returnStdout: false, script: ''' |
| 169 | set +e |
Matteo Scandolo | 97b1257 | 2020-04-13 12:44:46 -0700 | [diff] [blame] | 170 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\n'}" | sort | uniq |
| 171 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.imageID}{'\\n'}" | sort | uniq |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 172 | kubectl get nodes -o wide |
| 173 | kubectl get pods -n voltha -o wide |
| 174 | |
| 175 | sleep 60 # Wait for log-collector and log-combine to complete |
| 176 | |
| 177 | # Clean up "announcer" pod used by the tests if present |
| 178 | kubectl delete pod announcer || true |
| 179 | |
| 180 | ## Pull out errors from log files |
| 181 | extract_errors_go() { |
| 182 | echo |
| 183 | echo "Error summary for $1:" |
Andy Bavier | b5c8caf | 2020-04-06 14:12:07 -0700 | [diff] [blame] | 184 | grep '"level":"error"' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1* |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 185 | echo |
| 186 | } |
| 187 | |
| 188 | extract_errors_python() { |
| 189 | echo |
| 190 | echo "Error summary for $1:" |
Andy Bavier | b5c8caf | 2020-04-06 14:12:07 -0700 | [diff] [blame] | 191 | grep 'ERROR' $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/$1* |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 192 | echo |
| 193 | } |
| 194 | |
| 195 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 196 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 197 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 198 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 199 | extract_errors_python onos >> $WORKSPACE/error-report.log |
| 200 | |
Andy Bavier | b5c8caf | 2020-04-06 14:12:07 -0700 | [diff] [blame] | 201 | cd $WORKSPACE/voltha/kind-voltha/scripts/logger/combined/ |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 202 | tar czf $WORKSPACE/container-logs.tgz * |
| 203 | |
| 204 | cd $WORKSPACE |
| 205 | gzip *-combined.log || true |
| 206 | ''' |
| 207 | script { |
| 208 | deployment_config.olts.each { olt -> |
| 209 | sh returnStdout: false, script: """ |
| 210 | sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true |
| 211 | sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences |
| 212 | """ |
| 213 | } |
| 214 | } |
| 215 | step([$class: 'RobotPublisher', |
| 216 | disableArchiveOutput: false, |
| 217 | logFileName: '**/log*.html', |
| 218 | otherFiles: '', |
| 219 | outputFileName: '**/output*.xml', |
| 220 | outputPath: 'RobotLogs', |
| 221 | passThreshold: 100, |
| 222 | reportFileName: '**/report*.html', |
| 223 | unstableThreshold: 0 |
| 224 | ]); |
| 225 | archiveArtifacts artifacts: '*.log,*.gz,*.tgz' |
| 226 | } |
| 227 | unstable { |
| 228 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 229 | } |
| 230 | } |
| 231 | } |