blob: 2df04e0a8018aa7c19dfad8481caa08db7751ab1 [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
Hanna Arhipova5173aad2019-11-11 12:42:31 +020014 * TCP_QA_REFS Reference to the tcp-qa change on Gerrit, like refs/changes/46/418546/41
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030015 */
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",
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030083 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +030084 ret = shared.upload_results_to_testrail(deployment_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
85 common.printMsg(ret.stdout, "blue")
86 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030087 if (it.contains("[TestRun URL]")) {
88 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +030089 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030090 }
91 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +030092 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030093 }
94 }
95
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030096 if (tcpqa_report_name) {
97 stage("tcp-qa cases report") {
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030098 testSuiteName = "[MCP_X] integration cases"
99 methodname = "{methodname}"
100 testrail_name_template = "{title}"
101 reporter_extra_options = [
102 "--testrail-add-missing-cases",
Hanna Arhipovac1912a62019-12-04 10:21:50 +0200103// "--testrail_configuration_name tcp-qa",
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300104 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300105 ret = shared.upload_results_to_testrail(tcpqa_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
106 common.printMsg(ret.stdout, "blue")
107 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300108 if (it.contains("[TestRun URL]")) {
109 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300110 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300111 }
112 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300113 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300114 }
115 }
116
117 if ('openstack' in stacks && tempest_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300118 stage("Tempest report") {
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200119 testSuiteName = env.TEMPEST_TEST_SUITE_NAME
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300120 methodname = "{classname}.{methodname}"
121 testrail_name_template = "{title}"
Ekaterina Chernova26d85232019-10-25 12:35:15 +0300122 reporter_extra_options = [
123 "--send-duplicates",
124 "--testrail-add-missing-cases",
Hanna Arhipovac1912a62019-12-04 10:21:50 +0200125// "--testrail_configuration_name tcp-qa",
Ekaterina Chernova26d85232019-10-25 12:35:15 +0300126 ]
127 ret = shared.upload_results_to_testrail(tempest_report_name,
128 testSuiteName,
129 methodname,
130 testrail_name_template,
131 reporter_extra_options)
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300132 common.printMsg(ret.stdout, "blue")
133 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300134 if (it.contains("[TestRun URL]")) {
135 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300136 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300137 }
138 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300139 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300140 }
141 }
142
143 if ('k8s' in stacks && k8s_conformance_report_name) {
144 stage("K8s conformance report") {
Dennis Dmitriev265a1c72018-09-29 05:08:47 +0300145 def k8s_version=shared.run_cmd_stdout("""\
Dennis Dmitrievcf866e72018-10-09 17:51:43 +0300146 . ./env_k8s_version;
147 echo "\$KUBE_SERVER_VERSION"
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300148 """).trim().split().last()
149 testSuiteName = "[MCP][k8s]Hyperkube ${k8s_version}.x"
150 methodname = "{methodname}"
151 testrail_name_template = "{title}"
152 reporter_extra_options = [
Dennis Dmitriev74d7e752018-10-01 17:37:49 +0300153 "--send-duplicates",
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300154 "--testrail-add-missing-cases",
155 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
156 "--testrail-case-section-name \'Conformance\'",
157 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300158 ret = shared.upload_results_to_testrail(k8s_conformance_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
159 common.printMsg(ret.stdout, "blue")
160 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300161 if (it.contains("[TestRun URL]")) {
162 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300163 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300164 }
165 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300166 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300167 }
168 }
169
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200170 if ('k8s' in stacks && k8s_conformance_virtlet_report_name) {
171 stage("K8s conformance virtlet report") {
172 testSuiteName = "[k8s] Virtlet"
173 methodname = "{methodname}"
174 testrail_name_template = "{title}"
175 reporter_extra_options = [
176 "--send-duplicates",
177 "--testrail-add-missing-cases",
178 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
179 "--testrail-case-section-name \'Conformance\'",
180 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300181 ret = shared.upload_results_to_testrail(k8s_conformance_virtlet_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
182 common.printMsg(ret.stdout, "blue")
183 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200184 if (it.contains("[TestRun URL]")) {
185 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300186 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200187 }
188 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300189 exception_message += ret.exception
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200190 }
191 }
192
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300193 if ('stacklight' in stacks && stacklight_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300194 stage("stacklight-pytest report") {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300195 testSuiteName = "LMA2.0_Automated"
196 methodname = "{methodname}"
197 testrail_name_template = "{title}"
Hanna Arhipova40955d72019-11-04 14:38:42 +0200198 reporter_extra_options = [
199 "--testrail-add-missing-cases",
200 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
201 ]
202 ret = shared.upload_results_to_testrail(stacklight_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300203 common.printMsg(ret.stdout, "blue")
204 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300205 if (it.contains("[TestRun URL]")) {
206 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300207 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300208 }
209 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300210 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300211 }
212 }
213
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200214 if ('cicd' in stacks && cvp_sanity_report_name) {
215 stage("CVP Sanity report") {
216 testSuiteName = "[MCP] cvp sanity"
217 methodname = '{methodname}'
218 testrail_name_template = '{title}'
219 reporter_extra_options = [
220 "--send-duplicates",
221 "--testrail-add-missing-cases",
Hanna Arhipovac1912a62019-12-04 10:21:50 +0200222// "--testrail_configuration_name tcp-qa",
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200223 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300224 ret = shared.upload_results_to_testrail(cvp_sanity_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
225 common.printMsg(ret.stdout, "blue")
226 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200227 if (it.contains("[TestRun URL]")) {
228 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300229 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200230 }
231 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300232 exception_message += ret.exception
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200233 }
234 }
235
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300236 // Check if there were any exceptions during reporting
237 if (exception_message) {
238 throw new Exception(exception_message)
239 }
240
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300241 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300242 common.printMsg("Job is failed", "purple")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300243 throw e
244 } finally {
245 // reporting is failed for some reason
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300246 writeFile(file: "description.txt", text: description, encoding: "UTF-8")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300247 }
248 }
249}
Dennis Dmitriev1f08b0c2019-05-27 17:03:53 +0300250} // timeout