blob: 26fd666e9e24596dfcae6eb7e783d56be7631aa5 [file] [log] [blame]
Suchitra Vemuric365ebe2018-06-01 00:04:16 -07001// 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
16
17node ("${TestNodeName}") {
18 timeout (time: 240) {
19 stage ("Parse deployment 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}"
Suchitra Vemuric365ebe2018-06-01 00:04:16 -070023 }
Suchitra Vemuri2c1896a2018-06-04 23:43:16 -070024
25 stage('Export pod config') {
26 timeout(10) {
27 try {
28 sh """
29 cd /home/cord
30 rm -rf /home/cord/helm-charts
31 git clone -b ${branch} https://gerrit.opencord.org/helm-charts
32 export KUBECONFIG=/home/cord/${deployment_config.pod_config}
33 kubectl get pods
34 """
35 } catch(error) { currentBuild.result = 'FAILURE' }
36 }
Suchitra Vemuric365ebe2018-06-01 00:04:16 -070037 }
Suchitra Vemuri2c1896a2018-06-04 23:43:16 -070038 stage('Clean up') {
39 timeout(10) {
40 try {
41 sh """
42 cd /home/cord/helm-charts
43 export KUBECONFIG=/home/cord/${deployment_config.pod_config}
44 helm ls | grep onos-voltha && helm delete --purge onos-voltha
45 helm ls | grep onos-fabric && helm delete --purge onos-fabric
46 helm ls | grep voltha && helm delete --purge voltha
47 helm ls | grep rcord-lite && helm delete --purge rcord-lite
48 helm ls | grep xos-core && helm delete --purge xos-core
49 sleep 120
50 """
51 } catch(error) { currentBuild.result = 'FAILURE' }
52 }
53 }
54 stage('Install xos-core and rcord-lite') {
55 timeout(10) {
56 try {
57 sh """
58 export KUBECONFIG=/home/cord/${deployment_config.pod_config}
59 cd /home/cord/helm-charts
60 helm dep update xos-core
61 helm install -n xos-core xos-core
62 helm dep update xos-profiles/rcord-lite
63 helm install -n rcord-lite xos-profiles/rcord-lite
64 """
65 } catch(error) { currentBuild.result = 'FAILURE' }
66 }
67 }
68 stage('Install voltha') {
69 timeout(10) {
70 try {
71 sh """
72 export KUBECONFIG=/home/cord/${deployment_config.pod_config}
73 cd /home/cord/helm-charts/voltha
74 helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/
75 helm dep build
76 cd /home/cord/helm-charts
77 helm install -n voltha --set etcd-operator.customResources.createEtcdClusterCRD=false voltha
78 helm upgrade --set etcd-operator.customResources.createEtcdClusterCRD=true voltha ./voltha
79 """
80 } catch(error) { currentBuild.result = 'FAILURE' }
81 }
82 }
83 stage('Install ONOS-Voltha and ONOS-Fabric') {
84 timeout(10) {
85 try {
86 sh """
87 export KUBECONFIG=/home/cord/${deployment_config.pod_config}
88 cd /home/cord/helm-charts
89 helm install -n onos-fabric -f configs/onos-fabric.yaml onos
90 helm install -n onos-voltha -f configs/onos-voltha.yaml onos
91 """
92 } catch(error) { currentBuild.result = 'FAILURE' }
93 }
94 }
95 stage('Download cord-tester repo') {
96 timeout(10) {
97 try {
98 sh """
99 rm -rf /home/cord/cord-tester
100 cd /home/cord/
101 git clone -b ${branch} https://gerrit.opencord.org/cord-tester
102 """
103 } catch(error) { currentBuild.result = 'FAILURE' }
104 }
105 }
106 stage('Verify E2E XOS') {
107 timeout(10) {
108 try {
109 sh """
110 export KUBECONFIG=/home/cord/${deployment_config.pod_config}
111 cd /home/cord/cord-tester/src/test/cord-api/Properties/
112 sed -i \"s/^\\(SERVER_IP = \\).*/\\1\'${deployment_config.node1.ip}\'/\" RestApiProperties.py
113 sed -i \"s/^\\(SERVER_PORT = \\).*/\\1\'30006\'/\" RestApiProperties.py
114 sed -i \"s/^\\(XOS_USER = \\).*/\\1\'admin@opencord.org\'/\" RestApiProperties.py
115 sed -i \"s/^\\(XOS_PASSWD = \\).*/\\1\'letmein\'/\" RestApiProperties.py
116 cd /home/cord/cord-tester/src/test/cord-api/Tests
117 rm -rf Log/ || true
118 pybot -d Log -T VOLTDevice_Test.txt || all_passed=false
119 pybot -d Log -T RCORDLite_E2ETest.txt || all_passed=false
120 if [ "\\\$all_passed" = true ]; then exit 0; else exit 1; fi
121 """
122 } catch(error) { currentBuild.result = 'FAILURE' }
123 }
124 }
125 stage('Publish') {
Suchitra Vemuric365ebe2018-06-01 00:04:16 -0700126 try {
127 sh """
Suchitra Vemuri2c1896a2018-06-04 23:43:16 -0700128 if [ -d RobotLogs ]; then rm -r RobotLogs; fi; mkdir RobotLogs;
129 mkdir RobotLogs/TestDoc || true
130 cp -r /home/cord/cord-tester/src/test/cord-api/Tests/Log/* ./RobotLogs || true
Suchitra Vemuric365ebe2018-06-01 00:04:16 -0700131 """
Suchitra Vemuri2c1896a2018-06-04 23:43:16 -0700132 step([$class: 'RobotPublisher',
133 disableArchiveOutput: false,
134 logFileName: 'RobotLogs/log*.html',
135 otherFiles: '',
136 outputFileName: 'RobotLogs/output*.xml',
137 outputPath: '.',
138 passThreshold: 100,
139 reportFileName: 'RobotLogs/report*.html',
140 unstableThreshold: 0])
141 } catch(error) {}
Suchitra Vemuric365ebe2018-06-01 00:04:16 -0700142 }
Suchitra Vemuri2c1896a2018-06-04 23:43:16 -0700143 step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
Suchitra Vemuric365ebe2018-06-01 00:04:16 -0700144 }
Suchitra Vemuric365ebe2018-06-01 00:04:16 -0700145}