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 { |
| 26 | timeout(time: 90, unit: 'MINUTES') |
| 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']) |
| 39 | sh returnStdout: false, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}" |
| 40 | script { |
| 41 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.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 | ) |
| 57 | sh returnStdout: false, script: """ |
| 58 | cd voltha |
| 59 | git clone -b ${branch} ${cordRepoUrl}/cord-tester |
| 60 | mkdir -p $WORKSPACE/bin |
| 61 | bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin" |
| 62 | cd $WORKSPACE |
| 63 | git clone https://github.com/ciena/kind-voltha.git |
| 64 | |
| 65 | VC_VERSION=\$(curl -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g') |
| 66 | HOSTOS=\$(uname -s | tr "[:upper:]" "[:lower:"]) |
| 67 | HOSTARCH=\$(uname -m | tr "[:upper:]" "[:lower:"]) |
| 68 | if [ \$HOSTARCH == "x86_64" ]; then |
| 69 | HOSTARCH="amd64" |
| 70 | fi |
| 71 | curl -o $WORKSPACE/bin/voltctl -sSL https://github.com/opencord/voltctl/releases/download/v\${VC_VERSION}/voltctl-\${VC_VERSION}-\${HOSTOS}-\${HOSTARCH} |
| 72 | chmod 755 $WORKSPACE/bin/voltctl |
| 73 | voltctl version --clientonly |
| 74 | """ |
| 75 | } |
| 76 | } |
| 77 | |
| 78 | stage('Functional Tests') { |
| 79 | environment { |
Suchitra Vemuri | e4a5bcc | 2020-03-16 12:43:03 -0700 | [diff] [blame] | 80 | ROBOT_CONFIG_FILE="$WORKSPACE/${configBaseDir}/${configDeploymentDir}/${configFileName}-DT.yaml" |
Suchitra Vemuri | 8d180ab | 2020-03-12 17:38:24 -0700 | [diff] [blame] | 81 | ROBOT_FILE="Voltha_DT_PODTests.robot" |
| 82 | ROBOT_LOGS_DIR="$WORKSPACE/RobotLogs/dt-workflow" |
| 83 | } |
| 84 | steps { |
| 85 | sh """ |
| 86 | cd $WORKSPACE/kind-voltha/scripts |
| 87 | ./log-collector.sh > /dev/null & |
| 88 | ./log-combine.sh > /dev/null & |
| 89 | |
| 90 | mkdir -p $ROBOT_LOGS_DIR |
| 91 | if ( ${released} ); then |
| 92 | export ROBOT_MISC_ARGS="--removekeywords wuks -i released -i sanityDt -e bbsim -e notready -d $ROBOT_LOGS_DIR -v POD_NAME:${configFileName} -v KUBERNETES_CONFIGS_DIR:$WORKSPACE/${configBaseDir}/${configKubernetesDir} -v container_log_dir:$WORKSPACE" |
| 93 | else |
Suchitra Vemuri | 9f84ce4 | 2020-03-15 22:27:10 -0700 | [diff] [blame] | 94 | 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] | 95 | fi |
| 96 | make -C $WORKSPACE/voltha/voltha-system-tests voltha-dt-test || true |
| 97 | """ |
| 98 | } |
| 99 | } |
| 100 | } |
| 101 | post { |
| 102 | always { |
| 103 | sh returnStdout: false, script: ''' |
| 104 | set +e |
| 105 | kubectl get pods --all-namespaces -o jsonpath="{range .items[*].status.containerStatuses[*]}{.image}{'\\t'}{.imageID}{'\\n'}" | sort | uniq -c |
| 106 | kubectl get nodes -o wide |
| 107 | kubectl get pods -n voltha -o wide |
| 108 | |
| 109 | sleep 60 # Wait for log-collector and log-combine to complete |
| 110 | |
| 111 | # Clean up "announcer" pod used by the tests if present |
| 112 | kubectl delete pod announcer || true |
| 113 | |
| 114 | ## Pull out errors from log files |
| 115 | extract_errors_go() { |
| 116 | echo |
| 117 | echo "Error summary for $1:" |
| 118 | grep '"level":"error"' $WORKSPACE/kind-voltha/scripts/logger/combined/$1* |
| 119 | echo |
| 120 | } |
| 121 | |
| 122 | extract_errors_python() { |
| 123 | echo |
| 124 | echo "Error summary for $1:" |
| 125 | grep 'ERROR' $WORKSPACE/kind-voltha/scripts/logger/combined/$1* |
| 126 | echo |
| 127 | } |
| 128 | |
| 129 | extract_errors_go voltha-rw-core > $WORKSPACE/error-report.log |
| 130 | extract_errors_go adapter-open-olt >> $WORKSPACE/error-report.log |
| 131 | extract_errors_python adapter-open-onu >> $WORKSPACE/error-report.log |
| 132 | extract_errors_python voltha-ofagent >> $WORKSPACE/error-report.log |
| 133 | extract_errors_python onos >> $WORKSPACE/error-report.log |
| 134 | |
| 135 | cd $WORKSPACE/kind-voltha/scripts/logger/combined/ |
| 136 | tar czf $WORKSPACE/container-logs.tgz * |
| 137 | |
| 138 | cd $WORKSPACE |
| 139 | gzip *-combined.log || true |
| 140 | ''' |
| 141 | script { |
| 142 | deployment_config.olts.each { olt -> |
| 143 | sh returnStdout: false, script: """ |
| 144 | sshpass -p ${olt.pass} scp ${olt.user}@${olt.ip}:/var/log/openolt.log $WORKSPACE/openolt-${olt.ip}.log || true |
| 145 | sed -i 's/\\x1b\\[[0-9;]*[a-zA-Z]//g' $WORKSPACE/openolt-${olt.ip}.log # Remove escape sequences |
| 146 | """ |
| 147 | } |
| 148 | } |
| 149 | step([$class: 'RobotPublisher', |
| 150 | disableArchiveOutput: false, |
| 151 | logFileName: '**/log*.html', |
| 152 | otherFiles: '', |
| 153 | outputFileName: '**/output*.xml', |
| 154 | outputPath: 'RobotLogs', |
| 155 | passThreshold: 100, |
| 156 | reportFileName: '**/report*.html', |
| 157 | unstableThreshold: 0 |
| 158 | ]); |
| 159 | archiveArtifacts artifacts: '*.log,*.gz,*.tgz' |
| 160 | } |
| 161 | unstable { |
| 162 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 163 | } |
| 164 | } |
| 165 | } |