You Wang | 6cd3e1c | 2017-11-17 13:58:55 -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 | pod_config = null |
| 16 | deployment_config = null |
| 17 | |
| 18 | node ('master') { |
| 19 | stage ("Parse configuration file") { |
| 20 | sh returnStdout: true, script: 'rm -rf ${configRepoBaseDir}' |
| 21 | sh returnStdout: true, script: 'git clone -b ${branch} ${configRepoUrl}' |
| 22 | deployment_config = readYaml file: "${configRepoBaseDir}${configRepoFile}" |
| 23 | pod_config = readYaml file: "${configRepoBaseDir}${deployment_config.pod_config.file_name}" |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | node ("${deployment_config.dev_node.name}") { |
| 28 | stage('Prerequisites') { |
| 29 | runHeadNodeCmd(""" |
| 30 | cd /opt/cord/test/cord-tester/src/test/setup |
| 31 | sudo ./prerequisites.sh --cord |
| 32 | """) |
| 33 | } |
| 34 | stage('Verify Collect Diag') { |
| 35 | timeout(10) { |
| 36 | try { |
| 37 | runHeadNodeCmd(""" |
| 38 | rm -rf ~/diag-* |
| 39 | cd /opt/cord/build; make collect-diag |
| 40 | cd /opt/cord/test/cord-tester/src/test/diag/ |
| 41 | rm -r Log/ || true |
| 42 | pybot -v CORD_PROFILE:${pod_config.cord_profile} -d Log -T verifyCollectDiag.robot |
| 43 | """) |
| 44 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 45 | } |
| 46 | } |
| 47 | stage('XOS API Tests') { |
| 48 | timeout(10) { |
| 49 | try { |
| 50 | runHeadNodeCmd(""" |
| 51 | cd /opt/cord/test/cord-tester/src/test/cord-api/Properties/ |
| 52 | sed -i s/^SERVER_IP\\ =\\ .*/SERVER_IP\\ =\\ \\'localhost\\'/ RestApiProperties.py |
| 53 | sed -i s/^SERVER_PORT\\ =\\ .*/SERVER_PORT\\ =\\ \\'9101\\'/ RestApiProperties.py |
| 54 | sed -i s/^PASSWD\\ =\\ .*/PASSWD\\ =\\ \\'\\\$(cat /opt/credentials/xosadmin@opencord.org)\\'/ RestApiProperties.py |
| 55 | """) |
| 56 | } catch(error) { currentBuild.result = 'FAILURE' } |
| 57 | } |
| 58 | } |
| 59 | stage('Publish') { |
| 60 | try { |
| 61 | sh """ |
| 62 | if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs |
| 63 | scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/cord-api/Log/* ./RobotLogs || true |
| 64 | scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/robot/Log/* ./RobotLogs || true |
| 65 | scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/diag/Log/* ./RobotLogs || true |
| 66 | """ |
| 67 | step([$class: 'RobotPublisher', |
| 68 | disableArchiveOutput: false, |
| 69 | logFileName: 'RobotLogs/log*.html', |
| 70 | otherFiles: '', |
| 71 | outputFileName: 'RobotLogs/output*.xml', |
| 72 | outputPath: '.', |
| 73 | passThreshold: 100, |
| 74 | reportFileName: 'RobotLogs/report*.html', |
| 75 | unstableThreshold: 0]) |
| 76 | } catch(error) {} |
| 77 | } |
| 78 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Runs a command on the head node. |
| 83 | * |
| 84 | * @param command the command to run |
| 85 | * @param sshArgs arguments for the ssh command |
| 86 | * @return the output of the command |
| 87 | */ |
| 88 | def runHeadNodeCmd(command, sshArgs="") { |
| 89 | return sh(returnStdout: true, script: "sshpass -p ${deployment_config.head.pass} ssh ${sshArgs} -oStrictHostKeyChecking=no -l ${deployment_config.head.user} ${deployment_config.head.ip} \"${command}\"") |
| 90 | } |