blob: 45e77c2c0c509319ae99958bf315c81a3ac597f7 [file] [log] [blame]
You Wangb918adb2017-11-17 13:58:55 -08001// 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
15pod_config = null
16deployment_config = null
17
Kailash Khalasi149b9e12018-05-01 09:13:01 -070018node ("${devNodeName}") {
You Wangb918adb2017-11-17 13:58:55 -080019 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 }
You Wangb918adb2017-11-17 13:58:55 -080025 stage('Prerequisites') {
26 runHeadNodeCmd("""
27 cd /opt/cord/test/cord-tester/src/test/setup
28 sudo ./prerequisites.sh --cord
29 """)
30 }
31 stage('Verify Collect Diag') {
32 timeout(10) {
33 try {
34 runHeadNodeCmd("""
35 rm -rf ~/diag-*
36 cd /opt/cord/build; make collect-diag
37 cd /opt/cord/test/cord-tester/src/test/diag/
38 rm -r Log/ || true
39 pybot -v CORD_PROFILE:${pod_config.cord_profile} -d Log -T verifyCollectDiag.robot
40 """)
41 } catch(error) { currentBuild.result = 'FAILURE' }
42 }
43 }
44 stage('Sanity Test') {
45 timeout(10) {
46 try {
47 runHeadNodeCmd("""
48 cd /opt/cord/test/cord-tester/src/test/robot/
49 rm -r Log/ || true
50 """)
51 if (deployment_config.fabric_switches != null) {
52 runHeadNodeCmd("""
53 cd /opt/cord/test/cord-tester/src/test/robot/
54 pybot --exclude notready -v FABRIC:on -v PUBLIC_IFACE:${pod_config.external_iface} -v CORD_PROFILE:${pod_config.cord_profile} -d Log -T SanityPhyPOD.robot
55 """)
56 }
57 else {
58 // Exclude fabric related tests
59 runHeadNodeCmd("""
60 cd /opt/cord/test/cord-tester/src/test/robot/
61 pybot --exclude notready --exclude fabric -v FABRIC:off -v PUBLIC_IFACE:${pod_config.external_iface} -v CORD_PROFILE:${pod_config.cord_profile} -d Log -T SanityPhyPOD.robot
62 """)
63 }
64 } catch(error) { currentBuild.result = 'FAILURE' }
65 }
66 }
67 stage('XOS API Tests') {
68 timeout(10) {
69 try {
70 runHeadNodeCmd("""
71 cd /opt/cord/test/cord-tester/src/test/cord-api/Properties/
72 sed -i s/^SERVER_IP\\ =\\ .*/SERVER_IP\\ =\\ \\'localhost\\'/ RestApiProperties.py
73 sed -i s/^SERVER_PORT\\ =\\ .*/SERVER_PORT\\ =\\ \\'9101\\'/ RestApiProperties.py
74 sed -i s/^PASSWD\\ =\\ .*/PASSWD\\ =\\ \\'\\\$(cat /opt/credentials/xosadmin@opencord.org)\\'/ RestApiProperties.py
75 """)
76 } catch(error) { currentBuild.result = 'FAILURE' }
77 }
78 }
79 stage('Publish') {
80 try {
81 sh """
82 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
83 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/cord-api/Log/* ./RobotLogs || true
84 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/robot/Log/* ./RobotLogs || true
85 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/diag/Log/* ./RobotLogs || true
86 """
87 step([$class: 'RobotPublisher',
88 disableArchiveOutput: false,
89 logFileName: 'RobotLogs/log*.html',
90 otherFiles: '',
91 outputFileName: 'RobotLogs/output*.xml',
92 outputPath: '.',
93 passThreshold: 100,
94 reportFileName: 'RobotLogs/report*.html',
95 unstableThreshold: 0])
96 } catch(error) {}
97 }
98 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
99}
100
101/**
102 * Runs a command on the head node.
103 *
104 * @param command the command to run
105 * @param sshArgs arguments for the ssh command
106 * @return the output of the command
107 */
108def runHeadNodeCmd(command, sshArgs="") {
109 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}\"")
110}