aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/openstack/tempest/conf_utils.py
diff options
context:
space:
mode:
authorMatthewLi <matthew.lijun@huawei.com>2017-03-10 00:03:09 -0500
committerMatthewLi <matthew.lijun@huawei.com>2017-03-15 05:26:27 -0400
commit99f308dc9b11e8f99d928840de576af274229331 (patch)
tree6c7b7be0d06f8c5b451dac1bde8e902d59d1cad1 /functest/opnfv_tests/openstack/tempest/conf_utils.py
parent11d59071a11fcec1ef9fcd323070c6d4f151c7cd (diff)
refstack client integration
JIRA: DOVETAIL-366 JIRA: FUNCTEST-758 usage: 1,functest testcase run refstack_defcore, will run the default testcases in defcore_201608.txt 2,cd <path>/functest/functest/opnfv_tests/openstack/refstack_client python refstack_client.py -c <tempest-conf-file-path> --testlist <testlist-path> this has been worked with openstack-refstack experts, etc. tested workedi. result see http://paste.openstack.org/show/602173/ Change-Id: I1aaffea01dec9dc8d1c572885bdf516614a16894 Signed-off-by: MatthewLi <matthew.lijun@huawei.com>
Diffstat (limited to 'functest/opnfv_tests/openstack/tempest/conf_utils.py')
-rw-r--r--functest/opnfv_tests/openstack/tempest/conf_utils.py109
1 files changed, 109 insertions, 0 deletions
diff --git a/functest/opnfv_tests/openstack/tempest/conf_utils.py b/functest/opnfv_tests/openstack/tempest/conf_utils.py
index 2c113367b..3ff8a227b 100644
--- a/functest/opnfv_tests/openstack/tempest/conf_utils.py
+++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py
@@ -43,6 +43,88 @@ CI_INSTALLER_IP = CONST.INSTALLER_IP
logger = ft_logger.Logger("Tempest").getLogger()
+def create_tempest_resources(use_custom_images=False,
+ use_custom_flavors=False):
+ keystone_client = os_utils.get_keystone_client()
+
+ logger.debug("Creating tenant and user for Tempest suite")
+ tenant_id = os_utils.create_tenant(
+ keystone_client,
+ CONST.tempest_identity_tenant_name,
+ CONST.tempest_identity_tenant_description)
+ if not tenant_id:
+ logger.error("Failed to create %s tenant"
+ % CONST.tempest_identity_tenant_name)
+
+ user_id = os_utils.create_user(keystone_client,
+ CONST.tempest_identity_user_name,
+ CONST.tempest_identity_user_password,
+ None, tenant_id)
+ if not user_id:
+ logger.error("Failed to create %s user" %
+ CONST.tempest_identity_user_name)
+
+ logger.debug("Creating private network for Tempest suite")
+ network_dic = os_utils.create_shared_network_full(
+ CONST.tempest_private_net_name,
+ CONST.tempest_private_subnet_name,
+ CONST.tempest_router_name,
+ CONST.tempest_private_subnet_cidr)
+ if network_dic is None:
+ raise Exception('Failed to create private network')
+
+ image_id = ""
+ image_id_alt = ""
+ flavor_id = ""
+ flavor_id_alt = ""
+
+ if CONST.tempest_use_custom_images or use_custom_images:
+ # adding alternative image should be trivial should we need it
+ logger.debug("Creating image for Tempest suite")
+ _, image_id = os_utils.get_or_create_image(
+ CONST.openstack_image_name, GLANCE_IMAGE_PATH,
+ CONST.openstack_image_disk_format)
+ if image_id is None:
+ raise Exception('Failed to create image')
+
+ if use_custom_images:
+ logger.debug("Creating 2nd image for Tempest suite")
+ _, image_id_alt = os_utils.get_or_create_image(
+ CONST.openstack_image_name_alt, GLANCE_IMAGE_PATH,
+ CONST.openstack_image_disk_format)
+ if image_id_alt is None:
+ raise Exception('Failed to create image')
+
+ if CONST.tempest_use_custom_flavors or use_custom_flavors:
+ # adding alternative flavor should be trivial should we need it
+ logger.debug("Creating flavor for Tempest suite")
+ _, flavor_id = os_utils.get_or_create_flavor(
+ CONST.openstack_flavor_name,
+ CONST.openstack_flavor_ram,
+ CONST.openstack_flavor_disk,
+ CONST.openstack_flavor_vcpus)
+ if flavor_id is None:
+ raise Exception('Failed to create flavor')
+
+ if use_custom_flavors:
+ logger.debug("Creating 2nd flavor for tempest_defcore")
+ _, flavor_id_alt = os_utils.get_or_create_flavor(
+ CONST.openstack_flavor_name_alt,
+ CONST.openstack_flavor_ram,
+ CONST.openstack_flavor_disk,
+ CONST.openstack_flavor_vcpus)
+ if flavor_id_alt is None:
+ raise Exception('Failed to create flavor')
+
+ img_flavor_dict = {}
+ img_flavor_dict['image_id'] = image_id
+ img_flavor_dict['image_id_alt'] = image_id_alt
+ img_flavor_dict['flavor_id'] = flavor_id
+ img_flavor_dict['flavor_id_alt'] = flavor_id_alt
+
+ return img_flavor_dict
+
+
def get_verifier_id():
"""
Returns verifer id for current Tempest
@@ -141,6 +223,33 @@ def configure_tempest(deployment_dir, IMAGE_ID=None, FLAVOR_ID=None,
configure_tempest_multisite_params(conf_file)
+def configure_tempest_defcore(deployment_dir, img_flavor_dict):
+ """
+ Add/update needed parameters into tempest.conf file
+ """
+ conf_file = configure_verifier(deployment_dir)
+ configure_tempest_update_params(conf_file,
+ img_flavor_dict.get("image_id"),
+ img_flavor_dict.get("flavor_id"))
+
+ logger.debug("Updating selected tempest.conf parameters for defcore...")
+ config = ConfigParser.RawConfigParser()
+ config.read(conf_file)
+ config.set('compute', 'image_ref', img_flavor_dict.get("image_id"))
+ config.set('compute', 'image_ref_alt',
+ img_flavor_dict['image_id_alt'])
+ config.set('compute', 'flavor_ref', img_flavor_dict.get("flavor_id"))
+ config.set('compute', 'flavor_ref_alt',
+ img_flavor_dict['flavor_id_alt'])
+
+ with open(conf_file, 'wb') as config_file:
+ config.write(config_file)
+
+ confpath = os.path.join(CONST.dir_functest_test,
+ CONST.refstack_tempest_conf_path)
+ shutil.copyfile(conf_file, confpath)
+
+
def configure_tempest_update_params(tempest_conf_file,
IMAGE_ID=None, FLAVOR_ID=None):
"""