| # Copyright 2012 OpenStack Foundation |
| # Copyright 2013 Hewlett-Packard Development Company, L.P. |
| # Copyright 2013 IBM Corp |
| # All Rights Reserved. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| # not use this file except in compliance with the License. You may obtain |
| # a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| # License for the specific language governing permissions and limitations |
| # under the License. |
| |
| import json |
| import time |
| import urllib |
| |
| from tempest.api_schema.compute import servers as common_schema |
| from tempest.api_schema.compute.v3 import servers as schema |
| from tempest.common import rest_client |
| from tempest.common import waiters |
| from tempest import config |
| from tempest import exceptions |
| |
| CONF = config.CONF |
| |
| |
| class ServersV3ClientJSON(rest_client.RestClient): |
| |
| def __init__(self, auth_provider): |
| super(ServersV3ClientJSON, self).__init__(auth_provider) |
| self.service = CONF.compute.catalog_v3_type |
| |
| def create_server(self, name, image_ref, flavor_ref, **kwargs): |
| """ |
| Creates an instance of a server. |
| name (Required): The name of the server. |
| image_ref (Required): Reference to the image used to build the server. |
| flavor_ref (Required): The flavor used to build the server. |
| Following optional keyword arguments are accepted: |
| admin_password: Sets the initial root password. |
| key_name: Key name of keypair that was created earlier. |
| meta: A dictionary of values to be used as metadata. |
| security_groups: A list of security group dicts. |
| networks: A list of network dicts with UUID and fixed_ip. |
| user_data: User data for instance. |
| availability_zone: Availability zone in which to launch instance. |
| access_ip_v4: The IPv4 access address for the server. |
| access_ip_v6: The IPv6 access address for the server. |
| min_count: Count of minimum number of instances to launch. |
| max_count: Count of maximum number of instances to launch. |
| disk_config: Determines if user or admin controls disk configuration. |
| return_reservation_id: Enable/Disable the return of reservation id |
| block_device_mapping: Block device mapping for the server. |
| """ |
| post_body = { |
| 'name': name, |
| 'image_ref': image_ref, |
| 'flavor_ref': flavor_ref |
| } |
| |
| for option in ['admin_password', 'key_name', 'networks', |
| ('os-security-groups:security_groups', |
| 'security_groups'), |
| ('os-user-data:user_data', 'user_data'), |
| ('os-availability-zone:availability_zone', |
| 'availability_zone'), |
| ('os-access-ips:access_ip_v4', 'access_ip_v4'), |
| ('os-access-ips:access_ip_v6', 'access_ip_v6'), |
| ('os-multiple-create:min_count', 'min_count'), |
| ('os-multiple-create:max_count', 'max_count'), |
| ('metadata', 'meta'), |
| ('os-disk-config:disk_config', 'disk_config'), |
| ('os-multiple-create:return_reservation_id', |
| 'return_reservation_id'), |
| ('os-block-device-mapping:block_device_mapping', |
| 'block_device_mapping')]: |
| if isinstance(option, tuple): |
| post_param = option[0] |
| key = option[1] |
| else: |
| post_param = option |
| key = option |
| value = kwargs.get(key) |
| if value is not None: |
| post_body[post_param] = value |
| post_body = json.dumps({'server': post_body}) |
| resp, body = self.post('servers', post_body) |
| |
| body = json.loads(body) |
| # NOTE(maurosr): this deals with the case of multiple server create |
| # with return reservation id set True |
| if 'servers_reservation' in body: |
| return resp, body['servers_reservation'] |
| if CONF.compute_feature_enabled.enable_instance_password: |
| create_schema = schema.create_server_with_admin_pass |
| else: |
| create_schema = schema.create_server |
| self.validate_response(create_schema, resp, body) |
| return resp, body['server'] |
| |
| def update_server(self, server_id, name=None, meta=None, access_ip_v4=None, |
| access_ip_v6=None, disk_config=None): |
| """ |
| Updates the properties of an existing server. |
| server_id: The id of an existing server. |
| name: The name of the server. |
| access_ip_v4: The IPv4 access address for the server. |
| access_ip_v6: The IPv6 access address for the server. |
| """ |
| |
| post_body = {} |
| |
| if meta is not None: |
| post_body['metadata'] = meta |
| |
| if name is not None: |
| post_body['name'] = name |
| |
| if access_ip_v4 is not None: |
| post_body['os-access-ips:access_ip_v4'] = access_ip_v4 |
| |
| if access_ip_v6 is not None: |
| post_body['os-access-ips:access_ip_v6'] = access_ip_v6 |
| |
| if disk_config is not None: |
| post_body['os-disk-config:disk_config'] = disk_config |
| |
| post_body = json.dumps({'server': post_body}) |
| resp, body = self.put("servers/%s" % str(server_id), post_body) |
| body = json.loads(body) |
| self.validate_response(schema.update_server, resp, body) |
| return resp, body['server'] |
| |
| def get_server(self, server_id): |
| """Returns the details of an existing server.""" |
| resp, body = self.get("servers/%s" % str(server_id)) |
| body = json.loads(body) |
| self.validate_response(schema.get_server, resp, body) |
| return resp, body['server'] |
| |
| def delete_server(self, server_id): |
| """Deletes the given server.""" |
| resp, body = self.delete("servers/%s" % str(server_id)) |
| self.validate_response(common_schema.delete_server, resp, body) |
| return resp, body |
| |
| def list_servers(self, params=None): |
| """Lists all servers for a user.""" |
| |
| url = 'servers' |
| if params: |
| url += '?%s' % urllib.urlencode(params) |
| |
| resp, body = self.get(url) |
| body = json.loads(body) |
| self.validate_response(common_schema.list_servers, resp, body) |
| return resp, body |
| |
| def list_servers_with_detail(self, params=None): |
| """Lists all servers in detail for a user.""" |
| |
| url = 'servers/detail' |
| if params: |
| url += '?%s' % urllib.urlencode(params) |
| |
| resp, body = self.get(url) |
| body = json.loads(body) |
| self.validate_response(schema.list_servers_detail, resp, body) |
| return resp, body |
| |
| def wait_for_server_status(self, server_id, status, extra_timeout=0, |
| raise_on_error=True): |
| """Waits for a server to reach a given status.""" |
| return waiters.wait_for_server_status(self, server_id, status, |
| extra_timeout=extra_timeout, |
| raise_on_error=raise_on_error) |
| |
| def wait_for_server_termination(self, server_id, ignore_error=False): |
| """Waits for server to reach termination.""" |
| start_time = int(time.time()) |
| while True: |
| try: |
| resp, body = self.get_server(server_id) |
| except exceptions.NotFound: |
| return |
| |
| server_status = body['status'] |
| if server_status == 'ERROR' and not ignore_error: |
| raise exceptions.BuildErrorException(server_id=server_id) |
| |
| if int(time.time()) - start_time >= self.build_timeout: |
| raise exceptions.TimeoutException |
| |
| time.sleep(self.build_interval) |
| |
| def list_addresses(self, server_id): |
| """Lists all addresses for a server.""" |
| resp, body = self.get("servers/%s/ips" % str(server_id)) |
| body = json.loads(body) |
| self.validate_response(schema.list_addresses, resp, body) |
| return resp, body['addresses'] |
| |
| def list_addresses_by_network(self, server_id, network_id): |
| """Lists all addresses of a specific network type for a server.""" |
| resp, body = self.get("servers/%s/ips/%s" % |
| (str(server_id), network_id)) |
| body = json.loads(body) |
| self.validate_response(schema.list_addresses_by_network, resp, body) |
| return resp, body |
| |
| def action(self, server_id, action_name, response_key, |
| schema=common_schema.server_actions_common_schema, **kwargs): |
| post_body = json.dumps({action_name: kwargs}) |
| resp, body = self.post('servers/%s/action' % str(server_id), |
| post_body) |
| if response_key is not None: |
| body = json.loads(body) |
| # Check for Schema as 'None' because if we do not have any server |
| # action schema implemented yet then they can pass 'None' to skip |
| # the validation.Once all server action has their schema |
| # implemented then, this check can be removed if every actions are |
| # supposed to validate their response. |
| # TODO(GMann): Remove the below 'if' check once all server actions |
| # schema are implemented. |
| if schema is not None: |
| self.validate_response(schema, resp, body) |
| body = body[response_key] |
| else: |
| self.validate_response(schema, resp, body) |
| return resp, body |
| |
| def create_backup(self, server_id, backup_type, rotation, name): |
| """Backup a server instance.""" |
| return self.action(server_id, "create_backup", None, |
| backup_type=backup_type, |
| rotation=rotation, |
| name=name) |
| |
| def change_password(self, server_id, admin_password): |
| """Changes the root password for the server.""" |
| return self.action(server_id, 'change_password', |
| None, schema.server_actions_change_password, |
| admin_password=admin_password) |
| |
| def get_password(self, server_id): |
| resp, body = self.get("servers/%s/os-server-password" % |
| str(server_id)) |
| body = json.loads(body) |
| self.validate_response(common_schema.get_password, resp, body) |
| return resp, body |
| |
| def delete_password(self, server_id): |
| """ |
| Removes the encrypted server password from the metadata server |
| Note that this does not actually change the instance server |
| password. |
| """ |
| resp, body = self.delete("servers/%s/os-server-password" % |
| str(server_id)) |
| self.validate_response(common_schema.server_actions_delete_password, |
| resp, body) |
| return resp, body |
| |
| def reboot(self, server_id, reboot_type): |
| """Reboots a server.""" |
| return self.action(server_id, 'reboot', None, type=reboot_type) |
| |
| def rebuild(self, server_id, image_ref, **kwargs): |
| """Rebuilds a server with a new image.""" |
| kwargs['image_ref'] = image_ref |
| if 'disk_config' in kwargs: |
| kwargs['os-disk-config:disk_config'] = kwargs['disk_config'] |
| del kwargs['disk_config'] |
| if CONF.compute_feature_enabled.enable_instance_password: |
| rebuild_schema = schema.rebuild_server_with_admin_pass |
| else: |
| rebuild_schema = schema.rebuild_server |
| return self.action(server_id, 'rebuild', 'server', |
| rebuild_schema, **kwargs) |
| |
| def resize(self, server_id, flavor_ref, **kwargs): |
| """Changes the flavor of a server.""" |
| kwargs['flavor_ref'] = flavor_ref |
| if 'disk_config' in kwargs: |
| kwargs['os-disk-config:disk_config'] = kwargs['disk_config'] |
| del kwargs['disk_config'] |
| return self.action(server_id, 'resize', None, **kwargs) |
| |
| def confirm_resize(self, server_id, **kwargs): |
| """Confirms the flavor change for a server.""" |
| return self.action(server_id, 'confirm_resize', None, **kwargs) |
| |
| def revert_resize(self, server_id, **kwargs): |
| """Reverts a server back to its original flavor.""" |
| return self.action(server_id, 'revert_resize', None, **kwargs) |
| |
| def create_image(self, server_id, name, meta=None): |
| """Creates an image of the original server.""" |
| |
| post_body = { |
| 'create_image': { |
| 'name': name, |
| } |
| } |
| |
| if meta is not None: |
| post_body['create_image']['metadata'] = meta |
| |
| post_body = json.dumps(post_body) |
| resp, body = self.post('servers/%s/action' % str(server_id), |
| post_body) |
| return resp, body |
| |
| def list_server_metadata(self, server_id): |
| resp, body = self.get("servers/%s/metadata" % str(server_id)) |
| body = json.loads(body) |
| self.validate_response(common_schema.list_server_metadata, resp, body) |
| return resp, body['metadata'] |
| |
| def set_server_metadata(self, server_id, meta, no_metadata_field=False): |
| if no_metadata_field: |
| post_body = "" |
| else: |
| post_body = json.dumps({'metadata': meta}) |
| resp, body = self.put('servers/%s/metadata' % str(server_id), |
| post_body) |
| body = json.loads(body) |
| self.validate_response(common_schema.set_server_metadata, resp, body) |
| return resp, body['metadata'] |
| |
| def update_server_metadata(self, server_id, meta): |
| post_body = json.dumps({'metadata': meta}) |
| resp, body = self.post('servers/%s/metadata' % str(server_id), |
| post_body) |
| body = json.loads(body) |
| self.validate_response(schema.update_server_metadata, resp, body) |
| return resp, body['metadata'] |
| |
| def get_server_metadata_item(self, server_id, key): |
| resp, body = self.get("servers/%s/metadata/%s" % (str(server_id), key)) |
| body = json.loads(body) |
| self.validate_response(schema.set_get_server_metadata_item, |
| resp, body) |
| return resp, body['metadata'] |
| |
| def set_server_metadata_item(self, server_id, key, meta): |
| post_body = json.dumps({'metadata': meta}) |
| resp, body = self.put('servers/%s/metadata/%s' % (str(server_id), key), |
| post_body) |
| body = json.loads(body) |
| self.validate_response(schema.set_get_server_metadata_item, |
| resp, body) |
| return resp, body['metadata'] |
| |
| def delete_server_metadata_item(self, server_id, key): |
| resp, body = self.delete("servers/%s/metadata/%s" % |
| (str(server_id), key)) |
| self.validate_response(common_schema.delete_server_metadata_item, |
| resp, body) |
| return resp, body |
| |
| def stop(self, server_id, **kwargs): |
| return self.action(server_id, 'stop', None, **kwargs) |
| |
| def start(self, server_id, **kwargs): |
| return self.action(server_id, 'start', None, **kwargs) |
| |
| def attach_volume(self, server_id, volume_id, device='/dev/vdz'): |
| """Attaches a volume to a server instance.""" |
| resp, body = self.action(server_id, 'attach', None, |
| volume_id=volume_id, device=device) |
| self.validate_response(schema.attach_detach_volume, resp, body) |
| return resp, body |
| |
| def detach_volume(self, server_id, volume_id): |
| """Detaches a volume from a server instance.""" |
| resp, body = self.action(server_id, 'detach', None, |
| volume_id=volume_id) |
| self.validate_response(schema.attach_detach_volume, resp, body) |
| return resp, body |
| |
| def live_migrate_server(self, server_id, dest_host, use_block_migration): |
| """This should be called with administrator privileges .""" |
| |
| migrate_params = { |
| "disk_over_commit": False, |
| "block_migration": use_block_migration, |
| "host": dest_host |
| } |
| |
| req_body = json.dumps({'migrate_live': migrate_params}) |
| |
| resp, body = self.post("servers/%s/action" % str(server_id), |
| req_body) |
| self.validate_response(common_schema.server_actions_common_schema, |
| resp, body) |
| return resp, body |
| |
| def migrate_server(self, server_id, **kwargs): |
| """Migrates a server to a new host.""" |
| return self.action(server_id, 'migrate', None, **kwargs) |
| |
| def lock_server(self, server_id, **kwargs): |
| """Locks the given server.""" |
| return self.action(server_id, 'lock', None, **kwargs) |
| |
| def unlock_server(self, server_id, **kwargs): |
| """UNlocks the given server.""" |
| return self.action(server_id, 'unlock', None, **kwargs) |
| |
| def suspend_server(self, server_id, **kwargs): |
| """Suspends the provided server.""" |
| return self.action(server_id, 'suspend', None, **kwargs) |
| |
| def resume_server(self, server_id, **kwargs): |
| """Un-suspends the provided server.""" |
| return self.action(server_id, 'resume', None, **kwargs) |
| |
| def pause_server(self, server_id, **kwargs): |
| """Pauses the provided server.""" |
| return self.action(server_id, 'pause', None, **kwargs) |
| |
| def unpause_server(self, server_id, **kwargs): |
| """Un-pauses the provided server.""" |
| return self.action(server_id, 'unpause', None, **kwargs) |
| |
| def reset_state(self, server_id, state='error'): |
| """Resets the state of a server to active/error.""" |
| return self.action(server_id, 'reset_state', None, state=state) |
| |
| def shelve_server(self, server_id, **kwargs): |
| """Shelves the provided server.""" |
| return self.action(server_id, 'shelve', None, **kwargs) |
| |
| def unshelve_server(self, server_id, **kwargs): |
| """Un-shelves the provided server.""" |
| return self.action(server_id, 'unshelve', None, **kwargs) |
| |
| def shelve_offload_server(self, server_id, **kwargs): |
| """Shelve-offload the provided server.""" |
| return self.action(server_id, 'shelve_offload', None, **kwargs) |
| |
| def get_console_output(self, server_id, length): |
| if length is None: |
| # NOTE(mriedem): -1 means optional/unlimited in the nova v3 API. |
| length = -1 |
| return self.action(server_id, 'get_console_output', 'output', |
| common_schema.get_console_output, length=length) |
| |
| def rescue_server(self, server_id, **kwargs): |
| """Rescue the provided server.""" |
| post_body = json.dumps({'rescue': kwargs}) |
| resp, body = self.post('servers/%s/action' % str(server_id), |
| post_body) |
| if CONF.compute_feature_enabled.enable_instance_password: |
| rescue_schema = schema.rescue_server_with_admin_pass |
| else: |
| rescue_schema = schema.rescue_server |
| body = json.loads(body) |
| self.validate_response(rescue_schema, resp, body) |
| return resp, body |
| |
| def unrescue_server(self, server_id): |
| """Unrescue the provided server.""" |
| return self.action(server_id, 'unrescue', None) |
| |
| def get_server_diagnostics(self, server_id): |
| """Get the usage data for a server.""" |
| resp, body = self.get("servers/%s/os-server-diagnostics" % |
| str(server_id)) |
| return resp, json.loads(body) |
| |
| def list_server_actions(self, server_id): |
| """List the provided server action.""" |
| resp, body = self.get("servers/%s/os-server-actions" % |
| str(server_id)) |
| body = json.loads(body) |
| self.validate_response(schema.list_server_actions, resp, body) |
| return resp, body['server_actions'] |
| |
| def get_server_action(self, server_id, request_id): |
| """Returns the action details of the provided server.""" |
| resp, body = self.get("servers/%s/os-server-actions/%s" % |
| (str(server_id), str(request_id))) |
| body = json.loads(body) |
| self.validate_response(schema.get_server_action, resp, body) |
| return resp, body['server_action'] |
| |
| def force_delete_server(self, server_id, **kwargs): |
| """Force delete a server.""" |
| return self.action(server_id, 'force_delete', None, **kwargs) |
| |
| def restore_soft_deleted_server(self, server_id, **kwargs): |
| """Restore a soft-deleted server.""" |
| return self.action(server_id, 'restore', None, **kwargs) |
| |
| def get_vnc_console(self, server_id, type): |
| """Get URL of VNC console.""" |
| post_body = json.dumps({ |
| "get_vnc_console": { |
| "type": type |
| } |
| }) |
| resp, body = self.post('servers/%s/action' % str(server_id), |
| post_body) |
| body = json.loads(body) |
| self.validate_response(common_schema.get_vnc_console, resp, body) |
| return resp, body['console'] |
| |
| def reset_network(self, server_id, **kwargs): |
| """Resets the Network of a server""" |
| return self.action(server_id, 'reset_network', None, **kwargs) |
| |
| def inject_network_info(self, server_id, **kwargs): |
| """Inject the Network Info into server""" |
| return self.action(server_id, 'inject_network_info', None, **kwargs) |
| |
| def get_spice_console(self, server_id, console_type): |
| """Get URL of Spice console.""" |
| return self.action(server_id, "get_spice_console" |
| "console", None, type=console_type) |
| |
| def get_rdp_console(self, server_id, console_type): |
| """Get URL of RDP console.""" |
| return self.action(server_id, "get_rdp_console" |
| "console", None, type=console_type) |