blob: e754936e0e56c72be60c3dfebff21f87082041b4 [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\'",
85 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +030086 ret = shared.upload_results_to_testrail(deployment_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
87 common.printMsg(ret.stdout, "blue")
88 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030089 if (it.contains("[TestRun URL]")) {
90 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +030091 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +030092 }
93 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +030094 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +030095 }
96 }
97
Dennis Dmitrievee5ef232018-08-31 13:53:18 +030098 if (tcpqa_report_name) {
99 stage("tcp-qa cases report") {
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300100 testSuiteName = "[MCP_X] integration cases"
101 methodname = "{methodname}"
102 testrail_name_template = "{title}"
103 reporter_extra_options = [
104 "--testrail-add-missing-cases",
105 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
106 "--testrail-case-section-name \'All\'",
107 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300108 ret = shared.upload_results_to_testrail(tcpqa_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
109 common.printMsg(ret.stdout, "blue")
110 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300111 if (it.contains("[TestRun URL]")) {
112 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300113 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300114 }
115 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300116 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300117 }
118 }
119
120 if ('openstack' in stacks && tempest_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300121 stage("Tempest report") {
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200122 testSuiteName = env.TEMPEST_TEST_SUITE_NAME
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300123 methodname = "{classname}.{methodname}"
124 testrail_name_template = "{title}"
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300125 ret = shared.upload_results_to_testrail(tempest_report_name, testSuiteName, methodname, testrail_name_template)
126 common.printMsg(ret.stdout, "blue")
127 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300128 if (it.contains("[TestRun URL]")) {
129 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300130 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300131 }
132 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300133 exception_message += ret.exception
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300134 }
135 }
136
137 if ('k8s' in stacks && k8s_conformance_report_name) {
138 stage("K8s conformance report") {
Dennis Dmitriev265a1c72018-09-29 05:08:47 +0300139 def k8s_version=shared.run_cmd_stdout("""\
Dennis Dmitrievcf866e72018-10-09 17:51:43 +0300140 . ./env_k8s_version;
141 echo "\$KUBE_SERVER_VERSION"
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300142 """).trim().split().last()
143 testSuiteName = "[MCP][k8s]Hyperkube ${k8s_version}.x"
144 methodname = "{methodname}"
145 testrail_name_template = "{title}"
146 reporter_extra_options = [
Dennis Dmitriev74d7e752018-10-01 17:37:49 +0300147 "--send-duplicates",
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300148 "--testrail-add-missing-cases",
149 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
150 "--testrail-case-section-name \'Conformance\'",
151 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300152 ret = shared.upload_results_to_testrail(k8s_conformance_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
153 common.printMsg(ret.stdout, "blue")
154 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300155 if (it.contains("[TestRun URL]")) {
156 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300157 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300158 }
159 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300160 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300161 }
162 }
163
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200164 if ('k8s' in stacks && k8s_conformance_virtlet_report_name) {
165 stage("K8s conformance virtlet report") {
166 testSuiteName = "[k8s] Virtlet"
167 methodname = "{methodname}"
168 testrail_name_template = "{title}"
169 reporter_extra_options = [
170 "--send-duplicates",
171 "--testrail-add-missing-cases",
172 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
173 "--testrail-case-section-name \'Conformance\'",
174 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300175 ret = shared.upload_results_to_testrail(k8s_conformance_virtlet_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
176 common.printMsg(ret.stdout, "blue")
177 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200178 if (it.contains("[TestRun URL]")) {
179 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300180 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200181 }
182 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300183 exception_message += ret.exception
Dennis Dmitriev34fd3002018-11-15 18:25:16 +0200184 }
185 }
186
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300187 if ('stacklight' in stacks && stacklight_report_name) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300188 stage("stacklight-pytest report") {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300189 testSuiteName = "LMA2.0_Automated"
190 methodname = "{methodname}"
191 testrail_name_template = "{title}"
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300192 ret = shared.upload_results_to_testrail(stacklight_report_name, testSuiteName, methodname, testrail_name_template)
193 common.printMsg(ret.stdout, "blue")
194 report_url = ret.stdout.split("\n").each {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300195 if (it.contains("[TestRun URL]")) {
196 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300197 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300198 }
199 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300200 exception_message += ret.exception
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300201 }
202 }
203
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200204 if ('cicd' in stacks && cvp_sanity_report_name) {
205 stage("CVP Sanity report") {
206 testSuiteName = "[MCP] cvp sanity"
207 methodname = '{methodname}'
208 testrail_name_template = '{title}'
209 reporter_extra_options = [
210 "--send-duplicates",
211 "--testrail-add-missing-cases",
212 "--testrail-case-custom-fields {\\\"custom_qa_team\\\":\\\"9\\\"}",
213 "--testrail-case-section-name \'All\'",
214 ]
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300215 ret = shared.upload_results_to_testrail(cvp_sanity_report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options)
216 common.printMsg(ret.stdout, "blue")
217 report_url = ret.stdout.split("\n").each {
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200218 if (it.contains("[TestRun URL]")) {
219 common.printMsg("Found report URL: " + it.trim().split().last(), "blue")
Dennis Dmitriev27007322019-05-03 19:21:44 +0300220 description += "<a href=" + it.trim().split().last() + ">${testSuiteName}</a><br>"
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200221 }
222 }
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300223 exception_message += ret.exception
Dennis Dmitriev8565c342019-02-11 23:45:03 +0200224 }
225 }
226
Dennis Dmitrievfd0b78c2019-05-30 00:16:04 +0300227 // Check if there were any exceptions during reporting
228 if (exception_message) {
229 throw new Exception(exception_message)
230 }
231
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300232 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300233 common.printMsg("Job is failed", "purple")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300234 throw e
235 } finally {
236 // reporting is failed for some reason
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300237 writeFile(file: "description.txt", text: description, encoding: "UTF-8")
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300238 }
239 }
240}
Dennis Dmitriev1f08b0c2019-05-27 17:03:53 +0300241} // timeout