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 |
Hanna Arhipova | 5173aad | 2019-11-11 12:42:31 +0200 | [diff] [blame] | 13 | * TCP_QA_REFS Reference to the tcp-qa change on Gerrit, like refs/changes/46/418546/41 |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 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 | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 21 | * MAKE_SNAPSHOT_STAGES optional, use "dos.py snapshot" to snapshot stages |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 22 | */ |
| 23 | |
| 24 | @Library('tcp-qa')_ |
| 25 | |
| 26 | common = new com.mirantis.mk.Common() |
| 27 | shared = new com.mirantis.system_qa.SharedPipeline() |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 28 | make_snapshot_stages = "${env.MAKE_SNAPSHOT_STAGES}" != "false" ? true : false |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 29 | |
| 30 | if (! env.PARENT_NODE_NAME) { |
| 31 | error "'PARENT_NODE_NAME' must be set from the parent deployment job!" |
| 32 | } |
| 33 | |
Dennis Dmitriev | 201a35e | 2018-08-06 01:37:05 +0300 | [diff] [blame] | 34 | currentBuild.description = "${PARENT_NODE_NAME}:${ENV_NAME}" |
| 35 | |
Dennis Dmitriev | 1f08b0c | 2019-05-27 17:03:53 +0300 | [diff] [blame] | 36 | timeout(time: 10, unit: 'HOURS') { |
Hanna Arhipova | 6736dab | 2020-05-07 14:33:35 +0300 | [diff] [blame] | 37 | timestamps { |
| 38 | node ("${PARENT_NODE_NAME}") { |
| 39 | if (! fileExists("${PARENT_WORKSPACE}")) { |
| 40 | error "'PARENT_WORKSPACE' contains path to non-existing directory ${PARENT_WORKSPACE} on the node '${PARENT_NODE_NAME}'." |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 41 | } |
Hanna Arhipova | 6736dab | 2020-05-07 14:33:35 +0300 | [diff] [blame] | 42 | dir("${PARENT_WORKSPACE}") { |
| 43 | try { |
Dennis Dmitriev | eb50ce1 | 2018-09-27 13:34:32 +0300 | [diff] [blame] | 44 | |
Hanna Arhipova | 6736dab | 2020-05-07 14:33:35 +0300 | [diff] [blame] | 45 | if (env.TCP_QA_REFS) { |
| 46 | stage("Update working dir to patch ${TCP_QA_REFS}") { |
| 47 | shared.update_working_dir() |
| 48 | } |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 49 | } |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 50 | |
Hanna Arhipova | 6736dab | 2020-05-07 14:33:35 +0300 | [diff] [blame] | 51 | stage("Run tests") { |
| 52 | def steps = shared.get_steps_list(PASSED_STEPS) |
| 53 | def sources = """\ |
| 54 | cd ${PARENT_WORKSPACE} |
| 55 | export ENV_NAME=${ENV_NAME} |
| 56 | . ./tcp_tests/utils/env_salt""" |
| 57 | if (steps.contains('k8s')) { |
| 58 | sources += """ |
| 59 | . ./tcp_tests/utils/env_k8s\n""" |
| 60 | } |
| 61 | if (steps.contains('openstack')) { |
| 62 | sources += """ |
| 63 | export TEMPEST_IMAGE_VERSION=${TEMPEST_IMAGE_VERSION} |
| 64 | export TEMPEST_TARGET=${TEMPEST_TARGET} |
| 65 | # TODO: . ./tcp_tests/utils/env_keystonercv3\n""" |
| 66 | } |
| 67 | def installed = steps.collect {"""\ |
| 68 | export ${it}_installed=true"""}.join("\n") |
| 69 | |
| 70 | shared.run_sh(sources + installed + """ |
| 71 | export TESTS_CONFIGS=${ENV_NAME}_salt_deployed.ini |
| 72 | export ENV_MANAGER=$ENV_MANAGER # use 'hardware' fixture to manage fuel-devops environment |
| 73 | export salt_master_host=\$SALT_MASTER_IP # skip salt_deployed fixture |
| 74 | export salt_master_port=6969 |
| 75 | export SALT_USER=\$SALTAPI_USER |
| 76 | export SALT_PASSWORD=\$SALTAPI_PASS |
| 77 | |
| 78 | export LOG_NAME=swarm_run_pytest.log |
| 79 | py.test --junit-xml=nosetests.xml ${RUN_TEST_OPTS} |
| 80 | |
| 81 | """) |
| 82 | |
| 83 | def snapshot_name = "test_completed" |
| 84 | shared.download_logs("test_completed_${ENV_NAME}") |
| 85 | |
| 86 | if (make_snapshot_stages) { |
| 87 | shared.run_cmd("""\ |
| 88 | dos.py suspend ${ENV_NAME} |
| 89 | dos.py snapshot ${ENV_NAME} ${snapshot_name} |
| 90 | """) |
| 91 | if ("${env.SHUTDOWN_ENV_ON_TEARDOWN}" == "false") { |
| 92 | shared.run_cmd("""\ |
| 93 | dos.py resume ${ENV_NAME} |
| 94 | """) |
| 95 | } |
| 96 | shared.devops_snapshot_info(snapshot_name) |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | } catch (e) { |
| 101 | common.printMsg("Job is failed", "purple") |
| 102 | // Downloading logs usually not needed here |
| 103 | // because tests should use the decorator @pytest.mark.grab_versions |
| 104 | // shared.download_logs("test_failed_${ENV_NAME}") |
| 105 | throw e |
| 106 | } finally { |
| 107 | // TODO(ddmitriev): analyze the "def currentResult = currentBuild.result ?: 'SUCCESS'" |
| 108 | // and report appropriate data to TestRail |
| 109 | if (make_snapshot_stages) { |
| 110 | if ("${env.SHUTDOWN_ENV_ON_TEARDOWN}" == "true") { |
| 111 | shared.run_cmd("""\ |
| 112 | dos.py destroy ${ENV_NAME} |
| 113 | """) |
| 114 | } |
| 115 | } |
Dennis Dmitriev | 0244741 | 2019-04-17 18:02:46 +0300 | [diff] [blame] | 116 | } |
Dennis Dmitriev | fde667f | 2018-07-23 16:26:50 +0300 | [diff] [blame] | 117 | } |
Hanna Arhipova | 6736dab | 2020-05-07 14:33:35 +0300 | [diff] [blame] | 118 | } //node |
| 119 | } // timestamps |
Dennis Dmitriev | 1f08b0c | 2019-05-27 17:03:53 +0300 | [diff] [blame] | 120 | } // timeout |