blob: 407e6946664fdb935ecdbeb11973a49d6f3b8786 [file] [log] [blame]
Daniel Mellado3c0aeab2016-01-29 11:30:25 +00001# Copyright 2012 OpenStack Foundation
2# All Rights Reserved.
3#
4# Licensed under the Apache License, Version 2.0 (the "License"); you may
5# not use this file except in compliance with the License. You may obtain
6# a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13# License for the specific language governing permissions and limitations
14# under the License.
15
Roee Agiman6a0a18a2017-11-16 11:51:56 +020016from tempest.lib.services.compute import availability_zone_client
17from tempest.lib.services.compute import hypervisor_client
Hongbin Lu965b03d2018-04-25 22:32:30 +000018from tempest.lib.services.compute import interfaces_client
Itzik Browne67ebb52016-05-15 05:34:41 +000019from tempest.lib.services.compute import keypairs_client
20from tempest.lib.services.compute import servers_client
Ken'ichi Ohmichib35c6cd2016-06-30 12:19:37 -070021from tempest.lib.services.identity.v2 import tenants_client
nanaboatedfe7742017-07-14 22:26:52 +000022from tempest.lib.services.identity.v3 import projects_client
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000023from tempest import manager
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000024
Chandan Kumar667d3d32017-09-22 12:24:06 +053025from neutron_tempest_plugin import config
26from neutron_tempest_plugin.services.network.json import network_client
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000027
28CONF = config.CONF
29
30
31class Manager(manager.Manager):
Brian Haleyae328b92018-10-09 19:51:54 -040032 """Top level manager for OpenStack tempest clients"""
Armando Migliaccioa2275dc2016-08-22 15:14:38 +000033 default_params = {
34 'disable_ssl_certificate_validation':
35 CONF.identity.disable_ssl_certificate_validation,
36 'ca_certs': CONF.identity.ca_certificates_file,
Federico Ressi7b410ed2018-04-12 13:59:56 +020037 'trace_requests': CONF.debug.trace_requests,
38 'proxy_url': CONF.service_clients.proxy_url
Armando Migliaccioa2275dc2016-08-22 15:14:38 +000039 }
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000040
41 # NOTE: Tempest uses timeout values of compute API if project specific
42 # timeout values don't exist.
43 default_params_with_timeout_values = {
44 'build_interval': CONF.compute.build_interval,
45 'build_timeout': CONF.compute.build_timeout
46 }
47 default_params_with_timeout_values.update(default_params)
48
49 def __init__(self, credentials=None, service=None):
50 super(Manager, self).__init__(credentials=credentials)
51
52 self._set_identity_clients()
53
Itzik Browne67ebb52016-05-15 05:34:41 +000054 self.network_client = network_client.NetworkClientJSON(
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000055 self.auth_provider,
56 CONF.network.catalog_type,
57 CONF.network.region or CONF.identity.region,
58 endpoint_type=CONF.network.endpoint_type,
59 build_interval=CONF.network.build_interval,
60 build_timeout=CONF.network.build_timeout,
61 **self.default_params)
62
Itzik Browne67ebb52016-05-15 05:34:41 +000063 params = {
64 'service': CONF.compute.catalog_type,
65 'region': CONF.compute.region or CONF.identity.region,
66 'endpoint_type': CONF.compute.endpoint_type,
67 'build_interval': CONF.compute.build_interval,
68 'build_timeout': CONF.compute.build_timeout
69 }
70 params.update(self.default_params)
71
72 self.servers_client = servers_client.ServersClient(
73 self.auth_provider,
74 enable_instance_password=CONF.compute_feature_enabled
75 .enable_instance_password,
76 **params)
Hongbin Lu965b03d2018-04-25 22:32:30 +000077 self.interfaces_client = interfaces_client.InterfacesClient(
78 self.auth_provider, **params)
Itzik Browne67ebb52016-05-15 05:34:41 +000079 self.keypairs_client = keypairs_client.KeyPairsClient(
80 self.auth_provider, **params)
Roee Agiman6a0a18a2017-11-16 11:51:56 +020081 self.hv_client = hypervisor_client.HypervisorClient(
82 self.auth_provider, **params)
83 self.az_client = availability_zone_client.AvailabilityZoneClient(
84 self.auth_provider, **params)
Itzik Browne67ebb52016-05-15 05:34:41 +000085
Daniel Mellado3c0aeab2016-01-29 11:30:25 +000086 def _set_identity_clients(self):
87 params = {
88 'service': CONF.identity.catalog_type,
89 'region': CONF.identity.region
90 }
91 params.update(self.default_params_with_timeout_values)
92 params_v2_admin = params.copy()
93 params_v2_admin['endpoint_type'] = CONF.identity.v2_admin_endpoint_type
94 # Client uses admin endpoint type of Keystone API v2
Itzik Browne67ebb52016-05-15 05:34:41 +000095 self.tenants_client = tenants_client.TenantsClient(self.auth_provider,
96 **params_v2_admin)
nanaboatedfe7742017-07-14 22:26:52 +000097 # Client uses admin endpoint type of Keystone API v3
98 self.projects_client = projects_client.ProjectsClient(
99 self.auth_provider, **params_v2_admin)