Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 1 | package com.mirantis.system_qa |
| 2 | |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 3 | import groovy.xml.XmlUtil |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 4 | |
Vladimir Jigulin | 6a1ef81 | 2019-03-21 19:34:07 +0400 | [diff] [blame] | 5 | def is_released_version(version) { |
| 6 | return Character.isDigit(version.charAt(0)) |
| 7 | } |
| 8 | |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 9 | def 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 Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 19 | def 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 Tyzhnenko | b39de05 | 2019-03-21 17:05:07 +0200 | [diff] [blame] | 24 | def script = """\ |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 25 | set -ex; |
| 26 | . ${VENV_PATH}/bin/activate; |
| 27 | bash -c '${cmd.stripIndent()}' |
| 28 | """ |
| 29 | return sh(script: script) |
| 30 | } |
| 31 | |
Dennis Dmitriev | 8df3544 | 2018-07-31 08:40:20 +0300 | [diff] [blame] | 32 | def run_cmd(String cmd, Boolean returnStdout=false) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 33 | 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 Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 36 | def stderr_path = "/tmp/${JOB_NAME}_${BUILD_NUMBER}_stderr.log" |
Dmitry Tyzhnenko | b39de05 | 2019-03-21 17:05:07 +0200 | [diff] [blame] | 37 | 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 Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 42 | """ |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 43 | try { |
Dmitry Tyzhnenko | b39de05 | 2019-03-21 17:05:07 +0200 | [diff] [blame] | 44 | 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 Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 50 | } catch (e) { |
Dennis Dmitriev | 8df3544 | 2018-07-31 08:40:20 +0300 | [diff] [blame] | 51 | def stderr = readFile("${stderr_path}") |
| 52 | def error_message = e.message + "\n<<<<<< STDERR: >>>>>>\n" + stderr |
Dmitry Tyzhnenko | b39de05 | 2019-03-21 17:05:07 +0200 | [diff] [blame] | 53 | common.printMsg(error_message, "red") |
| 54 | common.printMsg("", "reset") |
Dennis Dmitriev | 8df3544 | 2018-07-31 08:40:20 +0300 | [diff] [blame] | 55 | throw new Exception(error_message) |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 56 | } finally { |
Dennis Dmitriev | 8df3544 | 2018-07-31 08:40:20 +0300 | [diff] [blame] | 57 | sh(script: "rm ${stderr_path} || true") |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 58 | } |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | def run_cmd_stdout(cmd) { |
Dennis Dmitriev | 8df3544 | 2018-07-31 08:40:20 +0300 | [diff] [blame] | 62 | return run_cmd(cmd, true) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 63 | } |
| 64 | |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 65 | def 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 Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 78 | common.printMsg("Job '${job_name}' failed, getting details", "purple") |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 79 | 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 | |
| 88 | def 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 Dmitriev | 4115ae7 | 2018-11-20 13:43:35 +0200 | [diff] [blame] | 99 | 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 Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 115 | if (job_info.getResult() != "SUCCESS") { |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 116 | def job_url = "${build_url}" |
| 117 | currentBuild.result = build_status |
| 118 | if (junit_report_filename) { |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 119 | common.printMsg("Job '${job_url}' failed with status ${build_status}, getting details", "purple") |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 120 | 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 Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 131 | throw new Exception(msg + junit_report_xml_pretty) |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 132 | } else { |
| 133 | throw new Exception("Job '${job_url}' failed with status ${build_status}, please check the console output.") |
| 134 | } |
| 135 | } |
| 136 | } |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 137 | |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 138 | def prepare_working_dir(env_manager) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 139 | println "Clean the working directory ${env.WORKSPACE}" |
| 140 | deleteDir() |
| 141 | |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 142 | 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 Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 173 | println "Remove config drive ISO" |
| 174 | run_cmd("""\ |
| 175 | rm /home/jenkins/images/${CFG01_CONFIG_IMAGE_NAME} || true |
| 176 | """) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 177 | |
| 178 | run_cmd("""\ |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 179 | 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 Dmitriev | 8df3544 | 2018-07-31 08:40:20 +0300 | [diff] [blame] | 185 | """) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 186 | } |
| 187 | |
Dennis Dmitriev | 056ecbf | 2019-05-20 15:36:29 +0300 | [diff] [blame] | 188 | def update_working_dir(Boolean updateRequirements=true) { |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 189 | // Use to fetch a patchset from gerrit to the working dir |
| 190 | run_cmd("""\ |
| 191 | if [ -n "$TCP_QA_REFS" ]; then |
| 192 | set -e |
Sergey Galkin | 173f4c2 | 2019-08-22 15:23:50 +0400 | [diff] [blame] | 193 | git reset --hard && git fetch https://review.gerrithub.io/Mirantis/tcp-qa $TCP_QA_REFS && git checkout FETCH_HEAD || exit \$? |
Dennis Dmitriev | 056ecbf | 2019-05-20 15:36:29 +0300 | [diff] [blame] | 194 | fi""") |
| 195 | if (updateRequirements) { |
| 196 | run_cmd("""\ |
| 197 | pip install -r tcp_tests/requirements.txt |
| 198 | """) |
| 199 | } |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 200 | } |
| 201 | |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 202 | def swarm_bootstrap_salt_cluster_devops() { |
| 203 | def common = new com.mirantis.mk.Common() |
Vladimir Jigulin | 6a1ef81 | 2019-03-21 19:34:07 +0400 | [diff] [blame] | 204 | def cookiecutter_template_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: is_released_version(env.MCP_VERSION) ? "release/${env.MCP_VERSION}" : 'master' |
Dennis Dmitriev | e388465 | 2019-03-05 14:26:44 +0200 | [diff] [blame] | 205 | def salt_models_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: "release/${env.MCP_VERSION}" |
Tatyana Leontovich | 8ac26d7 | 2019-05-15 23:33:38 +0300 | [diff] [blame] | 206 | def jenkins_pipelines_branch = env.JENKINS_PIPELINE_BRANCH ?: '' |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 207 | 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 ?: '' |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 211 | def mcp_common_scripts_refs = env.MCP_COMMON_SCRIPTS_REFS ?: '' |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 212 | def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: '' |
Dennis Dmitriev | d9168b5 | 2018-12-19 18:53:52 +0200 | [diff] [blame] | 213 | def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: '' |
| 214 | def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: '' |
Tatyana Leontovich | 1f06916 | 2019-04-02 19:57:55 +0300 | [diff] [blame] | 215 | def deploy_network_mask = env.DEPLOY_NETWORK_NETMASK ?: '' |
Dennis Dmitriev | 6346004 | 2018-12-11 13:08:11 +0200 | [diff] [blame] | 216 | def env_ipmi_user = env.IPMI_USER ?: '' |
| 217 | def env_ipmi_pass = env.IPMI_PASS ?: '' |
Oleksii Butenko | ab538de | 2019-09-23 18:26:57 +0300 | [diff] [blame^] | 218 | def env_cisco_pass = env.CISCO_PASS ?: '' |
Dennis Dmitriev | 6346004 | 2018-12-11 13:08:11 +0200 | [diff] [blame] | 219 | def env_lab_mgm_iface = env.LAB_MANAGEMENT_IFACE ?: '' |
| 220 | def env_lab_ctl_iface = env.LAB_CONTROL_IFACE ?: '' |
sgudz | b795338 | 2019-02-18 17:59:30 +0200 | [diff] [blame] | 221 | def update_repo_custom_tag = env.UPDATE_REPO_CUSTOM_TAG ?: '' |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 222 | def update_version = env.UPDATE_VERSION ?: '' |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 223 | def parameters = [ |
| 224 | string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"), |
| 225 | string(name: 'PARENT_WORKSPACE', value: pwd()), |
| 226 | string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"), |
| 227 | string(name: 'ENV_NAME', value: "${ENV_NAME}"), |
| 228 | string(name: 'MCP_VERSION', value: "${MCP_VERSION}"), |
| 229 | string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"), |
| 230 | string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"), |
| 231 | string(name: 'CFG01_CONFIG_IMAGE_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"), |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 232 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
| 233 | string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"), |
| 234 | string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"), |
| 235 | string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecutter_template_commit}"), |
| 236 | string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${salt_models_system_commit}"), |
| 237 | string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"), |
| 238 | string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"), |
Dennis Dmitriev | d9168b5 | 2018-12-19 18:53:52 +0200 | [diff] [blame] | 239 | string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"), |
| 240 | string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"), |
Tatyana Leontovich | 1f06916 | 2019-04-02 19:57:55 +0300 | [diff] [blame] | 241 | string(name: 'DEPLOY_NETWORK_NETMASK', value: "${deploy_network_mask}"), |
Dennis Dmitriev | 6346004 | 2018-12-11 13:08:11 +0200 | [diff] [blame] | 242 | string(name: 'IPMI_USER', value: env_ipmi_user), |
| 243 | string(name: 'IPMI_PASS', value: env_ipmi_pass), |
Oleksii Butenko | ab538de | 2019-09-23 18:26:57 +0300 | [diff] [blame^] | 244 | string(name: 'CISCO_PASS', value: env_cisco_pass), |
Dennis Dmitriev | 6346004 | 2018-12-11 13:08:11 +0200 | [diff] [blame] | 245 | string(name: 'LAB_MANAGEMENT_IFACE', value: env_lab_mgm_iface), |
| 246 | string(name: 'LAB_CONTROL_IFACE', value: env_lab_ctl_iface), |
sgudz | b795338 | 2019-02-18 17:59:30 +0200 | [diff] [blame] | 247 | string(name: 'UPDATE_REPO_CUSTOM_TAG', value: "${update_repo_custom_tag}"), |
Tatyana Leontovich | 8ac26d7 | 2019-05-15 23:33:38 +0300 | [diff] [blame] | 248 | string(name: 'JENKINS_PIPELINE_BRANCH', value: "${jenkins_pipelines_branch}"), |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 249 | string(name: 'MCP_COMMON_SCRIPTS_REFS', value: "${mcp_common_scripts_refs}"), |
| 250 | string(name: 'UPDATE_VERSION', value: "${update_version}"), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 251 | booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false), |
| 252 | ] |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 253 | |
| 254 | build_pipeline_job('swarm-bootstrap-salt-cluster-devops', parameters) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 255 | } |
| 256 | |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 257 | def swarm_bootstrap_salt_cluster_heat(String jenkins_slave_node_name) { |
| 258 | // jenkins_slave_node_name |
| 259 | def common = new com.mirantis.mk.Common() |
| 260 | def cookiecutter_template_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: "release/${env.MCP_VERSION}" |
| 261 | def salt_models_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: "release/${env.MCP_VERSION}" |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 262 | def mcp_common_scripts_refs = env.MCP_COMMON_SCRIPTS_REFS ?: '' |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 263 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
| 264 | def mk_pipelines_ref = env.MK_PIPELINES_REF ?: '' |
Tatyana Leontovich | 8ac26d7 | 2019-05-15 23:33:38 +0300 | [diff] [blame] | 265 | def jenkins_pipelines_branch = env.JENKINS_PIPELINE_BRANCH ?: '' |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 266 | def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: '' |
| 267 | def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: '' |
| 268 | def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: '' |
| 269 | def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: '' |
| 270 | def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: '' |
| 271 | def env_ipmi_user = env.IPMI_USER ?: '' |
| 272 | def env_ipmi_pass = env.IPMI_PASS ?: '' |
Oleksii Butenko | ab538de | 2019-09-23 18:26:57 +0300 | [diff] [blame^] | 273 | def env_cisco_pass = env.CISCO_PASS ?: '' |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 274 | def env_lab_mgm_iface = env.LAB_MANAGEMENT_IFACE ?: '' |
| 275 | def env_lab_ctl_iface = env.LAB_CONTROL_IFACE ?: '' |
| 276 | def update_repo_custom_tag = env.UPDATE_REPO_CUSTOM_TAG ?: '' |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 277 | def update_version = env.UPDATE_VERSION ?: '' |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 278 | def parameters = [ |
| 279 | string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"), |
| 280 | string(name: 'JENKINS_SLAVE_NODE_NAME', value: jenkins_slave_node_name), |
| 281 | string(name: 'PARENT_WORKSPACE', value: pwd()), |
| 282 | string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"), |
| 283 | string(name: 'ENV_NAME', value: "${ENV_NAME}"), |
| 284 | string(name: 'MCP_VERSION', value: "${MCP_VERSION}"), |
| 285 | string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"), |
| 286 | string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"), |
| 287 | string(name: 'CFG01_CONFIG_IMAGE_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"), |
| 288 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
| 289 | string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"), |
| 290 | string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"), |
| 291 | string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecutter_template_commit}"), |
| 292 | string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${salt_models_system_commit}"), |
| 293 | string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"), |
| 294 | string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"), |
| 295 | string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"), |
| 296 | string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"), |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 297 | string(name: 'MCP_COMMON_SCRIPTS_REFS', value: "${mcp_common_scripts_refs}"), |
| 298 | string(name: 'UPDATE_VERSION', value: "${update_version}"), |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 299 | string(name: 'IPMI_USER', value: env_ipmi_user), |
| 300 | string(name: 'IPMI_PASS', value: env_ipmi_pass), |
Oleksii Butenko | ab538de | 2019-09-23 18:26:57 +0300 | [diff] [blame^] | 301 | string(name: 'CISCO_PASS', value: env_cisco_pass), |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 302 | string(name: 'LAB_MANAGEMENT_IFACE', value: env_lab_mgm_iface), |
| 303 | string(name: 'LAB_CONTROL_IFACE', value: env_lab_ctl_iface), |
| 304 | string(name: 'UPDATE_REPO_CUSTOM_TAG', value: "${update_repo_custom_tag}"), |
| 305 | string(name: 'OS_AUTH_URL', value: "${OS_AUTH_URL}"), |
| 306 | string(name: 'OS_PROJECT_NAME', value: "${OS_PROJECT_NAME}"), |
| 307 | string(name: 'OS_USER_DOMAIN_NAME', value: "${OS_USER_DOMAIN_NAME}"), |
| 308 | string(name: 'OS_CREDENTIALS', value: "${OS_CREDENTIALS}"), |
| 309 | string(name: 'LAB_PARAM_DEFAULTS', value: "${LAB_PARAM_DEFAULTS}"), |
Tatyana Leontovich | 8ac26d7 | 2019-05-15 23:33:38 +0300 | [diff] [blame] | 310 | string(name: 'JENKINS_PIPELINE_BRANCH', value: "${jenkins_pipelines_branch}"), |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 311 | booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false), |
| 312 | ] |
| 313 | |
| 314 | build_pipeline_job('swarm-bootstrap-salt-cluster-heat', parameters) |
| 315 | } |
| 316 | |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 317 | def swarm_deploy_cicd(String stack_to_install, String install_timeout, String jenkins_slave_node_name, Boolean make_snapshot_stages) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 318 | // Run openstack_deploy job on cfg01 Jenkins for specified stacks |
| 319 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 320 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 321 | def parameters = [ |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 322 | string(name: 'PARENT_NODE_NAME', value: jenkins_slave_node_name), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 323 | string(name: 'PARENT_WORKSPACE', value: pwd()), |
| 324 | string(name: 'ENV_NAME', value: "${ENV_NAME}"), |
| 325 | string(name: 'STACK_INSTALL', value: stack_to_install), |
Dennis Dmitriev | 07d5b8a | 2018-10-29 19:43:00 +0200 | [diff] [blame] | 326 | string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout), |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 327 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 328 | booleanParam(name: 'MAKE_SNAPSHOT_STAGES', value: make_snapshot_stages), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 329 | booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false), |
| 330 | ] |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 331 | build_pipeline_job('swarm-deploy-cicd', parameters) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 332 | } |
| 333 | |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 334 | def swarm_deploy_platform(String stack_to_install, String install_timeout, String jenkins_slave_node_name, Boolean make_snapshot_stages) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 335 | // Run openstack_deploy job on CICD Jenkins for specified stacks |
| 336 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 337 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 338 | def parameters = [ |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 339 | string(name: 'PARENT_NODE_NAME', value: jenkins_slave_node_name), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 340 | string(name: 'PARENT_WORKSPACE', value: pwd()), |
| 341 | string(name: 'ENV_NAME', value: "${ENV_NAME}"), |
| 342 | string(name: 'STACK_INSTALL', value: stack_to_install), |
Dennis Dmitriev | 07d5b8a | 2018-10-29 19:43:00 +0200 | [diff] [blame] | 343 | string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout), |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 344 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 345 | booleanParam(name: 'MAKE_SNAPSHOT_STAGES', value: make_snapshot_stages), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 346 | booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false), |
| 347 | ] |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 348 | build_pipeline_job('swarm-deploy-platform', parameters) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 349 | } |
| 350 | |
sgudz | 2ed9585 | 2019-03-01 14:48:52 +0200 | [diff] [blame] | 351 | def swarm_deploy_platform_non_cicd(String stack_to_install, String install_timeout) { |
| 352 | // Run openstack_deploy job on day01 Jenkins for specified stacks |
| 353 | def common = new com.mirantis.mk.Common() |
| 354 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
| 355 | def parameters = [ |
| 356 | string(name: 'PARENT_NODE_NAME', value: "${NODE_NAME}"), |
| 357 | string(name: 'PARENT_WORKSPACE', value: pwd()), |
| 358 | string(name: 'ENV_NAME', value: "${ENV_NAME}"), |
| 359 | string(name: 'STACK_INSTALL', value: stack_to_install), |
| 360 | string(name: 'STACK_INSTALL_TIMEOUT', value: install_timeout), |
| 361 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
| 362 | booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false), |
| 363 | ] |
| 364 | build_pipeline_job('swarm-deploy-platform-without-cicd', parameters) |
| 365 | } |
| 366 | |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 367 | def swarm_run_pytest(String passed_steps, String jenkins_slave_node_name, Boolean make_snapshot_stages) { |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 368 | // Run pytest tests |
| 369 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 370 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
Oleksii Butenko | ec78c9f | 2019-04-04 16:26:20 +0300 | [diff] [blame] | 371 | def tempest_extra_args = env.TEMPEST_EXTRA_ARGS ?: '' |
Tatyana Leontovich | 05f7940 | 2018-11-16 15:04:02 +0200 | [diff] [blame] | 372 | def tempest_image_version = env.TEMPEST_IMAGE_VERSION ?: 'pike' |
Tatyana Leontovich | bfbc483 | 2018-12-27 12:47:23 +0200 | [diff] [blame] | 373 | def tempest_target=env.TEMPEST_TARGET ?: 'gtw01' |
Andrew Baraniuk | d158634 | 2019-06-12 11:41:20 +0300 | [diff] [blame] | 374 | def tempest_pattern=env.TEMPEST_PATTERN ?: 'tempest' |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 375 | def parameters = [ |
| 376 | string(name: 'ENV_NAME', value: "${ENV_NAME}"), |
| 377 | string(name: 'PASSED_STEPS', value: passed_steps), |
| 378 | string(name: 'RUN_TEST_OPTS', value: "${RUN_TEST_OPTS}"), |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 379 | string(name: 'PARENT_NODE_NAME', value: jenkins_slave_node_name), |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 380 | string(name: 'PARENT_WORKSPACE', value: pwd()), |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 381 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 382 | booleanParam(name: 'SHUTDOWN_ENV_ON_TEARDOWN', value: false), |
| 383 | string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"), |
| 384 | string(name: 'REPOSITORY_SUITE', value: "${MCP_VERSION}"), |
| 385 | string(name: 'MCP_IMAGE_PATH1604', value: "${MCP_IMAGE_PATH1604}"), |
| 386 | string(name: 'IMAGE_PATH_CFG01_DAY01', value: "${IMAGE_PATH_CFG01_DAY01}"), |
Tatyana Leontovich | 05f7940 | 2018-11-16 15:04:02 +0200 | [diff] [blame] | 387 | string(name: 'TEMPEST_IMAGE_VERSION', value: "${tempest_image_version}"), |
Tatyana Leontovich | bfbc483 | 2018-12-27 12:47:23 +0200 | [diff] [blame] | 388 | string(name: 'TEMPEST_TARGET', value: "${tempest_target}"), |
Andrew Baraniuk | d158634 | 2019-06-12 11:41:20 +0300 | [diff] [blame] | 389 | string(name: 'TEMPEST_PATTERN', value: "${tempest_pattern}"), |
Oleksii Butenko | ec78c9f | 2019-04-04 16:26:20 +0300 | [diff] [blame] | 390 | string(name: 'TEMPEST_EXTRA_ARGS', value: "${tempest_extra_args}"), |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 391 | booleanParam(name: 'MAKE_SNAPSHOT_STAGES', value: make_snapshot_stages), |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 392 | ] |
| 393 | common.printMsg("Start building job 'swarm-run-pytest' with parameters:", "purple") |
| 394 | common.prettyPrint(parameters) |
| 395 | build job: 'swarm-run-pytest', |
| 396 | parameters: parameters |
| 397 | } |
| 398 | |
Tatyana Leontovich | c18c814 | 2019-05-16 15:20:33 +0300 | [diff] [blame] | 399 | def swarm_testrail_report(String passed_steps, String node_with_reports) { |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 400 | // Run pytest tests |
| 401 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 402 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
Tatyana Leontovich | f371844 | 2018-10-31 13:36:13 +0200 | [diff] [blame] | 403 | def tempest_test_suite_name = env.TEMPEST_TEST_SUITE_NAME |
Vladimir Jigulin | 91bb7c9 | 2019-04-04 18:15:45 +0400 | [diff] [blame] | 404 | def test_plan_name_prefix = env.TEST_PLAN_NAME_PREFIX ?: '' |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 405 | def parameters = [ |
| 406 | string(name: 'ENV_NAME', value: "${ENV_NAME}"), |
Tatyana Leontovich | bfbc483 | 2018-12-27 12:47:23 +0200 | [diff] [blame] | 407 | string(name: 'LAB_CONFIG_NAME', value: "${LAB_CONFIG_NAME}"), |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 408 | string(name: 'MCP_VERSION', value: "${MCP_VERSION}"), |
| 409 | string(name: 'PASSED_STEPS', value: passed_steps), |
Tatyana Leontovich | c18c814 | 2019-05-16 15:20:33 +0300 | [diff] [blame] | 410 | string(name: 'PARENT_NODE_NAME', value: node_with_reports), |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 411 | string(name: 'PARENT_WORKSPACE', value: pwd()), |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 412 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
Tatyana Leontovich | f371844 | 2018-10-31 13:36:13 +0200 | [diff] [blame] | 413 | string(name: 'TEMPEST_TEST_SUITE_NAME', value: "${tempest_test_suite_name}"), |
Vladimir Jigulin | 91bb7c9 | 2019-04-04 18:15:45 +0400 | [diff] [blame] | 414 | string(name: 'TEST_PLAN_NAME_PREFIX', value: "${test_plan_name_prefix}"), |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 415 | ] |
| 416 | common.printMsg("Start building job 'swarm-testrail-report' with parameters:", "purple") |
| 417 | common.prettyPrint(parameters) |
| 418 | build job: 'swarm-testrail-report', |
| 419 | parameters: parameters |
| 420 | } |
| 421 | |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 422 | def generate_cookied_model(IPV4_NET_ADMIN, IPV4_NET_CONTROL, IPV4_NET_TENANT, IPV4_NET_EXTERNAL) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 423 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 424 | println("IPV4_NET_ADMIN=" + IPV4_NET_ADMIN) |
| 425 | println("IPV4_NET_CONTROL=" + IPV4_NET_CONTROL) |
| 426 | println("IPV4_NET_TENANT=" + IPV4_NET_TENANT) |
| 427 | println("IPV4_NET_EXTERNAL=" + IPV4_NET_EXTERNAL) |
| 428 | |
Vladimir Jigulin | 6a1ef81 | 2019-03-21 19:34:07 +0400 | [diff] [blame] | 429 | def cookiecuttertemplate_commit = env.COOKIECUTTER_TEMPLATE_COMMIT ?: is_released_version(env.MCP_VERSION) ? "release/${env.MCP_VERSION}" : 'master' |
Dennis Dmitriev | e388465 | 2019-03-05 14:26:44 +0200 | [diff] [blame] | 430 | def saltmodels_system_commit = env.SALT_MODELS_SYSTEM_COMMIT ?: "release/${env.MCP_VERSION}" |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 431 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
| 432 | def environment_template_ref_change = env.ENVIRONMENT_TEMPLATE_REF_CHANGE ?: '' |
| 433 | def cookiecutter_ref_change = env.COOKIECUTTER_REF_CHANGE ?: '' |
Tatyana Leontovich | 8ac26d7 | 2019-05-15 23:33:38 +0300 | [diff] [blame] | 434 | def jenkins_pipelines_branch=env.JENKINS_PIPELINE_BRANCH ?: '' |
sgudz | b795338 | 2019-02-18 17:59:30 +0200 | [diff] [blame] | 435 | def update_repo_custom_tag = env.UPDATE_REPO_CUSTOM_TAG ?: '' |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 436 | def update_version = env.UPDATE_VERSION ?: '' |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 437 | |
| 438 | def parameters = [ |
| 439 | string(name: 'LAB_CONTEXT_NAME', value: "${LAB_CONFIG_NAME}"), |
| 440 | string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"), |
| 441 | string(name: 'DOMAIN_NAME', value: "${LAB_CONFIG_NAME}.local"), |
| 442 | string(name: 'REPOSITORY_SUITE', value: "${env.MCP_VERSION}"), |
| 443 | string(name: 'SALT_MODELS_SYSTEM_COMMIT', value: "${saltmodels_system_commit}"), |
| 444 | string(name: 'COOKIECUTTER_TEMPLATE_COMMIT', value: "${cookiecuttertemplate_commit}"), |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 445 | string(name: 'COOKIECUTTER_REF_CHANGE', value: "${cookiecutter_ref_change}"), |
| 446 | string(name: 'ENVIRONMENT_TEMPLATE_REF_CHANGE', value: "${environment_template_ref_change}"), |
| 447 | string(name: 'TCP_QA_REVIEW', value: "${tcp_qa_refs}"), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 448 | string(name: 'IPV4_NET_ADMIN', value: IPV4_NET_ADMIN), |
| 449 | string(name: 'IPV4_NET_CONTROL', value: IPV4_NET_CONTROL), |
| 450 | string(name: 'IPV4_NET_TENANT', value: IPV4_NET_TENANT), |
| 451 | string(name: 'IPV4_NET_EXTERNAL', value: IPV4_NET_EXTERNAL), |
sgudz | c97385a | 2018-11-29 17:01:53 +0200 | [diff] [blame] | 452 | string(name: 'IPMI_USER', value: env.IPMI_USER), |
| 453 | string(name: 'IPMI_PASS', value: env.IPMI_PASS), |
Oleksii Butenko | ab538de | 2019-09-23 18:26:57 +0300 | [diff] [blame^] | 454 | string(name: 'CISCO_PASS', value: env.CISCO_PASS), |
sgudz | b795338 | 2019-02-18 17:59:30 +0200 | [diff] [blame] | 455 | string(name: 'UPDATE_REPO_CUSTOM_TAG', value: "${update_repo_custom_tag}"), |
Tatyana Leontovich | 8ac26d7 | 2019-05-15 23:33:38 +0300 | [diff] [blame] | 456 | string(name: 'JENKINS_PIPELINE_BRANCH', value: "${jenkins_pipelines_branch}"), |
sgudz | c97385a | 2018-11-29 17:01:53 +0200 | [diff] [blame] | 457 | string(name: 'IMAGE_PATH_CFG01_DAY01', value: env.IMAGE_PATH_CFG01_DAY01), |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 458 | string(name: 'UPDATE_VERSION', value: "${update_version}"), |
| 459 | |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 460 | ] |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 461 | |
| 462 | build_shell_job('swarm-cookied-model-generator', parameters, "deploy_generate_model.xml") |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 463 | } |
| 464 | |
Dennis Dmitriev | 4c38347 | 2019-04-12 13:58:06 +0300 | [diff] [blame] | 465 | def generate_configdrive_iso(SALT_MASTER_IP, ADMIN_NETWORK_GW) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 466 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 467 | println("SALT_MASTER_IP=" + SALT_MASTER_IP) |
Dennis Dmitriev | f220d97 | 2018-10-10 15:19:14 +0300 | [diff] [blame] | 468 | println("ADMIN_NETWORK_GW=" + ADMIN_NETWORK_GW) |
| 469 | |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 470 | def mk_pipelines_ref = env.MK_PIPELINES_REF ?: '' |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 471 | def mcp_common_scripts_ref = env.MCP_COMMON_SCRIPTS_REFS ?: '' |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 472 | def pipeline_library_ref = env.PIPELINE_LIBRARY_REF ?: '' |
Dennis Dmitriev | f220d97 | 2018-10-10 15:19:14 +0300 | [diff] [blame] | 473 | def tcp_qa_refs = env.TCP_QA_REFS ?: '' |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 474 | def update_version = env.UPDATE_VERSION?: 'proposed' |
Dennis Dmitriev | d9168b5 | 2018-12-19 18:53:52 +0200 | [diff] [blame] | 475 | def mcp_salt_repo_url = env.MCP_SALT_REPO_URL ?: '' |
| 476 | def mcp_salt_repo_key = env.MCP_SALT_REPO_KEY ?: '' |
Tatyana Leontovich | 1f06916 | 2019-04-02 19:57:55 +0300 | [diff] [blame] | 477 | def deploy_network_mask = env.DEPLOY_NETWORK_NETMASK ?: '' |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 478 | |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 479 | def parameters = [ |
| 480 | string(name: 'CLUSTER_NAME', value: "${LAB_CONFIG_NAME}"), |
Dmitry Tyzhnenko | 240b67c | 2019-05-21 16:55:55 +0300 | [diff] [blame] | 481 | string(name: 'MODEL_URL', value: "http://172.19.112.216:8098/${LAB_CONFIG_NAME}.git"), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 482 | string(name: 'MODEL_URL_OBJECT_TYPE', value: "git"), |
| 483 | booleanParam(name: 'DOWNLOAD_CONFIG_DRIVE', value: true), |
| 484 | string(name: 'MCP_VERSION', value: "${MCP_VERSION}"), |
Dennis Dmitriev | e388465 | 2019-03-05 14:26:44 +0200 | [diff] [blame] | 485 | string(name: 'COMMON_SCRIPTS_COMMIT', value: "release/${env.MCP_VERSION}"), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 486 | string(name: 'NODE_NAME', value: "${NODE_NAME}"), |
| 487 | string(name: 'CONFIG_DRIVE_ISO_NAME', value: "${CFG01_CONFIG_IMAGE_NAME}"), |
| 488 | string(name: 'SALT_MASTER_DEPLOY_IP', value: SALT_MASTER_IP), |
Dennis Dmitriev | f220d97 | 2018-10-10 15:19:14 +0300 | [diff] [blame] | 489 | string(name: 'DEPLOY_NETWORK_GW', value: "${ADMIN_NETWORK_GW}"), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 490 | string(name: 'PIPELINE_REPO_URL', value: "https://github.com/Mirantis"), |
| 491 | booleanParam(name: 'PIPELINES_FROM_ISO', value: true), |
Dennis Dmitriev | d9168b5 | 2018-12-19 18:53:52 +0200 | [diff] [blame] | 492 | string(name: 'MCP_SALT_REPO_URL', value: "${mcp_salt_repo_url}"), |
| 493 | string(name: 'MCP_SALT_REPO_KEY', value: "${mcp_salt_repo_key}"), |
Tatyana Leontovich | 1f06916 | 2019-04-02 19:57:55 +0300 | [diff] [blame] | 494 | string(name: 'DEPLOY_NETWORK_NETMASK', value: "${deploy_network_mask}"), |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 495 | string(name: 'PIPELINE_LIBRARY_REF', value: "${pipeline_library_ref}"), |
| 496 | string(name: 'MK_PIPELINES_REF', value: "${mk_pipelines_ref}"), |
Dennis Dmitriev | f220d97 | 2018-10-10 15:19:14 +0300 | [diff] [blame] | 497 | string(name: 'TCP_QA_REFS', value: "${tcp_qa_refs}"), |
Tatyana Leontovich | 4718bdf | 2019-05-24 12:37:06 +0300 | [diff] [blame] | 498 | string(name: 'UPDATE_VERSION', value: "${update_version}"), |
| 499 | string(name: 'MCP_COMMON_SCRIPTS_REFS', value: "${mcp_common_scripts_ref}"), |
| 500 | string(name: 'MCP_SALT_REPO_UPDATES', value: "'deb [arch=amd64] http://mirror.mirantis.com/update/${UPDATE_VERSION}/salt-formulas/xenial xenial main'"), |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 501 | ] |
Dennis Dmitriev | f220d97 | 2018-10-10 15:19:14 +0300 | [diff] [blame] | 502 | build_pipeline_job('swarm-create-cfg-config-drive', parameters) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 503 | } |
| 504 | |
Dennis Dmitriev | 13e804b | 2018-10-09 19:25:14 +0300 | [diff] [blame] | 505 | def run_job_on_day01_node(stack_to_install, timeout=2400) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 506 | // stack_to_install="core,cicd" |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 507 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 508 | def stack = "${stack_to_install}" |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 509 | common.printMsg("Deploy DriveTrain CICD components: ${stack_to_install}", "blue") |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 510 | try { |
| 511 | run_cmd("""\ |
| 512 | export ENV_NAME=${ENV_NAME} |
| 513 | . ./tcp_tests/utils/env_salt |
| 514 | . ./tcp_tests/utils/env_jenkins_day01 |
| 515 | export JENKINS_BUILD_TIMEOUT=${timeout} |
| 516 | JOB_PARAMETERS=\"{ |
| 517 | \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\", |
| 518 | \\\"STACK_INSTALL\\\": \\\"${stack}\\\" |
| 519 | }\" |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 520 | JOB_PREFIX="[ ${ENV_NAME}/{build_number}:drivetrain {time} ] " |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 521 | python ./tcp_tests/utils/run_jenkins_job.py --verbose --job-name=deploy_openstack --job-parameters="\$JOB_PARAMETERS" --job-output-prefix="\$JOB_PREFIX" |
| 522 | """) |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 523 | // Wait for IO calm down on cluster nodes |
| 524 | sleep(60) |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 525 | } catch (e) { |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 526 | common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple") |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 527 | def workflow_details=run_cmd_stdout("""\ |
| 528 | . ./tcp_tests/utils/env_salt |
| 529 | . ./tcp_tests/utils/env_jenkins_day01 |
| 530 | export JOB_NAME=deploy_openstack |
| 531 | export BUILD_NUMBER=lastBuild |
| 532 | python ./tcp_tests/utils/get_jenkins_job_stages.py |
| 533 | """) |
| 534 | throw new Exception(workflow_details) |
| 535 | } |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 536 | } |
| 537 | |
Dennis Dmitriev | 13e804b | 2018-10-09 19:25:14 +0300 | [diff] [blame] | 538 | def run_job_on_cicd_nodes(stack_to_install, timeout=2400) { |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 539 | // stack_to_install="k8s,calico,stacklight" |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 540 | def common = new com.mirantis.mk.Common() |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 541 | def stack = "${stack_to_install}" |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 542 | common.printMsg("Deploy Platform components: ${stack_to_install}", "blue") |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 543 | try { |
| 544 | run_cmd("""\ |
| 545 | export ENV_NAME=${ENV_NAME} |
| 546 | . ./tcp_tests/utils/env_salt |
| 547 | . ./tcp_tests/utils/env_jenkins_cicd |
| 548 | export JENKINS_BUILD_TIMEOUT=${timeout} |
| 549 | JOB_PARAMETERS=\"{ |
| 550 | \\\"SALT_MASTER_URL\\\": \\\"\${SALTAPI_URL}\\\", |
| 551 | \\\"STACK_INSTALL\\\": \\\"${stack}\\\" |
| 552 | }\" |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 553 | JOB_PREFIX="[ ${ENV_NAME}/{build_number}:platform {time} ] " |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 554 | python ./tcp_tests/utils/run_jenkins_job.py --verbose --job-name=deploy_openstack --job-parameters="\$JOB_PARAMETERS" --job-output-prefix="\$JOB_PREFIX" |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 555 | """) |
Dennis Dmitriev | 44f6db2 | 2018-10-31 16:07:56 +0200 | [diff] [blame] | 556 | // Wait for IO calm down on cluster nodes |
| 557 | sleep(60) |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 558 | } catch (e) { |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 559 | common.printMsg("Product job 'deploy_openstack' failed, getting details", "purple") |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 560 | def workflow_details=run_cmd_stdout("""\ |
| 561 | . ./tcp_tests/utils/env_salt |
| 562 | . ./tcp_tests/utils/env_jenkins_cicd |
| 563 | export JOB_NAME=deploy_openstack |
| 564 | export BUILD_NUMBER=lastBuild |
| 565 | python ./tcp_tests/utils/get_jenkins_job_stages.py |
| 566 | """) |
| 567 | throw new Exception(workflow_details) |
| 568 | } |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 569 | } |
| 570 | |
| 571 | def sanity_check_component(stack) { |
| 572 | // Run sanity check for the component ${stack}. |
| 573 | // Result will be stored in JUnit XML file deploy_${stack}.xml |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 574 | try { |
| 575 | run_cmd("""\ |
Dennis Dmitriev | 2700732 | 2019-05-03 19:21:44 +0300 | [diff] [blame] | 576 | export LOG_NAME=deploy_${stack}_test.log |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 577 | py.test --junit-xml=deploy_${stack}.xml -m check_${stack} |
| 578 | """) |
| 579 | } catch (e) { |
| 580 | def String junit_report_xml = readFile("deploy_${stack}.xml") |
| 581 | def String junit_report_xml_pretty = new XmlUtil().serialize(junit_report_xml) |
| 582 | def String msg = "Sanity check for '${stack}' failed, JUnit report:\n" |
| 583 | throw new Exception(msg + junit_report_xml_pretty) |
| 584 | } |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 585 | } |
| 586 | |
Dennis Dmitriev | efe5c0b | 2018-10-24 20:35:26 +0300 | [diff] [blame] | 587 | def download_logs(archive_name_prefix) { |
| 588 | // Archive and download logs and debug info from salt nodes in the lab |
| 589 | // Do not fail in case of error to not lose the original error from the parent exception. |
| 590 | def common = new com.mirantis.mk.Common() |
| 591 | common.printMsg("Downloading nodes logs by ${archive_name_prefix}", "blue") |
| 592 | run_cmd("""\ |
| 593 | export TESTS_CONFIGS=\$(pwd)/${ENV_NAME}_salt_deployed.ini |
| 594 | ./tcp_tests/utils/get_logs.py --archive-name-prefix ${archive_name_prefix} || true |
| 595 | """) |
| 596 | } |
| 597 | |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 598 | def devops_snapshot_info(snapshot_name) { |
| 599 | // Print helper message after snapshot |
| 600 | def common = new com.mirantis.mk.Common() |
| 601 | |
| 602 | def SALT_MASTER_IP=run_cmd_stdout("""\ |
| 603 | . ./tcp_tests/utils/env_salt |
| 604 | echo \$SALT_MASTER_IP |
| 605 | """).trim().split().last() |
| 606 | def login = "root" // set fixed 'root' login for now |
| 607 | def password = "r00tme" // set fixed 'root' login for now |
| 608 | def key_file = "${env.WORKSPACE}/id_rsa" // set fixed path in the WORKSPACE |
| 609 | def VENV_PATH='/home/jenkins/fuel-devops30' |
| 610 | |
| 611 | common.printMsg("""\ |
| 612 | ######################### |
| 613 | # To revert the snapshot: |
| 614 | ######################### |
| 615 | . ${VENV_PATH}/bin/activate; |
| 616 | dos.py revert ${ENV_NAME} ${snapshot_name}; |
| 617 | dos.py resume ${ENV_NAME}; |
| 618 | # dos.py time-sync ${ENV_NAME}; # Optional\n |
| 619 | ssh -i ${key_file} ${login}@${SALT_MASTER_IP} # Optional password: ${password} |
| 620 | """, "cyan") |
| 621 | } |
| 622 | |
Dennis Dmitriev | 2bacadf | 2019-05-03 17:26:11 +0300 | [diff] [blame] | 623 | def devops_snapshot(stacks) { |
| 624 | // Make snapshots with names "${stack}_deployed" for each stack |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 625 | // for all VMs in the environment. |
Dennis Dmitriev | 2bacadf | 2019-05-03 17:26:11 +0300 | [diff] [blame] | 626 | |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 627 | run_cmd("""\ |
| 628 | dos.py suspend ${ENV_NAME} |
Dennis Dmitriev | 2bacadf | 2019-05-03 17:26:11 +0300 | [diff] [blame] | 629 | """) |
| 630 | |
| 631 | for (stack in "${stacks}".split(",")) { |
| 632 | run_cmd("""\ |
| 633 | dos.py snapshot ${ENV_NAME} ${stack}_deployed |
| 634 | """) |
| 635 | devops_snapshot_info("${stack}_deployed") |
| 636 | } |
| 637 | |
| 638 | run_cmd("""\ |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 639 | dos.py resume ${ENV_NAME} |
Dennis Dmitriev | 1fed666 | 2018-07-27 18:22:13 +0300 | [diff] [blame] | 640 | sleep 20 # Wait for I/O on the host calms down |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 641 | |
| 642 | CFG01_NAME=\$(dos.py show-resources ${ENV_NAME} | grep ^cfg01 | cut -d" " -f1) |
| 643 | dos.py time-sync ${ENV_NAME} --skip-sync \${CFG01_NAME} |
Dennis Dmitriev | 8df3544 | 2018-07-31 08:40:20 +0300 | [diff] [blame] | 644 | """) |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 645 | } |
| 646 | |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 647 | def get_steps_list(steps) { |
| 648 | // Make a list from comma separated string |
| 649 | return steps.split(',').collect { it.split(':')[0] } |
| 650 | } |
| 651 | |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 652 | def create_xml_report(String filename, String classname, String name, String status='success', String status_message='', String text='', String stdout='', String stderr='') { |
| 653 | // <filename> is name of the XML report file that will be created |
| 654 | // <status> is one of the 'success', 'skipped', 'failure' or 'error' |
| 655 | // 'error' status is assumed as 'Blocker' in TestRail reporter |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 656 | |
| 657 | // Replace '<' and '>' to '<' and '>' to avoid conflicts between xml tags in the message and JUnit report |
| 658 | def String text_filtered = text.replaceAll("<","<").replaceAll(">", ">") |
| 659 | |
Dennis Dmitriev | 3966608 | 2018-08-29 15:30:45 +0300 | [diff] [blame] | 660 | def script = """\ |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 661 | <?xml version=\"1.0\" encoding=\"utf-8\"?> |
| 662 | <testsuite> |
| 663 | <testcase classname=\"${classname}\" name=\"${name}\" time=\"0\"> |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 664 | <${status} message=\"${status_message}\">${text_filtered}</${status}> |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 665 | <system-out>${stdout}</system-out> |
| 666 | <system-err>${stderr}</system-err> |
| 667 | </testcase> |
| 668 | </testsuite> |
Dennis Dmitriev | 3966608 | 2018-08-29 15:30:45 +0300 | [diff] [blame] | 669 | """ |
| 670 | writeFile(file: filename, text: script, encoding: "UTF-8") |
Dennis Dmitriev | b3b3749 | 2018-07-08 21:23:00 +0300 | [diff] [blame] | 671 | } |
| 672 | |
Dennis Dmitriev | af59f7e | 2019-04-02 11:54:06 +0000 | [diff] [blame] | 673 | def upload_results_to_testrail(report_name, testSuiteName, methodname, testrail_name_template, reporter_extra_options=[]) { |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 674 | def venvPath = '/home/jenkins/venv_testrail_reporter' |
Tatyana Leontovich | bfbc483 | 2018-12-27 12:47:23 +0200 | [diff] [blame] | 675 | def testPlanDesc = env.LAB_CONFIG_NAME |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 676 | def testrailURL = "https://mirantis.testrail.com" |
| 677 | def testrailProject = "Mirantis Cloud Platform" |
Tatyana Leontovich | 4385497 | 2019-05-24 23:02:22 +0300 | [diff] [blame] | 678 | def testPlanNamePrefix = env.TEST_PLAN_NAME_PREFIX ?: "[2019.2.0-update]System" |
Vladimir Jigulin | b02dcc5 | 2019-04-02 15:57:53 +0400 | [diff] [blame] | 679 | def testPlanName = "${testPlanNamePrefix}-${MCP_VERSION}-${new Date().format('yyyy-MM-dd')}" |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 680 | def testrailMilestone = "MCP1.1" |
Dennis Dmitriev | 707b215 | 2018-10-23 19:12:48 +0300 | [diff] [blame] | 681 | def testrailCaseMaxNameLenght = 250 |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 682 | def jobURL = env.BUILD_URL |
| 683 | |
| 684 | def reporterOptions = [ |
| 685 | "--verbose", |
| 686 | "--env-description \"${testPlanDesc}\"", |
| 687 | "--testrail-run-update", |
| 688 | "--testrail-url \"${testrailURL}\"", |
| 689 | "--testrail-user \"\${TESTRAIL_USER}\"", |
| 690 | "--testrail-password \"\${TESTRAIL_PASSWORD}\"", |
| 691 | "--testrail-project \"${testrailProject}\"", |
| 692 | "--testrail-plan-name \"${testPlanName}\"", |
| 693 | "--testrail-milestone \"${testrailMilestone}\"", |
| 694 | "--testrail-suite \"${testSuiteName}\"", |
| 695 | "--xunit-name-template \"${methodname}\"", |
| 696 | "--testrail-name-template \"${testrail_name_template}\"", |
| 697 | "--test-results-link \"${jobURL}\"", |
Dennis Dmitriev | 707b215 | 2018-10-23 19:12:48 +0300 | [diff] [blame] | 698 | "--testrail-case-max-name-lenght ${testrailCaseMaxNameLenght}", |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 699 | ] + reporter_extra_options |
| 700 | |
| 701 | def script = """ |
| 702 | . ${venvPath}/bin/activate |
| 703 | set -ex |
Dmitry Tyzhnenko | 80ce020 | 2019-02-07 13:27:19 +0200 | [diff] [blame] | 704 | report ${reporterOptions.join(' ')} '${report_name}' |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 705 | """ |
| 706 | |
| 707 | def testrail_cred_id = params.TESTRAIL_CRED ?: 'testrail_system_tests' |
| 708 | |
| 709 | withCredentials([ |
| 710 | [$class : 'UsernamePasswordMultiBinding', |
| 711 | credentialsId : testrail_cred_id, |
| 712 | passwordVariable: 'TESTRAIL_PASSWORD', |
| 713 | usernameVariable: 'TESTRAIL_USER'] |
| 714 | ]) { |
Dennis Dmitriev | fd0b78c | 2019-05-30 00:16:04 +0300 | [diff] [blame] | 715 | def ret = [:] |
| 716 | ret.stdout = '' |
| 717 | ret.exception = '' |
| 718 | try { |
| 719 | ret.stdout = run_cmd_stdout(script) |
| 720 | } catch (Exception ex) { |
| 721 | ret.exception = ("""\ |
| 722 | ##### Report to '${testSuiteName}' failed: #####\n""" + ex.message + "\n\n") |
| 723 | } |
| 724 | return ret |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 725 | } |
| 726 | } |
| 727 | |
| 728 | |
| 729 | def create_deploy_result_report(deploy_expected_stacks, result, text) { |
| 730 | def STATUS_MAP = ['SUCCESS': 'success', 'FAILURE': 'failure', 'UNSTABLE': 'failure', 'ABORTED': 'error'] |
| 731 | def classname = "Deploy" |
| 732 | def name = "deployment_${ENV_NAME}" |
Dennis Dmitriev | 3966608 | 2018-08-29 15:30:45 +0300 | [diff] [blame] | 733 | def filename = "${name}.xml" |
Dennis Dmitriev | e4b831b | 2018-08-15 17:16:10 +0300 | [diff] [blame] | 734 | def status = STATUS_MAP[result ?: 'FAILURE'] // currentBuild.result *must* be set at the finish of the try/catch |
| 735 | create_xml_report(filename, classname, name, status, "Deploy components: ${deploy_expected_stacks}", text, '', '') |
Dennis Dmitriev | 27a9679 | 2018-07-30 07:52:03 +0300 | [diff] [blame] | 736 | } |