blob: 3d62bc7791bc2e59f7e131f79c122bace1645b8a [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 Dmitriev63460042018-12-11 13:08:11 +0200162 def env_ipmi_user = env.IPMI_USER ?: ''
163 def env_ipmi_pass = env.IPMI_PASS ?: ''
164 def env_lab_mgm_iface = env.LAB_MANAGEMENT_IFACE ?: ''
165 def env_lab_ctl_iface = env.LAB_CONTROL_IFACE ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300166 def parameters = [
167 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
168 string(name: 'PARENT_WORKSPACE', value: pwd()),
169 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
170 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
171 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
172 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
173 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
174 string(name: 'CFG01_CONFIG_IMAGE_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300175 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
176 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
177 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
178 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecutter_template_commit}"),
179 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${salt_models_system_commit}"),
180 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
181 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
Dennis Dmitriev63460042018-12-11 13:08:11 +0200182 string(name: 'IPMI_USER', value: env_ipmi_user),
183 string(name: 'IPMI_PASS', value: env_ipmi_pass),
184 string(name: 'LAB_MANAGEMENT_IFACE', value: env_lab_mgm_iface),
185 string(name: 'LAB_CONTROL_IFACE', value: env_lab_ctl_iface),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300186 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
187 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300188
189 build_pipeline_job('swarm-bootstrap-salt-cluster-devops', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300190}
191
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200192def swarm_deploy_cicd(String stack_to_install, String install_timeout) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300193 // Run openstack_deploy job on cfg01 Jenkins for specified stacks
194 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300195 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300196 def parameters = [
197 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
198 string(name: 'PARENT_WORKSPACE', value: pwd()),
199 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
200 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200201 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300202 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300203 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
204 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300205 build_pipeline_job('swarm-deploy-cicd', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300206}
207
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200208def swarm_deploy_platform(String stack_to_install, String install_timeout) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300209 // Run openstack_deploy job on CICD Jenkins for specified stacks
210 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300211 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300212 def parameters = [
213 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
214 string(name: 'PARENT_WORKSPACE', value: pwd()),
215 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
216 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200217 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300218 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300219 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
220 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300221 build_pipeline_job('swarm-deploy-platform', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300222}
223
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300224def swarm_run_pytest(String passed_steps) {
225 // Run pytest tests
226 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300227 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200228 def tempest_image_version = env.TEMPEST_IMAGE_VERSION ?: 'pike'
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300229 def parameters = [
230 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
231 string(name: 'PASSED_STEPS', value: passed_steps),
232 string(name: 'RUN_TEST_OPTS', value: "${RUN_TEST_OPTS}"),
233 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
234 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300235 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300236 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
237 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
238 string(name: 'REPOSITORY_SUITE', value: "${MCP_VERSION}"),
239 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
240 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200241 string(name: 'TEMPEST_IMAGE_VERSION', value: "${tempest_image_version}"),
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200242
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300243 ]
244 common.printMsg("Start building job 'swarm-run-pytest' with parameters:", "purple")
245 common.prettyPrint(parameters)
246 build job: 'swarm-run-pytest',
247 parameters: parameters
248}
249
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300250def swarm_testrail_report(String passed_steps) {
251 // Run pytest tests
252 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300253 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200254 def tempest_test_suite_name = env.TEMPEST_TEST_SUITE_NAME
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300255 def parameters = [
256 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
257 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
258 string(name: 'PASSED_STEPS', value: passed_steps),
259 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
260 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300261 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200262 string(name: 'TEMPEST_TEST_SUITE_NAME', value: "${tempest_test_suite_name}"),
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300263 ]
264 common.printMsg("Start building job 'swarm-testrail-report' with parameters:", "purple")
265 common.prettyPrint(parameters)
266 build job: 'swarm-testrail-report',
267 parameters: parameters
268}
269
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300270def generate_cookied_model() {
271 def common = new com.mirantis.mk.Common()
272 // do not fail if environment doesn't exists
273 def IPV4_NET_ADMIN=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep admin-pool01").trim().split().last()
274 def IPV4_NET_CONTROL=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep private-pool01").trim().split().last()
275 def IPV4_NET_TENANT=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep tenant-pool01").trim().split().last()
276 def IPV4_NET_EXTERNAL=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep external-pool01").trim().split().last()
277 println("IPV4_NET_ADMIN=" + IPV4_NET_ADMIN)
278 println("IPV4_NET_CONTROL=" + IPV4_NET_CONTROL)
279 println("IPV4_NET_TENANT=" + IPV4_NET_TENANT)
280 println("IPV4_NET_EXTERNAL=" + IPV4_NET_EXTERNAL)
281
282 def cookiecuttertemplate_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: env.MCP_VERSION
283 def saltmodels_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: env.MCP_VERSION
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300284 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
285 def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: ''
286 def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300287
288 def parameters = [
289 string(name: 'LAB_CONTEXT_NAME', value: "${LAB_CONFIG_NAME}"),
290 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
291 string(name: 'DOMAIN_NAME', value: "${LAB_CONFIG_NAME}.local"),
292 string(name: 'REPOSITORY_SUITE', value: "${env.MCP_VERSION}"),
293 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${saltmodels_system_commit}"),
294 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecuttertemplate_commit}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300295 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
296 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
297 string(name: 'TCP_QA_REVIEW', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300298 string(name: 'IPV4_NET_ADMIN', value: IPV4_NET_ADMIN),
299 string(name: 'IPV4_NET_CONTROL', value: IPV4_NET_CONTROL),
300 string(name: 'IPV4_NET_TENANT', value: IPV4_NET_TENANT),
301 string(name: 'IPV4_NET_EXTERNAL', value: IPV4_NET_EXTERNAL),
sgudzc97385a2018-11-29 17:01:53 +0200302 string(name: 'IPMI_USER', value: env.IPMI_USER),
303 string(name: 'IPMI_PASS', value: env.IPMI_PASS),
304 string(name: 'IMAGE_PATH_CFG01_DAY01', value: env.IMAGE_PATH_CFG01_DAY01),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300305 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300306
307 build_shell_job('swarm-cookied-model-generator', parameters, "deploy_generate_model.xml")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300308}
309
310def generate_configdrive_iso() {
311 def common = new com.mirantis.mk.Common()
312 def SALT_MASTER_IP=run_cmd_stdout("""\
313 export ENV_NAME=${ENV_NAME}
314 . ./tcp_tests/utils/env_salt
315 echo \$SALT_MASTER_IP
316 """).trim().split().last()
317 println("SALT_MASTER_IP=" + SALT_MASTER_IP)
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300318
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300319 def dhcp_ranges_json=run_cmd_stdout("""\
320 fgrep dhcp_ranges ${ENV_NAME}_hardware.ini |
321 fgrep "admin-pool01"|
322 cut -d"=" -f2
323 """).trim().split("\n").last()
324 def dhcp_ranges = new groovy.json.JsonSlurperClassic().parseText(dhcp_ranges_json)
325 def ADMIN_NETWORK_GW = dhcp_ranges['admin-pool01']['gateway']
326 println("ADMIN_NETWORK_GW=" + ADMIN_NETWORK_GW)
327
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300328 def mk_pipelines_ref = env.MK_PIPELINES_REF ?: ''
329 def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: ''
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300330 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300331
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300332 def parameters = [
333 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
334 string(name: 'MODEL_URL', value: "http://cz8133.bud.mirantis.net:8098/${LAB_CONFIG_NAME}.git"),
335 string(name: 'MODEL_URL_OBJECT_TYPE', value: "git"),
336 booleanParam(name: 'DOWNLOAD_CONFIG_DRIVE', value: true),
337 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
338 string(name: 'COMMON_SCRIPTS_COMMIT', value: "${MCP_VERSION}"),
339 string(name: 'NODE_NAME', value: "${NODE_NAME}"),
340 string(name: 'CONFIG_DRIVE_ISO_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
341 string(name: 'SALT_MASTER_DEPLOY_IP', value: SALT_MASTER_IP),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300342 string(name: 'DEPLOY_NETWORK_GW', value: "${ADMIN_NETWORK_GW}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300343 string(name: 'PIPELINE_REPO_URL', value: "https://github.com/Mirantis"),
344 booleanParam(name: 'PIPELINES_FROM_ISO', value: true),
345 string(name: 'MCP_SALT_REPO_URL', value: "http://apt.mirantis.com/xenial"),
346 string(name: 'MCP_SALT_REPO_KEY', value: "http://apt.mirantis.com/public.gpg"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300347 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
348 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300349 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300350 ]
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300351 build_pipeline_job('swarm-create-cfg-config-drive', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300352}
353
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300354def run_job_on_day01_node(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300355 // stack_to_install="core,cicd"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200356 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300357 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200358 common.printMsg("Deploy DriveTrain CICD components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300359 try {
360 run_cmd("""\
361 export ENV_NAME=${ENV_NAME}
362 . ./tcp_tests/utils/env_salt
363 . ./tcp_tests/utils/env_jenkins_day01
364 export JENKINS_BUILD_TIMEOUT=${timeout}
365 JOB_PARAMETERS=\"{
366 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
367 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
368 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200369 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:drivetrain {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300370 python ./tcp_tests/utils/run_jenkins_job.py --verbose --job-name=deploy_openstack --job-parameters="\$JOB_PARAMETERS" --job-output-prefix="\$JOB_PREFIX"
371 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200372 // Wait for IO calm down on cluster nodes
373 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300374 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300375 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300376 def workflow_details=run_cmd_stdout("""\
377 . ./tcp_tests/utils/env_salt
378 . ./tcp_tests/utils/env_jenkins_day01
379 export JOB_NAME=deploy_openstack
380 export BUILD_NUMBER=lastBuild
381 python ./tcp_tests/utils/get_jenkins_job_stages.py
382 """)
383 throw new Exception(workflow_details)
384 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300385}
386
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300387def run_job_on_cicd_nodes(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300388 // stack_to_install="k8s,calico,stacklight"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200389 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300390 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200391 common.printMsg("Deploy Platform components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300392 try {
393 run_cmd("""\
394 export ENV_NAME=${ENV_NAME}
395 . ./tcp_tests/utils/env_salt
396 . ./tcp_tests/utils/env_jenkins_cicd
397 export JENKINS_BUILD_TIMEOUT=${timeout}
398 JOB_PARAMETERS=\"{
399 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
400 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
401 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200402 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:platform {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300403 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 +0300404 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200405 // Wait for IO calm down on cluster nodes
406 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300407 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300408 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300409 def workflow_details=run_cmd_stdout("""\
410 . ./tcp_tests/utils/env_salt
411 . ./tcp_tests/utils/env_jenkins_cicd
412 export JOB_NAME=deploy_openstack
413 export BUILD_NUMBER=lastBuild
414 python ./tcp_tests/utils/get_jenkins_job_stages.py
415 """)
416 throw new Exception(workflow_details)
417 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300418}
419
420def sanity_check_component(stack) {
421 // Run sanity check for the component ${stack}.
422 // Result will be stored in JUnit XML file deploy_${stack}.xml
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300423 try {
424 run_cmd("""\
425 py.test --junit-xml=deploy_${stack}.xml -m check_${stack}
426 """)
427 } catch (e) {
428 def String junit_report_xml = readFile("deploy_${stack}.xml")
429 def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml)
430 def String msg = "Sanity check for '${stack}' failed, JUnit report:\n"
431 throw new Exception(msg + junit_report_xml_pretty)
432 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300433}
434
Dennis Dmitrievefe5c0b2018-10-24 20:35:26 +0300435def download_logs(archive_name_prefix) {
436 // Archive and download logs and debug info from salt nodes in the lab
437 // Do not fail in case of error to not lose the original error from the parent exception.
438 def common = new com.mirantis.mk.Common()
439 common.printMsg("Downloading nodes logs by ${archive_name_prefix}", "blue")
440 run_cmd("""\
441 export TESTS_CONFIGS=\$(pwd)/${ENV_NAME}_salt_deployed.ini
442 ./tcp_tests/utils/get_logs.py --archive-name-prefix ${archive_name_prefix} || true
443 """)
444}
445
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300446def devops_snapshot_info(snapshot_name) {
447 // Print helper message after snapshot
448 def common = new com.mirantis.mk.Common()
449
450 def SALT_MASTER_IP=run_cmd_stdout("""\
451 . ./tcp_tests/utils/env_salt
452 echo \$SALT_MASTER_IP
453 """).trim().split().last()
454 def login = "root" // set fixed 'root' login for now
455 def password = "r00tme" // set fixed 'root' login for now
456 def key_file = "${env.WORKSPACE}/id_rsa" // set fixed path in the WORKSPACE
457 def VENV_PATH='/home/jenkins/fuel-devops30'
458
459 common.printMsg("""\
460#########################
461# To revert the snapshot:
462#########################
463. ${VENV_PATH}/bin/activate;
464dos.py revert ${ENV_NAME} ${snapshot_name};
465dos.py resume ${ENV_NAME};
466# dos.py time-sync ${ENV_NAME}; # Optional\n
467ssh -i ${key_file} ${login}@${SALT_MASTER_IP} # Optional password: ${password}
468""", "cyan")
469}
470
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300471def devops_snapshot(stack) {
472 // Make the snapshot with name "${stack}_deployed"
473 // for all VMs in the environment.
474 // If oslo_config INI file ${ENV_NAME}_salt_deployed.ini exists,
475 // then make a copy for the created snapshot to allow the system
476 // tests to revert this snapshot along with the metadata from the INI file.
477 run_cmd("""\
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300478 set -ex
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300479 dos.py suspend ${ENV_NAME}
480 dos.py snapshot ${ENV_NAME} ${stack}_deployed
481 dos.py resume ${ENV_NAME}
Dennis Dmitriev1fed6662018-07-27 18:22:13 +0300482 sleep 20 # Wait for I/O on the host calms down
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300483
484 CFG01_NAME=\$(dos.py show-resources ${ENV_NAME} | grep ^cfg01 | cut -d" " -f1)
485 dos.py time-sync ${ENV_NAME} --skip-sync \${CFG01_NAME}
486
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300487 if [ -f \$(pwd)/${ENV_NAME}_salt_deployed.ini ]; then
488 cp \$(pwd)/${ENV_NAME}_salt_deployed.ini \$(pwd)/${ENV_NAME}_${stack}_deployed.ini
489 fi
Dennis Dmitriev8df35442018-07-31 08:40:20 +0300490 """)
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300491 devops_snapshot_info("${stack}_deployed")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300492}
493
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300494def get_steps_list(steps) {
495 // Make a list from comma separated string
496 return steps.split(',').collect { it.split(':')[0] }
497}
498
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300499def create_xml_report(String filename, String classname, String name, String status='success', String status_message='', String text='', String stdout='', String stderr='') {
500 // <filename> is name of the XML report file that will be created
501 // <status> is one of the 'success', 'skipped', 'failure' or 'error'
502 // 'error' status is assumed as 'Blocker' in TestRail reporter
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300503
504 // Replace '<' and '>' to '&lt;' and '&gt;' to avoid conflicts between xml tags in the message and JUnit report
505 def String text_filtered = text.replaceAll("<","&lt;").replaceAll(">", "&gt;")
506
Dennis Dmitriev39666082018-08-29 15:30:45 +0300507 def script = """\
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300508<?xml version=\"1.0\" encoding=\"utf-8\"?>
509 <testsuite>
510 <testcase classname=\"${classname}\" name=\"${name}\" time=\"0\">
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300511 <${status} message=\"${status_message}\">${text_filtered}</${status}>
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300512 <system-out>${stdout}</system-out>
513 <system-err>${stderr}</system-err>
514 </testcase>
515 </testsuite>
Dennis Dmitriev39666082018-08-29 15:30:45 +0300516"""
517 writeFile(file: filename, text: script, encoding: "UTF-8")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300518}
519
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300520def upload_results_to_testrail(report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options=[]) {
521 def venvPath = '/home/jenkins/venv_testrail_reporter'
522 def testPlanDesc = env.ENV_NAME
523 def testrailURL = "https://mirantis.testrail.com"
524 def testrailProject = "Mirantis Cloud Platform"
525 def testPlanName = "[MCP-Q2]System-${MCP_VERSION}-${new Date().format('yyyy-MM-dd')}"
526 def testrailMilestone = "MCP1.1"
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300527 def testrailCaseMaxNameLenght = 250
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300528 def jobURL = env.BUILD_URL
529
530 def reporterOptions = [
531 "--verbose",
532 "--env-description \"${testPlanDesc}\"",
533 "--testrail-run-update",
534 "--testrail-url \"${testrailURL}\"",
535 "--testrail-user \"\${TESTRAIL_USER}\"",
536 "--testrail-password \"\${TESTRAIL_PASSWORD}\"",
537 "--testrail-project \"${testrailProject}\"",
538 "--testrail-plan-name \"${testPlanName}\"",
539 "--testrail-milestone \"${testrailMilestone}\"",
540 "--testrail-suite \"${testSuiteName}\"",
541 "--xunit-name-template \"${methodname}\"",
542 "--testrail-name-template \"${testrail_name_template}\"",
543 "--test-results-link \"${jobURL}\"",
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300544 "--testrail-case-max-name-lenght ${testrailCaseMaxNameLenght}",
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300545 ] + reporter_extra_options
546
547 def script = """
548 . ${venvPath}/bin/activate
549 set -ex
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300550 report ${reporterOptions.join(' ')} ${report_name}
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300551 """
552
553 def testrail_cred_id = params.TESTRAIL_CRED ?: 'testrail_system_tests'
554
555 withCredentials([
556 [$class : 'UsernamePasswordMultiBinding',
557 credentialsId : testrail_cred_id,
558 passwordVariable: 'TESTRAIL_PASSWORD',
559 usernameVariable: 'TESTRAIL_USER']
560 ]) {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300561 return run_cmd_stdout(script)
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300562 }
563}
564
565
566def create_deploy_result_report(deploy_expected_stacks, result, text) {
567 def STATUS_MAP = ['SUCCESS': 'success', 'FAILURE': 'failure', 'UNSTABLE': 'failure', 'ABORTED': 'error']
568 def classname = "Deploy"
569 def name = "deployment_${ENV_NAME}"
Dennis Dmitriev39666082018-08-29 15:30:45 +0300570 def filename = "${name}.xml"
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300571 def status = STATUS_MAP[result ?: 'FAILURE'] // currentBuild.result *must* be set at the finish of the try/catch
572 create_xml_report(filename, classname, name, status, "Deploy components: ${deploy_expected_stacks}", text, '', '')
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300573}