blob: b85c507d6ed922c583b6a01d16059b58898da547 [file] [log] [blame]
Dennis Dmitrievb3b37492018-07-08 21:23:00 +03001package com.mirantis.system_qa
2
Dennis Dmitriev27a96792018-07-30 07:52:03 +03003import groovy.xml.XmlUtil
Dennis Dmitrievb3b37492018-07-08 21:23:00 +03004
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +03005def run_sh(String cmd) {
6 // run shell script without catching any output
7 def common = new com.mirantis.mk.Common()
8 common.printMsg("Run shell command:\n" + cmd, "blue")
9 def VENV_PATH='/home/jenkins/fuel-devops30'
10 script = """\
11 set -ex;
12 . ${VENV_PATH}/bin/activate;
13 bash -c '${cmd.stripIndent()}'
14 """
15 return sh(script: script)
16}
17
Dennis Dmitriev8df35442018-07-31 08:40:20 +030018def run_cmd(String cmd, Boolean returnStdout=false) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030019 def common = new com.mirantis.mk.Common()
20 common.printMsg("Run shell command:\n" + cmd, "blue")
21 def VENV_PATH='/home/jenkins/fuel-devops30'
Dennis Dmitriev27a96792018-07-30 07:52:03 +030022 def stderr_path = "/tmp/${JOB_NAME}_${BUILD_NUMBER}_stderr.log"
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030023 script = """\
24 set +x;
25 echo 'activate python virtualenv ${VENV_PATH}';
26 . ${VENV_PATH}/bin/activate;
Dennis Dmitriev8df35442018-07-31 08:40:20 +030027 bash -c 'set -ex; set -ex; ${cmd.stripIndent()}' 2>${stderr_path}
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030028 """
Dennis Dmitriev27a96792018-07-30 07:52:03 +030029 def result
30 try {
Dennis Dmitriev8df35442018-07-31 08:40:20 +030031 return sh(script: script, returnStdout: returnStdout)
Dennis Dmitriev27a96792018-07-30 07:52:03 +030032 } catch (e) {
Dennis Dmitriev8df35442018-07-31 08:40:20 +030033 def stderr = readFile("${stderr_path}")
34 def error_message = e.message + "\n<<<<<< STDERR: >>>>>>\n" + stderr
35 throw new Exception(error_message)
Dennis Dmitriev27a96792018-07-30 07:52:03 +030036 } finally {
Dennis Dmitriev8df35442018-07-31 08:40:20 +030037 sh(script: "rm ${stderr_path} || true")
Dennis Dmitriev27a96792018-07-30 07:52:03 +030038 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030039}
40
41def run_cmd_stdout(cmd) {
Dennis Dmitriev8df35442018-07-31 08:40:20 +030042 return run_cmd(cmd, true)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030043}
44
Dennis Dmitriev27a96792018-07-30 07:52:03 +030045def build_pipeline_job(job_name, parameters) {
46 //Build a job, grab the results if failed and use the results in exception
47 def common = new com.mirantis.mk.Common()
48 common.printMsg("Start building job '${job_name}' with parameters:", "purple")
49 common.prettyPrint(parameters)
50
51 def job_info = build job: "${job_name}",
52 parameters: parameters,
53 propagate: false
54
55 if (job_info.getResult() != "SUCCESS") {
56 currentBuild.result = job_info.getResult()
57 def build_number = job_info.getNumber()
Dennis Dmitrievb08c0772018-10-17 15:10:26 +030058 common.printMsg("Job '${job_name}' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +030059 def workflow_details=run_cmd_stdout("""\
60 export JOB_NAME=${job_name}
61 export BUILD_NUMBER=${build_number}
62 python ./tcp_tests/utils/get_jenkins_job_stages.py
63 """)
64 throw new Exception(workflow_details)
65 }
66}
67
68def build_shell_job(job_name, parameters, junit_report_filename=null, junit_report_source_dir='**/') {
69 //Build a job, grab the results if failed and use the results in exception
70 //junit_report_filename: if not null, try to copy this JUnit report first from remote job
71 def common = new com.mirantis.mk.Common()
72 common.printMsg("Start building job '${job_name}' with parameters:", "purple")
73 common.prettyPrint(parameters)
74
75 def job_info = build job: "${job_name}",
76 parameters: parameters,
77 propagate: false
78
Dennis Dmitriev4115ae72018-11-20 13:43:35 +020079 def build_number = job_info.getNumber()
80 def build_url = job_info.getAbsoluteUrl()
81 def build_status = job_info.getResult()
82 try {
83 // Try to grab 'tar.gz' articacts from the shell job'
84 step($class: 'hudson.plugins.copyartifact.CopyArtifact',
85 projectName: job_name,
86 selector: specific("${build_number}"),
87 filter: "**/*.tar.gz",
88 target: '.',
89 flatten: true,
90 fingerprintArtifacts: true)
91 } catch (none) {
92 common.printMsg("No *.tar.gz files found in artifacts of the build ${build_url}", "purple")
93 }
94
Dennis Dmitriev27a96792018-07-30 07:52:03 +030095 if (job_info.getResult() != "SUCCESS") {
Dennis Dmitriev27a96792018-07-30 07:52:03 +030096 def job_url = "${build_url}"
97 currentBuild.result = build_status
98 if (junit_report_filename) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +030099 common.printMsg("Job '${job_url}' failed with status ${build_status}, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300100 step($class: 'hudson.plugins.copyartifact.CopyArtifact',
101 projectName: job_name,
102 selector: specific("${build_number}"),
103 filter: "${junit_report_source_dir}/${junit_report_filename}",
104 target: '.',
105 flatten: true,
106 fingerprintArtifacts: true)
107
108 def String junit_report_xml = readFile("${junit_report_filename}")
109 def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml)
110 def String msg = "Job '${job_url}' failed with status ${build_status}, JUnit report:\n"
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300111 throw new Exception(msg + junit_report_xml_pretty)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300112 } else {
113 throw new Exception("Job '${job_url}' failed with status ${build_status}, please check the console output.")
114 }
115 }
116}
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300117
118def prepare_working_dir() {
119 println "Clean the working directory ${env.WORKSPACE}"
120 deleteDir()
121
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300122 // do not fail if environment doesn't exists
123 println "Remove environment ${ENV_NAME}"
124 run_cmd("""\
125 dos.py erase ${ENV_NAME} || true
126 """)
127 println "Remove config drive ISO"
128 run_cmd("""\
129 rm /home/jenkins/images/${CFG01_CONFIG_IMAGE_NAME} || true
130 """)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300131
132 run_cmd("""\
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300133 git clone https://github.com/Mirantis/tcp-qa.git ${env.WORKSPACE}
134 if [ -n "$TCP_QA_REFS" ]; then
135 set -e
136 git fetch https://review.gerrithub.io/Mirantis/tcp-qa $TCP_QA_REFS && git checkout FETCH_HEAD || exit \$?
137 fi
138 pip install --upgrade --upgrade-strategy=only-if-needed -r tcp_tests/requirements.txt
Dennis Dmitriev8df35442018-07-31 08:40:20 +0300139 """)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300140}
141
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300142def update_working_dir() {
143 // Use to fetch a patchset from gerrit to the working dir
144 run_cmd("""\
145 if [ -n "$TCP_QA_REFS" ]; then
146 set -e
147 git fetch https://review.gerrithub.io/Mirantis/tcp-qa $TCP_QA_REFS && git checkout FETCH_HEAD || exit \$?
148 fi
149 pip install -r tcp_tests/requirements.txt
150 """)
151}
152
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300153def swarm_bootstrap_salt_cluster_devops() {
154 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300155 def cookiecutter_template_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: env.MCP_VERSION
156 def salt_models_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: env.MCP_VERSION
157 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
158 def mk_pipelines_ref = env.MK_PIPELINES_REF ?: ''
159 def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: ''
160 def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: ''
161 def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: ''
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200162 def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: ''
163 def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: ''
Dennis Dmitriev63460042018-12-11 13:08:11 +0200164 def env_ipmi_user = env.IPMI_USER ?: ''
165 def env_ipmi_pass = env.IPMI_PASS ?: ''
166 def env_lab_mgm_iface = env.LAB_MANAGEMENT_IFACE ?: ''
167 def env_lab_ctl_iface = env.LAB_CONTROL_IFACE ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300168 def parameters = [
169 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
170 string(name: 'PARENT_WORKSPACE', value: pwd()),
171 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
172 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
173 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
174 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
175 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
176 string(name: 'CFG01_CONFIG_IMAGE_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300177 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
178 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
179 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
180 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecutter_template_commit}"),
181 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${salt_models_system_commit}"),
182 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
183 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200184 string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"),
185 string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"),
Dennis Dmitriev63460042018-12-11 13:08:11 +0200186 string(name: 'IPMI_USER', value: env_ipmi_user),
187 string(name: 'IPMI_PASS', value: env_ipmi_pass),
188 string(name: 'LAB_MANAGEMENT_IFACE', value: env_lab_mgm_iface),
189 string(name: 'LAB_CONTROL_IFACE', value: env_lab_ctl_iface),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300190 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
191 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300192
193 build_pipeline_job('swarm-bootstrap-salt-cluster-devops', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300194}
195
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200196def swarm_deploy_cicd(String stack_to_install, String install_timeout) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300197 // Run openstack_deploy job on cfg01 Jenkins for specified stacks
198 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300199 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300200 def parameters = [
201 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
202 string(name: 'PARENT_WORKSPACE', value: pwd()),
203 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
204 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200205 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300206 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300207 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
208 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300209 build_pipeline_job('swarm-deploy-cicd', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300210}
211
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200212def swarm_deploy_platform(String stack_to_install, String install_timeout) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300213 // Run openstack_deploy job on CICD Jenkins for specified stacks
214 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300215 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300216 def parameters = [
217 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
218 string(name: 'PARENT_WORKSPACE', value: pwd()),
219 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
220 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200221 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300222 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300223 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
224 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300225 build_pipeline_job('swarm-deploy-platform', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300226}
227
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300228def swarm_run_pytest(String passed_steps) {
229 // Run pytest tests
230 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300231 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200232 def tempest_image_version = env.TEMPEST_IMAGE_VERSION ?: 'pike'
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200233 def tempest_target=env.TEMPEST_TARGET ?: 'gtw01'
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300234 def parameters = [
235 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
236 string(name: 'PASSED_STEPS', value: passed_steps),
237 string(name: 'RUN_TEST_OPTS', value: "${RUN_TEST_OPTS}"),
238 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
239 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300240 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300241 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
242 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
243 string(name: 'REPOSITORY_SUITE', value: "${MCP_VERSION}"),
244 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
245 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200246 string(name: 'TEMPEST_IMAGE_VERSION', value: "${tempest_image_version}"),
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200247 string(name: 'TEMPEST_TARGET', value: "${tempest_target}"),
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200248
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300249 ]
250 common.printMsg("Start building job 'swarm-run-pytest' with parameters:", "purple")
251 common.prettyPrint(parameters)
252 build job: 'swarm-run-pytest',
253 parameters: parameters
254}
255
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300256def swarm_testrail_report(String passed_steps) {
257 // Run pytest tests
258 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300259 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200260 def tempest_test_suite_name = env.TEMPEST_TEST_SUITE_NAME
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300261 def parameters = [
262 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200263 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300264 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
265 string(name: 'PASSED_STEPS', value: passed_steps),
266 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
267 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300268 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200269 string(name: 'TEMPEST_TEST_SUITE_NAME', value: "${tempest_test_suite_name}"),
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300270 ]
271 common.printMsg("Start building job 'swarm-testrail-report' with parameters:", "purple")
272 common.prettyPrint(parameters)
273 build job: 'swarm-testrail-report',
274 parameters: parameters
275}
276
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300277def generate_cookied_model() {
278 def common = new com.mirantis.mk.Common()
279 // do not fail if environment doesn't exists
280 def IPV4_NET_ADMIN=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep admin-pool01").trim().split().last()
281 def IPV4_NET_CONTROL=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep private-pool01").trim().split().last()
282 def IPV4_NET_TENANT=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep tenant-pool01").trim().split().last()
283 def IPV4_NET_EXTERNAL=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep external-pool01").trim().split().last()
284 println("IPV4_NET_ADMIN=" + IPV4_NET_ADMIN)
285 println("IPV4_NET_CONTROL=" + IPV4_NET_CONTROL)
286 println("IPV4_NET_TENANT=" + IPV4_NET_TENANT)
287 println("IPV4_NET_EXTERNAL=" + IPV4_NET_EXTERNAL)
288
289 def cookiecuttertemplate_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: env.MCP_VERSION
290 def saltmodels_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: env.MCP_VERSION
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300291 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
292 def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: ''
293 def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300294
295 def parameters = [
296 string(name: 'LAB_CONTEXT_NAME', value: "${LAB_CONFIG_NAME}"),
297 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
298 string(name: 'DOMAIN_NAME', value: "${LAB_CONFIG_NAME}.local"),
299 string(name: 'REPOSITORY_SUITE', value: "${env.MCP_VERSION}"),
300 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${saltmodels_system_commit}"),
301 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecuttertemplate_commit}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300302 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
303 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
304 string(name: 'TCP_QA_REVIEW', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300305 string(name: 'IPV4_NET_ADMIN', value: IPV4_NET_ADMIN),
306 string(name: 'IPV4_NET_CONTROL', value: IPV4_NET_CONTROL),
307 string(name: 'IPV4_NET_TENANT', value: IPV4_NET_TENANT),
308 string(name: 'IPV4_NET_EXTERNAL', value: IPV4_NET_EXTERNAL),
sgudzc97385a2018-11-29 17:01:53 +0200309 string(name: 'IPMI_USER', value: env.IPMI_USER),
310 string(name: 'IPMI_PASS', value: env.IPMI_PASS),
311 string(name: 'IMAGE_PATH_CFG01_DAY01', value: env.IMAGE_PATH_CFG01_DAY01),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300312 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300313
314 build_shell_job('swarm-cookied-model-generator', parameters, "deploy_generate_model.xml")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300315}
316
317def generate_configdrive_iso() {
318 def common = new com.mirantis.mk.Common()
319 def SALT_MASTER_IP=run_cmd_stdout("""\
320 export ENV_NAME=${ENV_NAME}
321 . ./tcp_tests/utils/env_salt
322 echo \$SALT_MASTER_IP
323 """).trim().split().last()
324 println("SALT_MASTER_IP=" + SALT_MASTER_IP)
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300325
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300326 def dhcp_ranges_json=run_cmd_stdout("""\
327 fgrep dhcp_ranges ${ENV_NAME}_hardware.ini |
328 fgrep "admin-pool01"|
329 cut -d"=" -f2
330 """).trim().split("\n").last()
331 def dhcp_ranges = new groovy.json.JsonSlurperClassic().parseText(dhcp_ranges_json)
332 def ADMIN_NETWORK_GW = dhcp_ranges['admin-pool01']['gateway']
333 println("ADMIN_NETWORK_GW=" + ADMIN_NETWORK_GW)
334
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300335 def mk_pipelines_ref = env.MK_PIPELINES_REF ?: ''
336 def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: ''
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300337 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200338 def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: ''
339 def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: ''
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300340
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300341 def parameters = [
342 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
343 string(name: 'MODEL_URL', value: "http://cz8133.bud.mirantis.net:8098/${LAB_CONFIG_NAME}.git"),
344 string(name: 'MODEL_URL_OBJECT_TYPE', value: "git"),
345 booleanParam(name: 'DOWNLOAD_CONFIG_DRIVE', value: true),
346 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
347 string(name: 'COMMON_SCRIPTS_COMMIT', value: "${MCP_VERSION}"),
348 string(name: 'NODE_NAME', value: "${NODE_NAME}"),
349 string(name: 'CONFIG_DRIVE_ISO_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
350 string(name: 'SALT_MASTER_DEPLOY_IP', value: SALT_MASTER_IP),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300351 string(name: 'DEPLOY_NETWORK_GW', value: "${ADMIN_NETWORK_GW}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300352 string(name: 'PIPELINE_REPO_URL', value: "https://github.com/Mirantis"),
353 booleanParam(name: 'PIPELINES_FROM_ISO', value: true),
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200354 string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"),
355 string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300356 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
357 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300358 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300359 ]
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300360 build_pipeline_job('swarm-create-cfg-config-drive', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300361}
362
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300363def run_job_on_day01_node(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300364 // stack_to_install="core,cicd"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200365 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300366 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200367 common.printMsg("Deploy DriveTrain CICD components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300368 try {
369 run_cmd("""\
370 export ENV_NAME=${ENV_NAME}
371 . ./tcp_tests/utils/env_salt
372 . ./tcp_tests/utils/env_jenkins_day01
373 export JENKINS_BUILD_TIMEOUT=${timeout}
374 JOB_PARAMETERS=\"{
375 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
376 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
377 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200378 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:drivetrain {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300379 python ./tcp_tests/utils/run_jenkins_job.py --verbose --job-name=deploy_openstack --job-parameters="\$JOB_PARAMETERS" --job-output-prefix="\$JOB_PREFIX"
380 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200381 // Wait for IO calm down on cluster nodes
382 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300383 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300384 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300385 def workflow_details=run_cmd_stdout("""\
386 . ./tcp_tests/utils/env_salt
387 . ./tcp_tests/utils/env_jenkins_day01
388 export JOB_NAME=deploy_openstack
389 export BUILD_NUMBER=lastBuild
390 python ./tcp_tests/utils/get_jenkins_job_stages.py
391 """)
392 throw new Exception(workflow_details)
393 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300394}
395
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300396def run_job_on_cicd_nodes(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300397 // stack_to_install="k8s,calico,stacklight"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200398 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300399 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200400 common.printMsg("Deploy Platform components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300401 try {
402 run_cmd("""\
403 export ENV_NAME=${ENV_NAME}
404 . ./tcp_tests/utils/env_salt
405 . ./tcp_tests/utils/env_jenkins_cicd
406 export JENKINS_BUILD_TIMEOUT=${timeout}
407 JOB_PARAMETERS=\"{
408 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
409 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
410 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200411 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:platform {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300412 python ./tcp_tests/utils/run_jenkins_job.py --verbose --job-name=deploy_openstack --job-parameters="\$JOB_PARAMETERS" --job-output-prefix="\$JOB_PREFIX"
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300413 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200414 // Wait for IO calm down on cluster nodes
415 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300416 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300417 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300418 def workflow_details=run_cmd_stdout("""\
419 . ./tcp_tests/utils/env_salt
420 . ./tcp_tests/utils/env_jenkins_cicd
421 export JOB_NAME=deploy_openstack
422 export BUILD_NUMBER=lastBuild
423 python ./tcp_tests/utils/get_jenkins_job_stages.py
424 """)
425 throw new Exception(workflow_details)
426 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300427}
428
429def sanity_check_component(stack) {
430 // Run sanity check for the component ${stack}.
431 // Result will be stored in JUnit XML file deploy_${stack}.xml
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300432 try {
433 run_cmd("""\
434 py.test --junit-xml=deploy_${stack}.xml -m check_${stack}
435 """)
436 } catch (e) {
437 def String junit_report_xml = readFile("deploy_${stack}.xml")
438 def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml)
439 def String msg = "Sanity check for '${stack}' failed, JUnit report:\n"
440 throw new Exception(msg + junit_report_xml_pretty)
441 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300442}
443
Dennis Dmitrievefe5c0b2018-10-24 20:35:26 +0300444def download_logs(archive_name_prefix) {
445 // Archive and download logs and debug info from salt nodes in the lab
446 // Do not fail in case of error to not lose the original error from the parent exception.
447 def common = new com.mirantis.mk.Common()
448 common.printMsg("Downloading nodes logs by ${archive_name_prefix}", "blue")
449 run_cmd("""\
450 export TESTS_CONFIGS=\$(pwd)/${ENV_NAME}_salt_deployed.ini
451 ./tcp_tests/utils/get_logs.py --archive-name-prefix ${archive_name_prefix} || true
452 """)
453}
454
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300455def devops_snapshot_info(snapshot_name) {
456 // Print helper message after snapshot
457 def common = new com.mirantis.mk.Common()
458
459 def SALT_MASTER_IP=run_cmd_stdout("""\
460 . ./tcp_tests/utils/env_salt
461 echo \$SALT_MASTER_IP
462 """).trim().split().last()
463 def login = "root" // set fixed 'root' login for now
464 def password = "r00tme" // set fixed 'root' login for now
465 def key_file = "${env.WORKSPACE}/id_rsa" // set fixed path in the WORKSPACE
466 def VENV_PATH='/home/jenkins/fuel-devops30'
467
468 common.printMsg("""\
469#########################
470# To revert the snapshot:
471#########################
472. ${VENV_PATH}/bin/activate;
473dos.py revert ${ENV_NAME} ${snapshot_name};
474dos.py resume ${ENV_NAME};
475# dos.py time-sync ${ENV_NAME}; # Optional\n
476ssh -i ${key_file} ${login}@${SALT_MASTER_IP} # Optional password: ${password}
477""", "cyan")
478}
479
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300480def devops_snapshot(stack) {
481 // Make the snapshot with name "${stack}_deployed"
482 // for all VMs in the environment.
483 // If oslo_config INI file ${ENV_NAME}_salt_deployed.ini exists,
484 // then make a copy for the created snapshot to allow the system
485 // tests to revert this snapshot along with the metadata from the INI file.
486 run_cmd("""\
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300487 set -ex
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300488 dos.py suspend ${ENV_NAME}
489 dos.py snapshot ${ENV_NAME} ${stack}_deployed
490 dos.py resume ${ENV_NAME}
Dennis Dmitriev1fed6662018-07-27 18:22:13 +0300491 sleep 20 # Wait for I/O on the host calms down
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300492
493 CFG01_NAME=\$(dos.py show-resources ${ENV_NAME} | grep ^cfg01 | cut -d" " -f1)
494 dos.py time-sync ${ENV_NAME} --skip-sync \${CFG01_NAME}
495
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300496 if [ -f \$(pwd)/${ENV_NAME}_salt_deployed.ini ]; then
497 cp \$(pwd)/${ENV_NAME}_salt_deployed.ini \$(pwd)/${ENV_NAME}_${stack}_deployed.ini
498 fi
Dennis Dmitriev8df35442018-07-31 08:40:20 +0300499 """)
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300500 devops_snapshot_info("${stack}_deployed")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300501}
502
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300503def get_steps_list(steps) {
504 // Make a list from comma separated string
505 return steps.split(',').collect { it.split(':')[0] }
506}
507
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300508def create_xml_report(String filename, String classname, String name, String status='success', String status_message='', String text='', String stdout='', String stderr='') {
509 // <filename> is name of the XML report file that will be created
510 // <status> is one of the 'success', 'skipped', 'failure' or 'error'
511 // 'error' status is assumed as 'Blocker' in TestRail reporter
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300512
513 // Replace '<' and '>' to '&lt;' and '&gt;' to avoid conflicts between xml tags in the message and JUnit report
514 def String text_filtered = text.replaceAll("<","&lt;").replaceAll(">", "&gt;")
515
Dennis Dmitriev39666082018-08-29 15:30:45 +0300516 def script = """\
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300517<?xml version=\"1.0\" encoding=\"utf-8\"?>
518 <testsuite>
519 <testcase classname=\"${classname}\" name=\"${name}\" time=\"0\">
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300520 <${status} message=\"${status_message}\">${text_filtered}</${status}>
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300521 <system-out>${stdout}</system-out>
522 <system-err>${stderr}</system-err>
523 </testcase>
524 </testsuite>
Dennis Dmitriev39666082018-08-29 15:30:45 +0300525"""
526 writeFile(file: filename, text: script, encoding: "UTF-8")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300527}
528
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300529def upload_results_to_testrail(report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options=[]) {
530 def venvPath = '/home/jenkins/venv_testrail_reporter'
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200531 def testPlanDesc = env.LAB_CONFIG_NAME
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300532 def testrailURL = "https://mirantis.testrail.com"
533 def testrailProject = "Mirantis Cloud Platform"
534 def testPlanName = "[MCP-Q2]System-${MCP_VERSION}-${new Date().format('yyyy-MM-dd')}"
535 def testrailMilestone = "MCP1.1"
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300536 def testrailCaseMaxNameLenght = 250
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300537 def jobURL = env.BUILD_URL
538
539 def reporterOptions = [
540 "--verbose",
541 "--env-description \"${testPlanDesc}\"",
542 "--testrail-run-update",
543 "--testrail-url \"${testrailURL}\"",
544 "--testrail-user \"\${TESTRAIL_USER}\"",
545 "--testrail-password \"\${TESTRAIL_PASSWORD}\"",
546 "--testrail-project \"${testrailProject}\"",
547 "--testrail-plan-name \"${testPlanName}\"",
548 "--testrail-milestone \"${testrailMilestone}\"",
549 "--testrail-suite \"${testSuiteName}\"",
550 "--xunit-name-template \"${methodname}\"",
551 "--testrail-name-template \"${testrail_name_template}\"",
552 "--test-results-link \"${jobURL}\"",
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300553 "--testrail-case-max-name-lenght ${testrailCaseMaxNameLenght}",
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300554 ] + reporter_extra_options
555
556 def script = """
557 . ${venvPath}/bin/activate
558 set -ex
Dmitry Tyzhnenko80ce0202019-02-07 13:27:19 +0200559 report ${reporterOptions.join(' ')} '${report_name}'
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300560 """
561
562 def testrail_cred_id = params.TESTRAIL_CRED ?: 'testrail_system_tests'
563
564 withCredentials([
565 [$class : 'UsernamePasswordMultiBinding',
566 credentialsId : testrail_cred_id,
567 passwordVariable: 'TESTRAIL_PASSWORD',
568 usernameVariable: 'TESTRAIL_USER']
569 ]) {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300570 return run_cmd_stdout(script)
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300571 }
572}
573
574
575def create_deploy_result_report(deploy_expected_stacks, result, text) {
576 def STATUS_MAP = ['SUCCESS': 'success', 'FAILURE': 'failure', 'UNSTABLE': 'failure', 'ABORTED': 'error']
577 def classname = "Deploy"
578 def name = "deployment_${ENV_NAME}"
Dennis Dmitriev39666082018-08-29 15:30:45 +0300579 def filename = "${name}.xml"
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300580 def status = STATUS_MAP[result ?: 'FAILURE'] // currentBuild.result *must* be set at the finish of the try/catch
581 create_xml_report(filename, classname, name, status, "Deploy components: ${deploy_expected_stacks}", text, '', '')
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300582}