blob: dad304981d9b16b16ce33b116ad19d360ce0aa71 [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
18node ('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
27node ("${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('Sanity Test') {
48 timeout(10) {
49 try {
50 runHeadNodeCmd("""
51 cd /opt/cord/test/cord-tester/src/test/robot/
52 rm -r Log/ || true
53 """)
54 if (deployment_config.fabric_switches != null) {
55 runHeadNodeCmd("""
56 cd /opt/cord/test/cord-tester/src/test/robot/
57 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
58 """)
59 }
60 else {
61 // Exclude fabric related tests
62 runHeadNodeCmd("""
63 cd /opt/cord/test/cord-tester/src/test/robot/
64 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
65 """)
66 }
67 } catch(error) { currentBuild.result = 'FAILURE' }
68 }
69 }
70 stage('XOS API Tests') {
71 timeout(10) {
72 try {
73 runHeadNodeCmd("""
74 cd /opt/cord/test/cord-tester/src/test/cord-api/Properties/
75 sed -i s/^SERVER_IP\\ =\\ .*/SERVER_IP\\ =\\ \\'localhost\\'/ RestApiProperties.py
76 sed -i s/^SERVER_PORT\\ =\\ .*/SERVER_PORT\\ =\\ \\'9101\\'/ RestApiProperties.py
77 sed -i s/^PASSWD\\ =\\ .*/PASSWD\\ =\\ \\'\\\$(cat /opt/credentials/xosadmin@opencord.org)\\'/ RestApiProperties.py
78 all_passed=true
79 cd /opt/cord/test/cord-tester/src/test/cord-api/
80 rm -r Log/ || true
81 pybot -d Log -T Tests/Ch_defaultImagesCheck.txt || all_passed=false
82 pybot -d Log -T -v PROFILE:${pod_config.cord_profile} Tests/Ch_DefaultServiceCheck.txt || all_passed=false
83 pybot -d Log -T Tests/Ch_SubscriberTest.txt || all_passed=false
84 pybot -d Log -T Tests/Ch_VoltTenant.txt || all_passed=false
85 pybot -d Log -T Tests/Ch_ServiceTest.txt || all_passed=false
86 pybot -d Log -T Tests/Ch_UsersTest.txt || all_passed=false
87 pybot -d Log -T Tests/Ch_DeploymentTest.txt || all_passed=false
88 pybot -d Log -T Tests/Ch_NodeTest.txt || all_passed=false
89 pybot -d Log -T Tests/Ch_SliceTest.txt || all_passed=false
90 pybot -d Log -T Tests/Ch_SanityInstance.txt || all_passed=false
91 pybot -d Log -T Tests/Ch_SanityFlavors.txt || all_passed=false
92 pybot -d Log -T Tests/Ch_SiteTest.txt || all_passed=false
93 if [ "\\\$all_passed" = true ]; then exit 0; else exit 1; fi
94 """)
95 } catch(error) { currentBuild.result = 'FAILURE' }
96 }
97 }
98 stage('Publish') {
99 try {
100 sh """
101 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs
102 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/cord-api/Log/* ./RobotLogs || true
103 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/robot/Log/* ./RobotLogs || true
104 scp -r ${deployment_config.head.user}@${deployment_config.head.ip}:/opt/cord/test/cord-tester/src/test/diag/Log/* ./RobotLogs || true
105 """
106 step([$class: 'RobotPublisher',
107 disableArchiveOutput: false,
108 logFileName: 'RobotLogs/log*.html',
109 otherFiles: '',
110 outputFileName: 'RobotLogs/output*.xml',
111 outputPath: '.',
112 passThreshold: 100,
113 reportFileName: 'RobotLogs/report*.html',
114 unstableThreshold: 0])
115 } catch(error) {}
116 }
117 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
118}
119
120/**
121 * Runs a command on the head node.
122 *
123 * @param command the command to run
124 * @param sshArgs arguments for the ssh command
125 * @return the output of the command
126 */
127def runHeadNodeCmd(command, sshArgs="") {
128 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}\"")
129}