blob: 1967016fb12076da8a6e0d0aa0fdf81b249fc848 [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\'",
Ekaterina Chernova26d85232019-10-25 12:35:15 +0300108 "--testrail_configuration_name \'tcp-qa\'",
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300109 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300110 ret = shared.upload_results_to_testrail(tcpqa_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
111 common.printMsg(ret.stdout, "blue")
112 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300113 if (it.contains("[TestRun URL]")) {
114 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300115 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300116 }
117 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300118 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300119 }
120 }
121
122 if ('openstack' in stacks && tempest_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300123 stage("Tempest report") {
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200124 testSuiteName = env.TEMPEST_TEST_SUITE_NAME
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300125 methodname = "{classname}.{methodname}"
126 testrail_name_template = "{title}"
Ekaterina Chernova26d85232019-10-25 12:35:15 +0300127 reporter_extra_options = [
128 "--send-duplicates",
129 "--testrail-add-missing-cases",
130 "--testrail_configuration_name \'tcp-qa\'",
131 ]
132 ret = shared.upload_results_to_testrail(tempest_report_name,
133 testSuiteName,
134 methodname,
135 testrail_name_template,
136 reporter_extra_options)
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300137 common.printMsg(ret.stdout, "blue")
138 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300139 if (it.contains("[TestRun URL]")) {
140 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300141 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300142 }
143 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300144 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300145 }
146 }
147
148 if ('k8s' in stacks && k8s_conformance_report_name) {
149 stage("K8s conformance report") {
Dennis Dmitriev265a1c72018-09-29 05:08:47 +0300150 def k8s_version=shared.run_cmd_stdout("""\
Dennis Dmitrievcf866e72018-10-09 17:51:43 +0300151 . ./env_k8s_version;
152 echo "\$KUBE_SERVER_VERSION"
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300153 """).trim().split().last()
154 testSuiteName = "[MCP][k8s]Hyperkube ${k8s_version}.x"
155 methodname = "{methodname}"
156 testrail_name_template = "{title}"
157 reporter_extra_options = [
Dennis Dmitriev74d7e752018-10-01 17:37:49 +0300158 "--send-duplicates",
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300159 "--testrail-add-missing-cases",
160 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
161 "--testrail-case-section-name \'Conformance\'",
162 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300163 ret = shared.upload_results_to_testrail(k8s_conformance_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
164 common.printMsg(ret.stdout, "blue")
165 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300166 if (it.contains("[TestRun URL]")) {
167 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300168 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300169 }
170 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300171 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300172 }
173 }
174
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200175 if ('k8s' in stacks && k8s_conformance_virtlet_report_name) {
176 stage("K8s conformance virtlet report") {
177 testSuiteName = "[k8s] Virtlet"
178 methodname = "{methodname}"
179 testrail_name_template = "{title}"
180 reporter_extra_options = [
181 "--send-duplicates",
182 "--testrail-add-missing-cases",
183 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
184 "--testrail-case-section-name \'Conformance\'",
185 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300186 ret = shared.upload_results_to_testrail(k8s_conformance_virtlet_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
187 common.printMsg(ret.stdout, "blue")
188 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200189 if (it.contains("[TestRun URL]")) {
190 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300191 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200192 }
193 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300194 exception_message += ret.exception
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200195 }
196 }
197
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300198 if ('stacklight' in stacks && stacklight_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300199 stage("stacklight-pytest report") {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300200 testSuiteName = "LMA2.0_Automated"
201 methodname = "{methodname}"
202 testrail_name_template = "{title}"
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300203 ret = shared.upload_results_to_testrail(stacklight_report_name, testSuiteName, methodname, testrail_name_template)
204 common.printMsg(ret.stdout, "blue")
205 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300206 if (it.contains("[TestRun URL]")) {
207 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300208 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300209 }
210 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300211 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300212 }
213 }
214
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200215 if ('cicd' in stacks && cvp_sanity_report_name) {
216 stage("CVP Sanity report") {
217 testSuiteName = "[MCP] cvp sanity"
218 methodname = '{methodname}'
219 testrail_name_template = '{title}'
220 reporter_extra_options = [
221 "--send-duplicates",
222 "--testrail-add-missing-cases",
223 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
224 "--testrail-case-section-name \'All\'",
Ekaterina Chernova26d85232019-10-25 12:35:15 +0300225 "--testrail_configuration_name \'tcp-qa\'",
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200226 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300227 ret = shared.upload_results_to_testrail(cvp_sanity_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
228 common.printMsg(ret.stdout, "blue")
229 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200230 if (it.contains("[TestRun URL]")) {
231 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300232 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200233 }
234 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300235 exception_message += ret.exception
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200236 }
237 }
238
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300239 // Check if there were any exceptions during reporting
240 if (exception_message) {
241 throw new Exception(exception_message)
242 }
243
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300244 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300245 common.printMsg("Job is failed", "purple")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300246 throw e
247 } finally {
248 // reporting is failed for some reason
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300249 writeFile(file: "description.txt", text: description, encoding: "UTF-8")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300250 }
251 }
252}
Dennis Dmitriev1f08b0c2019-05-27 17:03:53 +0300253} // timeout