Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 1 | /** |
| 2 | * |
| 3 | * Deploy the product cluster using Jenkins master on CICD cluster |
| 4 | * |
| 5 | * Expected parameters: |
| 6 | |
| 7 | * ENV_NAME Fuel-devops environment name |
| 8 | * PASSED_STEPS Steps passed to install components using Jenkins on CICD cluster: "salt,core,cicd,openstack:3200,stacklight:2400", |
| 9 | where 3200 and 2400 might be timeouts (not used in the testing pipeline) |
| 10 | * RUN_TEST_OPTS Pytest option -k or -m, with expression to select necessary tests. Additional pytest options are allowed. |
| 11 | * PARENT_NODE_NAME Name of the jenkins slave to create the environment |
| 12 | * PARENT_WORKSPACE Path to the workspace of the parent job to use tcp-qa repo |
| 13 | * TCP_QA_REFS Reference to the tcp-qa change on review.gerrithub.io, like refs/changes/46/418546/41 |
| 14 | * SHUTDOWN_ENV_ON_TEARDOWN optional, shutdown fuel-devops environment at the end of the job |
| 15 | * LAB_CONFIG_NAME Not used (backward compatibility, for manual deployment steps only) |
| 16 | * REPOSITORY_SUITE Not used (backward compatibility, for manual deployment steps only) |
| 17 | * MCP_IMAGE_PATH1604 Not used (backward compatibility, for manual deployment steps only) |
| 18 | * IMAGE_PATH_CFG01_DAY01 Not used (backward compatibility, for manual deployment steps only) |
Tatyana Leontovich | f371844 | 2018-10-31 13:36:13 +0200 | [diff] [blame] | 19 | * TEMPEST_IMAGE_VERSION Tempest image version: pike by default, can be queens. |
Tatyana Leontovich | bfbc483 | 2018-12-27 12:47:23 +0200 | [diff] [blame] | 20 | * TEMPEST_TARGET Node where tempest will be run |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | @Library('tcp-qa')_ |
| 24 | |
| 25 | common = new com.mirantis.mk.Common() |
| 26 | shared = new com.mirantis.system_qa.SharedPipeline() |
| 27 | |
| 28 | if (! env.PARENT_NODE_NAME) { |
| 29 | error "'PARENT_NODE_NAME' must be set from the parent deployment job!" |
| 30 | } |
| 31 | |
Dennis Dmitriev | 201a35e | 2018-08-06 01:37:05 +0300 | [diff] [blame] | 32 | currentBuild.description = "${PARENT_NODE_NAME}:${ENV_NAME}" |
| 33 | |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 34 | node ("${PARENT_NODE_NAME}") { |
| 35 | if (! fileExists("${PARENT_WORKSPACE}")) { |
| 36 | error "'PARENT_WORKSPACE' contains path to non-existing directory ${PARENT_WORKSPACE} on the node '${PARENT_NODE_NAME}'." |
| 37 | } |
| 38 | dir("${PARENT_WORKSPACE}") { |
| 39 | try { |
| 40 | |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 41 | if (env.TCP_QA_REFS) { |
| 42 | stage("Update working dir to patch ${TCP_QA_REFS}") { |
| 43 | shared.update_working_dir() |
| 44 | } |
| 45 | } |
| 46 | |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 47 | stage("Run tests") { |
| 48 | def steps = shared.get_steps_list(PASSED_STEPS) |
| 49 | def sources = """\ |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 50 | cd ${PARENT_WORKSPACE} |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 51 | export ENV_NAME=${ENV_NAME} |
| 52 | . ./tcp_tests/utils/env_salt""" |
| 53 | if (steps.contains('k8s')) { |
| 54 | sources += """ |
| 55 | . ./tcp_tests/utils/env_k8s\n""" |
| 56 | } |
| 57 | if (steps.contains('openstack')) { |
| 58 | sources += """ |
Tatyana Leontovich | f371844 | 2018-10-31 13:36:13 +0200 | [diff] [blame] | 59 | export TEMPEST_IMAGE_VERSION=${TEMPEST_IMAGE_VERSION} |
Tatyana Leontovich | bfbc483 | 2018-12-27 12:47:23 +0200 | [diff] [blame] | 60 | export TEMPEST_TARGET=${TEMPEST_TARGET} |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 61 | # TODO: . ./tcp_tests/utils/env_keystonercv3\n""" |
| 62 | } |
| 63 | def installed = steps.collect {"""\ |
| 64 | export ${it}_installed=true"""}.join("\n") |
| 65 | |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 66 | shared.run_sh(sources + installed + """ |
Dennis Dmitriev | ee5ef23 | 2018-08-31 13:53:18 +0300 | [diff] [blame] | 67 | export TESTS_CONFIGS=${ENV_NAME}_salt_deployed.ini |
Dennis Dmitriev | 552454c | 2019-03-21 23:15:51 +0200 | [diff] [blame] | 68 | export ENV_MANAGER=devops # use 'hardware' fixture to manage fuel-devops environment |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 69 | export salt_master_host=\$SALT_MASTER_IP # skip salt_deployed fixture |
| 70 | export salt_master_port=6969 |
| 71 | export SALT_USER=\$SALTAPI_USER |
| 72 | export SALT_PASSWORD=\$SALTAPI_PASS |
| 73 | |
| 74 | py.test --junit-xml=nosetests.xml ${RUN_TEST_OPTS} |
| 75 | |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 76 | """) |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 77 | |
| 78 | def snapshot_name = "test_completed" |
Dennis Dmitriev | 9cd5c13 | 2018-12-12 17:10:47 +0200 | [diff] [blame] | 79 | shared.download_logs("test_completed_${ENV_NAME}") |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 80 | shared.run_cmd("""\ |
| 81 | dos.py suspend ${ENV_NAME} |
| 82 | dos.py snapshot ${ENV_NAME} ${snapshot_name} |
| 83 | """) |
| 84 | if ("${env.SHUTDOWN_ENV_ON_TEARDOWN}" == "false") { |
| 85 | shared.run_cmd("""\ |
| 86 | dos.py resume ${ENV_NAME} |
| 87 | """) |
| 88 | } |
| 89 | shared.devops_snapshot_info(snapshot_name) |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | } catch (e) { |
Dennis Dmitriev | b08c077 | 2018-10-17 15:10:26 +0300 | [diff] [blame] | 93 | common.printMsg("Job is failed", "purple") |
Dennis Dmitriev | efe5c0b | 2018-10-24 20:35:26 +0300 | [diff] [blame] | 94 | // Downloading logs usually not needed here |
| 95 | // because tests should use the decorator @pytest.mark.grab_versions |
Dennis Dmitriev | 9cd5c13 | 2018-12-12 17:10:47 +0200 | [diff] [blame] | 96 | // shared.download_logs("test_failed_${ENV_NAME}") |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 97 | throw e |
| 98 | } finally { |
| 99 | // TODO(ddmitriev): analyze the "def currentResult = currentBuild.result ?: 'SUCCESS'" |
| 100 | // and report appropriate data to TestRail |
| 101 | if ("${env.SHUTDOWN_ENV_ON_TEARDOWN}" == "true") { |
| 102 | shared.run_cmd("""\ |
| 103 | dos.py destroy ${ENV_NAME} |
| 104 | """) |
| 105 | } |
| 106 | } |
| 107 | } |
| 108 | } |