| # vim: tabstop=4 shiftwidth=4 softtabstop=4 |
| |
| # Copyright 2012 OpenStack, LLC |
| # 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 urllib |
| |
| from tempest.common import http |
| from tempest.common.rest_client import RestClient |
| from tempest import exceptions |
| |
| |
| class AccountClient(RestClient): |
| def __init__(self, config, username, password, auth_url, tenant_name=None): |
| super(AccountClient, self).__init__(config, username, password, |
| auth_url, tenant_name) |
| self.service = self.config.object_storage.catalog_type |
| self.format = 'json' |
| |
| def list_account_metadata(self): |
| """ |
| HEAD on the storage URL |
| Returns all account metadata headers |
| """ |
| |
| headers = {"X-Storage-Token": self.token} |
| resp, body = self.head('', headers=headers) |
| return resp, body |
| |
| def create_account_metadata(self, metadata, |
| metadata_prefix='X-Account-Meta-'): |
| """Creates an account metadata entry.""" |
| headers = {} |
| for key in metadata: |
| headers[metadata_prefix + key] = metadata[key] |
| |
| resp, body = self.post('', headers=headers, body=None) |
| return resp, body |
| |
| def delete_account_metadata(self, metadata, |
| metadata_prefix='X-Remove-Account-Meta-'): |
| """ |
| Deletes an account metadata entry. |
| """ |
| |
| headers = {"X-Storage-Token": self.token} |
| for item in metadata: |
| headers[metadata_prefix + item] = 'x' |
| resp, body = self.post('', headers=headers, body=None) |
| return resp, body |
| |
| def list_account_containers(self, params=None): |
| """ |
| GET on the (base) storage URL |
| Given the X-Storage-URL and a valid X-Auth-Token, returns |
| a list of all containers for the account. |
| |
| Optional Arguments: |
| limit=[integer value N] |
| Limits the number of results to at most N values |
| DEFAULT: 10,000 |
| |
| marker=[string value X] |
| Given string value X, return object names greater in value |
| than the specified marker. |
| DEFAULT: No Marker |
| |
| format=[string value, either 'json' or 'xml'] |
| Specify either json or xml to return the respective serialized |
| response. |
| DEFAULT: Python-List returned in response body |
| """ |
| |
| if params: |
| if 'format' not in params: |
| params['format'] = self.format |
| else: |
| params = {'format': self.format} |
| |
| url = '?' + urllib.urlencode(params) |
| resp, body = self.get(url) |
| body = json.loads(body) |
| return resp, body |
| |
| |
| class AccountClientCustomizedHeader(RestClient): |
| |
| def __init__(self, config, username, password, auth_url, tenant_name=None): |
| super(AccountClientCustomizedHeader, self).__init__(config, username, |
| password, auth_url, |
| tenant_name) |
| # Overwrites json-specific header encoding in RestClient |
| self.service = self.config.object_storage.catalog_type |
| self.format = 'json' |
| |
| def request(self, method, url, headers=None, body=None): |
| """A simple HTTP request interface.""" |
| self.http_obj = http.ClosingHttp() |
| if headers is None: |
| headers = {} |
| if self.base_url is None: |
| self._set_auth() |
| |
| req_url = "%s/%s" % (self.base_url, url) |
| |
| self._log_request(method, req_url, headers, body) |
| resp, resp_body = self.http_obj.request(req_url, method, |
| headers=headers, body=body) |
| self._log_response(resp, resp_body) |
| |
| if resp.status == 401 or resp.status == 403: |
| raise exceptions.Unauthorized() |
| |
| return resp, resp_body |
| |
| def list_account_containers(self, params=None, metadata=None): |
| """ |
| GET on the (base) storage URL |
| Given the X-Storage-URL and a valid X-Auth-Token, returns |
| a list of all containers for the account. |
| |
| Optional Arguments: |
| limit=[integer value N] |
| Limits the number of results to at most N values |
| DEFAULT: 10,000 |
| |
| marker=[string value X] |
| Given string value X, return object names greater in value |
| than the specified marker. |
| DEFAULT: No Marker |
| |
| format=[string value, either 'json' or 'xml'] |
| Specify either json or xml to return the respective serialized |
| response. |
| DEFAULT: Python-List returned in response body |
| """ |
| |
| url = '?format=%s' % self.format |
| if params: |
| url += '&%s' + urllib.urlencode(params) |
| |
| headers = {} |
| if metadata: |
| for key in metadata: |
| headers[str(key)] = metadata[key] |
| |
| resp, body = self.get(url, headers=headers) |
| return resp, body |