|
|
@@ -39,22 +39,31 @@ def skip_checks(cls): |
|
|
@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,
|
|
|
- **cls.os.default_params_with_timeout_values)
|
|
|
+ **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,
|
|
|
- **cls.os.default_params_with_timeout_values)
|
|
|
+ **default_params_with_timeout_values)
|
|
|
cls.database_versions_client = versions_client.DatabaseVersionsClient(
|
|
|
cls.os.auth_provider,
|
|
|
CONF.database.catalog_type,
|
|
|
CONF.identity.region,
|
|
|
- **cls.os.default_params_with_timeout_values)
|
|
|
+ **default_params_with_timeout_values)
|
|
|
|
|
|
@classmethod
|
|
|
def resource_setup(cls):
|
|
|
|
0 comments on commit
6d5c082