blob: 9e9a0441ce37f5e01b63df7daede787313ff7325 [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 Dmitrievb3b37492018-07-08 21:23:00 +0300162 def parameters = [
163 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
164 string(name: 'PARENT_WORKSPACE', value: pwd()),
165 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
166 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
167 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
168 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
169 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
170 string(name: 'CFG01_CONFIG_IMAGE_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300171 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
172 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
173 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
174 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecutter_template_commit}"),
175 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${salt_models_system_commit}"),
176 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
177 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
sgudzc97385a2018-11-29 17:01:53 +0200178 string(name: 'IPMI_USER', value: env.IPMI_USER),
179 string(name: 'IPMI_PASS', value: env.IPMI_PASS),
180 string(name: 'LAB_MANAGEMENT_IFACE', value: "${LAB_MANAGEMENT_IFACE}"),
181 string(name: 'LAB_CONTROL_IFACE', value: "${LAB_CONTROL_IFACE}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300182 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
183 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300184
185 build_pipeline_job('swarm-bootstrap-salt-cluster-devops', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300186}
187
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200188def swarm_deploy_cicd(String stack_to_install, String install_timeout) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300189 // Run openstack_deploy job on cfg01 Jenkins for specified stacks
190 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300191 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300192 def parameters = [
193 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
194 string(name: 'PARENT_WORKSPACE', value: pwd()),
195 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
196 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200197 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300198 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300199 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
200 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300201 build_pipeline_job('swarm-deploy-cicd', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300202}
203
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200204def swarm_deploy_platform(String stack_to_install, String install_timeout) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300205 // Run openstack_deploy job on CICD Jenkins for specified stacks
206 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300207 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300208 def parameters = [
209 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
210 string(name: 'PARENT_WORKSPACE', value: pwd()),
211 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
212 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200213 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300214 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300215 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
216 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300217 build_pipeline_job('swarm-deploy-platform', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300218}
219
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300220def swarm_run_pytest(String passed_steps) {
221 // Run pytest tests
222 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300223 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200224 def tempest_image_version = env.TEMPEST_IMAGE_VERSION ?: 'pike'
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300225 def parameters = [
226 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
227 string(name: 'PASSED_STEPS', value: passed_steps),
228 string(name: 'RUN_TEST_OPTS', value: "${RUN_TEST_OPTS}"),
229 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
230 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300231 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300232 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
233 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
234 string(name: 'REPOSITORY_SUITE', value: "${MCP_VERSION}"),
235 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
236 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200237 string(name: 'TEMPEST_IMAGE_VERSION', value: "${tempest_image_version}"),
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200238
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300239 ]
240 common.printMsg("Start building job 'swarm-run-pytest' with parameters:", "purple")
241 common.prettyPrint(parameters)
242 build job: 'swarm-run-pytest',
243 parameters: parameters
244}
245
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300246def swarm_testrail_report(String passed_steps) {
247 // Run pytest tests
248 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300249 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200250 def tempest_test_suite_name = env.TEMPEST_TEST_SUITE_NAME
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300251 def parameters = [
252 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
253 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
254 string(name: 'PASSED_STEPS', value: passed_steps),
255 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
256 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300257 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200258 string(name: 'TEMPEST_TEST_SUITE_NAME', value: "${tempest_test_suite_name}"),
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300259 ]
260 common.printMsg("Start building job 'swarm-testrail-report' with parameters:", "purple")
261 common.prettyPrint(parameters)
262 build job: 'swarm-testrail-report',
263 parameters: parameters
264}
265
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300266def generate_cookied_model() {
267 def common = new com.mirantis.mk.Common()
268 // do not fail if environment doesn't exists
269 def IPV4_NET_ADMIN=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep admin-pool01").trim().split().last()
270 def IPV4_NET_CONTROL=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep private-pool01").trim().split().last()
271 def IPV4_NET_TENANT=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep tenant-pool01").trim().split().last()
272 def IPV4_NET_EXTERNAL=run_cmd_stdout("dos.py net-list ${ENV_NAME} | grep external-pool01").trim().split().last()
273 println("IPV4_NET_ADMIN=" + IPV4_NET_ADMIN)
274 println("IPV4_NET_CONTROL=" + IPV4_NET_CONTROL)
275 println("IPV4_NET_TENANT=" + IPV4_NET_TENANT)
276 println("IPV4_NET_EXTERNAL=" + IPV4_NET_EXTERNAL)
277
278 def cookiecuttertemplate_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: env.MCP_VERSION
279 def saltmodels_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: env.MCP_VERSION
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300280 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
281 def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: ''
282 def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300283
284 def parameters = [
285 string(name: 'LAB_CONTEXT_NAME', value: "${LAB_CONFIG_NAME}"),
286 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
287 string(name: 'DOMAIN_NAME', value: "${LAB_CONFIG_NAME}.local"),
288 string(name: 'REPOSITORY_SUITE', value: "${env.MCP_VERSION}"),
289 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${saltmodels_system_commit}"),
290 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecuttertemplate_commit}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300291 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
292 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
293 string(name: 'TCP_QA_REVIEW', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300294 string(name: 'IPV4_NET_ADMIN', value: IPV4_NET_ADMIN),
295 string(name: 'IPV4_NET_CONTROL', value: IPV4_NET_CONTROL),
296 string(name: 'IPV4_NET_TENANT', value: IPV4_NET_TENANT),
297 string(name: 'IPV4_NET_EXTERNAL', value: IPV4_NET_EXTERNAL),
sgudzc97385a2018-11-29 17:01:53 +0200298 string(name: 'IPMI_USER', value: env.IPMI_USER),
299 string(name: 'IPMI_PASS', value: env.IPMI_PASS),
300 string(name: 'IMAGE_PATH_CFG01_DAY01', value: env.IMAGE_PATH_CFG01_DAY01),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300301 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300302
303 build_shell_job('swarm-cookied-model-generator', parameters, "deploy_generate_model.xml")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300304}
305
306def generate_configdrive_iso() {
307 def common = new com.mirantis.mk.Common()
308 def SALT_MASTER_IP=run_cmd_stdout("""\
309 export ENV_NAME=${ENV_NAME}
310 . ./tcp_tests/utils/env_salt
311 echo \$SALT_MASTER_IP
312 """).trim().split().last()
313 println("SALT_MASTER_IP=" + SALT_MASTER_IP)
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300314
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300315 def dhcp_ranges_json=run_cmd_stdout("""\
316 fgrep dhcp_ranges ${ENV_NAME}_hardware.ini |
317 fgrep "admin-pool01"|
318 cut -d"=" -f2
319 """).trim().split("\n").last()
320 def dhcp_ranges = new groovy.json.JsonSlurperClassic().parseText(dhcp_ranges_json)
321 def ADMIN_NETWORK_GW = dhcp_ranges['admin-pool01']['gateway']
322 println("ADMIN_NETWORK_GW=" + ADMIN_NETWORK_GW)
323
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300324 def mk_pipelines_ref = env.MK_PIPELINES_REF ?: ''
325 def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: ''
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300326 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300327
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300328 def parameters = [
329 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
330 string(name: 'MODEL_URL', value: "http://cz8133.bud.mirantis.net:8098/${LAB_CONFIG_NAME}.git"),
331 string(name: 'MODEL_URL_OBJECT_TYPE', value: "git"),
332 booleanParam(name: 'DOWNLOAD_CONFIG_DRIVE', value: true),
333 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
334 string(name: 'COMMON_SCRIPTS_COMMIT', value: "${MCP_VERSION}"),
335 string(name: 'NODE_NAME', value: "${NODE_NAME}"),
336 string(name: 'CONFIG_DRIVE_ISO_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
337 string(name: 'SALT_MASTER_DEPLOY_IP', value: SALT_MASTER_IP),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300338 string(name: 'DEPLOY_NETWORK_GW', value: "${ADMIN_NETWORK_GW}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300339 string(name: 'PIPELINE_REPO_URL', value: "https://github.com/Mirantis"),
340 booleanParam(name: 'PIPELINES_FROM_ISO', value: true),
341 string(name: 'MCP_SALT_REPO_URL', value: "http://apt.mirantis.com/xenial"),
342 string(name: 'MCP_SALT_REPO_KEY', value: "http://apt.mirantis.com/public.gpg"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300343 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
344 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300345 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300346 ]
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300347 build_pipeline_job('swarm-create-cfg-config-drive', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300348}
349
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300350def run_job_on_day01_node(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300351 // stack_to_install="core,cicd"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200352 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300353 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200354 common.printMsg("Deploy DriveTrain CICD components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300355 try {
356 run_cmd("""\
357 export ENV_NAME=${ENV_NAME}
358 . ./tcp_tests/utils/env_salt
359 . ./tcp_tests/utils/env_jenkins_day01
360 export JENKINS_BUILD_TIMEOUT=${timeout}
361 JOB_PARAMETERS=\"{
362 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
363 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
364 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200365 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:drivetrain {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300366 python ./tcp_tests/utils/run_jenkins_job.py --verbose --job-name=deploy_openstack --job-parameters="\$JOB_PARAMETERS" --job-output-prefix="\$JOB_PREFIX"
367 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200368 // Wait for IO calm down on cluster nodes
369 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300370 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300371 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300372 def workflow_details=run_cmd_stdout("""\
373 . ./tcp_tests/utils/env_salt
374 . ./tcp_tests/utils/env_jenkins_day01
375 export JOB_NAME=deploy_openstack
376 export BUILD_NUMBER=lastBuild
377 python ./tcp_tests/utils/get_jenkins_job_stages.py
378 """)
379 throw new Exception(workflow_details)
380 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300381}
382
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300383def run_job_on_cicd_nodes(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300384 // stack_to_install="k8s,calico,stacklight"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200385 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300386 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200387 common.printMsg("Deploy Platform components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300388 try {
389 run_cmd("""\
390 export ENV_NAME=${ENV_NAME}
391 . ./tcp_tests/utils/env_salt
392 . ./tcp_tests/utils/env_jenkins_cicd
393 export JENKINS_BUILD_TIMEOUT=${timeout}
394 JOB_PARAMETERS=\"{
395 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
396 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
397 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200398 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:platform {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300399 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 +0300400 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200401 // Wait for IO calm down on cluster nodes
402 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300403 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300404 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300405 def workflow_details=run_cmd_stdout("""\
406 . ./tcp_tests/utils/env_salt
407 . ./tcp_tests/utils/env_jenkins_cicd
408 export JOB_NAME=deploy_openstack
409 export BUILD_NUMBER=lastBuild
410 python ./tcp_tests/utils/get_jenkins_job_stages.py
411 """)
412 throw new Exception(workflow_details)
413 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300414}
415
416def sanity_check_component(stack) {
417 // Run sanity check for the component ${stack}.
418 // Result will be stored in JUnit XML file deploy_${stack}.xml
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300419 try {
420 run_cmd("""\
421 py.test --junit-xml=deploy_${stack}.xml -m check_${stack}
422 """)
423 } catch (e) {
424 def String junit_report_xml = readFile("deploy_${stack}.xml")
425 def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml)
426 def String msg = "Sanity check for '${stack}' failed, JUnit report:\n"
427 throw new Exception(msg + junit_report_xml_pretty)
428 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300429}
430
Dennis Dmitrievefe5c0b2018-10-24 20:35:26 +0300431def download_logs(archive_name_prefix) {
432 // Archive and download logs and debug info from salt nodes in the lab
433 // Do not fail in case of error to not lose the original error from the parent exception.
434 def common = new com.mirantis.mk.Common()
435 common.printMsg("Downloading nodes logs by ${archive_name_prefix}", "blue")
436 run_cmd("""\
437 export TESTS_CONFIGS=\$(pwd)/${ENV_NAME}_salt_deployed.ini
438 ./tcp_tests/utils/get_logs.py --archive-name-prefix ${archive_name_prefix} || true
439 """)
440}
441
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300442def devops_snapshot_info(snapshot_name) {
443 // Print helper message after snapshot
444 def common = new com.mirantis.mk.Common()
445
446 def SALT_MASTER_IP=run_cmd_stdout("""\
447 . ./tcp_tests/utils/env_salt
448 echo \$SALT_MASTER_IP
449 """).trim().split().last()
450 def login = "root" // set fixed 'root' login for now
451 def password = "r00tme" // set fixed 'root' login for now
452 def key_file = "${env.WORKSPACE}/id_rsa" // set fixed path in the WORKSPACE
453 def VENV_PATH='/home/jenkins/fuel-devops30'
454
455 common.printMsg("""\
456#########################
457# To revert the snapshot:
458#########################
459. ${VENV_PATH}/bin/activate;
460dos.py revert ${ENV_NAME} ${snapshot_name};
461dos.py resume ${ENV_NAME};
462# dos.py time-sync ${ENV_NAME}; # Optional\n
463ssh -i ${key_file} ${login}@${SALT_MASTER_IP} # Optional password: ${password}
464""", "cyan")
465}
466
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300467def devops_snapshot(stack) {
468 // Make the snapshot with name "${stack}_deployed"
469 // for all VMs in the environment.
470 // If oslo_config INI file ${ENV_NAME}_salt_deployed.ini exists,
471 // then make a copy for the created snapshot to allow the system
472 // tests to revert this snapshot along with the metadata from the INI file.
473 run_cmd("""\
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300474 set -ex
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300475 dos.py suspend ${ENV_NAME}
476 dos.py snapshot ${ENV_NAME} ${stack}_deployed
477 dos.py resume ${ENV_NAME}
Dennis Dmitriev1fed6662018-07-27 18:22:13 +0300478 sleep 20 # Wait for I/O on the host calms down
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300479
480 CFG01_NAME=\$(dos.py show-resources ${ENV_NAME} | grep ^cfg01 | cut -d" " -f1)
481 dos.py time-sync ${ENV_NAME} --skip-sync \${CFG01_NAME}
482
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300483 if [ -f \$(pwd)/${ENV_NAME}_salt_deployed.ini ]; then
484 cp \$(pwd)/${ENV_NAME}_salt_deployed.ini \$(pwd)/${ENV_NAME}_${stack}_deployed.ini
485 fi
Dennis Dmitriev8df35442018-07-31 08:40:20 +0300486 """)
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300487 devops_snapshot_info("${stack}_deployed")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300488}
489
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300490def get_steps_list(steps) {
491 // Make a list from comma separated string
492 return steps.split(',').collect { it.split(':')[0] }
493}
494
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300495def create_xml_report(String filename, String classname, String name, String status='success', String status_message='', String text='', String stdout='', String stderr='') {
496 // <filename> is name of the XML report file that will be created
497 // <status> is one of the 'success', 'skipped', 'failure' or 'error'
498 // 'error' status is assumed as 'Blocker' in TestRail reporter
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300499
500 // Replace '<' and '>' to '&lt;' and '&gt;' to avoid conflicts between xml tags in the message and JUnit report
501 def String text_filtered = text.replaceAll("<","&lt;").replaceAll(">", "&gt;")
502
Dennis Dmitriev39666082018-08-29 15:30:45 +0300503 def script = """\
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300504<?xml version=\"1.0\" encoding=\"utf-8\"?>
505 <testsuite>
506 <testcase classname=\"${classname}\" name=\"${name}\" time=\"0\">
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300507 <${status} message=\"${status_message}\">${text_filtered}</${status}>
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300508 <system-out>${stdout}</system-out>
509 <system-err>${stderr}</system-err>
510 </testcase>
511 </testsuite>
Dennis Dmitriev39666082018-08-29 15:30:45 +0300512"""
513 writeFile(file: filename, text: script, encoding: "UTF-8")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300514}
515
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300516def upload_results_to_testrail(report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options=[]) {
517 def venvPath = '/home/jenkins/venv_testrail_reporter'
518 def testPlanDesc = env.ENV_NAME
519 def testrailURL = "https://mirantis.testrail.com"
520 def testrailProject = "Mirantis Cloud Platform"
521 def testPlanName = "[MCP-Q2]System-${MCP_VERSION}-${new Date().format('yyyy-MM-dd')}"
522 def testrailMilestone = "MCP1.1"
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300523 def testrailCaseMaxNameLenght = 250
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300524 def jobURL = env.BUILD_URL
525
526 def reporterOptions = [
527 "--verbose",
528 "--env-description \"${testPlanDesc}\"",
529 "--testrail-run-update",
530 "--testrail-url \"${testrailURL}\"",
531 "--testrail-user \"\${TESTRAIL_USER}\"",
532 "--testrail-password \"\${TESTRAIL_PASSWORD}\"",
533 "--testrail-project \"${testrailProject}\"",
534 "--testrail-plan-name \"${testPlanName}\"",
535 "--testrail-milestone \"${testrailMilestone}\"",
536 "--testrail-suite \"${testSuiteName}\"",
537 "--xunit-name-template \"${methodname}\"",
538 "--testrail-name-template \"${testrail_name_template}\"",
539 "--test-results-link \"${jobURL}\"",
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300540 "--testrail-case-max-name-lenght ${testrailCaseMaxNameLenght}",
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300541 ] + reporter_extra_options
542
543 def script = """
544 . ${venvPath}/bin/activate
545 set -ex
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300546 report ${reporterOptions.join(' ')} ${report_name}
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300547 """
548
549 def testrail_cred_id = params.TESTRAIL_CRED ?: 'testrail_system_tests'
550
551 withCredentials([
552 [$class : 'UsernamePasswordMultiBinding',
553 credentialsId : testrail_cred_id,
554 passwordVariable: 'TESTRAIL_PASSWORD',
555 usernameVariable: 'TESTRAIL_USER']
556 ]) {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300557 return run_cmd_stdout(script)
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300558 }
559}
560
561
562def create_deploy_result_report(deploy_expected_stacks, result, text) {
563 def STATUS_MAP = ['SUCCESS': 'success', 'FAILURE': 'failure', 'UNSTABLE': 'failure', 'ABORTED': 'error']
564 def classname = "Deploy"
565 def name = "deployment_${ENV_NAME}"
Dennis Dmitriev39666082018-08-29 15:30:45 +0300566 def filename = "${name}.xml"
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300567 def status = STATUS_MAP[result ?: 'FAILURE'] // currentBuild.result *must* be set at the finish of the try/catch
568 create_xml_report(filename, classname, name, status, "Deploy components: ${deploy_expected_stacks}", text, '', '')
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300569}