How to use _set_placement_clients method in tempest

Best Python code snippet using tempest_python

clients.py

Source:clients.py Github

copy

Full Screen

...37 self._set_volume_clients()38 self._set_object_storage_clients()39 self._set_image_clients()40 self._set_network_clients()41 self._set_placement_clients()42 # TODO(andreaf) This is maintained for backward compatibility43 # with plugins, but it should removed eventually, since it was44 # never a stable interface and it's not useful anyways45 self.default_params = config.service_client_config()46 def _set_network_clients(self):47 self.network_agents_client = self.network.AgentsClient()48 self.network_extensions_client = self.network.ExtensionsClient()49 self.networks_client = self.network.NetworksClient()50 self.subnetpools_client = self.network.SubnetpoolsClient()51 self.subnets_client = self.network.SubnetsClient()52 self.ports_client = self.network.PortsClient()53 self.network_quotas_client = self.network.QuotasClient()54 self.floating_ips_client = self.network.FloatingIPsClient()55 self.floating_ips_port_forwarding_client =\56 self.network.FloatingIpsPortForwardingClient()57 self.metering_labels_client = self.network.MeteringLabelsClient()58 self.metering_label_rules_client = (59 self.network.MeteringLabelRulesClient())60 self.routers_client = self.network.RoutersClient()61 self.security_group_rules_client = (62 self.network.SecurityGroupRulesClient())63 self.security_groups_client = self.network.SecurityGroupsClient()64 self.network_versions_client = self.network.NetworkVersionsClient()65 self.service_providers_client = self.network.ServiceProvidersClient()66 self.tags_client = self.network.TagsClient()67 self.qos_client = self.network.QosClient()68 self.qos_min_bw_client = self.network.QosMinimumBandwidthRulesClient()69 self.qos_limit_bw_client = self.network.QosLimitBandwidthRulesClient()70 self.qos_min_pps_client = (71 self.network.QosMinimumPacketRateRulesClient())72 self.segments_client = self.network.SegmentsClient()73 self.trunks_client = self.network.TrunksClient()74 self.log_resource_client = self.network.LogResourceClient()75 self.loggable_resource_client = self.network.LoggableResourceClient()76 def _set_image_clients(self):77 if CONF.service_available.glance:78 self.image_client = self.image_v1.ImagesClient()79 self.image_member_client = self.image_v1.ImageMembersClient()80 self.image_client_v2 = self.image_v2.ImagesClient()81 self.image_member_client_v2 = self.image_v2.ImageMembersClient()82 self.image_cache_client = self.image_v2.ImageCacheClient()83 self.namespaces_client = self.image_v2.NamespacesClient()84 self.resource_types_client = self.image_v2.ResourceTypesClient()85 self.namespace_objects_client = \86 self.image_v2.NamespaceObjectsClient()87 self.schemas_client = self.image_v2.SchemasClient()88 self.namespace_properties_client = \89 self.image_v2.NamespacePropertiesClient()90 self.namespace_tags_client = self.image_v2.NamespaceTagsClient()91 self.image_versions_client = self.image_v2.VersionsClient()92 # NOTE(danms): If no alternate endpoint is configured,93 # this client will work the same as the base self.images_client.94 # If your test needs to know if these are different, check the95 # config option to see if the alternate_image_endpoint is set.96 self.image_client_remote = self.image_v2.ImagesClient(97 service=CONF.image.alternate_image_endpoint,98 endpoint_type=CONF.image.alternate_image_endpoint_type,99 region=CONF.image.region)100 def _set_compute_clients(self):101 self.agents_client = self.compute.AgentsClient()102 self.compute_networks_client = self.compute.NetworksClient()103 self.migrations_client = self.compute.MigrationsClient()104 self.security_group_default_rules_client = (105 self.compute.SecurityGroupDefaultRulesClient())106 self.certificates_client = self.compute.CertificatesClient()107 eip = CONF.compute_feature_enabled.enable_instance_password108 self.servers_client = self.compute.ServersClient(109 enable_instance_password=eip)110 self.server_groups_client = self.compute.ServerGroupsClient()111 self.limits_client = self.compute.LimitsClient()112 self.compute_images_client = self.compute.ImagesClient()113 self.keypairs_client = self.compute.KeyPairsClient(114 ssh_key_type=CONF.validation.ssh_key_type)115 self.quotas_client = self.compute.QuotasClient()116 self.quota_classes_client = self.compute.QuotaClassesClient()117 self.flavors_client = self.compute.FlavorsClient()118 self.extensions_client = self.compute.ExtensionsClient()119 self.floating_ip_pools_client = self.compute.FloatingIPPoolsClient()120 self.floating_ips_bulk_client = self.compute.FloatingIPsBulkClient()121 self.compute_floating_ips_client = self.compute.FloatingIPsClient()122 self.compute_security_group_rules_client = (123 self.compute.SecurityGroupRulesClient())124 self.compute_security_groups_client = (125 self.compute.SecurityGroupsClient())126 self.interfaces_client = self.compute.InterfacesClient()127 self.fixed_ips_client = self.compute.FixedIPsClient()128 self.availability_zone_client = self.compute.AvailabilityZoneClient()129 self.aggregates_client = self.compute.AggregatesClient()130 self.services_client = self.compute.ServicesClient()131 self.tenant_usages_client = self.compute.TenantUsagesClient()132 self.hosts_client = self.compute.HostsClient()133 self.hypervisor_client = self.compute.HypervisorClient()134 self.instance_usages_audit_log_client = (135 self.compute.InstanceUsagesAuditLogClient())136 self.tenant_networks_client = self.compute.TenantNetworksClient()137 self.assisted_volume_snapshots_client = (138 self.compute.AssistedVolumeSnapshotsClient())139 # NOTE: The following client needs special timeout values because140 # the API is a proxy for the other component.141 params_volume = {142 'build_interval': CONF.volume.build_interval,143 'build_timeout': CONF.volume.build_timeout144 }145 self.volumes_extensions_client = self.compute.VolumesClient(146 **params_volume)147 self.compute_versions_client = self.compute.VersionsClient(148 **params_volume)149 self.snapshots_extensions_client = self.compute.SnapshotsClient(150 **params_volume)151 def _set_placement_clients(self):152 self.placement_client = self.placement.PlacementClient()153 self.resource_providers_client = \154 self.placement.ResourceProvidersClient()155 def _set_identity_clients(self):156 # Clients below use the admin endpoint type of Keystone API v2157 params_v2_admin = {158 'endpoint_type': CONF.identity.v2_admin_endpoint_type}159 self.endpoints_client = self.identity_v2.EndpointsClient(160 **params_v2_admin)161 self.identity_client = self.identity_v2.IdentityClient(162 **params_v2_admin)163 self.tenants_client = self.identity_v2.TenantsClient(164 **params_v2_admin)165 self.roles_client = self.identity_v2.RolesClient(**params_v2_admin)...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run tempest automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful