def setUpClass(cls): super(ComputeAdminFixture, cls).setUpClass() # Setup admin client auth_config = ComputeAdminAuthConfig() user_config = ComputeAdminUserConfig() access_data = AuthProvider.get_access_data(auth_config, user_config) admin_endpoint_config = ComputeAdminEndpointConfig() compute_service = access_data.get_service( admin_endpoint_config.compute_endpoint_name) url = compute_service.get_endpoint( admin_endpoint_config.region).public_url cls.admin_flavors_client = FlavorsClient(url, access_data.token.id_, 'json', 'json') cls.admin_servers_client = ServersClient(url, access_data.token.id_, 'json', 'json') cls.admin_server_behaviors = ServerBehaviors(cls.admin_servers_client, cls.servers_config, cls.images_config, cls.flavors_config) cls.admin_images_client = ImagesClient(url, access_data.token.id_, 'json', 'json') cls.admin_images_behaviors = ImageBehaviors(cls.admin_images_client, cls.admin_servers_client, cls.images_config) cls.admin_hosts_client = HostsClient(url, access_data.token.id_, 'json', 'json') cls.admin_quotas_client = QuotasClient(url, access_data.token.id_, 'json', 'json') cls.admin_servers_client.add_exception_handler(ExceptionHandler())
def setUpClass(cls): super(AuthorizationTests, cls).setUpClass() cls.metadata = {'meta_key_1': 'meta_value_1', 'meta_key_2': 'meta_value_2'} cls.server = cls.server_behaviors.create_active_server( metadata=cls.metadata).entity cls.resources.add(cls.server.id, cls.servers_client.delete_server) image_name = rand_name('testimage') cls.image_meta = {'key1': 'value1', 'key2': 'value2'} image_resp = cls.servers_client.create_image(cls.server.id, image_name, cls.image_meta) assert image_resp.status_code == 202 cls.image_id = cls.parse_image_id(image_resp) cls.image_behaviors.wait_for_image_status( cls.image_id, NovaImageStatusTypes.ACTIVE) cls.resources.add(cls.image_id, cls.images_client.delete_image) secondary_user = ComputeAuthorizationConfig() access_data = AuthProvider.get_access_data(cls.endpoint_config, secondary_user) compute_service = access_data.get_service( cls.compute_endpoint.compute_endpoint_name) url = compute_service.get_endpoint( cls.compute_endpoint.region).public_url cls.flavors_client = FlavorsClient(url, access_data.token.id_, 'json', 'json') cls.servers_client = ServersClient(url, access_data.token.id_, 'json', 'json') cls.images_client = ImagesClient(url, access_data.token.id_, 'json', 'json') cls.flavors_client.add_exception_handler(ExceptionHandler())
def setUpClass(cls): super(ComputeAdminFixture, cls).setUpClass() # Setup admin client auth_config = ComputeAdminAuthConfig() user_config = ComputeAdminUserConfig() access_data = AuthProvider.get_access_data(auth_config, user_config) admin_endpoint_config = ComputeAdminEndpointConfig() compute_service = access_data.get_service( admin_endpoint_config.compute_endpoint_name) url = compute_service.get_endpoint( admin_endpoint_config.region).public_url client_args = {'url': url, 'auth_token': access_data.token.id_, 'serialize_format': cls.marshalling.serializer, 'deserialize_format': cls.marshalling.deserializer} cls.admin_flavors_client = FlavorsClient(**client_args) cls.admin_servers_client = ServersClient(**client_args) cls.admin_images_client = ImagesClient(**client_args) cls.admin_hosts_client = HostsClient(**client_args) cls.admin_quotas_client = QuotasClient(**client_args) cls.admin_hypervisors_client = HypervisorsClient(**client_args) cls.admin_server_behaviors = ServerBehaviors(cls.admin_servers_client, cls.servers_config, cls.images_config, cls.flavors_config) cls.admin_images_behaviors = ImageBehaviors(cls.admin_images_client, cls.admin_servers_client, cls.images_config) cls.admin_servers_client.add_exception_handler(ExceptionHandler())
def setUpClass(cls): super(ComputeFixture, cls).setUpClass() cls.flavors_config = FlavorsConfig() cls.images_config = ImagesConfig() cls.servers_config = ServersConfig() cls.compute_endpoint = ComputeEndpointConfig() cls.marshalling = MarshallingConfig() cls.config_drive_config = ConfigDriveConfig() cls.flavor_ref = cls.flavors_config.primary_flavor cls.flavor_ref_alt = cls.flavors_config.secondary_flavor cls.image_ref = cls.images_config.primary_image cls.image_ref_alt = cls.images_config.secondary_image cls.disk_path = cls.servers_config.instance_disk_path cls.endpoint_config = UserAuthConfig() cls.user_config = UserConfig() access_data = AuthProvider.get_access_data(cls.endpoint_config, cls.user_config) # If authentication fails, halt if access_data is None: cls.assertClassSetupFailure('Authentication failed.') compute_service = access_data.get_service( cls.compute_endpoint.compute_endpoint_name) url = compute_service.get_endpoint( cls.compute_endpoint.region).public_url # If a url override was provided, use that value instead if cls.compute_endpoint.compute_endpoint_url: url = '{0}/{1}'.format(cls.compute_endpoint.compute_endpoint_url, cls.user_config.tenant_id) client_args = {'url': url, 'auth_token': access_data.token.id_, 'serialize_format': cls.marshalling.serializer, 'deserialize_format': cls.marshalling.deserializer} cls.flavors_client = FlavorsClient(**client_args) cls.servers_client = ServersClient(**client_args) cls.images_client = ImagesClient(**client_args) cls.keypairs_client = KeypairsClient(**client_args) cls.security_groups_client = SecurityGroupsClient(**client_args) cls.security_group_rule_client = SecurityGroupRulesClient( **client_args) cls.rescue_client = RescueClient(**client_args) cls.vnc_client = VncConsoleClient(**client_args) cls.console_output_client = ConsoleOutputClient(**client_args) cls.server_behaviors = ServerBehaviors(cls.servers_client, cls.servers_config, cls.images_config, cls.flavors_config) cls.image_behaviors = ImageBehaviors(cls.images_client, cls.servers_client, cls.images_config) cls.config_drive_behaviors = ConfigDriveBehaviors(cls.servers_client, cls.servers_config, cls.server_behaviors) cls.flavors_client.add_exception_handler(ExceptionHandler()) cls.resources = ResourcePool()
def setUpClass(cls): super(ComputeFixture, cls).setUpClass() cls.flavors_config = FlavorsConfig() cls.images_config = ImagesConfig() cls.servers_config = ServersConfig() cls.compute_endpoint = ComputeEndpointConfig() cls.flavor_ref = cls.flavors_config.primary_flavor cls.flavor_ref_alt = cls.flavors_config.secondary_flavor cls.image_ref = cls.images_config.primary_image cls.image_ref_alt = cls.images_config.secondary_image cls.disk_path = cls.servers_config.instance_disk_path cls.endpoint_config = UserAuthConfig() user_config = UserConfig() access_data = AuthProvider.get_access_data(cls.endpoint_config, user_config) compute_service = access_data.get_service( cls.compute_endpoint.compute_endpoint_name) url = compute_service.get_endpoint( cls.compute_endpoint.region).public_url cls.flavors_client = FlavorsClient(url, access_data.token.id_, 'json', 'json') cls.servers_client = ServersClient(url, access_data.token.id_, 'json', 'json') cls.images_client = ImagesClient(url, access_data.token.id_, 'json', 'json') cls.keypairs_client = KeypairsClient(url, access_data.token.id_, 'json', 'json') cls.sec_groups_client = SecurityGroupsClient(url, access_data.token.id_, 'json', 'json') cls.rescue_client = RescueClient(url, access_data.token.id_, 'json', 'json') cls.server_behaviors = ServerBehaviors(cls.servers_client, cls.servers_config, cls.images_config, cls.flavors_config) cls.image_behaviors = ImageBehaviors(cls.images_client, cls.servers_client, cls.images_config) cls.flavors_client.add_exception_handler(ExceptionHandler()) cls.resources = ResourcePool()
def setUpClass(cls): """ Perform actions that setup the necessary resources for testing. The following resources are created during this setup: - Creates an active server with metadata. - Creates an image with metadata and waits for active status. """ super(AuthorizationTests, cls).setUpClass() cls.metadata = { 'meta_key_1': 'meta_value_1', 'meta_key_2': 'meta_value_2' } cls.server = cls.server_behaviors.create_active_server( metadata=cls.metadata).entity cls.resources.add(cls.server.id, cls.servers_client.delete_server) image_name = rand_name('testimage') cls.image_meta = {'user_key1': 'value1', 'user_key2': 'value2'} image_resp = cls.servers_client.create_image(cls.server.id, image_name, cls.image_meta) assert image_resp.status_code == 202 cls.image_id = cls.parse_image_id(image_resp) cls.image_behaviors.wait_for_image_status(cls.image_id, NovaImageStatusTypes.ACTIVE) cls.resources.add(cls.image_id, cls.images_client.delete_image) secondary_user = ComputeAuthorizationConfig() compute_endpoint = ComputeEndpointConfig() auth_endpoint_config = UserAuthConfig() access_data = AuthProvider.get_access_data(auth_endpoint_config, secondary_user) compute_service = access_data.get_service( compute_endpoint.compute_endpoint_name) url = compute_service.get_endpoint(compute_endpoint.region).public_url cls.flavors_client = FlavorsClient(url, access_data.token.id_, 'json', 'json') cls.servers_client = ServersClient(url, access_data.token.id_, 'json', 'json') cls.images_client = ImagesClient(url, access_data.token.id_, 'json', 'json') cls.flavors_client.add_exception_handler(ExceptionHandler())
def __init__(self): self.compute_auth_composite = _ComputeAuthComposite() self.config = FlavorsConfig() self.client = FlavorsClient(**self.compute_auth_composite.client_args) self.behaviors = None
def __init__(self, auth_composite): super(FlavorsComposite, self).__init__(auth_composite) self.config = FlavorsConfig() self.client = FlavorsClient(**self.compute_auth_composite.client_args) self.behaviors = None
def compute_cleanup(): # Load necessary configurations compute_endpoint = ComputeEndpointConfig() marshalling = MarshallingConfig() endpoint_config = UserAuthConfig() user_config = UserConfig() access_data = AuthProvider.get_access_data( endpoint_config, user_config) # If authentication fails, halt if access_data is None: raise Exception('Authentication failed.') compute_service = access_data.get_service( compute_endpoint.compute_endpoint_name) url = compute_service.get_endpoint( compute_endpoint.region).public_url # If a url override was provided, use that value instead if compute_endpoint.compute_endpoint_url: url = '{0}/{1}'.format(compute_endpoint.compute_endpoint_url, user_config.tenant_id) client_args = {'url': url, 'auth_token': access_data.token.id_, 'serialize_format': marshalling.serializer, 'deserialize_format': marshalling.deserializer} flavors_client = FlavorsClient(**client_args) servers_client = ServersClient(**client_args) images_client = ImagesClient(**client_args) keypairs_client = KeypairsClient(**client_args) flavors_client.add_exception_handler(ExceptionHandler()) keys = keypairs_client.list_keypairs().entity print 'Preparing to delete {count} keys...'.format(count=len(keys)) for key in keys: try: keypairs_client.delete_keypair(key.name) except Exception: print 'Failed to delete key {id}: {exception}'.format( id=key.id, exception=traceback.format_exc()) servers = servers_client.list_servers_with_detail().entity print 'Preparing to delete {count} servers...'.format(count=len(servers)) for server in servers: try: servers_client.delete_server(server.id) except Exception: print 'Failed to delete server {id}: {exception}'.format( id=server.id, exception=traceback.format_exc()) images = images_client.list_images(image_type='snapshot').entity print 'Preparing to delete {count} image snapshots...'.format(count=len(images)) for image in images: try: images_client.delete_image(image.id) except Exception: print 'Failed to delete image {id}: {exception}'.format( id=image.id, exception=traceback.format_exc()) if raxcafe_installed: nova_networks_client = NovaNetworksClient(**client_args) raw_networks = nova_networks_client.list_networks().entity # remove the public and snet networks as well as any additional # networks to be preserved networks = [nw for nw in raw_networks if nw.id_ not in preserved_networks] print 'Preparing to delete {count} networks...'.format(count=len(networks)) for network in networks: try: nova_networks_client.delete_network(network.id_) except Exception: print 'Failed to delete network {id}: {exception}'.format( id=network.id_, exception=traceback.format_exc())
def setUpClass(cls): super(ComputeFixture, cls).setUpClass() cls.flavors_config = FlavorsConfig() cls.images_config = ImagesConfig() cls.servers_config = ServersConfig() cls.compute_endpoint = ComputeEndpointConfig() cls.marshalling = MarshallingConfig() cls.config_drive_config = ConfigDriveConfig() cls.cloud_init_config = CloudInitConfig() cls.flavor_ref = cls.flavors_config.primary_flavor cls.flavor_ref_alt = cls.flavors_config.secondary_flavor cls.image_ref = cls.images_config.primary_image cls.image_ref_alt = cls.images_config.secondary_image cls.disk_path = cls.servers_config.instance_disk_path cls.split_ephemeral_disk_enabled = \ cls.servers_config.split_ephemeral_disk_enabled cls.ephemeral_disk_max_size = \ cls.servers_config.ephemeral_disk_max_size cls.disk_format_type = cls.servers_config.disk_format_type cls.expected_networks = cls.servers_config.expected_networks cls.file_injection_enabled = \ cls.servers_config.personality_file_injection_enabled cls.endpoint_config = UserAuthConfig() cls.user_config = UserConfig() cls.access_data = AuthProvider.get_access_data(cls.endpoint_config, cls.user_config) # If authentication fails, halt if cls.access_data is None: cls.assertClassSetupFailure('Authentication failed.') compute_service = cls.access_data.get_service( cls.compute_endpoint.compute_endpoint_name) url = compute_service.get_endpoint( cls.compute_endpoint.region).public_url # If a url override was provided, use that value instead if cls.compute_endpoint.compute_endpoint_url: url = '{0}/{1}'.format(cls.compute_endpoint.compute_endpoint_url, cls.user_config.tenant_id) client_args = {'url': url, 'auth_token': cls.access_data.token.id_, 'serialize_format': cls.marshalling.serializer, 'deserialize_format': cls.marshalling.deserializer} cls.flavors_client = FlavorsClient(**client_args) cls.servers_client = ServersClient(**client_args) cls.boot_from_volume_client = VolumesBootClient(**client_args) cls.images_client = ImagesClient(**client_args) cls.keypairs_client = KeypairsClient(**client_args) cls.security_groups_client = SecurityGroupsClient(**client_args) cls.security_group_rule_client = SecurityGroupRulesClient( **client_args) cls.volume_attachments_client = VolumeAttachmentsAPIClient( url=url, auth_token=cls.access_data.token.id_, serialize_format=cls.marshalling.serializer, deserialize_format=cls.marshalling.deserializer) cls.rescue_client = RescueClient(**client_args) cls.vnc_client = VncConsoleClient(**client_args) cls.console_output_client = ConsoleOutputClient(**client_args) cls.limits_client = LimitsClient(**client_args) cls.server_behaviors = ServerBehaviors( servers_client=cls.servers_client, images_client=cls.images_client, servers_config=cls.servers_config, images_config=cls.images_config, flavors_config=cls.flavors_config) cls.volume_server_behaviors = VolumeServerBehaviors( servers_client=cls.servers_client, images_client=cls.images_client, servers_config=cls.servers_config, images_config=cls.images_config, flavors_config=cls.flavors_config, server_behaviors=cls.server_behaviors, boot_from_volume_client=cls.boot_from_volume_client) cls.image_behaviors = ImageBehaviors(cls.images_client, cls.servers_client, cls.images_config) cls.config_drive_behaviors = ConfigDriveBehaviors(cls.servers_client, cls.servers_config, cls.server_behaviors) cls.flavors_client.add_exception_handler(ExceptionHandler()) cls.resources = ResourcePool() cls.addClassCleanup(cls.resources.release)