Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -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 { |
Suchitra Vemuri | 08a6312 | 2020-02-10 15:35:44 -0800 | [diff] [blame] | 26 | timeout(time: 90, unit: 'MINUTES') |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 27 | } |
| 28 | |
| 29 | environment { |
| 30 | KUBECONFIG="$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf" |
| 31 | VOLTCONFIG="$HOME/.volt/config-minimal" |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 32 | PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:$WORKSPACE/bin" |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 33 | } |
| 34 | |
| 35 | stages { |
| 36 | stage ('Initialize') { |
| 37 | steps { |
| 38 | step([$class: 'WsCleanup']) |
hwchiu | 1f0b0fe | 2019-12-06 11:45:23 -0800 | [diff] [blame] | 39 | sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}" |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 40 | script { |
| 41 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
| 42 | } |
| 43 | // This checkout is just so that we can show changes in Jenkins |
| 44 | checkout(changelog: true, |
| 45 | poll: false, |
| 46 | scm: [$class: 'RepoScm', |
| 47 | manifestRepositoryUrl: "${params.manifestUrl}", |
| 48 | manifestBranch: "${params.manifestBranch}", |
| 49 | currentBranch: true, |
| 50 | destinationDir: 'voltha', |
| 51 | forceSync: true, |
| 52 | resetFirst: true, |
| 53 | quiet: true, |
| 54 | jobs: 4, |
| 55 | showAllChanges: true] |
| 56 | ) |
hwchiu | 1f0b0fe | 2019-12-06 11:45:23 -0800 | [diff] [blame] | 57 | sh returnStdout: false, script: """ |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 58 | cd voltha |
| 59 | git clone -b ${branch} ${cordRepoUrl}/cord-tester |
Andy Bavier | 4af0272 | 2020-01-15 10:24: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" |
Andy Bavier | 07df321 | 2020-02-12 20:42:44 -0700 | [diff] [blame] | 62 | cd $WORKSPACE |
Andy Bavier | 8d8c9a3 | 2020-02-12 19:41:08 -0700 | [diff] [blame] | 63 | git clone https://github.com/ciena/kind-voltha.git |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 64 | """ |
| 65 | } |
| 66 | } |
Suchitra Vemuri | af134ff | 2020-02-19 16:55:38 -0800 | [diff] [blame] | 67 | stage('Functional Tests') { |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 68 | environment { |
| 69 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 70 | ROBOT_FILE="Voltha_PODTests.robot" |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 71 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FunctionalTests" |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 72 | } |
| 73 | steps { |
| 74 | sh """ |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 75 | cd $WORKSPACE/kind-voltha/scripts |
| 76 | ./log-collector.sh > /dev/null & |
Andy Bavier | 7afb11c | 2020-02-13 11:25:20 -0700 | [diff] [blame] | 77 | ./log-combine.sh > /dev/null & |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 78 | |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 79 | mkdir -p $ROBOT_LOGS_DIR |
Suchitra Vemuri | fbc4a74 | 2020-01-08 16:55:26 -0800 | [diff] [blame] | 80 | if ( ${released} ); then |
Andy Bavier | d3be2bf | 2020-02-07 17:02:21 -0700 | [diff] [blame] | 81 | export ROBOT_MISC_ARGS="--removekeywords wuks -i released -i sanity -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 | fbc4a74 | 2020-01-08 16:55:26 -0800 | [diff] [blame] | 82 | else |
Andy Bavier | d3be2bf | 2020-02-07 17:02:21 -0700 | [diff] [blame] | 83 | export ROBOT_MISC_ARGS="--removekeywords wuks -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 | fbc4a74 | 2020-01-08 16:55:26 -0800 | [diff] [blame] | 84 | fi |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 85 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true |
| 86 | """ |
| 87 | } |
| 88 | } |
| 89 | |
Suchitra Vemuri | 5dae539 | 2020-01-30 20:10:18 -0800 | [diff] [blame] | 90 | stage('Failure/Recovery Tests') { |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 91 | environment { |
| 92 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
Suchitra Vemuri | 5dae539 | 2020-01-30 20:10:18 -0800 | [diff] [blame] | 93 | ROBOT_FILE="Voltha_FailureScenarios.robot" |
| 94 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/FailureScenarios" |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 95 | } |
| 96 | steps { |
| 97 | sh """ |
| 98 | mkdir -p $ROBOT_LOGS_DIR |
Suchitra Vemuri | acb0578 | 2020-02-20 14:26:33 -0800 | [diff] [blame] | 99 | if ( ${released} ); then |
| 100 | export ROBOT_MISC_ARGS="--removekeywords wuks -i released -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
| 101 | elif ( ${powerSwitch} ); then |
Suchitra Vemuri | 1d7b342 | 2020-02-20 16:42:10 -0800 | [diff] [blame] | 102 | export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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" |
Suchitra Vemuri | af134ff | 2020-02-19 16:55:38 -0800 | [diff] [blame] | 103 | else |
Suchitra Vemuri | 1d7b342 | 2020-02-20 16:42:10 -0800 | [diff] [blame] | 104 | export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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" |
Suchitra Vemuri | af134ff | 2020-02-19 16:55:38 -0800 | [diff] [blame] | 105 | fi |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 106 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true |
| 107 | """ |
| 108 | } |
| 109 | } |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 110 | |
Suchitra Vemuri | 5dae539 | 2020-01-30 20:10:18 -0800 | [diff] [blame] | 111 | stage('Error Scenario Tests') { |
Suchitra Vemuri | 489c2ae | 2020-01-23 16:27:39 -0800 | [diff] [blame] | 112 | environment { |
| 113 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
Suchitra Vemuri | 5dae539 | 2020-01-30 20:10:18 -0800 | [diff] [blame] | 114 | ROBOT_FILE="Voltha_ErrorScenarios.robot" |
| 115 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/ErrorScenarios" |
Suchitra Vemuri | 489c2ae | 2020-01-23 16:27:39 -0800 | [diff] [blame] | 116 | } |
| 117 | steps { |
| 118 | sh """ |
| 119 | mkdir -p $ROBOT_LOGS_DIR |
Suchitra Vemuri | acb0578 | 2020-02-20 14:26:33 -0800 | [diff] [blame] | 120 | if ( ${released} ); then |
| 121 | export ROBOT_MISC_ARGS="--removekeywords wuks -i released -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
| 122 | else |
Suchitra Vemuri | 1d7b342 | 2020-02-20 16:42:10 -0800 | [diff] [blame] | 123 | export ROBOT_MISC_ARGS="--removekeywords wuks -L TRACE -i functional -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 | 462a9af | 2020-02-20 20:56:26 -0800 | [diff] [blame] | 124 | fi |
Suchitra Vemuri | 489c2ae | 2020-01-23 16:27:39 -0800 | [diff] [blame] | 125 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-test || true |
| 126 | """ |
| 127 | } |
| 128 | } |
| 129 | } |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 130 | post { |
| 131 | always { |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 132 | sh returnStdout: false, script: ''' |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 133 | set +e |
| 134 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c |
| 135 | kubectl get nodes -o wide |
| 136 | kubectl get pods -n voltha -o wide |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 137 | |
Andy Bavier | 7afb11c | 2020-02-13 11:25:20 -0700 | [diff] [blame] | 138 | sleep 60 # Wait for log-collector and log-combine to complete |
| 139 | |
Andy Bavier | d71f437 | 2020-03-04 10:25:19 -0700 | [diff] [blame] | 140 | # Clean up "announcer" pod used by the tests if present |
| 141 | kubectl delete pod announcer || true |
| 142 | |
Andy Bavier | b30c0a0 | 2020-03-03 17:21:23 -0700 | [diff] [blame] | 143 | ## Pull out errors from log files |
| 144 | extract_errors_go() { |
| 145 | echo |
| 146 | echo "Error summary for $1:" |
| 147 | grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1* |
| 148 | echo |
| 149 | } |
| 150 | |
| 151 | extract_errors_python() { |
| 152 | echo |
| 153 | echo "Error summary for $1:" |
| 154 | grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1* |
| 155 | echo |
| 156 | } |
| 157 | |
| 158 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 159 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 160 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 161 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 162 | extract_errors_python onos >> $WORKSPACE/error-report.log |
| 163 | |
Andy Bavier | 7afb11c | 2020-02-13 11:25:20 -0700 | [diff] [blame] | 164 | cd $WORKSPACE/kind-voltha/scripts/logger/combined/ |
| 165 | tar czf $WORKSPACE/container-logs.tgz * |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 166 | |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 167 | cd $WORKSPACE |
Andy Bavier | b86ca42 | 2020-02-13 05:19:43 -0700 | [diff] [blame] | 168 | gzip *-combined.log || true |
Andy Bavier | 4af0272 | 2020-01-15 10:24:24 -0700 | [diff] [blame] | 169 | ''' |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 170 | script { |
| 171 | deployment_config.olts.each { olt -> |
hwchiu | 1f0b0fe | 2019-12-06 11:45:23 -0800 | [diff] [blame] | 172 | sh returnStdout: false, script: """ |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 173 | sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true |
| 174 | sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences |
| 175 | """ |
| 176 | } |
| 177 | } |
| 178 | step([$class: 'RobotPublisher', |
| 179 | disableArchiveOutput: false, |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 180 | logFileName: '**/log*.html', |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 181 | otherFiles: '', |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 182 | outputFileName: '**/output*.xml', |
| 183 | outputPath: 'RobotLogs', |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 184 | passThreshold: 100, |
Andy Bavier | fed57db | 2020-01-22 16:28:50 -0700 | [diff] [blame] | 185 | reportFileName: '**/report*.html', |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 186 | unstableThreshold: 0 |
| 187 | ]); |
Andy Bavier | 3c1ccca | 2020-02-12 16:50:04 -0700 | [diff] [blame] | 188 | archiveArtifacts artifacts: '*.log,*.gz,*.tgz' |
Andy Bavier | 358aa0b | 2019-11-22 11:55:39 -0700 | [diff] [blame] | 189 | } |
| 190 | unstable { |
| 191 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 192 | } |
| 193 | } |
| 194 | } |