blob: 0c657a5f2f3282028fabc2af9c9798348f39afb0 [file] [log] [blame]
Oleksii Zhurbad0525492017-12-12 16:07:46 -06001/**
2 *
Oleksii Zhurba713a5d22018-10-11 14:23:04 +03003 * Launch CVP Tempest verification of the cloud
Oleksii Zhurbad0525492017-12-12 16:07:46 -06004 *
5 * Expected parameters:
6
7 * SALT_MASTER_URL URL of Salt master
8 * SALT_MASTER_CREDENTIALS Credentials that are used in this Jenkins for accessing Salt master (usually "salt")
9 * PROXY Proxy address (if any) for accessing the Internet. It will be used for cloning repos and installing pip dependencies
10 * TEST_IMAGE Docker image link to use for running container with testing tools.
11 * TOOLS_REPO URL of repo where testing tools, scenarios, configs are located
12 *
13 * DEBUG_MODE If you need to debug (keep container after test), please enabled this
14 * SKIP_LIST_PATH Path to tempest skip list file in TOOLS_REPO
15 * TARGET_NODE Node to run container with Tempest/Rally
16 * TEMPEST_REPO Tempest repo to clone and use
Oleksii Zhurba713a5d22018-10-11 14:23:04 +030017 * TEMPEST_TEST_PATTERN Tests to run
Oleksii Zhurbad0525492017-12-12 16:07:46 -060018 * TEMPEST_ENDPOINT_TYPE Type of OS endpoint to use during test run
19 *
20 */
21
22common = new com.mirantis.mk.Common()
23salt = new com.mirantis.mk.Salt()
24validate = new com.mirantis.mcp.Validate()
25
26def saltMaster
27def artifacts_dir = 'validation_artifacts/'
28def remote_artifacts_dir = '/root/qa_results/'
29
30node() {
31 try{
32 stage('Initialization') {
Oleksii Zhurbad0525492017-12-12 16:07:46 -060033 sh "rm -rf ${artifacts_dir}"
Oleksii Zhurba713a5d22018-10-11 14:23:04 +030034 saltMaster = salt.connection(SALT_MASTER_URL, SALT_MASTER_CREDENTIALS)
Oleksii Zhurba49275882018-03-21 15:41:57 -050035 salt.cmdRun(saltMaster, TARGET_NODE, "rm -rf ${remote_artifacts_dir}")
Oleksii Zhurbad0525492017-12-12 16:07:46 -060036 salt.cmdRun(saltMaster, TARGET_NODE, "mkdir -p ${remote_artifacts_dir}")
Oleksii Zhurba713a5d22018-10-11 14:23:04 +030037 keystone_creds = validate._get_keystone_creds_v3(saltMaster)
38 if (!keystone_creds) {
39 keystone_creds = validate._get_keystone_creds_v2(saltMaster)
40 }
Oleksii Zhurbacb9fbd92018-10-15 15:15:24 -050041 validate.runContainer(saltMaster, TARGET_NODE, TEST_IMAGE, 'cvp', keystone_creds)
Dmitry Tsapikov38f36512018-07-24 15:18:36 +000042 validate.configureContainer(saltMaster, TARGET_NODE, PROXY, TOOLS_REPO, TEMPEST_REPO, TEMPEST_ENDPOINT_TYPE)
Oleksii Zhurbad0525492017-12-12 16:07:46 -060043 }
44
45 stage('Run Tempest tests') {
46 sh "mkdir -p ${artifacts_dir}"
47 validate.runCVPtempest(saltMaster, TARGET_NODE, TEMPEST_TEST_PATTERN, SKIP_LIST_PATH, remote_artifacts_dir)
48 }
49
50 stage('Collect results') {
51 validate.addFiles(saltMaster, TARGET_NODE, remote_artifacts_dir, artifacts_dir)
52 archiveArtifacts artifacts: "${artifacts_dir}/*"
53 junit "${artifacts_dir}/*.xml"
54 }
55 } catch (Throwable e) {
56 // If there was an error or exception thrown, the build failed
57 currentBuild.result = "FAILURE"
58 throw e
59 } finally {
60 if (DEBUG_MODE == 'false') {
61 if (TOOLS_REPO != "") {
62 validate.openstack_cleanup(saltMaster, TARGET_NODE)
63 }
64 validate.runCleanup(saltMaster, TARGET_NODE)
65 salt.cmdRun(saltMaster, TARGET_NODE, "rm -rf ${remote_artifacts_dir}")
66 }
67 }
68}