blob: d1fff1aa4f02698f8956da9da27a33536e7852e5 [file] [log] [blame]
Oleksii Zhurbad0525492017-12-12 16:07:46 -06001/**
2 *
3 * Launch validation of the cloud
4 *
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
17 * TEMPEST_TEST_PATTERN Tests to run during HA scenarios
18 * 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') {
33 saltMaster = salt.connection(SALT_MASTER_URL, SALT_MASTER_CREDENTIALS)
34 validate.runBasicContainer(saltMaster, TARGET_NODE, TEST_IMAGE)
35 sh "rm -rf ${artifacts_dir}"
Oleksii Zhurba49275882018-03-21 15:41:57 -050036 salt.cmdRun(saltMaster, TARGET_NODE, "rm -rf ${remote_artifacts_dir}")
Oleksii Zhurbad0525492017-12-12 16:07:46 -060037 salt.cmdRun(saltMaster, TARGET_NODE, "mkdir -p ${remote_artifacts_dir}")
Dmitry Tsapikov38f36512018-07-24 15:18:36 +000038 validate.configureContainer(saltMaster, TARGET_NODE, PROXY, TOOLS_REPO, TEMPEST_REPO, TEMPEST_ENDPOINT_TYPE)
Oleksii Zhurbad0525492017-12-12 16:07:46 -060039 }
40
41 stage('Run Tempest tests') {
42 sh "mkdir -p ${artifacts_dir}"
43 validate.runCVPtempest(saltMaster, TARGET_NODE, TEMPEST_TEST_PATTERN, SKIP_LIST_PATH, remote_artifacts_dir)
44 }
45
46 stage('Collect results') {
47 validate.addFiles(saltMaster, TARGET_NODE, remote_artifacts_dir, artifacts_dir)
48 archiveArtifacts artifacts: "${artifacts_dir}/*"
49 junit "${artifacts_dir}/*.xml"
50 }
51 } catch (Throwable e) {
52 // If there was an error or exception thrown, the build failed
53 currentBuild.result = "FAILURE"
54 throw e
55 } finally {
56 if (DEBUG_MODE == 'false') {
57 if (TOOLS_REPO != "") {
58 validate.openstack_cleanup(saltMaster, TARGET_NODE)
59 }
60 validate.runCleanup(saltMaster, TARGET_NODE)
61 salt.cmdRun(saltMaster, TARGET_NODE, "rm -rf ${remote_artifacts_dir}")
62 }
63 }
64}