# Copyright 2014 OpenStack Foundation # All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); you may # not use this file except in compliance with the License. You may obtain # a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations # under the License. from tempest import config import tempest.test from trove.tests.tempest.services.database.json import flavors_client from trove.tests.tempest.services.database.json import limits_client from trove.tests.tempest.services.database.json import versions_client CONF = config.CONF class BaseDatabaseTest(tempest.test.BaseTestCase): """Base test case class for all Database API tests.""" credentials = ['primary'] @classmethod def skip_checks(cls): super(BaseDatabaseTest, cls).skip_checks() if not CONF.service_available.trove: skip_msg = ("%s skipped as trove is not available" % cls.__name__) raise cls.skipException(skip_msg) @classmethod def setup_clients(cls): super(BaseDatabaseTest, cls).setup_clients() default_params = config.service_client_config() # NOTE: Tempest uses timeout values of compute API if project specific # timeout values don't exist. default_params_with_timeout_values = { 'build_interval': CONF.compute.build_interval, 'build_timeout': CONF.compute.build_timeout } default_params_with_timeout_values.update(default_params) cls.database_flavors_client = flavors_client.DatabaseFlavorsClient( cls.os.auth_provider, CONF.database.catalog_type, CONF.identity.region, **default_params_with_timeout_values) cls.os_flavors_client = cls.os.flavors_client cls.database_limits_client = limits_client.DatabaseLimitsClient( cls.os.auth_provider, CONF.database.catalog_type, CONF.identity.region, **default_params_with_timeout_values) cls.database_versions_client = versions_client.DatabaseVersionsClient( cls.os.auth_provider, CONF.database.catalog_type, CONF.identity.region, **default_params_with_timeout_values) @classmethod def resource_setup(cls): super(BaseDatabaseTest, cls).resource_setup() cls.catalog_type = CONF.database.catalog_type cls.db_flavor_ref = CONF.database.db_flavor_ref cls.db_current_version = CONF.database.db_current_version