2016-04-07 08:07:04 +01:00
|
|
|
# Copyright 2016 Hewlett Packard Enterprise Development Company, L.P.
|
|
|
|
#
|
|
|
|
# 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 clients
|
|
|
|
from tempest import config
|
2016-08-29 14:52:30 +07:00
|
|
|
from tempest.lib import auth
|
2016-04-07 08:07:04 +01:00
|
|
|
|
2016-04-21 13:47:25 +01:00
|
|
|
from designate_tempest_plugin.services.dns.v1.json.domains_client import \
|
|
|
|
DomainsClient
|
|
|
|
from designate_tempest_plugin.services.dns.v1.json.records_client import \
|
|
|
|
RecordsClient
|
|
|
|
from designate_tempest_plugin.services.dns.v1.json.servers_client import \
|
|
|
|
ServersClient
|
2016-04-07 08:07:04 +01:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.zones_client import \
|
|
|
|
ZonesClient
|
2016-04-20 10:08:46 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.zone_imports_client import \
|
|
|
|
ZoneImportsClient
|
2016-04-21 15:34:09 +00:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.blacklists_client import \
|
|
|
|
BlacklistsClient
|
2016-07-04 17:46:08 +01:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.quotas_client import \
|
2016-04-21 17:06:33 +00:00
|
|
|
QuotasClient
|
2016-04-29 21:07:16 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.zone_exports_client import \
|
|
|
|
ZoneExportsClient
|
2016-05-05 00:28:00 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.recordset_client import \
|
|
|
|
RecordsetClient
|
2016-05-05 01:12:43 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.pool_client import \
|
|
|
|
PoolClient
|
2016-05-05 10:07:28 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.tld_client import \
|
|
|
|
TldClient
|
2016-07-04 17:46:08 +01:00
|
|
|
from designate_tempest_plugin.services.dns.admin.json.quotas_client import \
|
|
|
|
QuotasClient as AdminQuotaClient
|
2016-05-13 19:34:37 +00:00
|
|
|
from designate_tempest_plugin.services.dns.query.query_client import \
|
|
|
|
QueryClient
|
2016-05-17 10:56:47 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.transfer_request_client \
|
|
|
|
import TransferRequestClient
|
2016-05-16 14:13:47 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.transfer_accepts_client \
|
|
|
|
import TransferAcceptClient
|
2016-05-27 14:48:04 +09:00
|
|
|
from designate_tempest_plugin.services.dns.v2.json.tsigkey_client \
|
|
|
|
import TsigkeyClient
|
2016-04-07 08:07:04 +01:00
|
|
|
|
|
|
|
CONF = config.CONF
|
|
|
|
|
|
|
|
|
2016-04-21 13:47:25 +01:00
|
|
|
class ManagerV1(clients.Manager):
|
2016-06-13 21:03:33 +00:00
|
|
|
|
2017-01-11 17:17:32 +00:00
|
|
|
def __init__(self, credentials=None):
|
|
|
|
super(ManagerV1, self).__init__(credentials)
|
2016-06-13 21:03:33 +00:00
|
|
|
self._init_clients(self._get_params())
|
|
|
|
|
|
|
|
def _init_clients(self, params):
|
|
|
|
self.domains_client = DomainsClient(**params)
|
|
|
|
self.records_client = RecordsClient(**params)
|
|
|
|
self.servers_client = ServersClient(**params)
|
2016-04-21 13:47:25 +01:00
|
|
|
|
2016-06-13 21:03:33 +00:00
|
|
|
def _get_params(self):
|
|
|
|
params = dict(self.default_params)
|
|
|
|
params.update({
|
|
|
|
'auth_provider': self.auth_provider,
|
2016-04-21 13:47:25 +01:00
|
|
|
'service': CONF.dns.catalog_type,
|
|
|
|
'region': CONF.identity.region,
|
|
|
|
'endpoint_type': CONF.dns.endpoint_type,
|
|
|
|
'build_interval': CONF.dns.build_interval,
|
|
|
|
'build_timeout': CONF.dns.build_timeout
|
2016-06-13 21:03:33 +00:00
|
|
|
})
|
|
|
|
return params
|
2016-04-21 13:47:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
class ManagerV2(clients.Manager):
|
2016-06-13 21:03:33 +00:00
|
|
|
|
2017-01-11 17:17:32 +00:00
|
|
|
def __init__(self, credentials=None):
|
|
|
|
super(ManagerV2, self).__init__(credentials)
|
2016-06-13 21:03:33 +00:00
|
|
|
self._init_clients(self._get_params())
|
|
|
|
|
|
|
|
def _init_clients(self, params):
|
|
|
|
self.zones_client = ZonesClient(**params)
|
|
|
|
self.zone_imports_client = ZoneImportsClient(**params)
|
|
|
|
self.blacklists_client = BlacklistsClient(**params)
|
|
|
|
self.quotas_client = QuotasClient(**params)
|
|
|
|
self.zone_exports_client = ZoneExportsClient(**params)
|
|
|
|
self.recordset_client = RecordsetClient(**params)
|
|
|
|
self.pool_client = PoolClient(**params)
|
|
|
|
self.tld_client = TldClient(**params)
|
|
|
|
self.transfer_request_client = TransferRequestClient(**params)
|
|
|
|
self.transfer_accept_client = TransferAcceptClient(**params)
|
|
|
|
self.tsigkey_client = TsigkeyClient(**params)
|
2016-04-07 08:07:04 +01:00
|
|
|
|
2016-05-13 19:34:37 +00:00
|
|
|
self.query_client = QueryClient(
|
|
|
|
nameservers=CONF.dns.nameservers,
|
|
|
|
query_timeout=CONF.dns.query_timeout,
|
|
|
|
build_interval=CONF.dns.build_interval,
|
|
|
|
build_timeout=CONF.dns.build_timeout,
|
|
|
|
)
|
2016-06-13 21:03:33 +00:00
|
|
|
|
|
|
|
def _get_params(self):
|
|
|
|
params = dict(self.default_params)
|
|
|
|
params.update({
|
|
|
|
'auth_provider': self.auth_provider,
|
|
|
|
'service': CONF.dns.catalog_type,
|
|
|
|
'region': CONF.identity.region,
|
|
|
|
'endpoint_type': CONF.dns.endpoint_type,
|
|
|
|
'build_interval': CONF.dns.build_interval,
|
|
|
|
'build_timeout': CONF.dns.build_timeout
|
|
|
|
})
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
2016-07-04 17:46:08 +01:00
|
|
|
class ManagerAdmin(clients.Manager):
|
|
|
|
|
2017-01-11 17:17:32 +00:00
|
|
|
def __init__(self, credentials=None):
|
|
|
|
super(ManagerAdmin, self).__init__(credentials)
|
2016-07-04 17:46:08 +01:00
|
|
|
self._init_clients(self._get_params())
|
|
|
|
|
|
|
|
def _init_clients(self, params):
|
|
|
|
self.quotas_client = AdminQuotaClient(**params)
|
|
|
|
|
|
|
|
def _get_params(self):
|
|
|
|
params = dict(self.default_params)
|
|
|
|
params.update({
|
|
|
|
'auth_provider': self.auth_provider,
|
|
|
|
'service': CONF.dns.catalog_type,
|
|
|
|
'region': CONF.identity.region,
|
|
|
|
'endpoint_type': CONF.dns.endpoint_type,
|
|
|
|
'build_interval': CONF.dns.build_interval,
|
|
|
|
'build_timeout': CONF.dns.build_timeout
|
|
|
|
})
|
|
|
|
return params
|
|
|
|
|
|
|
|
|
2016-06-13 21:03:33 +00:00
|
|
|
class ManagerV2Unauthed(ManagerV2):
|
|
|
|
|
2017-01-11 17:17:32 +00:00
|
|
|
def __init__(self, credentials=None):
|
|
|
|
super(ManagerV2Unauthed, self).__init__(credentials)
|
2016-07-13 19:14:02 +00:00
|
|
|
self.auth_provider = self._auth_provider_class()(
|
2016-06-13 21:03:33 +00:00
|
|
|
credentials=self.auth_provider.credentials,
|
|
|
|
auth_url=self.auth_provider.auth_client.auth_url,
|
|
|
|
disable_ssl_certificate_validation=self.auth_provider.dscv,
|
|
|
|
ca_certs=self.auth_provider.ca_certs,
|
|
|
|
trace_requests=self.auth_provider.trace_requests,
|
|
|
|
)
|
|
|
|
self._init_clients(self._get_params())
|
|
|
|
|
2016-07-13 19:14:02 +00:00
|
|
|
def _auth_provider_class(self):
|
|
|
|
if CONF.identity.auth_version == 'v3':
|
|
|
|
return KeystoneV3UnauthedProvider
|
|
|
|
else:
|
|
|
|
return KeystoneV2UnauthedProvider
|
2016-06-13 21:03:33 +00:00
|
|
|
|
2016-07-13 19:14:02 +00:00
|
|
|
|
2016-08-29 14:52:30 +07:00
|
|
|
class BaseUnauthedProvider(auth.KeystoneAuthProvider):
|
2016-06-13 21:03:33 +00:00
|
|
|
|
|
|
|
def _decorate_request(self, filters, method, url, headers=None, body=None,
|
|
|
|
auth_data=None):
|
2016-07-13 19:14:02 +00:00
|
|
|
result = super(BaseUnauthedProvider, self)._decorate_request(
|
2016-06-13 21:03:33 +00:00
|
|
|
filters, method, url, headers=headers, body=body,
|
|
|
|
auth_data=auth_data)
|
|
|
|
url, headers, body = result
|
|
|
|
try:
|
|
|
|
del headers['X-Auth-Token']
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
return url, headers, body
|
2016-07-13 19:14:02 +00:00
|
|
|
|
|
|
|
|
2016-08-29 14:52:30 +07:00
|
|
|
class KeystoneV2UnauthedProvider(auth.KeystoneV2AuthProvider,
|
|
|
|
BaseUnauthedProvider):
|
2016-07-13 19:14:02 +00:00
|
|
|
|
|
|
|
def _decorate_request(self, *args, **kwargs):
|
|
|
|
return BaseUnauthedProvider._decorate_request(self, *args, **kwargs)
|
|
|
|
|
|
|
|
|
2016-08-29 14:52:30 +07:00
|
|
|
class KeystoneV3UnauthedProvider(auth.KeystoneV3AuthProvider,
|
|
|
|
BaseUnauthedProvider):
|
2016-07-13 19:14:02 +00:00
|
|
|
|
|
|
|
def _decorate_request(self, *args, **kwargs):
|
|
|
|
return BaseUnauthedProvider._decorate_request(self, *args, **kwargs)
|