ZhiQiang Fan | 39f9722 | 2013-09-20 04:49:44 +0800 | [diff] [blame] | 1 | # Copyright 2012 OpenStack Foundation |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 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 | |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 16 | import keystoneclient.exceptions |
| 17 | import keystoneclient.v2_0.client |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 18 | |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 19 | from tempest.common.rest_client import NegativeRestClient |
Jay Pipes | f38eaac | 2012-06-21 13:37:35 -0400 | [diff] [blame] | 20 | from tempest import config |
Daryl Walleck | 587385b | 2012-03-03 13:00:26 -0600 | [diff] [blame] | 21 | from tempest import exceptions |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 22 | from tempest import manager |
Matthew Treinish | f4a9b0f | 2013-07-26 16:58:26 -0400 | [diff] [blame] | 23 | from tempest.openstack.common import log as logging |
Roman Prykhodchenko | 62b1ed1 | 2013-10-16 21:51:47 +0300 | [diff] [blame] | 24 | from tempest.services.baremetal.v1.client_json import BaremetalClientJSON |
Attila Fazekas | 1aed620 | 2013-02-11 14:47:45 +0100 | [diff] [blame] | 25 | from tempest.services import botoclients |
Mitsuhiko Yamazaki | 74f0707 | 2013-04-02 11:52:31 +0900 | [diff] [blame] | 26 | from tempest.services.compute.json.aggregates_client import \ |
| 27 | AggregatesClientJSON |
Leo Toyoda | a527891 | 2013-04-16 15:40:12 +0900 | [diff] [blame] | 28 | from tempest.services.compute.json.availability_zone_client import \ |
| 29 | AvailabilityZoneClientJSON |
ivan-zhu | d57f3cf | 2013-11-06 16:59:52 +0800 | [diff] [blame] | 30 | from tempest.services.compute.json.certificates_client import \ |
| 31 | CertificatesClientJSON |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 32 | from tempest.services.compute.json.extensions_client import \ |
harika-vakadi | 1a9ad61 | 2012-12-14 19:12:08 +0530 | [diff] [blame] | 33 | ExtensionsClientJSON |
Sean Dague | 2416cf3 | 2013-04-10 08:29:07 -0400 | [diff] [blame] | 34 | from tempest.services.compute.json.fixed_ips_client import FixedIPsClientJSON |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 35 | from tempest.services.compute.json.flavors_client import FlavorsClientJSON |
| 36 | from tempest.services.compute.json.floating_ips_client import \ |
harika-vakadi | 1a9ad61 | 2012-12-14 19:12:08 +0530 | [diff] [blame] | 37 | FloatingIPsClientJSON |
Attila Fazekas | 8e99b99 | 2013-02-24 09:53:23 +0100 | [diff] [blame] | 38 | from tempest.services.compute.json.hosts_client import HostsClientJSON |
Tony Yang | 3d5f163 | 2013-06-06 14:17:57 +0800 | [diff] [blame] | 39 | from tempest.services.compute.json.hypervisor_client import \ |
| 40 | HypervisorClientJSON |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 41 | from tempest.services.compute.json.images_client import ImagesClientJSON |
ivan-zhu | ef7a1bd | 2013-10-22 17:56:46 +0800 | [diff] [blame] | 42 | from tempest.services.compute.json.instance_usage_audit_log_client import \ |
| 43 | InstanceUsagesAuditLogClientJSON |
Sean Dague | 2416cf3 | 2013-04-10 08:29:07 -0400 | [diff] [blame] | 44 | from tempest.services.compute.json.interfaces_client import \ |
| 45 | InterfacesClientJSON |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 46 | from tempest.services.compute.json.keypairs_client import KeyPairsClientJSON |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 47 | from tempest.services.compute.json.limits_client import LimitsClientJSON |
Ken'ichi Ohmichi | 2fdc182 | 2014-03-18 09:10:57 +0900 | [diff] [blame] | 48 | from tempest.services.compute.json.migrations_client import \ |
| 49 | MigrationsClientJSON |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 50 | from tempest.services.compute.json.quotas_client import QuotasClientJSON |
Matthew Treinish | a83a16e | 2012-12-07 13:44:02 -0500 | [diff] [blame] | 51 | from tempest.services.compute.json.security_groups_client import \ |
harika-vakadi | 1a9ad61 | 2012-12-14 19:12:08 +0530 | [diff] [blame] | 52 | SecurityGroupsClientJSON |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 53 | from tempest.services.compute.json.servers_client import ServersClientJSON |
Leo Toyoda | 3ae31e1 | 2013-04-19 11:19:57 +0900 | [diff] [blame] | 54 | from tempest.services.compute.json.services_client import ServicesClientJSON |
Leo Toyoda | d80b6a0 | 2013-05-08 12:15:13 +0900 | [diff] [blame] | 55 | from tempest.services.compute.json.tenant_usages_client import \ |
| 56 | TenantUsagesClientJSON |
Matthew Treinish | a83a16e | 2012-12-07 13:44:02 -0500 | [diff] [blame] | 57 | from tempest.services.compute.json.volumes_extensions_client import \ |
harika-vakadi | 1a9ad61 | 2012-12-14 19:12:08 +0530 | [diff] [blame] | 58 | VolumesExtensionsClientJSON |
YuikoTakada | 8a2ec11 | 2014-02-18 21:13:51 +0000 | [diff] [blame] | 59 | from tempest.services.compute.v3.json.agents_client import AgentsV3ClientJSON |
ivan-zhu | 00fe64f | 2013-08-20 19:35:51 +0800 | [diff] [blame] | 60 | from tempest.services.compute.v3.json.aggregates_client import \ |
| 61 | AggregatesV3ClientJSON |
ivan-zhu | ac7b380 | 2013-08-21 16:03:53 +0800 | [diff] [blame] | 62 | from tempest.services.compute.v3.json.availability_zone_client import \ |
| 63 | AvailabilityZoneV3ClientJSON |
ivan-zhu | 0e06292 | 2013-12-17 16:14:12 +0800 | [diff] [blame] | 64 | from tempest.services.compute.v3.json.certificates_client import \ |
| 65 | CertificatesV3ClientJSON |
ivan-zhu | 31d9848 | 2013-08-22 10:51:48 +0800 | [diff] [blame] | 66 | from tempest.services.compute.v3.json.extensions_client import \ |
| 67 | ExtensionsV3ClientJSON |
ivan-zhu | b25900a | 2013-12-13 16:28:45 +0800 | [diff] [blame] | 68 | from tempest.services.compute.v3.json.flavors_client import FlavorsV3ClientJSON |
ivan-zhu | 00fe64f | 2013-08-20 19:35:51 +0800 | [diff] [blame] | 69 | from tempest.services.compute.v3.json.hosts_client import HostsV3ClientJSON |
ivan-zhu | 6f5f9e9 | 2013-08-21 22:16:37 +0800 | [diff] [blame] | 70 | from tempest.services.compute.v3.json.hypervisor_client import \ |
| 71 | HypervisorV3ClientJSON |
ivan-zhu | 91feab9 | 2013-08-15 18:25:33 +0800 | [diff] [blame] | 72 | from tempest.services.compute.v3.json.interfaces_client import \ |
| 73 | InterfacesV3ClientJSON |
ivan-zhu | 7e7e6a3 | 2013-11-20 16:07:29 +0800 | [diff] [blame] | 74 | from tempest.services.compute.v3.json.keypairs_client import \ |
| 75 | KeyPairsV3ClientJSON |
Ken'ichi Ohmichi | 8f088c1 | 2014-03-28 15:16:11 +0900 | [diff] [blame] | 76 | from tempest.services.compute.v3.json.migration_client import \ |
| 77 | MigrationsV3ClientJSON |
ivan-zhu | b6d69ee | 2013-12-17 14:16:31 +0800 | [diff] [blame] | 78 | from tempest.services.compute.v3.json.quotas_client import \ |
| 79 | QuotasV3ClientJSON |
ivan-zhu | 8f992be | 2013-07-31 14:56:58 +0800 | [diff] [blame] | 80 | from tempest.services.compute.v3.json.servers_client import \ |
| 81 | ServersV3ClientJSON |
ivan-zhu | 5c86ae6 | 2013-08-20 21:09:01 +0800 | [diff] [blame] | 82 | from tempest.services.compute.v3.json.services_client import \ |
| 83 | ServicesV3ClientJSON |
Ken'ichi Ohmichi | 3d6b6fa | 2014-01-08 04:42:16 +0900 | [diff] [blame] | 84 | from tempest.services.compute.v3.json.version_client import \ |
| 85 | VersionV3ClientJSON |
Mitsuhiko Yamazaki | ae8fc53 | 2013-04-22 11:17:35 +0900 | [diff] [blame] | 86 | from tempest.services.compute.xml.aggregates_client import AggregatesClientXML |
Leo Toyoda | a527891 | 2013-04-16 15:40:12 +0900 | [diff] [blame] | 87 | from tempest.services.compute.xml.availability_zone_client import \ |
| 88 | AvailabilityZoneClientXML |
ivan-zhu | d57f3cf | 2013-11-06 16:59:52 +0800 | [diff] [blame] | 89 | from tempest.services.compute.xml.certificates_client import \ |
| 90 | CertificatesClientXML |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 91 | from tempest.services.compute.xml.extensions_client import ExtensionsClientXML |
Sean Dague | 2416cf3 | 2013-04-10 08:29:07 -0400 | [diff] [blame] | 92 | from tempest.services.compute.xml.fixed_ips_client import FixedIPsClientXML |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 93 | from tempest.services.compute.xml.flavors_client import FlavorsClientXML |
| 94 | from tempest.services.compute.xml.floating_ips_client import \ |
harika-vakadi | 1a9ad61 | 2012-12-14 19:12:08 +0530 | [diff] [blame] | 95 | FloatingIPsClientXML |
Ken'ichi Ohmichi | a1aa44c | 2013-12-06 20:48:24 +0900 | [diff] [blame] | 96 | from tempest.services.compute.xml.hosts_client import HostsClientXML |
Tony Yang | 3d5f163 | 2013-06-06 14:17:57 +0800 | [diff] [blame] | 97 | from tempest.services.compute.xml.hypervisor_client import HypervisorClientXML |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 98 | from tempest.services.compute.xml.images_client import ImagesClientXML |
ivan-zhu | ef7a1bd | 2013-10-22 17:56:46 +0800 | [diff] [blame] | 99 | from tempest.services.compute.xml.instance_usage_audit_log_client import \ |
| 100 | InstanceUsagesAuditLogClientXML |
Sean Dague | 2416cf3 | 2013-04-10 08:29:07 -0400 | [diff] [blame] | 101 | from tempest.services.compute.xml.interfaces_client import \ |
| 102 | InterfacesClientXML |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 103 | from tempest.services.compute.xml.keypairs_client import KeyPairsClientXML |
| 104 | from tempest.services.compute.xml.limits_client import LimitsClientXML |
rajalakshmi-ganesan | 1982c3c | 2013-01-10 14:56:45 +0530 | [diff] [blame] | 105 | from tempest.services.compute.xml.quotas_client import QuotasClientXML |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 106 | from tempest.services.compute.xml.security_groups_client \ |
harika-vakadi | 1a9ad61 | 2012-12-14 19:12:08 +0530 | [diff] [blame] | 107 | import SecurityGroupsClientXML |
dwalleck | e62b9f0 | 2012-10-10 23:34:42 -0500 | [diff] [blame] | 108 | from tempest.services.compute.xml.servers_client import ServersClientXML |
Leo Toyoda | 3ae31e1 | 2013-04-19 11:19:57 +0900 | [diff] [blame] | 109 | from tempest.services.compute.xml.services_client import ServicesClientXML |
Leo Toyoda | d80b6a0 | 2013-05-08 12:15:13 +0900 | [diff] [blame] | 110 | from tempest.services.compute.xml.tenant_usages_client import \ |
| 111 | TenantUsagesClientXML |
Matthew Treinish | a83a16e | 2012-12-07 13:44:02 -0500 | [diff] [blame] | 112 | from tempest.services.compute.xml.volumes_extensions_client import \ |
harika-vakadi | 1a9ad61 | 2012-12-14 19:12:08 +0530 | [diff] [blame] | 113 | VolumesExtensionsClientXML |
Sergey Lukjanov | 3bc60e9 | 2013-12-10 16:40:50 +0400 | [diff] [blame] | 114 | from tempest.services.data_processing.v1_1.client import DataProcessingClient |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 115 | from tempest.services.database.json.flavors_client import \ |
| 116 | DatabaseFlavorsClientJSON |
Attila Fazekas | 407b6db | 2013-01-19 12:48:36 +0100 | [diff] [blame] | 117 | from tempest.services.identity.json.identity_client import IdentityClientJSON |
| 118 | from tempest.services.identity.json.identity_client import TokenClientJSON |
nayna-patel | 914b471 | 2013-07-16 08:29:05 +0000 | [diff] [blame] | 119 | from tempest.services.identity.v3.json.credentials_client import \ |
| 120 | CredentialsClientJSON |
Sean Dague | 2416cf3 | 2013-04-10 08:29:07 -0400 | [diff] [blame] | 121 | from tempest.services.identity.v3.json.endpoints_client import \ |
| 122 | EndPointClientJSON |
rajalakshmi-ganesan | 7312bb5 | 2013-01-29 20:03:42 +0530 | [diff] [blame] | 123 | from tempest.services.identity.v3.json.identity_client import \ |
| 124 | IdentityV3ClientJSON |
nayna-patel | b35f723 | 2013-06-28 07:08:44 +0000 | [diff] [blame] | 125 | from tempest.services.identity.v3.json.identity_client import V3TokenClientJSON |
harika-vakadi | 40e1011 | 2013-02-08 14:38:09 +0530 | [diff] [blame] | 126 | from tempest.services.identity.v3.json.policy_client import PolicyClientJSON |
harika-vakadi | a92dd74 | 2013-02-19 20:41:22 +0530 | [diff] [blame] | 127 | from tempest.services.identity.v3.json.service_client import \ |
| 128 | ServiceClientJSON |
nayna-patel | 914b471 | 2013-07-16 08:29:05 +0000 | [diff] [blame] | 129 | from tempest.services.identity.v3.xml.credentials_client import \ |
| 130 | CredentialsClientXML |
rajalakshmi-ganesan | ab42672 | 2013-02-08 15:49:15 +0530 | [diff] [blame] | 131 | from tempest.services.identity.v3.xml.endpoints_client import EndPointClientXML |
rajalakshmi-ganesan | 7312bb5 | 2013-01-29 20:03:42 +0530 | [diff] [blame] | 132 | from tempest.services.identity.v3.xml.identity_client import \ |
| 133 | IdentityV3ClientXML |
nayna-patel | b35f723 | 2013-06-28 07:08:44 +0000 | [diff] [blame] | 134 | from tempest.services.identity.v3.xml.identity_client import V3TokenClientXML |
harika-vakadi | 40e1011 | 2013-02-08 14:38:09 +0530 | [diff] [blame] | 135 | from tempest.services.identity.v3.xml.policy_client import PolicyClientXML |
harika-vakadi | a92dd74 | 2013-02-19 20:41:22 +0530 | [diff] [blame] | 136 | from tempest.services.identity.v3.xml.service_client import \ |
| 137 | ServiceClientXML |
Attila Fazekas | 407b6db | 2013-01-19 12:48:36 +0100 | [diff] [blame] | 138 | from tempest.services.identity.xml.identity_client import IdentityClientXML |
| 139 | from tempest.services.identity.xml.identity_client import TokenClientXML |
Matthew Treinish | 6d59c99 | 2013-03-01 16:20:04 -0500 | [diff] [blame] | 140 | from tempest.services.image.v1.json.image_client import ImageClientJSON |
Matthew Treinish | a62347f | 2013-03-01 16:37:30 -0500 | [diff] [blame] | 141 | from tempest.services.image.v2.json.image_client import ImageClientV2JSON |
raiesmh08 | 6769832 | 2013-08-20 13:09:01 +0530 | [diff] [blame] | 142 | from tempest.services.network.json.network_client import NetworkClientJSON |
| 143 | from tempest.services.network.xml.network_client import NetworkClientXML |
dwalleck | 5d73443 | 2012-10-04 01:11:47 -0500 | [diff] [blame] | 144 | from tempest.services.object_storage.account_client import AccountClient |
harika-vakadi | 2daed0a | 2013-01-01 20:51:39 +0530 | [diff] [blame] | 145 | from tempest.services.object_storage.account_client import \ |
| 146 | AccountClientCustomizedHeader |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 147 | from tempest.services.object_storage.container_client import ContainerClient |
| 148 | from tempest.services.object_storage.object_client import ObjectClient |
| 149 | from tempest.services.object_storage.object_client import \ |
| 150 | ObjectClientCustomizedHeader |
Steve Baker | c60e4e3 | 2013-05-06 15:22:41 +1200 | [diff] [blame] | 151 | from tempest.services.orchestration.json.orchestration_client import \ |
| 152 | OrchestrationClient |
Malini Kamalambal | 6e7b3b8 | 2014-02-06 06:49:04 -0500 | [diff] [blame] | 153 | from tempest.services.queuing.json.queuing_client import QueuingClientJSON |
Nikolay Pliashechnikov | b053aab | 2013-11-05 06:06:44 -0800 | [diff] [blame] | 154 | from tempest.services.telemetry.json.telemetry_client import \ |
| 155 | TelemetryClientJSON |
| 156 | from tempest.services.telemetry.xml.telemetry_client import \ |
| 157 | TelemetryClientXML |
Nayna Patel | 4a5024c | 2013-11-18 07:08:23 +0000 | [diff] [blame] | 158 | from tempest.services.volume.json.admin.volume_hosts_client import \ |
| 159 | VolumeHostsClientJSON |
Sylvain Baubeau | fdd3459 | 2014-02-20 18:40:10 +0100 | [diff] [blame] | 160 | from tempest.services.volume.json.admin.volume_quotas_client import \ |
| 161 | VolumeQuotasClientJSON |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 162 | from tempest.services.volume.json.admin.volume_types_client import \ |
| 163 | VolumeTypesClientJSON |
Giulio Fidente | 74b08ad | 2014-01-18 04:02:51 +0100 | [diff] [blame] | 164 | from tempest.services.volume.json.backups_client import BackupsClientJSON |
Matthew Treinish | 2324e6b | 2013-10-21 20:25:17 +0000 | [diff] [blame] | 165 | from tempest.services.volume.json.extensions_client import \ |
| 166 | ExtensionsClientJSON as VolumeExtensionClientJSON |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 167 | from tempest.services.volume.json.snapshots_client import SnapshotsClientJSON |
| 168 | from tempest.services.volume.json.volumes_client import VolumesClientJSON |
Zhi Kun Liu | 8cc3c84 | 2014-01-07 10:44:34 +0800 | [diff] [blame] | 169 | from tempest.services.volume.v2.json.volumes_client import VolumesV2ClientJSON |
| 170 | from tempest.services.volume.v2.xml.volumes_client import VolumesV2ClientXML |
Nayna Patel | 4a5024c | 2013-11-18 07:08:23 +0000 | [diff] [blame] | 171 | from tempest.services.volume.xml.admin.volume_hosts_client import \ |
| 172 | VolumeHostsClientXML |
Sylvain Baubeau | fdd3459 | 2014-02-20 18:40:10 +0100 | [diff] [blame] | 173 | from tempest.services.volume.xml.admin.volume_quotas_client import \ |
| 174 | VolumeQuotasClientXML |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 175 | from tempest.services.volume.xml.admin.volume_types_client import \ |
| 176 | VolumeTypesClientXML |
Giulio Fidente | 74b08ad | 2014-01-18 04:02:51 +0100 | [diff] [blame] | 177 | from tempest.services.volume.xml.backups_client import BackupsClientXML |
Matthew Treinish | 2324e6b | 2013-10-21 20:25:17 +0000 | [diff] [blame] | 178 | from tempest.services.volume.xml.extensions_client import \ |
| 179 | ExtensionsClientXML as VolumeExtensionClientXML |
Attila Fazekas | 6968dd5 | 2013-02-15 17:05:53 +0100 | [diff] [blame] | 180 | from tempest.services.volume.xml.snapshots_client import SnapshotsClientXML |
| 181 | from tempest.services.volume.xml.volumes_client import VolumesClientXML |
Vincent Hou | 6b8a7b7 | 2012-08-25 01:24:33 +0800 | [diff] [blame] | 182 | |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 183 | CONF = config.CONF |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 184 | LOG = logging.getLogger(__name__) |
| 185 | |
Vincent Hou | 6b8a7b7 | 2012-08-25 01:24:33 +0800 | [diff] [blame] | 186 | |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 187 | class Manager(manager.Manager): |
Daryl Walleck | 1465d61 | 2011-11-02 02:22:15 -0500 | [diff] [blame] | 188 | |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 189 | """ |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 190 | Top level manager for OpenStack tempest clients |
Jay Pipes | 3f981df | 2012-03-27 18:59:44 -0400 | [diff] [blame] | 191 | """ |
| 192 | |
James E. Blair | e6d8ee1 | 2013-01-18 21:33:45 +0000 | [diff] [blame] | 193 | def __init__(self, username=None, password=None, tenant_name=None, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 194 | interface='json', service=None): |
Jay Pipes | ff10d55 | 2012-04-06 14:18:50 -0400 | [diff] [blame] | 195 | """ |
| 196 | We allow overriding of the credentials used within the various |
| 197 | client classes managed by the Manager object. Left as None, the |
| 198 | standard username/password/tenant_name is used. |
| 199 | |
| 200 | :param username: Override of the username |
| 201 | :param password: Override of the password |
| 202 | :param tenant_name: Override of the tenant name |
| 203 | """ |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 204 | self.interface = interface |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 205 | self.client_type = 'tempest' |
| 206 | # super cares for credentials validation |
| 207 | super(Manager, self).__init__( |
| 208 | username=username, password=password, tenant_name=tenant_name) |
Brant Knudson | c7ca334 | 2013-03-28 21:08:50 -0500 | [diff] [blame] | 209 | |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 210 | if self.interface == 'xml': |
| 211 | self.certificates_client = CertificatesClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 212 | self.auth_provider) |
| 213 | self.servers_client = ServersClientXML(self.auth_provider) |
| 214 | self.limits_client = LimitsClientXML(self.auth_provider) |
| 215 | self.images_client = ImagesClientXML(self.auth_provider) |
| 216 | self.keypairs_client = KeyPairsClientXML(self.auth_provider) |
| 217 | self.quotas_client = QuotasClientXML(self.auth_provider) |
| 218 | self.flavors_client = FlavorsClientXML(self.auth_provider) |
| 219 | self.extensions_client = ExtensionsClientXML(self.auth_provider) |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 220 | self.volumes_extensions_client = VolumesExtensionsClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 221 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 222 | self.floating_ips_client = FloatingIPsClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 223 | self.auth_provider) |
| 224 | self.backups_client = BackupsClientXML(self.auth_provider) |
| 225 | self.snapshots_client = SnapshotsClientXML(self.auth_provider) |
| 226 | self.volumes_client = VolumesClientXML(self.auth_provider) |
| 227 | self.volumes_v2_client = VolumesV2ClientXML(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 228 | self.volume_types_client = VolumeTypesClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 229 | self.auth_provider) |
| 230 | self.identity_client = IdentityClientXML(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 231 | self.identity_v3_client = IdentityV3ClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 232 | self.auth_provider) |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 233 | self.security_groups_client = SecurityGroupsClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 234 | self.auth_provider) |
| 235 | self.interfaces_client = InterfacesClientXML(self.auth_provider) |
| 236 | self.endpoints_client = EndPointClientXML(self.auth_provider) |
| 237 | self.fixed_ips_client = FixedIPsClientXML(self.auth_provider) |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 238 | self.availability_zone_client = AvailabilityZoneClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 239 | self.auth_provider) |
| 240 | self.service_client = ServiceClientXML(self.auth_provider) |
| 241 | self.aggregates_client = AggregatesClientXML(self.auth_provider) |
| 242 | self.services_client = ServicesClientXML(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 243 | self.tenant_usages_client = TenantUsagesClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 244 | self.auth_provider) |
| 245 | self.policy_client = PolicyClientXML(self.auth_provider) |
| 246 | self.hosts_client = HostsClientXML(self.auth_provider) |
| 247 | self.hypervisor_client = HypervisorClientXML(self.auth_provider) |
| 248 | self.network_client = NetworkClientXML(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 249 | self.credentials_client = CredentialsClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 250 | self.auth_provider) |
ivan-zhu | ef7a1bd | 2013-10-22 17:56:46 +0800 | [diff] [blame] | 251 | self.instance_usages_audit_log_client = \ |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 252 | InstanceUsagesAuditLogClientXML(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 253 | self.volume_hosts_client = VolumeHostsClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 254 | self.auth_provider) |
Sylvain Baubeau | fdd3459 | 2014-02-20 18:40:10 +0100 | [diff] [blame] | 255 | self.volume_quotas_client = VolumeQuotasClientXML( |
| 256 | self.auth_provider) |
Matthew Treinish | 2324e6b | 2013-10-21 20:25:17 +0000 | [diff] [blame] | 257 | self.volumes_extension_client = VolumeExtensionClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 258 | self.auth_provider) |
Nikolay Pliashechnikov | b053aab | 2013-11-05 06:06:44 -0800 | [diff] [blame] | 259 | if CONF.service_available.ceilometer: |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 260 | self.telemetry_client = TelemetryClientXML( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 261 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 262 | self.token_client = TokenClientXML() |
| 263 | self.token_v3_client = V3TokenClientXML() |
Brant Knudson | c7ca334 | 2013-03-28 21:08:50 -0500 | [diff] [blame] | 264 | |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 265 | elif self.interface == 'json': |
| 266 | self.certificates_client = CertificatesClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 267 | self.auth_provider) |
ivan-zhu | 0e06292 | 2013-12-17 16:14:12 +0800 | [diff] [blame] | 268 | self.certificates_v3_client = CertificatesV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 269 | self.auth_provider) |
| 270 | self.baremetal_client = BaremetalClientJSON(self.auth_provider) |
| 271 | self.servers_client = ServersClientJSON(self.auth_provider) |
| 272 | self.servers_v3_client = ServersV3ClientJSON(self.auth_provider) |
| 273 | self.limits_client = LimitsClientJSON(self.auth_provider) |
| 274 | self.images_client = ImagesClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 275 | self.keypairs_v3_client = KeyPairsV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 276 | self.auth_provider) |
| 277 | self.keypairs_client = KeyPairsClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 278 | self.keypairs_v3_client = KeyPairsV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 279 | self.auth_provider) |
| 280 | self.quotas_client = QuotasClientJSON(self.auth_provider) |
| 281 | self.quotas_v3_client = QuotasV3ClientJSON(self.auth_provider) |
| 282 | self.flavors_client = FlavorsClientJSON(self.auth_provider) |
| 283 | self.flavors_v3_client = FlavorsV3ClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 284 | self.extensions_v3_client = ExtensionsV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 285 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 286 | self.extensions_client = ExtensionsClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 287 | self.auth_provider) |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 288 | self.volumes_extensions_client = VolumesExtensionsClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 289 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 290 | self.floating_ips_client = FloatingIPsClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 291 | self.auth_provider) |
| 292 | self.backups_client = BackupsClientJSON(self.auth_provider) |
| 293 | self.snapshots_client = SnapshotsClientJSON(self.auth_provider) |
| 294 | self.volumes_client = VolumesClientJSON(self.auth_provider) |
| 295 | self.volumes_v2_client = VolumesV2ClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 296 | self.volume_types_client = VolumeTypesClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 297 | self.auth_provider) |
| 298 | self.identity_client = IdentityClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 299 | self.identity_v3_client = IdentityV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 300 | self.auth_provider) |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 301 | self.security_groups_client = SecurityGroupsClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 302 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 303 | self.interfaces_v3_client = InterfacesV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 304 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 305 | self.interfaces_client = InterfacesClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 306 | self.auth_provider) |
| 307 | self.endpoints_client = EndPointClientJSON(self.auth_provider) |
| 308 | self.fixed_ips_client = FixedIPsClientJSON(self.auth_provider) |
ivan-zhu | ac7b380 | 2013-08-21 16:03:53 +0800 | [diff] [blame] | 309 | self.availability_zone_v3_client = AvailabilityZoneV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 310 | self.auth_provider) |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 311 | self.availability_zone_client = AvailabilityZoneClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 312 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 313 | self.services_v3_client = ServicesV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 314 | self.auth_provider) |
| 315 | self.service_client = ServiceClientJSON(self.auth_provider) |
YuikoTakada | 8a2ec11 | 2014-02-18 21:13:51 +0000 | [diff] [blame] | 316 | self.agents_v3_client = AgentsV3ClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 317 | self.aggregates_v3_client = AggregatesV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 318 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 319 | self.aggregates_client = AggregatesClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 320 | self.auth_provider) |
| 321 | self.services_client = ServicesClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 322 | self.tenant_usages_client = TenantUsagesClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 323 | self.auth_provider) |
| 324 | self.version_v3_client = VersionV3ClientJSON(self.auth_provider) |
Ken'ichi Ohmichi | 8f088c1 | 2014-03-28 15:16:11 +0900 | [diff] [blame] | 325 | self.migrations_v3_client = MigrationsV3ClientJSON( |
| 326 | self.auth_provider) |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 327 | self.policy_client = PolicyClientJSON(self.auth_provider) |
| 328 | self.hosts_client = HostsClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 329 | self.hypervisor_v3_client = HypervisorV3ClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 330 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 331 | self.hypervisor_client = HypervisorClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 332 | self.auth_provider) |
| 333 | self.network_client = NetworkClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 334 | self.credentials_client = CredentialsClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 335 | self.auth_provider) |
ivan-zhu | ef7a1bd | 2013-10-22 17:56:46 +0800 | [diff] [blame] | 336 | self.instance_usages_audit_log_client = \ |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 337 | InstanceUsagesAuditLogClientJSON(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 338 | self.volume_hosts_client = VolumeHostsClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 339 | self.auth_provider) |
Sylvain Baubeau | fdd3459 | 2014-02-20 18:40:10 +0100 | [diff] [blame] | 340 | self.volume_quotas_client = VolumeQuotasClientJSON( |
| 341 | self.auth_provider) |
Matthew Treinish | 2324e6b | 2013-10-21 20:25:17 +0000 | [diff] [blame] | 342 | self.volumes_extension_client = VolumeExtensionClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 343 | self.auth_provider) |
| 344 | self.hosts_v3_client = HostsV3ClientJSON(self.auth_provider) |
Nikhil Manchanda | dd6886f | 2014-03-03 01:58:45 -0800 | [diff] [blame] | 345 | self.database_flavors_client = DatabaseFlavorsClientJSON( |
| 346 | self.auth_provider) |
Malini Kamalambal | 6e7b3b8 | 2014-02-06 06:49:04 -0500 | [diff] [blame] | 347 | self.queuing_client = QueuingClientJSON(self.auth_provider) |
Nikolay Pliashechnikov | b053aab | 2013-11-05 06:06:44 -0800 | [diff] [blame] | 348 | if CONF.service_available.ceilometer: |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 349 | self.telemetry_client = TelemetryClientJSON( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 350 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 351 | self.token_client = TokenClientJSON() |
| 352 | self.token_v3_client = V3TokenClientJSON() |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 353 | self.negative_client = NegativeRestClient(self.auth_provider) |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 354 | self.negative_client.service = service |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 355 | |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 356 | else: |
Dan Smith | cf8fab6 | 2012-08-14 08:03:48 -0700 | [diff] [blame] | 357 | msg = "Unsupported interface type `%s'" % interface |
| 358 | raise exceptions.InvalidConfiguration(msg) |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 359 | |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 360 | # TODO(andreaf) EC2 client still do their auth, v2 only |
| 361 | ec2_client_args = (self.credentials.get('username'), |
| 362 | self.credentials.get('password'), |
| 363 | CONF.identity.uri, |
| 364 | self.credentials.get('tenant_name')) |
| 365 | |
Attila Fazekas | 7e678de | 2013-07-13 14:13:28 +0200 | [diff] [blame] | 366 | # common clients |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 367 | self.account_client = AccountClient(self.auth_provider) |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 368 | if CONF.service_available.glance: |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 369 | self.image_client = ImageClientJSON(self.auth_provider) |
| 370 | self.image_client_v2 = ImageClientV2JSON(self.auth_provider) |
| 371 | self.container_client = ContainerClient(self.auth_provider) |
| 372 | self.object_client = ObjectClient(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 373 | self.orchestration_client = OrchestrationClient( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 374 | self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 375 | self.ec2api_client = botoclients.APIClientEC2(*ec2_client_args) |
| 376 | self.s3_client = botoclients.ObjectClientS3(*ec2_client_args) |
| 377 | self.custom_object_client = ObjectClientCustomizedHeader( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 378 | self.auth_provider) |
harika-vakadi | 2daed0a | 2013-01-01 20:51:39 +0530 | [diff] [blame] | 379 | self.custom_account_client = \ |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 380 | AccountClientCustomizedHeader(self.auth_provider) |
Andrea Frittoli | 8bbdb16 | 2014-01-06 11:06:13 +0000 | [diff] [blame] | 381 | self.data_processing_client = DataProcessingClient( |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 382 | self.auth_provider) |
Ken'ichi Ohmichi | 2fdc182 | 2014-03-18 09:10:57 +0900 | [diff] [blame] | 383 | self.migrations_client = MigrationsClientJSON(self.auth_provider) |
Jay Pipes | 5067728 | 2012-01-06 15:39:20 -0500 | [diff] [blame] | 384 | |
| 385 | |
Jay Pipes | ff10d55 | 2012-04-06 14:18:50 -0400 | [diff] [blame] | 386 | class AltManager(Manager): |
| 387 | |
| 388 | """ |
| 389 | Manager object that uses the alt_XXX credentials for its |
| 390 | managed client objects |
| 391 | """ |
| 392 | |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 393 | def __init__(self, interface='json', service=None): |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 394 | super(AltManager, self).__init__(CONF.identity.alt_username, |
| 395 | CONF.identity.alt_password, |
| 396 | CONF.identity.alt_tenant_name, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 397 | interface=interface, |
| 398 | service=service) |
Jay Pipes | ff10d55 | 2012-04-06 14:18:50 -0400 | [diff] [blame] | 399 | |
| 400 | |
| 401 | class AdminManager(Manager): |
| 402 | |
| 403 | """ |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 404 | Manager object that uses the admin credentials for its |
Jay Pipes | ff10d55 | 2012-04-06 14:18:50 -0400 | [diff] [blame] | 405 | managed client objects |
| 406 | """ |
| 407 | |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 408 | def __init__(self, interface='json', service=None): |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 409 | super(AdminManager, self).__init__(CONF.identity.admin_username, |
| 410 | CONF.identity.admin_password, |
| 411 | CONF.identity.admin_tenant_name, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 412 | interface=interface, |
| 413 | service=service) |
Jay Pipes | ff10d55 | 2012-04-06 14:18:50 -0400 | [diff] [blame] | 414 | |
| 415 | |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 416 | class ComputeAdminManager(Manager): |
| 417 | |
| 418 | """ |
| 419 | Manager object that uses the compute_admin credentials for its |
| 420 | managed client objects |
| 421 | """ |
| 422 | |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 423 | def __init__(self, interface='json', service=None): |
Attila Fazekas | cadcb1f | 2013-01-21 23:10:53 +0100 | [diff] [blame] | 424 | base = super(ComputeAdminManager, self) |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 425 | base.__init__(CONF.compute_admin.username, |
| 426 | CONF.compute_admin.password, |
| 427 | CONF.compute_admin.tenant_name, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 428 | interface=interface, |
| 429 | service=service) |
Steve Baker | c60e4e3 | 2013-05-06 15:22:41 +1200 | [diff] [blame] | 430 | |
| 431 | |
| 432 | class OrchestrationManager(Manager): |
| 433 | """ |
| 434 | Manager object that uses the admin credentials for its |
| 435 | so that heat templates can create users |
| 436 | """ |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 437 | def __init__(self, interface='json', service=None): |
Steve Baker | c60e4e3 | 2013-05-06 15:22:41 +1200 | [diff] [blame] | 438 | base = super(OrchestrationManager, self) |
Steve Baker | b07f974 | 2014-02-19 10:03:57 +1300 | [diff] [blame] | 439 | # heat currently needs an admin user so that stacks can create users |
| 440 | # however the tests need the demo tenant so that the neutron |
| 441 | # private network is the default. DO NOT change this auth combination |
| 442 | # until heat can run with the demo user. |
Sean Dague | 86bd842 | 2013-12-20 09:56:44 -0500 | [diff] [blame] | 443 | base.__init__(CONF.identity.admin_username, |
| 444 | CONF.identity.admin_password, |
Steve Baker | b07f974 | 2014-02-19 10:03:57 +1300 | [diff] [blame] | 445 | CONF.identity.tenant_name, |
Marc Koderer | 24eb89c | 2014-01-31 11:23:33 +0100 | [diff] [blame] | 446 | interface=interface, |
| 447 | service=service) |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 448 | |
| 449 | |
| 450 | class OfficialClientManager(manager.Manager): |
| 451 | """ |
| 452 | Manager that provides access to the official python clients for |
| 453 | calling various OpenStack APIs. |
| 454 | """ |
| 455 | |
| 456 | NOVACLIENT_VERSION = '2' |
| 457 | CINDERCLIENT_VERSION = '1' |
| 458 | HEATCLIENT_VERSION = '1' |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 459 | IRONICCLIENT_VERSION = '1' |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 460 | |
| 461 | def __init__(self, username, password, tenant_name): |
| 462 | # FIXME(andreaf) Auth provider for client_type 'official' is |
| 463 | # not implemented yet, setting to 'tempest' for now. |
| 464 | self.client_type = 'tempest' |
| 465 | self.interface = None |
| 466 | # super cares for credentials validation |
| 467 | super(OfficialClientManager, self).__init__( |
| 468 | username=username, password=password, tenant_name=tenant_name) |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 469 | self.baremetal_client = self._get_baremetal_client() |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 470 | self.compute_client = self._get_compute_client(username, |
| 471 | password, |
| 472 | tenant_name) |
| 473 | self.identity_client = self._get_identity_client(username, |
| 474 | password, |
| 475 | tenant_name) |
| 476 | self.image_client = self._get_image_client() |
| 477 | self.network_client = self._get_network_client() |
| 478 | self.volume_client = self._get_volume_client(username, |
| 479 | password, |
| 480 | tenant_name) |
| 481 | self.object_storage_client = self._get_object_storage_client( |
| 482 | username, |
| 483 | password, |
| 484 | tenant_name) |
| 485 | self.orchestration_client = self._get_orchestration_client( |
| 486 | username, |
| 487 | password, |
| 488 | tenant_name) |
| 489 | |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 490 | def _get_roles(self): |
| 491 | keystone_admin = self._get_identity_client( |
| 492 | CONF.identity.admin_username, |
| 493 | CONF.identity.admin_password, |
| 494 | CONF.identity.admin_tenant_name) |
| 495 | |
| 496 | username = self.credentials['username'] |
| 497 | tenant_name = self.credentials['tenant_name'] |
| 498 | user_id = keystone_admin.users.find(name=username).id |
| 499 | tenant_id = keystone_admin.tenants.find(name=tenant_name).id |
| 500 | |
| 501 | roles = keystone_admin.roles.roles_for_user( |
| 502 | user=user_id, tenant=tenant_id) |
| 503 | |
| 504 | return [r.name for r in roles] |
| 505 | |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 506 | def _get_compute_client(self, username, password, tenant_name): |
| 507 | # Novaclient will not execute operations for anyone but the |
| 508 | # identified user, so a new client needs to be created for |
| 509 | # each user that operations need to be performed for. |
Zhi Kun Liu | faa6b5f | 2014-04-14 01:38:16 -0500 | [diff] [blame^] | 510 | if not CONF.service_available.nova: |
| 511 | return None |
| 512 | import novaclient.client |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 513 | self._validate_credentials(username, password, tenant_name) |
| 514 | |
| 515 | auth_url = CONF.identity.uri |
| 516 | dscv = CONF.identity.disable_ssl_certificate_validation |
| 517 | region = CONF.identity.region |
| 518 | |
| 519 | client_args = (username, password, tenant_name, auth_url) |
| 520 | |
| 521 | # Create our default Nova client to use in testing |
| 522 | service_type = CONF.compute.catalog_type |
| 523 | endpoint_type = CONF.compute.endpoint_type |
| 524 | return novaclient.client.Client(self.NOVACLIENT_VERSION, |
| 525 | *client_args, |
| 526 | service_type=service_type, |
| 527 | endpoint_type=endpoint_type, |
| 528 | region_name=region, |
| 529 | no_cache=True, |
| 530 | insecure=dscv, |
| 531 | http_log_debug=True) |
| 532 | |
| 533 | def _get_image_client(self): |
Zhi Kun Liu | faa6b5f | 2014-04-14 01:38:16 -0500 | [diff] [blame^] | 534 | if not CONF.service_available.glance: |
| 535 | return None |
| 536 | import glanceclient |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 537 | token = self.identity_client.auth_token |
| 538 | region = CONF.identity.region |
| 539 | endpoint_type = CONF.image.endpoint_type |
| 540 | endpoint = self.identity_client.service_catalog.url_for( |
| 541 | attr='region', filter_value=region, |
| 542 | service_type=CONF.image.catalog_type, endpoint_type=endpoint_type) |
| 543 | dscv = CONF.identity.disable_ssl_certificate_validation |
| 544 | return glanceclient.Client('1', endpoint=endpoint, token=token, |
| 545 | insecure=dscv) |
| 546 | |
| 547 | def _get_volume_client(self, username, password, tenant_name): |
Zhi Kun Liu | faa6b5f | 2014-04-14 01:38:16 -0500 | [diff] [blame^] | 548 | if not CONF.service_available.cinder: |
| 549 | return None |
| 550 | import cinderclient.client |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 551 | auth_url = CONF.identity.uri |
| 552 | region = CONF.identity.region |
| 553 | endpoint_type = CONF.volume.endpoint_type |
Rob Crittenden | 1aba5d0 | 2014-03-25 23:27:09 -0400 | [diff] [blame] | 554 | dscv = CONF.identity.disable_ssl_certificate_validation |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 555 | return cinderclient.client.Client(self.CINDERCLIENT_VERSION, |
| 556 | username, |
| 557 | password, |
| 558 | tenant_name, |
| 559 | auth_url, |
| 560 | region_name=region, |
| 561 | endpoint_type=endpoint_type, |
Rob Crittenden | 1aba5d0 | 2014-03-25 23:27:09 -0400 | [diff] [blame] | 562 | insecure=dscv, |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 563 | http_log_debug=True) |
| 564 | |
| 565 | def _get_object_storage_client(self, username, password, tenant_name): |
Zhi Kun Liu | faa6b5f | 2014-04-14 01:38:16 -0500 | [diff] [blame^] | 566 | if not CONF.service_available.swift: |
| 567 | return None |
| 568 | import swiftclient |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 569 | auth_url = CONF.identity.uri |
| 570 | # add current tenant to swift operator role group. |
| 571 | keystone_admin = self._get_identity_client( |
| 572 | CONF.identity.admin_username, |
| 573 | CONF.identity.admin_password, |
| 574 | CONF.identity.admin_tenant_name) |
| 575 | |
| 576 | # enable test user to operate swift by adding operator role to him. |
| 577 | roles = keystone_admin.roles.list() |
| 578 | operator_role = CONF.object_storage.operator_role |
| 579 | member_role = [role for role in roles if role.name == operator_role][0] |
| 580 | # NOTE(maurosr): This is surrounded in the try-except block cause |
| 581 | # neutron tests doesn't have tenant isolation. |
| 582 | try: |
| 583 | keystone_admin.roles.add_user_role(self.identity_client.user_id, |
| 584 | member_role.id, |
| 585 | self.identity_client.tenant_id) |
| 586 | except keystoneclient.exceptions.Conflict: |
| 587 | pass |
| 588 | |
| 589 | endpoint_type = CONF.object_storage.endpoint_type |
| 590 | os_options = {'endpoint_type': endpoint_type} |
| 591 | return swiftclient.Connection(auth_url, username, password, |
| 592 | tenant_name=tenant_name, |
| 593 | auth_version='2', |
| 594 | os_options=os_options) |
| 595 | |
| 596 | def _get_orchestration_client(self, username=None, password=None, |
| 597 | tenant_name=None): |
Zhi Kun Liu | faa6b5f | 2014-04-14 01:38:16 -0500 | [diff] [blame^] | 598 | if not CONF.service_available.heat: |
| 599 | return None |
| 600 | import heatclient.client |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 601 | if not username: |
| 602 | username = CONF.identity.admin_username |
| 603 | if not password: |
| 604 | password = CONF.identity.admin_password |
| 605 | if not tenant_name: |
| 606 | tenant_name = CONF.identity.tenant_name |
| 607 | |
| 608 | self._validate_credentials(username, password, tenant_name) |
| 609 | |
| 610 | keystone = self._get_identity_client(username, password, tenant_name) |
| 611 | region = CONF.identity.region |
| 612 | endpoint_type = CONF.orchestration.endpoint_type |
| 613 | token = keystone.auth_token |
| 614 | service_type = CONF.orchestration.catalog_type |
| 615 | try: |
| 616 | endpoint = keystone.service_catalog.url_for( |
| 617 | attr='region', |
| 618 | filter_value=region, |
| 619 | service_type=service_type, |
| 620 | endpoint_type=endpoint_type) |
| 621 | except keystoneclient.exceptions.EndpointNotFound: |
| 622 | return None |
| 623 | else: |
| 624 | return heatclient.client.Client(self.HEATCLIENT_VERSION, |
| 625 | endpoint, |
| 626 | token=token, |
| 627 | username=username, |
| 628 | password=password) |
| 629 | |
| 630 | def _get_identity_client(self, username, password, tenant_name): |
| 631 | # This identity client is not intended to check the security |
| 632 | # of the identity service, so use admin credentials by default. |
| 633 | self._validate_credentials(username, password, tenant_name) |
| 634 | |
| 635 | auth_url = CONF.identity.uri |
| 636 | dscv = CONF.identity.disable_ssl_certificate_validation |
| 637 | |
| 638 | return keystoneclient.v2_0.client.Client(username=username, |
| 639 | password=password, |
| 640 | tenant_name=tenant_name, |
| 641 | auth_url=auth_url, |
| 642 | insecure=dscv) |
| 643 | |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 644 | def _get_baremetal_client(self): |
| 645 | # ironic client is currently intended to by used by admin users |
Zhi Kun Liu | faa6b5f | 2014-04-14 01:38:16 -0500 | [diff] [blame^] | 646 | if not CONF.service_available.ironic: |
| 647 | return None |
| 648 | import ironicclient.client |
Adam Gandelman | 4a48a60 | 2014-03-20 18:23:18 -0700 | [diff] [blame] | 649 | roles = self._get_roles() |
| 650 | if CONF.identity.admin_role not in roles: |
| 651 | return None |
| 652 | |
| 653 | auth_url = CONF.identity.uri |
| 654 | api_version = self.IRONICCLIENT_VERSION |
| 655 | insecure = CONF.identity.disable_ssl_certificate_validation |
| 656 | service_type = CONF.baremetal.catalog_type |
| 657 | endpoint_type = CONF.baremetal.endpoint_type |
| 658 | creds = { |
| 659 | 'os_username': self.credentials['username'], |
| 660 | 'os_password': self.credentials['password'], |
| 661 | 'os_tenant_name': self.credentials['tenant_name'] |
| 662 | } |
| 663 | |
| 664 | try: |
| 665 | return ironicclient.client.get_client( |
| 666 | api_version=api_version, |
| 667 | os_auth_url=auth_url, |
| 668 | insecure=insecure, |
| 669 | os_service_type=service_type, |
| 670 | os_endpoint_type=endpoint_type, |
| 671 | **creds) |
| 672 | except keystoneclient.exceptions.EndpointNotFound: |
| 673 | return None |
| 674 | |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 675 | def _get_network_client(self): |
| 676 | # The intended configuration is for the network client to have |
| 677 | # admin privileges and indicate for whom resources are being |
| 678 | # created via a 'tenant_id' parameter. This will often be |
| 679 | # preferable to authenticating as a specific user because |
| 680 | # working with certain resources (public routers and networks) |
| 681 | # often requires admin privileges anyway. |
Zhi Kun Liu | faa6b5f | 2014-04-14 01:38:16 -0500 | [diff] [blame^] | 682 | if not CONF.service_available.neutron: |
| 683 | return None |
| 684 | import neutronclient.v2_0.client |
Andrea Frittoli | f9cde7e | 2014-02-18 09:57:04 +0000 | [diff] [blame] | 685 | username = CONF.identity.admin_username |
| 686 | password = CONF.identity.admin_password |
| 687 | tenant_name = CONF.identity.admin_tenant_name |
| 688 | |
| 689 | self._validate_credentials(username, password, tenant_name) |
| 690 | |
| 691 | auth_url = CONF.identity.uri |
| 692 | dscv = CONF.identity.disable_ssl_certificate_validation |
| 693 | endpoint_type = CONF.network.endpoint_type |
| 694 | |
| 695 | return neutronclient.v2_0.client.Client(username=username, |
| 696 | password=password, |
| 697 | tenant_name=tenant_name, |
| 698 | endpoint_type=endpoint_type, |
| 699 | auth_url=auth_url, |
| 700 | insecure=dscv) |