blob: 0c657a5f2f3282028fabc2af9c9798348f39afb0 [file] [log] [blame]
/**
*
* Launch CVP Tempest verification of the cloud
*
* Expected parameters:
* SALT_MASTER_URL URL of Salt master
* SALT_MASTER_CREDENTIALS Credentials that are used in this Jenkins for accessing Salt master (usually "salt")
* PROXY Proxy address (if any) for accessing the Internet. It will be used for cloning repos and installing pip dependencies
* TEST_IMAGE Docker image link to use for running container with testing tools.
* TOOLS_REPO URL of repo where testing tools, scenarios, configs are located
*
* DEBUG_MODE If you need to debug (keep container after test), please enabled this
* SKIP_LIST_PATH Path to tempest skip list file in TOOLS_REPO
* TARGET_NODE Node to run container with Tempest/Rally
* TEMPEST_REPO Tempest repo to clone and use
* TEMPEST_TEST_PATTERN Tests to run
* TEMPEST_ENDPOINT_TYPE Type of OS endpoint to use during test run
*
*/
common = new com.mirantis.mk.Common()
salt = new com.mirantis.mk.Salt()
validate = new com.mirantis.mcp.Validate()
def saltMaster
def artifacts_dir = 'validation_artifacts/'
def remote_artifacts_dir = '/root/qa_results/'
node() {
try{
stage('Initialization') {
sh "rm -rf ${artifacts_dir}"
saltMaster = salt.connection(SALT_MASTER_URL, SALT_MASTER_CREDENTIALS)
salt.cmdRun(saltMaster, TARGET_NODE, "rm -rf ${remote_artifacts_dir}")
salt.cmdRun(saltMaster, TARGET_NODE, "mkdir -p ${remote_artifacts_dir}")
keystone_creds = validate._get_keystone_creds_v3(saltMaster)
if (!keystone_creds) {
keystone_creds = validate._get_keystone_creds_v2(saltMaster)
}
validate.runContainer(saltMaster, TARGET_NODE, TEST_IMAGE, 'cvp', keystone_creds)
validate.configureContainer(saltMaster, TARGET_NODE, PROXY, TOOLS_REPO, TEMPEST_REPO, TEMPEST_ENDPOINT_TYPE)
}
stage('Run Tempest tests') {
sh "mkdir -p ${artifacts_dir}"
validate.runCVPtempest(saltMaster, TARGET_NODE, TEMPEST_TEST_PATTERN, SKIP_LIST_PATH, remote_artifacts_dir)
}
stage('Collect results') {
validate.addFiles(saltMaster, TARGET_NODE, remote_artifacts_dir, artifacts_dir)
archiveArtifacts artifacts: "${artifacts_dir}/*"
junit "${artifacts_dir}/*.xml"
}
} catch (Throwable e) {
// If there was an error or exception thrown, the build failed
currentBuild.result = "FAILURE"
throw e
} finally {
if (DEBUG_MODE == 'false') {
if (TOOLS_REPO != "") {
validate.openstack_cleanup(saltMaster, TARGET_NODE)
}
validate.runCleanup(saltMaster, TARGET_NODE)
salt.cmdRun(saltMaster, TARGET_NODE, "rm -rf ${remote_artifacts_dir}")
}
}
}