blob: d9d0eba22cca0697d3d04f9a5eddf04cb781393d [file] [log] [blame]
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +03001/**
2 *
3 * Deploy the product cluster using Jenkins master on CICD cluster
4 *
5 * Expected parameters:
6
7 * ENV_NAME Fuel-devops environment name
8 * MCP_VERSION MCP version, like 2018.4 or proposed
9 * PASSED_STEPS Steps passed to install components using Jenkins on CICD cluster: "salt,core,cicd,openstack:3200,stacklight:2400",
10 where 3200 and 2400 might be timeouts (not used in the testing pipeline)
11 * PARENT_NODE_NAME Name of the jenkins slave to create the environment
12 * PARENT_WORKSPACE Path to the workspace of the parent job to use tcp-qa repo
Tatyana Leontovichf3718442018-10-31 13:36:13 +020013 * TEMPEST_TEST_SUITE_NAME Name of tempest suite
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030014 * TCP_QA_REFS Reference to the tcp-qa change on review.gerrithub.io, like refs/changes/46/418546/41
15 */
16
17@Library('tcp-qa')_
18
19def common = new com.mirantis.mk.Common()
20def shared = new com.mirantis.system_qa.SharedPipeline()
21def stacks = shared.get_steps_list(PASSED_STEPS)
22
23if (! env.PARENT_NODE_NAME) {
24 error "'PARENT_NODE_NAME' must be set from the parent deployment job!"
25}
26
27currentBuild.description = "${PARENT_NODE_NAME}:${ENV_NAME}"
28
Dennis Dmitriev1f08b0c2019-05-27 17:03:53 +030029timeout(time: 2, unit: 'HOURS') {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030030node ("${PARENT_NODE_NAME}") {
31 if (! fileExists("${PARENT_WORKSPACE}")) {
32 error "'PARENT_WORKSPACE' contains path to non-existing directory ${PARENT_WORKSPACE} on the node '${PARENT_NODE_NAME}'."
33 }
34 dir("${PARENT_WORKSPACE}") {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030035 def description = ''
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +030036 def exception_message = ''
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030037 try {
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +030038
39 if (env.TCP_QA_REFS) {
40 stage("Update working dir to patch ${TCP_QA_REFS}") {
41 shared.update_working_dir()
42 }
43 }
44
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030045 def report_name = ''
46 def testSuiteName = ''
47 def methodname = ''
48 def testrail_name_template = ''
49 def reporter_extra_options = []
50
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030051 def report_url = ''
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030052
Dennis Dmitriev09ef69e2018-11-09 15:25:18 +020053 // deployment_report_name = "deployment_${ENV_NAME}.xml"
Dennis Dmitrievec7ae972019-02-19 12:29:11 +020054 def deployment_report_name = sh(script: "find ${PARENT_WORKSPACE} -name \"deployment_${ENV_NAME}.xml\" -printf \"'%p'\" ", returnStdout: true).trim()
Dennis Dmitriev09ef69e2018-11-09 15:25:18 +020055 // tcpqa_report_name =~ "nosetests.xml"
Dennis Dmitrievec7ae972019-02-19 12:29:11 +020056 def tcpqa_report_name = sh(script: "find ${PARENT_WORKSPACE} -name \"nosetests.xml\" -printf \"'%p'\" ", returnStdout: true).trim()
Dennis Dmitriev09ef69e2018-11-09 15:25:18 +020057 // tempest_report_name =~ "report_*.xml"
Dennis Dmitrievec7ae972019-02-19 12:29:11 +020058 def tempest_report_name = sh(script: "find ${PARENT_WORKSPACE} -name \"report_*.xml\" -printf \"'%p'\" ", returnStdout: true).trim()
Dennis Dmitriev09ef69e2018-11-09 15:25:18 +020059 // k8s_conformance_report_name =~ conformance_result.xml
Dennis Dmitrievec7ae972019-02-19 12:29:11 +020060 def k8s_conformance_report_name = sh(script: "find ${PARENT_WORKSPACE} -name \"conformance_result.xml\" -printf \"'%p'\" ", returnStdout: true).trim()
Dennis Dmitriev34fd3002018-11-15 18:25:16 +020061 // k8s_conformance_report_name =~ conformance_virtlet_result.xml
Dennis Dmitrievec7ae972019-02-19 12:29:11 +020062 def k8s_conformance_virtlet_report_name = sh(script: "find ${PARENT_WORKSPACE} -name \"conformance_virtlet_result.xml\" -printf \"'%p'\" ", returnStdout: true).trim()
Dennis Dmitriev09ef69e2018-11-09 15:25:18 +020063 // stacklight_report_name =~ "stacklight_report.xml" or "report.xml"
Dennis Dmitrievec7ae972019-02-19 12:29:11 +020064 def stacklight_report_name = sh(script: "find ${PARENT_WORKSPACE} -name \"*report.xml\"", returnStdout: true).trim()
Dennis Dmitriev8565c342019-02-11 23:45:03 +020065 // cvp_sanity_report_name =~ cvp_sanity_report.xml
Dennis Dmitrievec7ae972019-02-19 12:29:11 +020066 def cvp_sanity_report_name = sh(script: "find ${PARENT_WORKSPACE} -name \"cvp_sanity_results.xml\" -printf \"'%p'\" ", returnStdout: true).trim()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030067 common.printMsg(deployment_report_name ? "Found deployment report: ${deployment_report_name}" : "Deployment report not found", deployment_report_name ? "blue" : "red")
68 common.printMsg(tcpqa_report_name ? "Found tcp-qa report: ${tcpqa_report_name}" : "tcp-qa report not found", tcpqa_report_name ? "blue" : "red")
69 common.printMsg(tempest_report_name ? "Found tempest report: ${tempest_report_name}" : "tempest report not found", tempest_report_name ? "blue" : "red")
70 common.printMsg(k8s_conformance_report_name ? "Found k8s conformance report: ${k8s_conformance_report_name}" : "k8s conformance report not found", k8s_conformance_report_name ? "blue" : "red")
Dennis Dmitriev34fd3002018-11-15 18:25:16 +020071 common.printMsg(k8s_conformance_virtlet_report_name ? "Found k8s conformance virtlet report: ${k8s_conformance_virtlet_report_name}" : "k8s conformance virtlet report not found", k8s_conformance_virtlet_report_name ? "blue" : "red")
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030072 common.printMsg(stacklight_report_name ? "Found stacklight-pytest report: ${stacklight_report_name}" : "stacklight-pytest report not found", stacklight_report_name ? "blue" : "red")
Dennis Dmitriev8565c342019-02-11 23:45:03 +020073 common.printMsg(cvp_sanity_report_name ? "Found CVP Sanity report: ${cvp_sanity_report_name}" : "CVP Sanity report not found", cvp_sanity_report_name ? "blue" : "red")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030074
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030075
76 if (deployment_report_name) {
77 stage("Deployment report") {
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030078 testSuiteName = "[MCP] Integration automation"
79 methodname = '{methodname}'
80 testrail_name_template = '{title}'
81 reporter_extra_options = [
82 "--testrail-add-missing-cases",
83 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
84 "--testrail-case-section-name \'All\'",
Ekaterina Chernovace113412019-10-15 15:53:30 +030085 "--testrail_configuration_name \'tcp-qa\'",
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030086 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +030087 ret = shared.upload_results_to_testrail(deployment_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
88 common.printMsg(ret.stdout, "blue")
89 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030090 if (it.contains("[TestRun URL]")) {
91 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +030092 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030093 }
94 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +030095 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030096 }
97 }
98
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030099 if (tcpqa_report_name) {
100 stage("tcp-qa cases report") {
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300101 testSuiteName = "[MCP_X] integration cases"
102 methodname = "{methodname}"
103 testrail_name_template = "{title}"
104 reporter_extra_options = [
105 "--testrail-add-missing-cases",
106 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
107 "--testrail-case-section-name \'All\'",
108 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300109 ret = shared.upload_results_to_testrail(tcpqa_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
110 common.printMsg(ret.stdout, "blue")
111 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300112 if (it.contains("[TestRun URL]")) {
113 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300114 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300115 }
116 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300117 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300118 }
119 }
120
121 if ('openstack' in stacks && tempest_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300122 stage("Tempest report") {
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200123 testSuiteName = env.TEMPEST_TEST_SUITE_NAME
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300124 methodname = "{classname}.{methodname}"
125 testrail_name_template = "{title}"
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300126 ret = shared.upload_results_to_testrail(tempest_report_name, testSuiteName, methodname, testrail_name_template)
127 common.printMsg(ret.stdout, "blue")
128 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300129 if (it.contains("[TestRun URL]")) {
130 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300131 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300132 }
133 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300134 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300135 }
136 }
137
138 if ('k8s' in stacks && k8s_conformance_report_name) {
139 stage("K8s conformance report") {
Dennis Dmitriev265a1c72018-09-29 05:08:47 +0300140 def k8s_version=shared.run_cmd_stdout("""\
Dennis Dmitrievcf866e72018-10-09 17:51:43 +0300141 . ./env_k8s_version;
142 echo "\$KUBE_SERVER_VERSION"
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300143 """).trim().split().last()
144 testSuiteName = "[MCP][k8s]Hyperkube ${k8s_version}.x"
145 methodname = "{methodname}"
146 testrail_name_template = "{title}"
147 reporter_extra_options = [
Dennis Dmitriev74d7e752018-10-01 17:37:49 +0300148 "--send-duplicates",
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300149 "--testrail-add-missing-cases",
150 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
151 "--testrail-case-section-name \'Conformance\'",
152 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300153 ret = shared.upload_results_to_testrail(k8s_conformance_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
154 common.printMsg(ret.stdout, "blue")
155 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300156 if (it.contains("[TestRun URL]")) {
157 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300158 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300159 }
160 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300161 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300162 }
163 }
164
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200165 if ('k8s' in stacks && k8s_conformance_virtlet_report_name) {
166 stage("K8s conformance virtlet report") {
167 testSuiteName = "[k8s] Virtlet"
168 methodname = "{methodname}"
169 testrail_name_template = "{title}"
170 reporter_extra_options = [
171 "--send-duplicates",
172 "--testrail-add-missing-cases",
173 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
174 "--testrail-case-section-name \'Conformance\'",
175 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300176 ret = shared.upload_results_to_testrail(k8s_conformance_virtlet_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
177 common.printMsg(ret.stdout, "blue")
178 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200179 if (it.contains("[TestRun URL]")) {
180 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300181 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200182 }
183 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300184 exception_message += ret.exception
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200185 }
186 }
187
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300188 if ('stacklight' in stacks && stacklight_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300189 stage("stacklight-pytest report") {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300190 testSuiteName = "LMA2.0_Automated"
191 methodname = "{methodname}"
192 testrail_name_template = "{title}"
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300193 ret = shared.upload_results_to_testrail(stacklight_report_name, testSuiteName, methodname, testrail_name_template)
194 common.printMsg(ret.stdout, "blue")
195 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300196 if (it.contains("[TestRun URL]")) {
197 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300198 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300199 }
200 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300201 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300202 }
203 }
204
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200205 if ('cicd' in stacks && cvp_sanity_report_name) {
206 stage("CVP Sanity report") {
207 testSuiteName = "[MCP] cvp sanity"
208 methodname = '{methodname}'
209 testrail_name_template = '{title}'
210 reporter_extra_options = [
211 "--send-duplicates",
212 "--testrail-add-missing-cases",
213 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
214 "--testrail-case-section-name \'All\'",
215 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300216 ret = shared.upload_results_to_testrail(cvp_sanity_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
217 common.printMsg(ret.stdout, "blue")
218 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200219 if (it.contains("[TestRun URL]")) {
220 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300221 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200222 }
223 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300224 exception_message += ret.exception
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200225 }
226 }
227
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300228 // Check if there were any exceptions during reporting
229 if (exception_message) {
230 throw new Exception(exception_message)
231 }
232
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300233 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300234 common.printMsg("Job is failed", "purple")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300235 throw e
236 } finally {
237 // reporting is failed for some reason
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300238 writeFile(file: "description.txt", text: description, encoding: "UTF-8")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300239 }
240 }
241}
Dennis Dmitriev1f08b0c2019-05-27 17:03:53 +0300242} // timeout