blob: 06ca19dfdedbecaf9ad57a89960a9fa638005342 [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
Vladimir Jigulin6a1ef812019-03-21 19:34:07 +04005def is_released_version(version) {
6 return Character.isDigit(version.charAt(0))
7}
8
Dennis Dmitriev4c383472019-04-12 13:58:06 +03009def verbose_sh(String script, Boolean returnStatus=false, Boolean returnStdout=false, Boolean verboseStdout=false) {
10 def common = new com.mirantis.mk.Common()
11 common.printMsg("Run shell command:\n" + script, "blue")
12 def result = sh(script: script, returnStatus: returnStatus, returnStdout: returnStdout)
13 if (verboseStdout) {
14 common.printMsg("Output:\n" + result, "cyan")
15 }
16 return result
17}
18
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +030019def run_sh(String cmd) {
20 // run shell script without catching any output
21 def common = new com.mirantis.mk.Common()
22 common.printMsg("Run shell command:\n" + cmd, "blue")
23 def VENV_PATH='/home/jenkins/fuel-devops30'
Dmitry Tyzhnenkob39de052019-03-21 17:05:07 +020024 def script = """\
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +030025 set -ex;
26 . ${VENV_PATH}/bin/activate;
27 bash -c '${cmd.stripIndent()}'
28 """
29 return sh(script: script)
30}
31
Dennis Dmitriev8df35442018-07-31 08:40:20 +030032def run_cmd(String cmd, Boolean returnStdout=false) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030033 def common = new com.mirantis.mk.Common()
34 common.printMsg("Run shell command:\n" + cmd, "blue")
35 def VENV_PATH='/home/jenkins/fuel-devops30'
Dennis Dmitriev27a96792018-07-30 07:52:03 +030036 def stderr_path = "/tmp/${JOB_NAME}_${BUILD_NUMBER}_stderr.log"
Dmitry Tyzhnenkob39de052019-03-21 17:05:07 +020037 def script = """#!/bin/bash
38 set +x
39 echo 'activate python virtualenv ${VENV_PATH}'
40 . ${VENV_PATH}/bin/activate
41 bash -c -e -x '${cmd.stripIndent()}' 2>${stderr_path}
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030042 """
Dennis Dmitriev27a96792018-07-30 07:52:03 +030043 try {
Dmitry Tyzhnenkob39de052019-03-21 17:05:07 +020044 def stdout = sh(script: script, returnStdout: returnStdout)
45 def stderr = readFile("${stderr_path}")
46 def error_message = "\n<<<<<< STDERR: >>>>>>\n" + stderr
47 common.printMsg(error_message, "yellow")
48 common.printMsg("", "reset")
49 return stdout
Dennis Dmitriev27a96792018-07-30 07:52:03 +030050 } catch (e) {
Dennis Dmitriev8df35442018-07-31 08:40:20 +030051 def stderr = readFile("${stderr_path}")
52 def error_message = e.message + "\n<<<<<< STDERR: >>>>>>\n" + stderr
Dmitry Tyzhnenkob39de052019-03-21 17:05:07 +020053 common.printMsg(error_message, "red")
54 common.printMsg("", "reset")
Dennis Dmitriev8df35442018-07-31 08:40:20 +030055 throw new Exception(error_message)
Dennis Dmitriev27a96792018-07-30 07:52:03 +030056 } finally {
Dennis Dmitriev8df35442018-07-31 08:40:20 +030057 sh(script: "rm ${stderr_path} || true")
Dennis Dmitriev27a96792018-07-30 07:52:03 +030058 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030059}
60
61def run_cmd_stdout(cmd) {
Dennis Dmitriev8df35442018-07-31 08:40:20 +030062 return run_cmd(cmd, true)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +030063}
64
Dennis Dmitriev27a96792018-07-30 07:52:03 +030065def build_pipeline_job(job_name, parameters) {
66 //Build a job, grab the results if failed and use the results in exception
67 def common = new com.mirantis.mk.Common()
68 common.printMsg("Start building job '${job_name}' with parameters:", "purple")
69 common.prettyPrint(parameters)
70
71 def job_info = build job: "${job_name}",
72 parameters: parameters,
73 propagate: false
74
75 if (job_info.getResult() != "SUCCESS") {
76 currentBuild.result = job_info.getResult()
77 def build_number = job_info.getNumber()
Dennis Dmitrievb08c0772018-10-17 15:10:26 +030078 common.printMsg("Job '${job_name}' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +030079 def workflow_details=run_cmd_stdout("""\
80 export JOB_NAME=${job_name}
81 export BUILD_NUMBER=${build_number}
82 python ./tcp_tests/utils/get_jenkins_job_stages.py
83 """)
84 throw new Exception(workflow_details)
85 }
86}
87
88def build_shell_job(job_name, parameters, junit_report_filename=null, junit_report_source_dir='**/') {
89 //Build a job, grab the results if failed and use the results in exception
90 //junit_report_filename: if not null, try to copy this JUnit report first from remote job
91 def common = new com.mirantis.mk.Common()
92 common.printMsg("Start building job '${job_name}' with parameters:", "purple")
93 common.prettyPrint(parameters)
94
95 def job_info = build job: "${job_name}",
96 parameters: parameters,
97 propagate: false
98
Dennis Dmitriev4115ae72018-11-20 13:43:35 +020099 def build_number = job_info.getNumber()
100 def build_url = job_info.getAbsoluteUrl()
101 def build_status = job_info.getResult()
102 try {
103 // Try to grab 'tar.gz' articacts from the shell job'
104 step($class: 'hudson.plugins.copyartifact.CopyArtifact',
105 projectName: job_name,
106 selector: specific("${build_number}"),
107 filter: "**/*.tar.gz",
108 target: '.',
109 flatten: true,
110 fingerprintArtifacts: true)
111 } catch (none) {
112 common.printMsg("No *.tar.gz files found in artifacts of the build ${build_url}", "purple")
113 }
114
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300115 if (job_info.getResult() != "SUCCESS") {
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300116 def job_url = "${build_url}"
117 currentBuild.result = build_status
118 if (junit_report_filename) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300119 common.printMsg("Job '${job_url}' failed with status ${build_status}, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300120 step($class: 'hudson.plugins.copyartifact.CopyArtifact',
121 projectName: job_name,
122 selector: specific("${build_number}"),
123 filter: "${junit_report_source_dir}/${junit_report_filename}",
124 target: '.',
125 flatten: true,
126 fingerprintArtifacts: true)
127
128 def String junit_report_xml = readFile("${junit_report_filename}")
129 def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml)
130 def String msg = "Job '${job_url}' failed with status ${build_status}, JUnit report:\n"
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300131 throw new Exception(msg + junit_report_xml_pretty)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300132 } else {
133 throw new Exception("Job '${job_url}' failed with status ${build_status}, please check the console output.")
134 }
135 }
136}
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300137
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300138def prepare_working_dir(env_manager) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300139 println "Clean the working directory ${env.WORKSPACE}"
140 deleteDir()
141
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300142 if (env_manager == 'devops') {
143 // do not fail if environment doesn't exists
144 println "Remove fuel-devops environment '${ENV_NAME}'"
145 run_cmd("""\
146 dos.py erase ${ENV_NAME} || true
147 """)
148 } else if (env_manager == 'heat') {
149 // delete heat stack
150 println "Remove heat stack '${ENV_NAME}'"
151 withCredentials([
152 [$class : 'UsernamePasswordMultiBinding',
153 credentialsId : env.OS_CREDENTIALS,
154 passwordVariable: 'OS_PASSWORD',
155 usernameVariable: 'OS_USERNAME']
156 ]) {
157 run_cmd("""\
158 export OS_IDENTITY_API_VERSION=3
159 export OS_AUTH_URL=${OS_AUTH_URL}
160 export OS_USERNAME=${OS_USERNAME}
161 export OS_PASSWORD=${OS_PASSWORD}
162 export OS_PROJECT_NAME=${OS_PROJECT_NAME}
163 export OS_USER_DOMAIN_NAME=${OS_USER_DOMAIN_NAME}
164 openstack --insecure stack delete -y ${ENV_NAME} || true
165 while openstack --insecure stack show ${ENV_NAME} -f value -c stack_status; do sleep 10; done
166 """)
167 }
168
169 } else {
170 throw new Exception("Unknown env_manager: '${env_manager}'")
171 }
172
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300173 println "Remove config drive ISO"
174 run_cmd("""\
175 rm /home/jenkins/images/${CFG01_CONFIG_IMAGE_NAME} || true
176 """)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300177
178 run_cmd("""\
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300179 git clone https://github.com/Mirantis/tcp-qa.git ${env.WORKSPACE}
180 if [ -n "$TCP_QA_REFS" ]; then
181 set -e
182 git fetch https://review.gerrithub.io/Mirantis/tcp-qa $TCP_QA_REFS && git checkout FETCH_HEAD || exit \$?
183 fi
184 pip install --upgrade --upgrade-strategy=only-if-needed -r tcp_tests/requirements.txt
Dennis Dmitriev8df35442018-07-31 08:40:20 +0300185 """)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300186}
187
Dennis Dmitriev056ecbf2019-05-20 15:36:29 +0300188def update_working_dir(Boolean updateRequirements=true) {
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300189 // Use to fetch a patchset from gerrit to the working dir
190 run_cmd("""\
191 if [ -n "$TCP_QA_REFS" ]; then
192 set -e
193 git fetch https://review.gerrithub.io/Mirantis/tcp-qa $TCP_QA_REFS && git checkout FETCH_HEAD || exit \$?
Dennis Dmitriev056ecbf2019-05-20 15:36:29 +0300194 fi""")
195 if (updateRequirements) {
196 run_cmd("""\
197 pip install -r tcp_tests/requirements.txt
198 """)
199 }
Dennis Dmitrieveb50ce12018-09-27 13:34:32 +0300200}
201
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300202def swarm_bootstrap_salt_cluster_devops() {
203 def common = new com.mirantis.mk.Common()
Vladimir Jigulin6a1ef812019-03-21 19:34:07 +0400204 def cookiecutter_template_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: is_released_version(env.MCP_VERSION) ? "release/${env.MCP_VERSION}" : 'master'
Dennis Dmitrieve3884652019-03-05 14:26:44 +0200205 def salt_models_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: "release/${env.MCP_VERSION}"
Tatyana Leontovich8ac26d72019-05-15 23:33:38 +0300206 def jenkins_pipelines_branch = env.JENKINS_PIPELINE_BRANCH ?: ''
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300207 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
208 def mk_pipelines_ref = env.MK_PIPELINES_REF ?: ''
209 def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: ''
210 def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: ''
211 def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: ''
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200212 def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: ''
213 def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: ''
Tatyana Leontovich1f069162019-04-02 19:57:55 +0300214 def deploy_network_mask = env.DEPLOY_NETWORK_NETMASK ?: ''
Dennis Dmitriev63460042018-12-11 13:08:11 +0200215 def env_ipmi_user = env.IPMI_USER ?: ''
216 def env_ipmi_pass = env.IPMI_PASS ?: ''
217 def env_lab_mgm_iface = env.LAB_MANAGEMENT_IFACE ?: ''
218 def env_lab_ctl_iface = env.LAB_CONTROL_IFACE ?: ''
sgudzb7953382019-02-18 17:59:30 +0200219 def update_repo_custom_tag = env.UPDATE_REPO_CUSTOM_TAG ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300220 def parameters = [
221 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
222 string(name: 'PARENT_WORKSPACE', value: pwd()),
223 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
224 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
225 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
226 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
227 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
228 string(name: 'CFG01_CONFIG_IMAGE_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300229 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
230 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
231 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
232 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecutter_template_commit}"),
233 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${salt_models_system_commit}"),
234 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
235 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200236 string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"),
237 string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"),
Tatyana Leontovich1f069162019-04-02 19:57:55 +0300238 string(name: 'DEPLOY_NETWORK_NETMASK', value: "${deploy_network_mask}"),
Dennis Dmitriev63460042018-12-11 13:08:11 +0200239 string(name: 'IPMI_USER', value: env_ipmi_user),
240 string(name: 'IPMI_PASS', value: env_ipmi_pass),
241 string(name: 'LAB_MANAGEMENT_IFACE', value: env_lab_mgm_iface),
242 string(name: 'LAB_CONTROL_IFACE', value: env_lab_ctl_iface),
sgudzb7953382019-02-18 17:59:30 +0200243 string(name: 'UPDATE_REPO_CUSTOM_TAG', value: "${update_repo_custom_tag}"),
Tatyana Leontovich8ac26d72019-05-15 23:33:38 +0300244 string(name: 'JENKINS_PIPELINE_BRANCH', value: "${jenkins_pipelines_branch}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300245 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
246 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300247
248 build_pipeline_job('swarm-bootstrap-salt-cluster-devops', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300249}
250
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300251def swarm_bootstrap_salt_cluster_heat(String jenkins_slave_node_name) {
252 // jenkins_slave_node_name
253 def common = new com.mirantis.mk.Common()
254 def cookiecutter_template_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: "release/${env.MCP_VERSION}"
255 def salt_models_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: "release/${env.MCP_VERSION}"
256 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
257 def mk_pipelines_ref = env.MK_PIPELINES_REF ?: ''
Tatyana Leontovich8ac26d72019-05-15 23:33:38 +0300258 def jenkins_pipelines_branch = env.JENKINS_PIPELINE_BRANCH ?: ''
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300259 def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: ''
260 def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: ''
261 def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: ''
262 def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: ''
263 def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: ''
264 def env_ipmi_user = env.IPMI_USER ?: ''
265 def env_ipmi_pass = env.IPMI_PASS ?: ''
266 def env_lab_mgm_iface = env.LAB_MANAGEMENT_IFACE ?: ''
267 def env_lab_ctl_iface = env.LAB_CONTROL_IFACE ?: ''
268 def update_repo_custom_tag = env.UPDATE_REPO_CUSTOM_TAG ?: ''
269 def parameters = [
270 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
271 string(name: 'JENKINS_SLAVE_NODE_NAME', value: jenkins_slave_node_name),
272 string(name: 'PARENT_WORKSPACE', value: pwd()),
273 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
274 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
275 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
276 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
277 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
278 string(name: 'CFG01_CONFIG_IMAGE_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
279 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
280 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
281 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
282 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecutter_template_commit}"),
283 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${salt_models_system_commit}"),
284 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
285 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
286 string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"),
287 string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"),
288 string(name: 'IPMI_USER', value: env_ipmi_user),
289 string(name: 'IPMI_PASS', value: env_ipmi_pass),
290 string(name: 'LAB_MANAGEMENT_IFACE', value: env_lab_mgm_iface),
291 string(name: 'LAB_CONTROL_IFACE', value: env_lab_ctl_iface),
292 string(name: 'UPDATE_REPO_CUSTOM_TAG', value: "${update_repo_custom_tag}"),
293 string(name: 'OS_AUTH_URL', value: "${OS_AUTH_URL}"),
294 string(name: 'OS_PROJECT_NAME', value: "${OS_PROJECT_NAME}"),
295 string(name: 'OS_USER_DOMAIN_NAME', value: "${OS_USER_DOMAIN_NAME}"),
296 string(name: 'OS_CREDENTIALS', value: "${OS_CREDENTIALS}"),
297 string(name: 'LAB_PARAM_DEFAULTS', value: "${LAB_PARAM_DEFAULTS}"),
Tatyana Leontovich8ac26d72019-05-15 23:33:38 +0300298 string(name: 'JENKINS_PIPELINE_BRANCH', value: "${jenkins_pipelines_branch}"),
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300299 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
300 ]
301
302 build_pipeline_job('swarm-bootstrap-salt-cluster-heat', parameters)
303}
304
Dennis Dmitriev02447412019-04-17 18:02:46 +0300305def swarm_deploy_cicd(String stack_to_install, String install_timeout, String jenkins_slave_node_name, Boolean make_snapshot_stages) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300306 // Run openstack_deploy job on cfg01 Jenkins for specified stacks
307 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300308 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300309 def parameters = [
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300310 string(name: 'PARENT_NODE_NAME', value: jenkins_slave_node_name),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300311 string(name: 'PARENT_WORKSPACE', value: pwd()),
312 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
313 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200314 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300315 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitriev02447412019-04-17 18:02:46 +0300316 booleanParam(name: 'MAKE_SNAPSHOT_STAGES', value: make_snapshot_stages),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300317 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
318 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300319 build_pipeline_job('swarm-deploy-cicd', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300320}
321
Dennis Dmitriev02447412019-04-17 18:02:46 +0300322def swarm_deploy_platform(String stack_to_install, String install_timeout, String jenkins_slave_node_name, Boolean make_snapshot_stages) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300323 // Run openstack_deploy job on CICD Jenkins for specified stacks
324 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300325 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300326 def parameters = [
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300327 string(name: 'PARENT_NODE_NAME', value: jenkins_slave_node_name),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300328 string(name: 'PARENT_WORKSPACE', value: pwd()),
329 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
330 string(name: 'STACK_INSTALL', value: stack_to_install),
Dennis Dmitriev07d5b8a2018-10-29 19:43:00 +0200331 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300332 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitriev02447412019-04-17 18:02:46 +0300333 booleanParam(name: 'MAKE_SNAPSHOT_STAGES', value: make_snapshot_stages),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300334 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
335 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300336 build_pipeline_job('swarm-deploy-platform', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300337}
338
sgudz2ed95852019-03-01 14:48:52 +0200339def swarm_deploy_platform_non_cicd(String stack_to_install, String install_timeout) {
340 // Run openstack_deploy job on day01 Jenkins for specified stacks
341 def common = new com.mirantis.mk.Common()
342 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
343 def parameters = [
344 string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"),
345 string(name: 'PARENT_WORKSPACE', value: pwd()),
346 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
347 string(name: 'STACK_INSTALL', value: stack_to_install),
348 string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout),
349 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
350 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
351 ]
352 build_pipeline_job('swarm-deploy-platform-without-cicd', parameters)
353}
354
Dennis Dmitriev02447412019-04-17 18:02:46 +0300355def swarm_run_pytest(String passed_steps, String jenkins_slave_node_name, Boolean make_snapshot_stages) {
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300356 // Run pytest tests
357 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300358 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Oleksii Butenkoec78c9f2019-04-04 16:26:20 +0300359 def tempest_extra_args = env.TEMPEST_EXTRA_ARGS ?: ''
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200360 def tempest_image_version = env.TEMPEST_IMAGE_VERSION ?: 'pike'
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200361 def tempest_target=env.TEMPEST_TARGET ?: 'gtw01'
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300362 def parameters = [
363 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
364 string(name: 'PASSED_STEPS', value: passed_steps),
365 string(name: 'RUN_TEST_OPTS', value: "${RUN_TEST_OPTS}"),
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300366 string(name: 'PARENT_NODE_NAME', value: jenkins_slave_node_name),
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300367 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300368 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300369 booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false),
370 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
371 string(name: 'REPOSITORY_SUITE', value: "${MCP_VERSION}"),
372 string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"),
373 string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"),
Tatyana Leontovich05f79402018-11-16 15:04:02 +0200374 string(name: 'TEMPEST_IMAGE_VERSION', value: "${tempest_image_version}"),
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200375 string(name: 'TEMPEST_TARGET', value: "${tempest_target}"),
Oleksii Butenkoec78c9f2019-04-04 16:26:20 +0300376 string(name: 'TEMPEST_EXTRA_ARGS', value: "${tempest_extra_args}"),
Dennis Dmitriev02447412019-04-17 18:02:46 +0300377 booleanParam(name: 'MAKE_SNAPSHOT_STAGES', value: make_snapshot_stages),
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300378 ]
379 common.printMsg("Start building job 'swarm-run-pytest' with parameters:", "purple")
380 common.prettyPrint(parameters)
381 build job: 'swarm-run-pytest',
382 parameters: parameters
383}
384
Tatyana Leontovichc18c8142019-05-16 15:20:33 +0300385def swarm_testrail_report(String passed_steps, String node_with_reports) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300386 // Run pytest tests
387 def common = new com.mirantis.mk.Common()
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300388 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200389 def tempest_test_suite_name = env.TEMPEST_TEST_SUITE_NAME
Vladimir Jigulin91bb7c92019-04-04 18:15:45 +0400390 def test_plan_name_prefix = env.TEST_PLAN_NAME_PREFIX ?: ''
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300391 def parameters = [
392 string(name: 'ENV_NAME', value: "${ENV_NAME}"),
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200393 string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"),
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300394 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
395 string(name: 'PASSED_STEPS', value: passed_steps),
Tatyana Leontovichc18c8142019-05-16 15:20:33 +0300396 string(name: 'PARENT_NODE_NAME', value: node_with_reports),
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300397 string(name: 'PARENT_WORKSPACE', value: pwd()),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300398 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Tatyana Leontovichf3718442018-10-31 13:36:13 +0200399 string(name: 'TEMPEST_TEST_SUITE_NAME', value: "${tempest_test_suite_name}"),
Vladimir Jigulin91bb7c92019-04-04 18:15:45 +0400400 string(name: 'TEST_PLAN_NAME_PREFIX', value: "${test_plan_name_prefix}"),
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300401 ]
402 common.printMsg("Start building job 'swarm-testrail-report' with parameters:", "purple")
403 common.prettyPrint(parameters)
404 build job: 'swarm-testrail-report',
405 parameters: parameters
406}
407
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300408def generate_cookied_model(IPV4_NET_ADMIN, IPV4_NET_CONTROL, IPV4_NET_TENANT, IPV4_NET_EXTERNAL) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300409 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300410 println("IPV4_NET_ADMIN=" + IPV4_NET_ADMIN)
411 println("IPV4_NET_CONTROL=" + IPV4_NET_CONTROL)
412 println("IPV4_NET_TENANT=" + IPV4_NET_TENANT)
413 println("IPV4_NET_EXTERNAL=" + IPV4_NET_EXTERNAL)
414
Vladimir Jigulin6a1ef812019-03-21 19:34:07 +0400415 def cookiecuttertemplate_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: is_released_version(env.MCP_VERSION) ? "release/${env.MCP_VERSION}" : 'master'
Dennis Dmitrieve3884652019-03-05 14:26:44 +0200416 def saltmodels_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: "release/${env.MCP_VERSION}"
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300417 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
418 def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: ''
419 def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: ''
Tatyana Leontovich8ac26d72019-05-15 23:33:38 +0300420 def jenkins_pipelines_branch=env.JENKINS_PIPELINE_BRANCH ?: ''
sgudzb7953382019-02-18 17:59:30 +0200421 def update_repo_custom_tag = env.UPDATE_REPO_CUSTOM_TAG ?: ''
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300422
423 def parameters = [
424 string(name: 'LAB_CONTEXT_NAME', value: "${LAB_CONFIG_NAME}"),
425 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
426 string(name: 'DOMAIN_NAME', value: "${LAB_CONFIG_NAME}.local"),
427 string(name: 'REPOSITORY_SUITE', value: "${env.MCP_VERSION}"),
428 string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${saltmodels_system_commit}"),
429 string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecuttertemplate_commit}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300430 string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"),
431 string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"),
432 string(name: 'TCP_QA_REVIEW', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300433 string(name: 'IPV4_NET_ADMIN', value: IPV4_NET_ADMIN),
434 string(name: 'IPV4_NET_CONTROL', value: IPV4_NET_CONTROL),
435 string(name: 'IPV4_NET_TENANT', value: IPV4_NET_TENANT),
436 string(name: 'IPV4_NET_EXTERNAL', value: IPV4_NET_EXTERNAL),
sgudzc97385a2018-11-29 17:01:53 +0200437 string(name: 'IPMI_USER', value: env.IPMI_USER),
438 string(name: 'IPMI_PASS', value: env.IPMI_PASS),
sgudzb7953382019-02-18 17:59:30 +0200439 string(name: 'UPDATE_REPO_CUSTOM_TAG', value: "${update_repo_custom_tag}"),
Tatyana Leontovich8ac26d72019-05-15 23:33:38 +0300440 string(name: 'JENKINS_PIPELINE_BRANCH', value: "${jenkins_pipelines_branch}"),
sgudzc97385a2018-11-29 17:01:53 +0200441 string(name: 'IMAGE_PATH_CFG01_DAY01', value: env.IMAGE_PATH_CFG01_DAY01),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300442 ]
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300443
444 build_shell_job('swarm-cookied-model-generator', parameters, "deploy_generate_model.xml")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300445}
446
Dennis Dmitriev4c383472019-04-12 13:58:06 +0300447def generate_configdrive_iso(SALT_MASTER_IP, ADMIN_NETWORK_GW) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300448 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300449 println("SALT_MASTER_IP=" + SALT_MASTER_IP)
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300450 println("ADMIN_NETWORK_GW=" + ADMIN_NETWORK_GW)
451
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300452 def mk_pipelines_ref = env.MK_PIPELINES_REF ?: ''
453 def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: ''
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300454 def tcp_qa_refs = env.TCP_QA_REFS ?: ''
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200455 def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: ''
456 def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: ''
Tatyana Leontovich1f069162019-04-02 19:57:55 +0300457 def deploy_network_mask = env.DEPLOY_NETWORK_NETMASK ?: ''
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300458
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300459 def parameters = [
460 string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"),
Dmitry Tyzhnenko240b67c2019-05-21 16:55:55 +0300461 string(name: 'MODEL_URL', value: "http://172.19.112.216:8098/${LAB_CONFIG_NAME}.git"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300462 string(name: 'MODEL_URL_OBJECT_TYPE', value: "git"),
463 booleanParam(name: 'DOWNLOAD_CONFIG_DRIVE', value: true),
464 string(name: 'MCP_VERSION', value: "${MCP_VERSION}"),
Dennis Dmitrieve3884652019-03-05 14:26:44 +0200465 string(name: 'COMMON_SCRIPTS_COMMIT', value: "release/${env.MCP_VERSION}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300466 string(name: 'NODE_NAME', value: "${NODE_NAME}"),
467 string(name: 'CONFIG_DRIVE_ISO_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"),
468 string(name: 'SALT_MASTER_DEPLOY_IP', value: SALT_MASTER_IP),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300469 string(name: 'DEPLOY_NETWORK_GW', value: "${ADMIN_NETWORK_GW}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300470 string(name: 'PIPELINE_REPO_URL', value: "https://github.com/Mirantis"),
471 booleanParam(name: 'PIPELINES_FROM_ISO', value: true),
Dennis Dmitrievd9168b52018-12-19 18:53:52 +0200472 string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"),
473 string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"),
Tatyana Leontovich1f069162019-04-02 19:57:55 +0300474 string(name: 'DEPLOY_NETWORK_NETMASK', value: "${deploy_network_mask}"),
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300475 string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"),
476 string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"),
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300477 string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"),
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300478 ]
Dennis Dmitrievf220d972018-10-10 15:19:14 +0300479 build_pipeline_job('swarm-create-cfg-config-drive', parameters)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300480}
481
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300482def run_job_on_day01_node(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300483 // stack_to_install="core,cicd"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200484 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300485 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200486 common.printMsg("Deploy DriveTrain CICD components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300487 try {
488 run_cmd("""\
489 export ENV_NAME=${ENV_NAME}
490 . ./tcp_tests/utils/env_salt
491 . ./tcp_tests/utils/env_jenkins_day01
492 export JENKINS_BUILD_TIMEOUT=${timeout}
493 JOB_PARAMETERS=\"{
494 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
495 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
496 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200497 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:drivetrain {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300498 python ./tcp_tests/utils/run_jenkins_job.py --verbose --job-name=deploy_openstack --job-parameters="\$JOB_PARAMETERS" --job-output-prefix="\$JOB_PREFIX"
499 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200500 // Wait for IO calm down on cluster nodes
501 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300502 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300503 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300504 def workflow_details=run_cmd_stdout("""\
505 . ./tcp_tests/utils/env_salt
506 . ./tcp_tests/utils/env_jenkins_day01
507 export JOB_NAME=deploy_openstack
508 export BUILD_NUMBER=lastBuild
509 python ./tcp_tests/utils/get_jenkins_job_stages.py
510 """)
511 throw new Exception(workflow_details)
512 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300513}
514
Dennis Dmitriev13e804b2018-10-09 19:25:14 +0300515def run_job_on_cicd_nodes(stack_to_install, timeout=2400) {
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300516 // stack_to_install="k8s,calico,stacklight"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200517 def common = new com.mirantis.mk.Common()
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300518 def stack = "${stack_to_install}"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200519 common.printMsg("Deploy Platform components: ${stack_to_install}", "blue")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300520 try {
521 run_cmd("""\
522 export ENV_NAME=${ENV_NAME}
523 . ./tcp_tests/utils/env_salt
524 . ./tcp_tests/utils/env_jenkins_cicd
525 export JENKINS_BUILD_TIMEOUT=${timeout}
526 JOB_PARAMETERS=\"{
527 \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\",
528 \\\"STACK_INSTALL\\\": \\\"${stack}\\\"
529 }\"
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200530 JOB_PREFIX="[ ${ENV_NAME}/{build_number}:platform {time} ] "
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300531 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 +0300532 """)
Dennis Dmitriev44f6db22018-10-31 16:07:56 +0200533 // Wait for IO calm down on cluster nodes
534 sleep(60)
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300535 } catch (e) {
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300536 common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple")
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300537 def workflow_details=run_cmd_stdout("""\
538 . ./tcp_tests/utils/env_salt
539 . ./tcp_tests/utils/env_jenkins_cicd
540 export JOB_NAME=deploy_openstack
541 export BUILD_NUMBER=lastBuild
542 python ./tcp_tests/utils/get_jenkins_job_stages.py
543 """)
544 throw new Exception(workflow_details)
545 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300546}
547
548def sanity_check_component(stack) {
549 // Run sanity check for the component ${stack}.
550 // Result will be stored in JUnit XML file deploy_${stack}.xml
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300551 try {
552 run_cmd("""\
Dennis Dmitriev27007322019-05-03 19:21:44 +0300553 export LOG_NAME=deploy_${stack}_test.log
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300554 py.test --junit-xml=deploy_${stack}.xml -m check_${stack}
555 """)
556 } catch (e) {
557 def String junit_report_xml = readFile("deploy_${stack}.xml")
558 def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml)
559 def String msg = "Sanity check for '${stack}' failed, JUnit report:\n"
560 throw new Exception(msg + junit_report_xml_pretty)
561 }
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300562}
563
Dennis Dmitrievefe5c0b2018-10-24 20:35:26 +0300564def download_logs(archive_name_prefix) {
565 // Archive and download logs and debug info from salt nodes in the lab
566 // Do not fail in case of error to not lose the original error from the parent exception.
567 def common = new com.mirantis.mk.Common()
568 common.printMsg("Downloading nodes logs by ${archive_name_prefix}", "blue")
569 run_cmd("""\
570 export TESTS_CONFIGS=\$(pwd)/${ENV_NAME}_salt_deployed.ini
571 ./tcp_tests/utils/get_logs.py --archive-name-prefix ${archive_name_prefix} || true
572 """)
573}
574
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300575def devops_snapshot_info(snapshot_name) {
576 // Print helper message after snapshot
577 def common = new com.mirantis.mk.Common()
578
579 def SALT_MASTER_IP=run_cmd_stdout("""\
580 . ./tcp_tests/utils/env_salt
581 echo \$SALT_MASTER_IP
582 """).trim().split().last()
583 def login = "root" // set fixed 'root' login for now
584 def password = "r00tme" // set fixed 'root' login for now
585 def key_file = "${env.WORKSPACE}/id_rsa" // set fixed path in the WORKSPACE
586 def VENV_PATH='/home/jenkins/fuel-devops30'
587
588 common.printMsg("""\
589#########################
590# To revert the snapshot:
591#########################
592. ${VENV_PATH}/bin/activate;
593dos.py revert ${ENV_NAME} ${snapshot_name};
594dos.py resume ${ENV_NAME};
595# dos.py time-sync ${ENV_NAME}; # Optional\n
596ssh -i ${key_file} ${login}@${SALT_MASTER_IP} # Optional password: ${password}
597""", "cyan")
598}
599
Dennis Dmitriev2bacadf2019-05-03 17:26:11 +0300600def devops_snapshot(stacks) {
601 // Make snapshots with names "${stack}_deployed" for each stack
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300602 // for all VMs in the environment.
Dennis Dmitriev2bacadf2019-05-03 17:26:11 +0300603
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300604 run_cmd("""\
605 dos.py suspend ${ENV_NAME}
Dennis Dmitriev2bacadf2019-05-03 17:26:11 +0300606 """)
607
608 for (stack in "${stacks}".split(",")) {
609 run_cmd("""\
610 dos.py snapshot ${ENV_NAME} ${stack}_deployed
611 """)
612 devops_snapshot_info("${stack}_deployed")
613 }
614
615 run_cmd("""\
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300616 dos.py resume ${ENV_NAME}
Dennis Dmitriev1fed6662018-07-27 18:22:13 +0300617 sleep 20 # Wait for I/O on the host calms down
Dennis Dmitrievee5ef232018-08-31 13:53:18 +0300618
619 CFG01_NAME=\$(dos.py show-resources ${ENV_NAME} | grep ^cfg01 | cut -d" " -f1)
620 dos.py time-sync ${ENV_NAME} --skip-sync \${CFG01_NAME}
Dennis Dmitriev8df35442018-07-31 08:40:20 +0300621 """)
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300622}
623
Dennis Dmitrievfde667f2018-07-23 16:26:50 +0300624def get_steps_list(steps) {
625 // Make a list from comma separated string
626 return steps.split(',').collect { it.split(':')[0] }
627}
628
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300629def create_xml_report(String filename, String classname, String name, String status='success', String status_message='', String text='', String stdout='', String stderr='') {
630 // <filename> is name of the XML report file that will be created
631 // <status> is one of the 'success', 'skipped', 'failure' or 'error'
632 // 'error' status is assumed as 'Blocker' in TestRail reporter
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300633
634 // Replace '<' and '>' to '&lt;' and '&gt;' to avoid conflicts between xml tags in the message and JUnit report
635 def String text_filtered = text.replaceAll("<","&lt;").replaceAll(">", "&gt;")
636
Dennis Dmitriev39666082018-08-29 15:30:45 +0300637 def script = """\
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300638<?xml version=\"1.0\" encoding=\"utf-8\"?>
639 <testsuite>
640 <testcase classname=\"${classname}\" name=\"${name}\" time=\"0\">
Dennis Dmitrievb08c0772018-10-17 15:10:26 +0300641 <${status} message=\"${status_message}\">${text_filtered}</${status}>
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300642 <system-out>${stdout}</system-out>
643 <system-err>${stderr}</system-err>
644 </testcase>
645 </testsuite>
Dennis Dmitriev39666082018-08-29 15:30:45 +0300646"""
647 writeFile(file: filename, text: script, encoding: "UTF-8")
Dennis Dmitrievb3b37492018-07-08 21:23:00 +0300648}
649
Dennis Dmitrievaf59f7e2019-04-02 11:54:06 +0000650def upload_results_to_testrail(report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options=[]) {
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300651 def venvPath = '/home/jenkins/venv_testrail_reporter'
Tatyana Leontovichbfbc4832018-12-27 12:47:23 +0200652 def testPlanDesc = env.LAB_CONFIG_NAME
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300653 def testrailURL = "https://mirantis.testrail.com"
654 def testrailProject = "Mirantis Cloud Platform"
Vladimir Jigulinb02dcc52019-04-02 15:57:53 +0400655 def testPlanNamePrefix = env.TEST_PLAN_NAME_PREFIX ?: "[MCP-Q2]System"
656 def testPlanName = "${testPlanNamePrefix}-${MCP_VERSION}-${new Date().format('yyyy-MM-dd')}"
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300657 def testrailMilestone = "MCP1.1"
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300658 def testrailCaseMaxNameLenght = 250
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300659 def jobURL = env.BUILD_URL
660
661 def reporterOptions = [
662 "--verbose",
663 "--env-description \"${testPlanDesc}\"",
664 "--testrail-run-update",
665 "--testrail-url \"${testrailURL}\"",
666 "--testrail-user \"\${TESTRAIL_USER}\"",
667 "--testrail-password \"\${TESTRAIL_PASSWORD}\"",
668 "--testrail-project \"${testrailProject}\"",
669 "--testrail-plan-name \"${testPlanName}\"",
670 "--testrail-milestone \"${testrailMilestone}\"",
671 "--testrail-suite \"${testSuiteName}\"",
672 "--xunit-name-template \"${methodname}\"",
673 "--testrail-name-template \"${testrail_name_template}\"",
674 "--test-results-link \"${jobURL}\"",
Dennis Dmitriev707b2152018-10-23 19:12:48 +0300675 "--testrail-case-max-name-lenght ${testrailCaseMaxNameLenght}",
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300676 ] + reporter_extra_options
677
678 def script = """
679 . ${venvPath}/bin/activate
680 set -ex
Dmitry Tyzhnenko80ce0202019-02-07 13:27:19 +0200681 report ${reporterOptions.join(' ')} '${report_name}'
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300682 """
683
684 def testrail_cred_id = params.TESTRAIL_CRED ?: 'testrail_system_tests'
685
686 withCredentials([
687 [$class : 'UsernamePasswordMultiBinding',
688 credentialsId : testrail_cred_id,
689 passwordVariable: 'TESTRAIL_PASSWORD',
690 usernameVariable: 'TESTRAIL_USER']
691 ]) {
Dennis Dmitrievfbf42272018-10-23 00:19:50 +0300692 return run_cmd_stdout(script)
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300693 }
694}
695
696
697def create_deploy_result_report(deploy_expected_stacks, result, text) {
698 def STATUS_MAP = ['SUCCESS': 'success', 'FAILURE': 'failure', 'UNSTABLE': 'failure', 'ABORTED': 'error']
699 def classname = "Deploy"
700 def name = "deployment_${ENV_NAME}"
Dennis Dmitriev39666082018-08-29 15:30:45 +0300701 def filename = "${name}.xml"
Dennis Dmitrieve4b831b2018-08-15 17:16:10 +0300702 def status = STATUS_MAP[result ?: 'FAILURE'] // currentBuild.result *must* be set at the finish of the try/catch
703 create_xml_report(filename, classname, name, status, "Deploy components: ${deploy_expected_stacks}", text, '', '')
Dennis Dmitriev27a96792018-07-30 07:52:03 +0300704}