Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -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 ("${TestNodeName}") { |
| 16 | timeout (100) { |
| 17 | try { |
| 18 | stage ("Parse deployment configuration file") { |
| 19 | sh returnStdout: true, script: "rm -rf ${configBaseDir}" |
| 20 | sh returnStdout: true, script: "git clone -b ${branch} ${cordRepoUrl}/${configBaseDir}" |
You Wang | 59ded6c | 2018-10-05 17:43:44 -0700 | [diff] [blame] | 21 | deployment_config = readYaml file: "${configBaseDir}/${configDeploymentDir}/${configFileName}.yaml" |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 22 | } |
| 23 | |
| 24 | stage('Download cord-tester repo') { |
| 25 | timeout(2) { |
| 26 | sh returnStdout: true, script: """ |
| 27 | git clone -b ${branch} ${cordRepoUrl}/cord-tester |
| 28 | """ |
| 29 | } |
| 30 | } |
| 31 | stage('Configurations and Tests') { |
| 32 | timeout(10) { |
| 33 | sh """ |
| 34 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 35 | cd $WORKSPACE/cord-tester/src/test/cord-api/Properties/ |
| 36 | sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'${deployment_config.nodes[0].ip}\'/\" RestApiProperties.py |
| 37 | sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'30006\'/\" RestApiProperties.py |
| 38 | sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py |
| 39 | sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py |
| 40 | cd $WORKSPACE/cord-tester/src/test/cord-api/Tests/ |
| 41 | rm -rf Log/ || true |
| 42 | """ |
| 43 | } |
| 44 | } |
| 45 | stage('Subscriber Validation and Ping Tests') { |
| 46 | timeout(30) { |
| 47 | sh """ |
| 48 | export KUBECONFIG=$WORKSPACE/${configBaseDir}/${configKubernetesDir}/${configFileName}.conf |
| 49 | cd $WORKSPACE/cord-tester/src/test/cord-api/Tests/ |
Kailash | d6cd22e | 2018-12-10 08:53:16 -0800 | [diff] [blame] | 50 | robot --removekeywords wuks -d Log -T -l log-Subscriber_StatusChecks -v src_ip:${deployment_config.hosts.src.ip} -v src_user:${deployment_config.hosts.src.user} -v src_pass:${deployment_config.hosts.src.pass} -v dst_user:${deployment_config.hosts.dst.user} -v dst_pass:${deployment_config.hosts.dst.pass} -v dst_ip:${deployment_config.hosts.dst.ip} -v src_host_ip:${deployment_config.hosts.src.dp_iface_ip} -v dst_host_ip:${deployment_config.hosts.dst.dp_iface_ip} -v src_gateway:${deployment_config.hosts.src.dp_iface_gateway} -v dst_gateway:${deployment_config.hosts.dst.dp_iface_gateway} -v init_state:disabled -v INITIAL_STATUS:FAIL -v ENABLE_STATUS:PASS -e zerotouch Subscriber_StatusChecks.txt || true |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 51 | """ |
| 52 | } |
| 53 | } |
| 54 | stage('Publish test results') { |
| 55 | sh returnStdout: true, script: """ |
| 56 | if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs; |
| 57 | mkdir RobotLogs/TestDoc || true |
| 58 | cp -r $WORKSPACE/cord-tester/src/test/robot/Log/* $WORKSPACE/RobotLogs || true |
| 59 | cp -r $WORKSPACE/cord-tester/src/test/cord-api/Tests/Log/* $WORKSPACE/RobotLogs || true |
| 60 | """ |
Kailash Khalasi | 164dc14 | 2018-09-14 11:49:08 -0700 | [diff] [blame] | 61 | step([$class: 'RobotPublisher', |
| 62 | disableArchiveOutput: false, |
| 63 | logFileName: 'RobotLogs/log*.html', |
| 64 | otherFiles: '', |
| 65 | outputFileName: 'RobotLogs/output*.xml', |
| 66 | outputPath: '.', |
| 67 | passThreshold: 100, |
| 68 | reportFileName: 'RobotLogs/report*.html', |
| 69 | unstableThreshold: 0 |
| 70 | ]) |
| 71 | } |
| 72 | currentBuild.result = 'SUCCESS' |
| 73 | } catch (err) { |
| 74 | currentBuild.result = 'FAILURE' |
| 75 | step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false]) |
| 76 | } |
| 77 | echo "RESULT: ${currentBuild.result}" |
| 78 | } |
| 79 | } |