blob: 8db399a2d2434df24e9a634f6bc3232a1f3c32df [file] [log] [blame]
ZhiQiang Fan39f97222013-09-20 04:49:44 +08001# Copyright 2012 OpenStack Foundation
Jay Pipes3f981df2012-03-27 18:59:44 -04002# 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
Andrea Frittolif9cde7e2014-02-18 09:57:04 +000016# Default client libs
17import cinderclient.client
18import glanceclient
19import heatclient.client
20import keystoneclient.exceptions
21import keystoneclient.v2_0.client
22import neutronclient.v2_0.client
23import novaclient.client
24import swiftclient
25
Marc Koderer24eb89c2014-01-31 11:23:33 +010026from tempest.common.rest_client import NegativeRestClient
Jay Pipesf38eaac2012-06-21 13:37:35 -040027from tempest import config
Daryl Walleck587385b2012-03-03 13:00:26 -060028from tempest import exceptions
Andrea Frittolif9cde7e2014-02-18 09:57:04 +000029from tempest import manager
Matthew Treinishf4a9b0f2013-07-26 16:58:26 -040030from tempest.openstack.common import log as logging
Roman Prykhodchenko62b1ed12013-10-16 21:51:47 +030031from tempest.services.baremetal.v1.client_json import BaremetalClientJSON
Attila Fazekas1aed6202013-02-11 14:47:45 +010032from tempest.services import botoclients
Mitsuhiko Yamazaki74f07072013-04-02 11:52:31 +090033from tempest.services.compute.json.aggregates_client import \
34 AggregatesClientJSON
Leo Toyodaa5278912013-04-16 15:40:12 +090035from tempest.services.compute.json.availability_zone_client import \
36 AvailabilityZoneClientJSON
ivan-zhud57f3cf2013-11-06 16:59:52 +080037from tempest.services.compute.json.certificates_client import \
38 CertificatesClientJSON
dwallecke62b9f02012-10-10 23:34:42 -050039from tempest.services.compute.json.extensions_client import \
harika-vakadi1a9ad612012-12-14 19:12:08 +053040 ExtensionsClientJSON
Sean Dague2416cf32013-04-10 08:29:07 -040041from tempest.services.compute.json.fixed_ips_client import FixedIPsClientJSON
dwallecke62b9f02012-10-10 23:34:42 -050042from tempest.services.compute.json.flavors_client import FlavorsClientJSON
43from tempest.services.compute.json.floating_ips_client import \
harika-vakadi1a9ad612012-12-14 19:12:08 +053044 FloatingIPsClientJSON
Attila Fazekas8e99b992013-02-24 09:53:23 +010045from tempest.services.compute.json.hosts_client import HostsClientJSON
Tony Yang3d5f1632013-06-06 14:17:57 +080046from tempest.services.compute.json.hypervisor_client import \
47 HypervisorClientJSON
dwallecke62b9f02012-10-10 23:34:42 -050048from tempest.services.compute.json.images_client import ImagesClientJSON
ivan-zhuef7a1bd2013-10-22 17:56:46 +080049from tempest.services.compute.json.instance_usage_audit_log_client import \
50 InstanceUsagesAuditLogClientJSON
Sean Dague2416cf32013-04-10 08:29:07 -040051from tempest.services.compute.json.interfaces_client import \
52 InterfacesClientJSON
Attila Fazekas6968dd52013-02-15 17:05:53 +010053from tempest.services.compute.json.keypairs_client import KeyPairsClientJSON
dwallecke62b9f02012-10-10 23:34:42 -050054from tempest.services.compute.json.limits_client import LimitsClientJSON
Attila Fazekas6968dd52013-02-15 17:05:53 +010055from tempest.services.compute.json.quotas_client import QuotasClientJSON
Matthew Treinisha83a16e2012-12-07 13:44:02 -050056from tempest.services.compute.json.security_groups_client import \
harika-vakadi1a9ad612012-12-14 19:12:08 +053057 SecurityGroupsClientJSON
Attila Fazekas6968dd52013-02-15 17:05:53 +010058from tempest.services.compute.json.servers_client import ServersClientJSON
Leo Toyoda3ae31e12013-04-19 11:19:57 +090059from tempest.services.compute.json.services_client import ServicesClientJSON
Leo Toyodad80b6a02013-05-08 12:15:13 +090060from tempest.services.compute.json.tenant_usages_client import \
61 TenantUsagesClientJSON
Matthew Treinisha83a16e2012-12-07 13:44:02 -050062from tempest.services.compute.json.volumes_extensions_client import \
harika-vakadi1a9ad612012-12-14 19:12:08 +053063 VolumesExtensionsClientJSON
ivan-zhu00fe64f2013-08-20 19:35:51 +080064from tempest.services.compute.v3.json.aggregates_client import \
65 AggregatesV3ClientJSON
ivan-zhuac7b3802013-08-21 16:03:53 +080066from tempest.services.compute.v3.json.availability_zone_client import \
67 AvailabilityZoneV3ClientJSON
ivan-zhu0e062922013-12-17 16:14:12 +080068from tempest.services.compute.v3.json.certificates_client import \
69 CertificatesV3ClientJSON
ivan-zhu31d98482013-08-22 10:51:48 +080070from tempest.services.compute.v3.json.extensions_client import \
71 ExtensionsV3ClientJSON
ivan-zhub25900a2013-12-13 16:28:45 +080072from tempest.services.compute.v3.json.flavors_client import FlavorsV3ClientJSON
ivan-zhu00fe64f2013-08-20 19:35:51 +080073from tempest.services.compute.v3.json.hosts_client import HostsV3ClientJSON
ivan-zhu6f5f9e92013-08-21 22:16:37 +080074from tempest.services.compute.v3.json.hypervisor_client import \
75 HypervisorV3ClientJSON
ivan-zhu91feab92013-08-15 18:25:33 +080076from tempest.services.compute.v3.json.interfaces_client import \
77 InterfacesV3ClientJSON
ivan-zhu7e7e6a32013-11-20 16:07:29 +080078from tempest.services.compute.v3.json.keypairs_client import \
79 KeyPairsV3ClientJSON
ivan-zhub6d69ee2013-12-17 14:16:31 +080080from tempest.services.compute.v3.json.quotas_client import \
81 QuotasV3ClientJSON
ivan-zhu8f992be2013-07-31 14:56:58 +080082from tempest.services.compute.v3.json.servers_client import \
83 ServersV3ClientJSON
ivan-zhu5c86ae62013-08-20 21:09:01 +080084from tempest.services.compute.v3.json.services_client import \
85 ServicesV3ClientJSON
Ken'ichi Ohmichi3d6b6fa2014-01-08 04:42:16 +090086from tempest.services.compute.v3.json.version_client import \
87 VersionV3ClientJSON
Mitsuhiko Yamazakiae8fc532013-04-22 11:17:35 +090088from tempest.services.compute.xml.aggregates_client import AggregatesClientXML
Leo Toyodaa5278912013-04-16 15:40:12 +090089from tempest.services.compute.xml.availability_zone_client import \
90 AvailabilityZoneClientXML
ivan-zhud57f3cf2013-11-06 16:59:52 +080091from tempest.services.compute.xml.certificates_client import \
92 CertificatesClientXML
dwallecke62b9f02012-10-10 23:34:42 -050093from tempest.services.compute.xml.extensions_client import ExtensionsClientXML
Sean Dague2416cf32013-04-10 08:29:07 -040094from tempest.services.compute.xml.fixed_ips_client import FixedIPsClientXML
dwallecke62b9f02012-10-10 23:34:42 -050095from tempest.services.compute.xml.flavors_client import FlavorsClientXML
96from tempest.services.compute.xml.floating_ips_client import \
harika-vakadi1a9ad612012-12-14 19:12:08 +053097 FloatingIPsClientXML
Ken'ichi Ohmichia1aa44c2013-12-06 20:48:24 +090098from tempest.services.compute.xml.hosts_client import HostsClientXML
Tony Yang3d5f1632013-06-06 14:17:57 +080099from tempest.services.compute.xml.hypervisor_client import HypervisorClientXML
dwallecke62b9f02012-10-10 23:34:42 -0500100from tempest.services.compute.xml.images_client import ImagesClientXML
ivan-zhuef7a1bd2013-10-22 17:56:46 +0800101from tempest.services.compute.xml.instance_usage_audit_log_client import \
102 InstanceUsagesAuditLogClientXML
Sean Dague2416cf32013-04-10 08:29:07 -0400103from tempest.services.compute.xml.interfaces_client import \
104 InterfacesClientXML
dwallecke62b9f02012-10-10 23:34:42 -0500105from tempest.services.compute.xml.keypairs_client import KeyPairsClientXML
106from tempest.services.compute.xml.limits_client import LimitsClientXML
rajalakshmi-ganesan1982c3c2013-01-10 14:56:45 +0530107from tempest.services.compute.xml.quotas_client import QuotasClientXML
dwallecke62b9f02012-10-10 23:34:42 -0500108from tempest.services.compute.xml.security_groups_client \
harika-vakadi1a9ad612012-12-14 19:12:08 +0530109 import SecurityGroupsClientXML
dwallecke62b9f02012-10-10 23:34:42 -0500110from tempest.services.compute.xml.servers_client import ServersClientXML
Leo Toyoda3ae31e12013-04-19 11:19:57 +0900111from tempest.services.compute.xml.services_client import ServicesClientXML
Leo Toyodad80b6a02013-05-08 12:15:13 +0900112from tempest.services.compute.xml.tenant_usages_client import \
113 TenantUsagesClientXML
Matthew Treinisha83a16e2012-12-07 13:44:02 -0500114from tempest.services.compute.xml.volumes_extensions_client import \
harika-vakadi1a9ad612012-12-14 19:12:08 +0530115 VolumesExtensionsClientXML
Sergey Lukjanov3bc60e92013-12-10 16:40:50 +0400116from tempest.services.data_processing.v1_1.client import DataProcessingClient
Attila Fazekas407b6db2013-01-19 12:48:36 +0100117from tempest.services.identity.json.identity_client import IdentityClientJSON
118from tempest.services.identity.json.identity_client import TokenClientJSON
nayna-patel914b4712013-07-16 08:29:05 +0000119from tempest.services.identity.v3.json.credentials_client import \
120 CredentialsClientJSON
Sean Dague2416cf32013-04-10 08:29:07 -0400121from tempest.services.identity.v3.json.endpoints_client import \
122 EndPointClientJSON
rajalakshmi-ganesan7312bb52013-01-29 20:03:42 +0530123from tempest.services.identity.v3.json.identity_client import \
124 IdentityV3ClientJSON
nayna-patelb35f7232013-06-28 07:08:44 +0000125from tempest.services.identity.v3.json.identity_client import V3TokenClientJSON
harika-vakadi40e10112013-02-08 14:38:09 +0530126from tempest.services.identity.v3.json.policy_client import PolicyClientJSON
harika-vakadia92dd742013-02-19 20:41:22 +0530127from tempest.services.identity.v3.json.service_client import \
128 ServiceClientJSON
nayna-patel914b4712013-07-16 08:29:05 +0000129from tempest.services.identity.v3.xml.credentials_client import \
130 CredentialsClientXML
rajalakshmi-ganesanab426722013-02-08 15:49:15 +0530131from tempest.services.identity.v3.xml.endpoints_client import EndPointClientXML
rajalakshmi-ganesan7312bb52013-01-29 20:03:42 +0530132from tempest.services.identity.v3.xml.identity_client import \
133 IdentityV3ClientXML
nayna-patelb35f7232013-06-28 07:08:44 +0000134from tempest.services.identity.v3.xml.identity_client import V3TokenClientXML
harika-vakadi40e10112013-02-08 14:38:09 +0530135from tempest.services.identity.v3.xml.policy_client import PolicyClientXML
harika-vakadia92dd742013-02-19 20:41:22 +0530136from tempest.services.identity.v3.xml.service_client import \
137 ServiceClientXML
Attila Fazekas407b6db2013-01-19 12:48:36 +0100138from tempest.services.identity.xml.identity_client import IdentityClientXML
139from tempest.services.identity.xml.identity_client import TokenClientXML
Matthew Treinish6d59c992013-03-01 16:20:04 -0500140from tempest.services.image.v1.json.image_client import ImageClientJSON
Matthew Treinisha62347f2013-03-01 16:37:30 -0500141from tempest.services.image.v2.json.image_client import ImageClientV2JSON
raiesmh0867698322013-08-20 13:09:01 +0530142from tempest.services.network.json.network_client import NetworkClientJSON
143from tempest.services.network.xml.network_client import NetworkClientXML
dwalleck5d734432012-10-04 01:11:47 -0500144from tempest.services.object_storage.account_client import AccountClient
harika-vakadi2daed0a2013-01-01 20:51:39 +0530145from tempest.services.object_storage.account_client import \
146 AccountClientCustomizedHeader
Attila Fazekas6968dd52013-02-15 17:05:53 +0100147from tempest.services.object_storage.container_client import ContainerClient
148from tempest.services.object_storage.object_client import ObjectClient
149from tempest.services.object_storage.object_client import \
150 ObjectClientCustomizedHeader
Steve Bakerc60e4e32013-05-06 15:22:41 +1200151from tempest.services.orchestration.json.orchestration_client import \
152 OrchestrationClient
Nikolay Pliashechnikovb053aab2013-11-05 06:06:44 -0800153from tempest.services.telemetry.json.telemetry_client import \
154 TelemetryClientJSON
155from tempest.services.telemetry.xml.telemetry_client import \
156 TelemetryClientXML
Nayna Patel4a5024c2013-11-18 07:08:23 +0000157from tempest.services.volume.json.admin.volume_hosts_client import \
158 VolumeHostsClientJSON
Attila Fazekas6968dd52013-02-15 17:05:53 +0100159from tempest.services.volume.json.admin.volume_types_client import \
160 VolumeTypesClientJSON
Giulio Fidente74b08ad2014-01-18 04:02:51 +0100161from tempest.services.volume.json.backups_client import BackupsClientJSON
Matthew Treinish2324e6b2013-10-21 20:25:17 +0000162from tempest.services.volume.json.extensions_client import \
163 ExtensionsClientJSON as VolumeExtensionClientJSON
Attila Fazekas6968dd52013-02-15 17:05:53 +0100164from tempest.services.volume.json.snapshots_client import SnapshotsClientJSON
165from tempest.services.volume.json.volumes_client import VolumesClientJSON
Zhi Kun Liu8cc3c842014-01-07 10:44:34 +0800166from tempest.services.volume.v2.json.volumes_client import VolumesV2ClientJSON
167from tempest.services.volume.v2.xml.volumes_client import VolumesV2ClientXML
Nayna Patel4a5024c2013-11-18 07:08:23 +0000168from tempest.services.volume.xml.admin.volume_hosts_client import \
169 VolumeHostsClientXML
Attila Fazekas6968dd52013-02-15 17:05:53 +0100170from tempest.services.volume.xml.admin.volume_types_client import \
171 VolumeTypesClientXML
Giulio Fidente74b08ad2014-01-18 04:02:51 +0100172from tempest.services.volume.xml.backups_client import BackupsClientXML
Matthew Treinish2324e6b2013-10-21 20:25:17 +0000173from tempest.services.volume.xml.extensions_client import \
174 ExtensionsClientXML as VolumeExtensionClientXML
Attila Fazekas6968dd52013-02-15 17:05:53 +0100175from tempest.services.volume.xml.snapshots_client import SnapshotsClientXML
176from tempest.services.volume.xml.volumes_client import VolumesClientXML
Vincent Hou6b8a7b72012-08-25 01:24:33 +0800177
Sean Dague86bd8422013-12-20 09:56:44 -0500178CONF = config.CONF
Jay Pipes3f981df2012-03-27 18:59:44 -0400179LOG = logging.getLogger(__name__)
180
Vincent Hou6b8a7b72012-08-25 01:24:33 +0800181
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000182class Manager(manager.Manager):
Daryl Walleck1465d612011-11-02 02:22:15 -0500183
Jay Pipes3f981df2012-03-27 18:59:44 -0400184 """
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000185 Top level manager for OpenStack tempest clients
Jay Pipes3f981df2012-03-27 18:59:44 -0400186 """
187
James E. Blaire6d8ee12013-01-18 21:33:45 +0000188 def __init__(self, username=None, password=None, tenant_name=None,
Marc Koderer24eb89c2014-01-31 11:23:33 +0100189 interface='json', service=None):
Jay Pipesff10d552012-04-06 14:18:50 -0400190 """
191 We allow overriding of the credentials used within the various
192 client classes managed by the Manager object. Left as None, the
193 standard username/password/tenant_name is used.
194
195 :param username: Override of the username
196 :param password: Override of the password
197 :param tenant_name: Override of the tenant name
198 """
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000199 self.interface = interface
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000200 self.client_type = 'tempest'
201 # super cares for credentials validation
202 super(Manager, self).__init__(
203 username=username, password=password, tenant_name=tenant_name)
Brant Knudsonc7ca3342013-03-28 21:08:50 -0500204
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000205 if self.interface == 'xml':
206 self.certificates_client = CertificatesClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000207 self.auth_provider)
208 self.servers_client = ServersClientXML(self.auth_provider)
209 self.limits_client = LimitsClientXML(self.auth_provider)
210 self.images_client = ImagesClientXML(self.auth_provider)
211 self.keypairs_client = KeyPairsClientXML(self.auth_provider)
212 self.quotas_client = QuotasClientXML(self.auth_provider)
213 self.flavors_client = FlavorsClientXML(self.auth_provider)
214 self.extensions_client = ExtensionsClientXML(self.auth_provider)
Attila Fazekas7e678de2013-07-13 14:13:28 +0200215 self.volumes_extensions_client = VolumesExtensionsClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000216 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000217 self.floating_ips_client = FloatingIPsClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000218 self.auth_provider)
219 self.backups_client = BackupsClientXML(self.auth_provider)
220 self.snapshots_client = SnapshotsClientXML(self.auth_provider)
221 self.volumes_client = VolumesClientXML(self.auth_provider)
222 self.volumes_v2_client = VolumesV2ClientXML(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000223 self.volume_types_client = VolumeTypesClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000224 self.auth_provider)
225 self.identity_client = IdentityClientXML(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000226 self.identity_v3_client = IdentityV3ClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000227 self.auth_provider)
Attila Fazekas7e678de2013-07-13 14:13:28 +0200228 self.security_groups_client = SecurityGroupsClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000229 self.auth_provider)
230 self.interfaces_client = InterfacesClientXML(self.auth_provider)
231 self.endpoints_client = EndPointClientXML(self.auth_provider)
232 self.fixed_ips_client = FixedIPsClientXML(self.auth_provider)
Attila Fazekas7e678de2013-07-13 14:13:28 +0200233 self.availability_zone_client = AvailabilityZoneClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000234 self.auth_provider)
235 self.service_client = ServiceClientXML(self.auth_provider)
236 self.aggregates_client = AggregatesClientXML(self.auth_provider)
237 self.services_client = ServicesClientXML(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000238 self.tenant_usages_client = TenantUsagesClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000239 self.auth_provider)
240 self.policy_client = PolicyClientXML(self.auth_provider)
241 self.hosts_client = HostsClientXML(self.auth_provider)
242 self.hypervisor_client = HypervisorClientXML(self.auth_provider)
243 self.network_client = NetworkClientXML(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000244 self.credentials_client = CredentialsClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000245 self.auth_provider)
ivan-zhuef7a1bd2013-10-22 17:56:46 +0800246 self.instance_usages_audit_log_client = \
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000247 InstanceUsagesAuditLogClientXML(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000248 self.volume_hosts_client = VolumeHostsClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000249 self.auth_provider)
Matthew Treinish2324e6b2013-10-21 20:25:17 +0000250 self.volumes_extension_client = VolumeExtensionClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000251 self.auth_provider)
Nikolay Pliashechnikovb053aab2013-11-05 06:06:44 -0800252 if CONF.service_available.ceilometer:
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000253 self.telemetry_client = TelemetryClientXML(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000254 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000255 self.token_client = TokenClientXML()
256 self.token_v3_client = V3TokenClientXML()
Brant Knudsonc7ca3342013-03-28 21:08:50 -0500257
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000258 elif self.interface == 'json':
259 self.certificates_client = CertificatesClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000260 self.auth_provider)
ivan-zhu0e062922013-12-17 16:14:12 +0800261 self.certificates_v3_client = CertificatesV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000262 self.auth_provider)
263 self.baremetal_client = BaremetalClientJSON(self.auth_provider)
264 self.servers_client = ServersClientJSON(self.auth_provider)
265 self.servers_v3_client = ServersV3ClientJSON(self.auth_provider)
266 self.limits_client = LimitsClientJSON(self.auth_provider)
267 self.images_client = ImagesClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000268 self.keypairs_v3_client = KeyPairsV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000269 self.auth_provider)
270 self.keypairs_client = KeyPairsClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000271 self.keypairs_v3_client = KeyPairsV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000272 self.auth_provider)
273 self.quotas_client = QuotasClientJSON(self.auth_provider)
274 self.quotas_v3_client = QuotasV3ClientJSON(self.auth_provider)
275 self.flavors_client = FlavorsClientJSON(self.auth_provider)
276 self.flavors_v3_client = FlavorsV3ClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000277 self.extensions_v3_client = ExtensionsV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000278 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000279 self.extensions_client = ExtensionsClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000280 self.auth_provider)
Attila Fazekas7e678de2013-07-13 14:13:28 +0200281 self.volumes_extensions_client = VolumesExtensionsClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000282 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000283 self.floating_ips_client = FloatingIPsClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000284 self.auth_provider)
285 self.backups_client = BackupsClientJSON(self.auth_provider)
286 self.snapshots_client = SnapshotsClientJSON(self.auth_provider)
287 self.volumes_client = VolumesClientJSON(self.auth_provider)
288 self.volumes_v2_client = VolumesV2ClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000289 self.volume_types_client = VolumeTypesClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000290 self.auth_provider)
291 self.identity_client = IdentityClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000292 self.identity_v3_client = IdentityV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000293 self.auth_provider)
Attila Fazekas7e678de2013-07-13 14:13:28 +0200294 self.security_groups_client = SecurityGroupsClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000295 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000296 self.interfaces_v3_client = InterfacesV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000297 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000298 self.interfaces_client = InterfacesClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000299 self.auth_provider)
300 self.endpoints_client = EndPointClientJSON(self.auth_provider)
301 self.fixed_ips_client = FixedIPsClientJSON(self.auth_provider)
ivan-zhuac7b3802013-08-21 16:03:53 +0800302 self.availability_zone_v3_client = AvailabilityZoneV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000303 self.auth_provider)
Attila Fazekas7e678de2013-07-13 14:13:28 +0200304 self.availability_zone_client = AvailabilityZoneClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000305 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000306 self.services_v3_client = ServicesV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000307 self.auth_provider)
308 self.service_client = ServiceClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000309 self.aggregates_v3_client = AggregatesV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000310 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000311 self.aggregates_client = AggregatesClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000312 self.auth_provider)
313 self.services_client = ServicesClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000314 self.tenant_usages_client = TenantUsagesClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000315 self.auth_provider)
316 self.version_v3_client = VersionV3ClientJSON(self.auth_provider)
317 self.policy_client = PolicyClientJSON(self.auth_provider)
318 self.hosts_client = HostsClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000319 self.hypervisor_v3_client = HypervisorV3ClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000320 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000321 self.hypervisor_client = HypervisorClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000322 self.auth_provider)
323 self.network_client = NetworkClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000324 self.credentials_client = CredentialsClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000325 self.auth_provider)
ivan-zhuef7a1bd2013-10-22 17:56:46 +0800326 self.instance_usages_audit_log_client = \
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000327 InstanceUsagesAuditLogClientJSON(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000328 self.volume_hosts_client = VolumeHostsClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000329 self.auth_provider)
Matthew Treinish2324e6b2013-10-21 20:25:17 +0000330 self.volumes_extension_client = VolumeExtensionClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000331 self.auth_provider)
332 self.hosts_v3_client = HostsV3ClientJSON(self.auth_provider)
Nikolay Pliashechnikovb053aab2013-11-05 06:06:44 -0800333 if CONF.service_available.ceilometer:
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000334 self.telemetry_client = TelemetryClientJSON(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000335 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000336 self.token_client = TokenClientJSON()
337 self.token_v3_client = V3TokenClientJSON()
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000338 self.negative_client = NegativeRestClient(self.auth_provider)
Marc Koderer24eb89c2014-01-31 11:23:33 +0100339 self.negative_client.service = service
Attila Fazekas7e678de2013-07-13 14:13:28 +0200340
Attila Fazekas7e678de2013-07-13 14:13:28 +0200341 else:
Dan Smithcf8fab62012-08-14 08:03:48 -0700342 msg = "Unsupported interface type `%s'" % interface
343 raise exceptions.InvalidConfiguration(msg)
Attila Fazekas7e678de2013-07-13 14:13:28 +0200344
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000345 # TODO(andreaf) EC2 client still do their auth, v2 only
346 ec2_client_args = (self.credentials.get('username'),
347 self.credentials.get('password'),
348 CONF.identity.uri,
349 self.credentials.get('tenant_name'))
350
Attila Fazekas7e678de2013-07-13 14:13:28 +0200351 # common clients
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000352 self.account_client = AccountClient(self.auth_provider)
Sean Dague86bd8422013-12-20 09:56:44 -0500353 if CONF.service_available.glance:
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000354 self.image_client = ImageClientJSON(self.auth_provider)
355 self.image_client_v2 = ImageClientV2JSON(self.auth_provider)
356 self.container_client = ContainerClient(self.auth_provider)
357 self.object_client = ObjectClient(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000358 self.orchestration_client = OrchestrationClient(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000359 self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000360 self.ec2api_client = botoclients.APIClientEC2(*ec2_client_args)
361 self.s3_client = botoclients.ObjectClientS3(*ec2_client_args)
362 self.custom_object_client = ObjectClientCustomizedHeader(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000363 self.auth_provider)
harika-vakadi2daed0a2013-01-01 20:51:39 +0530364 self.custom_account_client = \
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000365 AccountClientCustomizedHeader(self.auth_provider)
Andrea Frittoli8bbdb162014-01-06 11:06:13 +0000366 self.data_processing_client = DataProcessingClient(
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000367 self.auth_provider)
Jay Pipes50677282012-01-06 15:39:20 -0500368
369
Jay Pipesff10d552012-04-06 14:18:50 -0400370class AltManager(Manager):
371
372 """
373 Manager object that uses the alt_XXX credentials for its
374 managed client objects
375 """
376
Marc Koderer24eb89c2014-01-31 11:23:33 +0100377 def __init__(self, interface='json', service=None):
Sean Dague86bd8422013-12-20 09:56:44 -0500378 super(AltManager, self).__init__(CONF.identity.alt_username,
379 CONF.identity.alt_password,
380 CONF.identity.alt_tenant_name,
Marc Koderer24eb89c2014-01-31 11:23:33 +0100381 interface=interface,
382 service=service)
Jay Pipesff10d552012-04-06 14:18:50 -0400383
384
385class AdminManager(Manager):
386
387 """
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100388 Manager object that uses the admin credentials for its
Jay Pipesff10d552012-04-06 14:18:50 -0400389 managed client objects
390 """
391
Marc Koderer24eb89c2014-01-31 11:23:33 +0100392 def __init__(self, interface='json', service=None):
Sean Dague86bd8422013-12-20 09:56:44 -0500393 super(AdminManager, self).__init__(CONF.identity.admin_username,
394 CONF.identity.admin_password,
395 CONF.identity.admin_tenant_name,
Marc Koderer24eb89c2014-01-31 11:23:33 +0100396 interface=interface,
397 service=service)
Jay Pipesff10d552012-04-06 14:18:50 -0400398
399
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100400class ComputeAdminManager(Manager):
401
402 """
403 Manager object that uses the compute_admin credentials for its
404 managed client objects
405 """
406
Marc Koderer24eb89c2014-01-31 11:23:33 +0100407 def __init__(self, interface='json', service=None):
Attila Fazekascadcb1f2013-01-21 23:10:53 +0100408 base = super(ComputeAdminManager, self)
Sean Dague86bd8422013-12-20 09:56:44 -0500409 base.__init__(CONF.compute_admin.username,
410 CONF.compute_admin.password,
411 CONF.compute_admin.tenant_name,
Marc Koderer24eb89c2014-01-31 11:23:33 +0100412 interface=interface,
413 service=service)
Steve Bakerc60e4e32013-05-06 15:22:41 +1200414
415
416class OrchestrationManager(Manager):
417 """
418 Manager object that uses the admin credentials for its
419 so that heat templates can create users
420 """
Marc Koderer24eb89c2014-01-31 11:23:33 +0100421 def __init__(self, interface='json', service=None):
Steve Bakerc60e4e32013-05-06 15:22:41 +1200422 base = super(OrchestrationManager, self)
Steve Bakerb07f9742014-02-19 10:03:57 +1300423 # heat currently needs an admin user so that stacks can create users
424 # however the tests need the demo tenant so that the neutron
425 # private network is the default. DO NOT change this auth combination
426 # until heat can run with the demo user.
Sean Dague86bd8422013-12-20 09:56:44 -0500427 base.__init__(CONF.identity.admin_username,
428 CONF.identity.admin_password,
Steve Bakerb07f9742014-02-19 10:03:57 +1300429 CONF.identity.tenant_name,
Marc Koderer24eb89c2014-01-31 11:23:33 +0100430 interface=interface,
431 service=service)
Andrea Frittolif9cde7e2014-02-18 09:57:04 +0000432
433
434class OfficialClientManager(manager.Manager):
435 """
436 Manager that provides access to the official python clients for
437 calling various OpenStack APIs.
438 """
439
440 NOVACLIENT_VERSION = '2'
441 CINDERCLIENT_VERSION = '1'
442 HEATCLIENT_VERSION = '1'
443
444 def __init__(self, username, password, tenant_name):
445 # FIXME(andreaf) Auth provider for client_type 'official' is
446 # not implemented yet, setting to 'tempest' for now.
447 self.client_type = 'tempest'
448 self.interface = None
449 # super cares for credentials validation
450 super(OfficialClientManager, self).__init__(
451 username=username, password=password, tenant_name=tenant_name)
452 self.compute_client = self._get_compute_client(username,
453 password,
454 tenant_name)
455 self.identity_client = self._get_identity_client(username,
456 password,
457 tenant_name)
458 self.image_client = self._get_image_client()
459 self.network_client = self._get_network_client()
460 self.volume_client = self._get_volume_client(username,
461 password,
462 tenant_name)
463 self.object_storage_client = self._get_object_storage_client(
464 username,
465 password,
466 tenant_name)
467 self.orchestration_client = self._get_orchestration_client(
468 username,
469 password,
470 tenant_name)
471
472 def _get_compute_client(self, username, password, tenant_name):
473 # Novaclient will not execute operations for anyone but the
474 # identified user, so a new client needs to be created for
475 # each user that operations need to be performed for.
476 self._validate_credentials(username, password, tenant_name)
477
478 auth_url = CONF.identity.uri
479 dscv = CONF.identity.disable_ssl_certificate_validation
480 region = CONF.identity.region
481
482 client_args = (username, password, tenant_name, auth_url)
483
484 # Create our default Nova client to use in testing
485 service_type = CONF.compute.catalog_type
486 endpoint_type = CONF.compute.endpoint_type
487 return novaclient.client.Client(self.NOVACLIENT_VERSION,
488 *client_args,
489 service_type=service_type,
490 endpoint_type=endpoint_type,
491 region_name=region,
492 no_cache=True,
493 insecure=dscv,
494 http_log_debug=True)
495
496 def _get_image_client(self):
497 token = self.identity_client.auth_token
498 region = CONF.identity.region
499 endpoint_type = CONF.image.endpoint_type
500 endpoint = self.identity_client.service_catalog.url_for(
501 attr='region', filter_value=region,
502 service_type=CONF.image.catalog_type, endpoint_type=endpoint_type)
503 dscv = CONF.identity.disable_ssl_certificate_validation
504 return glanceclient.Client('1', endpoint=endpoint, token=token,
505 insecure=dscv)
506
507 def _get_volume_client(self, username, password, tenant_name):
508 auth_url = CONF.identity.uri
509 region = CONF.identity.region
510 endpoint_type = CONF.volume.endpoint_type
511 return cinderclient.client.Client(self.CINDERCLIENT_VERSION,
512 username,
513 password,
514 tenant_name,
515 auth_url,
516 region_name=region,
517 endpoint_type=endpoint_type,
518 http_log_debug=True)
519
520 def _get_object_storage_client(self, username, password, tenant_name):
521 auth_url = CONF.identity.uri
522 # add current tenant to swift operator role group.
523 keystone_admin = self._get_identity_client(
524 CONF.identity.admin_username,
525 CONF.identity.admin_password,
526 CONF.identity.admin_tenant_name)
527
528 # enable test user to operate swift by adding operator role to him.
529 roles = keystone_admin.roles.list()
530 operator_role = CONF.object_storage.operator_role
531 member_role = [role for role in roles if role.name == operator_role][0]
532 # NOTE(maurosr): This is surrounded in the try-except block cause
533 # neutron tests doesn't have tenant isolation.
534 try:
535 keystone_admin.roles.add_user_role(self.identity_client.user_id,
536 member_role.id,
537 self.identity_client.tenant_id)
538 except keystoneclient.exceptions.Conflict:
539 pass
540
541 endpoint_type = CONF.object_storage.endpoint_type
542 os_options = {'endpoint_type': endpoint_type}
543 return swiftclient.Connection(auth_url, username, password,
544 tenant_name=tenant_name,
545 auth_version='2',
546 os_options=os_options)
547
548 def _get_orchestration_client(self, username=None, password=None,
549 tenant_name=None):
550 if not username:
551 username = CONF.identity.admin_username
552 if not password:
553 password = CONF.identity.admin_password
554 if not tenant_name:
555 tenant_name = CONF.identity.tenant_name
556
557 self._validate_credentials(username, password, tenant_name)
558
559 keystone = self._get_identity_client(username, password, tenant_name)
560 region = CONF.identity.region
561 endpoint_type = CONF.orchestration.endpoint_type
562 token = keystone.auth_token
563 service_type = CONF.orchestration.catalog_type
564 try:
565 endpoint = keystone.service_catalog.url_for(
566 attr='region',
567 filter_value=region,
568 service_type=service_type,
569 endpoint_type=endpoint_type)
570 except keystoneclient.exceptions.EndpointNotFound:
571 return None
572 else:
573 return heatclient.client.Client(self.HEATCLIENT_VERSION,
574 endpoint,
575 token=token,
576 username=username,
577 password=password)
578
579 def _get_identity_client(self, username, password, tenant_name):
580 # This identity client is not intended to check the security
581 # of the identity service, so use admin credentials by default.
582 self._validate_credentials(username, password, tenant_name)
583
584 auth_url = CONF.identity.uri
585 dscv = CONF.identity.disable_ssl_certificate_validation
586
587 return keystoneclient.v2_0.client.Client(username=username,
588 password=password,
589 tenant_name=tenant_name,
590 auth_url=auth_url,
591 insecure=dscv)
592
593 def _get_network_client(self):
594 # The intended configuration is for the network client to have
595 # admin privileges and indicate for whom resources are being
596 # created via a 'tenant_id' parameter. This will often be
597 # preferable to authenticating as a specific user because
598 # working with certain resources (public routers and networks)
599 # often requires admin privileges anyway.
600 username = CONF.identity.admin_username
601 password = CONF.identity.admin_password
602 tenant_name = CONF.identity.admin_tenant_name
603
604 self._validate_credentials(username, password, tenant_name)
605
606 auth_url = CONF.identity.uri
607 dscv = CONF.identity.disable_ssl_certificate_validation
608 endpoint_type = CONF.network.endpoint_type
609
610 return neutronclient.v2_0.client.Client(username=username,
611 password=password,
612 tenant_name=tenant_name,
613 endpoint_type=endpoint_type,
614 auth_url=auth_url,
615 insecure=dscv)