blob: d3070c2adf1f64142d699a32c0a3b630885475a2 [file] [log] [blame]
You Wang4eefdc82017-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 Khalasia0d49002018-04-18 15:00:47 -070018
19node ("${devNodeName}") {
20
21 stage ("Parse deployment configuration file") {
You Wang4eefdc82017-11-17 13:58:55 -080022 sh returnStdout: true, script: 'rm -rf ${configRepoBaseDir}'
23 sh returnStdout: true, script: 'git clone -b ${branch} ${configRepoUrl}'
24 deployment_config = readYaml file: "${configRepoBaseDir}${configRepoFile}"
25 pod_config = readYaml file: "${configRepoBaseDir}${deployment_config.pod_config.file_name}"
26 }
You Wang4eefdc82017-11-17 13:58:55 -080027
You Wang4eefdc82017-11-17 13:58:55 -080028 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("""
Kailash Khalasi68f9f632018-04-11 08:09:19 -070038 export SERVER_IP=localhost
39 export SERVER_PORT=9101
40 export XOS_USER=xosadmin@opencord.org
Kailash Khalasia0d49002018-04-18 15:00:47 -070041 export XOS_PASSWD=\\\$(cat /opt/credentials/xosadmin@opencord.org)
You Wang4eefdc82017-11-17 13:58:55 -080042 rm -rf ~/diag-*
43 cd /opt/cord/build; make collect-diag
44 cd /opt/cord/test/cord-tester/src/test/diag/
45 rm -r Log/ || true
Kailash Khalasi3d1c4d72018-01-30 12:10:28 -080046 rm -r TestDoc/ || true
47 mkdir TestDoc || true
You Wang4eefdc82017-11-17 13:58:55 -080048 pybot -v CORD_PROFILE:${pod_config.cord_profile} -d Log -T verifyCollectDiag.robot
Kailash Khalasi3d1c4d72018-01-30 12:10:28 -080049 python -m robot.testdoc verifyCollectDiag.robot TestDoc/verifyCollectDiag.html
You Wang4eefdc82017-11-17 13:58:55 -080050 """)
51 } catch(error) { currentBuild.result = 'FAILURE' }
52 }
53 }
54 stage('Sanity Test') {
55 timeout(10) {
56 try {
57 runHeadNodeCmd("""
Kailash Khalasi68f9f632018-04-11 08:09:19 -070058 export SERVER_IP=localhost
59 export SERVER_PORT=9101
60 export XOS_USER=xosadmin@opencord.org
Kailash Khalasia0d49002018-04-18 15:00:47 -070061 export XOS_PASSWD=\\\$(cat /opt/credentials/xosadmin@opencord.org)
You Wang4eefdc82017-11-17 13:58:55 -080062 cd /opt/cord/test/cord-tester/src/test/robot/
63 rm -r Log/ || true
Kailash Khalasi3d1c4d72018-01-30 12:10:28 -080064 rm -r TestDoc/ || true
65 mkdir TestDoc || true
You Wang4eefdc82017-11-17 13:58:55 -080066 """)
67 if (deployment_config.fabric_switches != null) {
68 runHeadNodeCmd("""
Kailash Khalasi68f9f632018-04-11 08:09:19 -070069 export SERVER_IP=localhost
70 export SERVER_PORT=9101
71 export XOS_USER=xosadmin@opencord.org
Kailash Khalasia0d49002018-04-18 15:00:47 -070072 export XOS_PASSWD=\\\$(cat /opt/credentials/xosadmin@opencord.org)
You Wang4eefdc82017-11-17 13:58:55 -080073 cd /opt/cord/test/cord-tester/src/test/robot/
74 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
Kailash Khalasi3d1c4d72018-01-30 12:10:28 -080075 python -m robot.testdoc SanityPhyPOD.robot TestDoc/SanityPhyPOD.html
You Wang4eefdc82017-11-17 13:58:55 -080076 """)
77 }
78 else {
79 // Exclude fabric related tests
80 runHeadNodeCmd("""
Kailash Khalasi68f9f632018-04-11 08:09:19 -070081 export SERVER_IP=localhost
82 export SERVER_PORT=9101
83 export XOS_USER=xosadmin@opencord.org
Kailash Khalasia0d49002018-04-18 15:00:47 -070084 export XOS_PASSWD=\\\$(cat /opt/credentials/xosadmin@opencord.org)
You Wang4eefdc82017-11-17 13:58:55 -080085 cd /opt/cord/test/cord-tester/src/test/robot/
86 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
Kailash Khalasi3d1c4d72018-01-30 12:10:28 -080087 python -m robot.testdoc SanityPhyPOD.robot TestDoc/SanityPhyPOD.html
You Wang4eefdc82017-11-17 13:58:55 -080088 """)
89 }
90 } catch(error) { currentBuild.result = 'FAILURE' }
91 }
92 }
93 stage('XOS API Tests') {
94 timeout(10) {
95 try {
96 runHeadNodeCmd("""
Kailash Khalasi68f9f632018-04-11 08:09:19 -070097 export SERVER_IP=localhost
98 export SERVER_PORT=9101
99 export XOS_USER=xosadmin@opencord.org
Kailash Khalasia0d49002018-04-18 15:00:47 -0700100 export XOS_PASSWD=\\\$(cat /opt/credentials/xosadmin@opencord.org)
You Wang4eefdc82017-11-17 13:58:55 -0800101 """)
102 } catch(error) { currentBuild.result = 'FAILURE' }
103 }
104 }
105 stage('Publish') {
106 try {
107 sh """
108 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
Kailash Khalasi9b311092018-02-08 11:26:37 -0800109 mkdir RobotLogs/TestDoc || true
You Wang4eefdc82017-11-17 13:58:55 -0800110 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/cord-api/Log/* ./RobotLogs || true
111 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/robot/Log/* ./RobotLogs || true
112 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/diag/Log/* ./RobotLogs || true
Kailash Khalasi9b311092018-02-08 11:26:37 -0800113 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/robot/TestDoc/* ./RobotLogs/TestDoc || true
114 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/diag/TestDoc/* ./RobotLogs/TestDoc || true
You Wang4eefdc82017-11-17 13:58:55 -0800115 """
116 step([$class: 'RobotPublisher',
117 disableArchiveOutput: false,
118 logFileName: 'RobotLogs/log*.html',
Kailash Khalasi9b311092018-02-08 11:26:37 -0800119 otherFiles: 'RobotLogs/TestDoc/*.html',
You Wang4eefdc82017-11-17 13:58:55 -0800120 outputFileName: 'RobotLogs/output*.xml',
121 outputPath: '.',
122 passThreshold: 100,
123 reportFileName: 'RobotLogs/report*.html',
124 unstableThreshold: 0])
125 } catch(error) {}
126 }
127 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
128}
129
130/**
131 * Runs a command on the head node.
132 *
133 * @param command the command to run
134 * @param sshArgs arguments for the ssh command
135 * @return the output of the command
136 */
137def runHeadNodeCmd(command, sshArgs="") {
138 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}\"")
139}