bb879dd10b
Change-Id: If882f7a822ef6b1e58666b3af6f7166ab0a230fe
562 lines
18 KiB
Python
562 lines
18 KiB
Python
# Copyright 2011 OpenStack, LLC
|
|
#
|
|
# 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 httplib2
|
|
|
|
from novaclient import client as base_client
|
|
from novaclient.v1_1 import client
|
|
from tests import fakes
|
|
|
|
|
|
class FakeClient(fakes.FakeClient, client.Client):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
client.Client.__init__(self, 'username', 'password',
|
|
'project_id', 'auth_url')
|
|
self.client = FakeHTTPClient(**kwargs)
|
|
|
|
|
|
class FakeHTTPClient(base_client.HTTPClient):
|
|
|
|
def __init__(self, **kwargs):
|
|
self.username = 'username'
|
|
self.password = 'password'
|
|
self.auth_url = 'auth_url'
|
|
self.callstack = []
|
|
|
|
def _cs_request(self, url, method, **kwargs):
|
|
# Check that certain things are called correctly
|
|
if method in ['GET', 'DELETE']:
|
|
assert 'body' not in kwargs
|
|
elif method == 'PUT':
|
|
assert 'body' in kwargs
|
|
|
|
# Call the method
|
|
munged_url = url.strip('/').replace('/', '_').replace('.', '_')
|
|
munged_url = munged_url.replace('-', '_')
|
|
callback = "%s_%s" % (method.lower(), munged_url)
|
|
|
|
if not hasattr(self, callback):
|
|
raise AssertionError('Called unknown API method: %s %s, '
|
|
'expected fakes method name: %s' %
|
|
(method, url, callback))
|
|
|
|
# Note the call
|
|
self.callstack.append((method, url, kwargs.get('body', None)))
|
|
|
|
status, body = getattr(self, callback)(**kwargs)
|
|
return httplib2.Response({"status": status}), body
|
|
|
|
def _munge_get_url(self, url):
|
|
return url
|
|
|
|
#
|
|
# Limits
|
|
#
|
|
|
|
def get_limits(self, **kw):
|
|
return (200, {"limits": {
|
|
"rate": [
|
|
{
|
|
"uri": "*",
|
|
"regex": ".*",
|
|
"limit": [
|
|
{
|
|
"value": 10,
|
|
"verb": "POST",
|
|
"remaining": 2,
|
|
"unit": "MINUTE",
|
|
"next-available": "2011-12-15T22:42:45Z"
|
|
},
|
|
{
|
|
"value": 10,
|
|
"verb": "PUT",
|
|
"remaining": 2,
|
|
"unit": "MINUTE",
|
|
"next-available": "2011-12-15T22:42:45Z"
|
|
},
|
|
{
|
|
"value": 100,
|
|
"verb": "DELETE",
|
|
"remaining": 100,
|
|
"unit": "MINUTE",
|
|
"next-available": "2011-12-15T22:42:45Z"
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"uri": "*/servers",
|
|
"regex": "^/servers",
|
|
"limit": [
|
|
{
|
|
"verb": "POST",
|
|
"value": 25,
|
|
"remaining": 24,
|
|
"unit": "DAY",
|
|
"next-available": "2011-12-15T22:42:45Z"
|
|
}
|
|
]
|
|
}
|
|
],
|
|
"absolute": {
|
|
"maxTotalRAMSize": 51200,
|
|
"maxServerMeta": 5,
|
|
"maxImageMeta": 5,
|
|
"maxPersonality": 5,
|
|
"maxPersonalitySize": 10240
|
|
},
|
|
},
|
|
})
|
|
|
|
#
|
|
# Servers
|
|
#
|
|
|
|
def get_servers(self, **kw):
|
|
return (200, {"servers": [
|
|
{'id': 1234, 'name': 'sample-server'},
|
|
{'id': 5678, 'name': 'sample-server2'}
|
|
]})
|
|
|
|
def get_servers_detail(self, **kw):
|
|
return (200, {"servers": [
|
|
{
|
|
"id": 1234,
|
|
"name": "sample-server",
|
|
"image": {
|
|
"id": 2,
|
|
"name": "sample image",
|
|
},
|
|
"flavor": {
|
|
"id": 1,
|
|
"name": "256 MB Server",
|
|
},
|
|
"hostId": "e4d909c290d0fb1ca068ffaddf22cbd0",
|
|
"status": "BUILD",
|
|
"progress": 60,
|
|
"addresses": {
|
|
"public": [{
|
|
"version": 4,
|
|
"addr": "1.2.3.4",
|
|
},
|
|
{
|
|
"version": 4,
|
|
"addr": "5.6.7.8",
|
|
}],
|
|
"private": [{
|
|
"version": 4,
|
|
"addr": "10.11.12.13",
|
|
}],
|
|
},
|
|
"metadata": {
|
|
"Server Label": "Web Head 1",
|
|
"Image Version": "2.1"
|
|
}
|
|
},
|
|
{
|
|
"id": 5678,
|
|
"name": "sample-server2",
|
|
"image": {
|
|
"id": 2,
|
|
"name": "sample image",
|
|
},
|
|
"flavor": {
|
|
"id": 1,
|
|
"name": "256 MB Server",
|
|
},
|
|
"hostId": "9e107d9d372bb6826bd81d3542a419d6",
|
|
"status": "ACTIVE",
|
|
"addresses": {
|
|
"public": [{
|
|
"version": 4,
|
|
"addr": "4.5.6.7",
|
|
},
|
|
{
|
|
"version": 4,
|
|
"addr": "5.6.9.8",
|
|
}],
|
|
"private": [{
|
|
"version": 4,
|
|
"addr": "10.13.12.13",
|
|
}],
|
|
},
|
|
"metadata": {
|
|
"Server Label": "DB 1"
|
|
}
|
|
}
|
|
]})
|
|
|
|
def post_servers(self, body, **kw):
|
|
assert body.keys() == ['server']
|
|
fakes.assert_has_keys(body['server'],
|
|
required=['name', 'imageRef', 'flavorRef'],
|
|
optional=['metadata', 'personality'])
|
|
if 'personality' in body['server']:
|
|
for pfile in body['server']['personality']:
|
|
fakes.assert_has_keys(pfile, required=['path', 'contents'])
|
|
return (202, self.get_servers_1234()[1])
|
|
|
|
def post_servers_1234_migrate(self, *args, **kwargs):
|
|
return (202, None)
|
|
|
|
def get_servers_1234(self, **kw):
|
|
r = {'server': self.get_servers_detail()[1]['servers'][0]}
|
|
return (200, r)
|
|
|
|
def get_servers_5678(self, **kw):
|
|
r = {'server': self.get_servers_detail()[1]['servers'][1]}
|
|
return (200, r)
|
|
|
|
def put_servers_1234(self, body, **kw):
|
|
assert body.keys() == ['server']
|
|
fakes.assert_has_keys(body['server'], optional=['name', 'adminPass'])
|
|
return (204, None)
|
|
|
|
def delete_servers_1234(self, **kw):
|
|
return (202, None)
|
|
|
|
def delete_servers_1234_metadata_test_key(self, **kw):
|
|
return (204, None)
|
|
|
|
def delete_servers_1234_metadata_key1(self, **kw):
|
|
return (204, None)
|
|
|
|
def delete_servers_1234_metadata_key2(self, **kw):
|
|
return (204, None)
|
|
|
|
def post_servers_1234_metadata(self, **kw):
|
|
return (204, {'metadata': {'test_key': 'test_value'}})
|
|
|
|
#
|
|
# Server Addresses
|
|
#
|
|
|
|
def get_servers_1234_ips(self, **kw):
|
|
return (200, {'addresses':
|
|
self.get_servers_1234()[1]['server']['addresses']})
|
|
|
|
def get_servers_1234_ips_public(self, **kw):
|
|
return (200, {'public':
|
|
self.get_servers_1234_ips()[1]['addresses']['public']})
|
|
|
|
def get_servers_1234_ips_private(self, **kw):
|
|
return (200, {'private':
|
|
self.get_servers_1234_ips()[1]['addresses']['private']})
|
|
|
|
def delete_servers_1234_ips_public_1_2_3_4(self, **kw):
|
|
return (202, None)
|
|
|
|
#
|
|
# Server actions
|
|
#
|
|
|
|
def post_servers_1234_action(self, body, **kw):
|
|
_body = None
|
|
assert len(body.keys()) == 1
|
|
action = body.keys()[0]
|
|
if action == 'reboot':
|
|
assert body[action].keys() == ['type']
|
|
assert body[action]['type'] in ['HARD', 'SOFT']
|
|
elif action == 'rebuild':
|
|
keys = body[action].keys()
|
|
if 'adminPass' in keys:
|
|
keys.remove('adminPass')
|
|
assert keys == ['imageRef']
|
|
_body = self.get_servers_1234()[1]
|
|
elif action == 'resize':
|
|
assert body[action].keys() == ['flavorRef']
|
|
elif action == 'confirmResize':
|
|
assert body[action] is None
|
|
# This one method returns a different response code
|
|
return (204, None)
|
|
elif action == 'revertResize':
|
|
assert body[action] is None
|
|
elif action == 'migrate':
|
|
assert body[action] is None
|
|
elif action == 'rescue':
|
|
assert body[action] is None
|
|
elif action == 'unrescue':
|
|
assert body[action] is None
|
|
elif action == 'addFixedIp':
|
|
assert body[action].keys() == ['networkId']
|
|
elif action == 'removeFixedIp':
|
|
assert body[action].keys() == ['address']
|
|
elif action == 'addFloatingIp':
|
|
assert body[action].keys() == ['address']
|
|
elif action == 'removeFloatingIp':
|
|
assert body[action].keys() == ['address']
|
|
elif action == 'createImage':
|
|
assert set(body[action].keys()) == set(['name', 'metadata'])
|
|
elif action == 'changePassword':
|
|
assert body[action].keys() == ['adminPass']
|
|
else:
|
|
raise AssertionError("Unexpected server action: %s" % action)
|
|
return (202, _body)
|
|
|
|
#
|
|
# Flavors
|
|
#
|
|
|
|
def get_flavors(self, **kw):
|
|
return (200, {'flavors': [
|
|
{'id': 1, 'name': '256 MB Server'},
|
|
{'id': 2, 'name': '512 MB Server'}
|
|
]})
|
|
|
|
def get_flavors_detail(self, **kw):
|
|
return (200, {'flavors': [
|
|
{'id': 1, 'name': '256 MB Server', 'ram': 256, 'disk': 10},
|
|
{'id': 2, 'name': '512 MB Server', 'ram': 512, 'disk': 20}
|
|
]})
|
|
|
|
def get_flavors_1(self, **kw):
|
|
return (200, {'flavor': self.get_flavors_detail()[1]['flavors'][0]})
|
|
|
|
def get_flavors_2(self, **kw):
|
|
return (200, {'flavor': self.get_flavors_detail()[1]['flavors'][1]})
|
|
|
|
#
|
|
# Floating ips
|
|
#
|
|
|
|
def get_os_floating_ips(self, **kw):
|
|
return (200, {'floating_ips': [
|
|
{'id': 1, 'fixed_ip': '10.0.0.1', 'ip': '11.0.0.1'},
|
|
{'id': 2, 'fixed_ip': '10.0.0.2', 'ip': '11.0.0.2'},
|
|
]})
|
|
|
|
def get_os_floating_ips_1(self, **kw):
|
|
return (200, {'floating_ip':
|
|
{'id': 1, 'fixed_ip': '10.0.0.1', 'ip': '11.0.0.1'}
|
|
})
|
|
|
|
def post_os_floating_ips(self, body, **kw):
|
|
return (202, self.get_os_floating_ips_1()[1])
|
|
|
|
def delete_os_floating_ips_1(self, **kw):
|
|
return (204, None)
|
|
|
|
#
|
|
# Images
|
|
#
|
|
def get_images(self, **kw):
|
|
return (200, {'images': [
|
|
{'id': 1, 'name': 'CentOS 5.2'},
|
|
{'id': 2, 'name': 'My Server Backup'}
|
|
]})
|
|
|
|
def get_images_detail(self, **kw):
|
|
return (200, {'images': [
|
|
{
|
|
'id': 1,
|
|
'name': 'CentOS 5.2',
|
|
"updated": "2010-10-10T12:00:00Z",
|
|
"created": "2010-08-10T12:00:00Z",
|
|
"status": "ACTIVE",
|
|
"metadata": {
|
|
"test_key": "test_value",
|
|
},
|
|
"links": {},
|
|
},
|
|
{
|
|
"id": 743,
|
|
"name": "My Server Backup",
|
|
"serverId": 1234,
|
|
"updated": "2010-10-10T12:00:00Z",
|
|
"created": "2010-08-10T12:00:00Z",
|
|
"status": "SAVING",
|
|
"progress": 80,
|
|
"links": {},
|
|
}
|
|
]})
|
|
|
|
def get_images_1(self, **kw):
|
|
return (200, {'image': self.get_images_detail()[1]['images'][0]})
|
|
|
|
def get_images_2(self, **kw):
|
|
return (200, {'image': self.get_images_detail()[1]['images'][1]})
|
|
|
|
def post_images(self, body, **kw):
|
|
assert body.keys() == ['image']
|
|
fakes.assert_has_keys(body['image'], required=['serverId', 'name'])
|
|
return (202, self.get_images_1()[1])
|
|
|
|
def post_images_1_metadata(self, body, **kw):
|
|
assert body.keys() == ['metadata']
|
|
fakes.assert_has_keys(body['metadata'],
|
|
required=['test_key'])
|
|
return (200,
|
|
{'metadata': self.get_images_1()[1]['image']['metadata']})
|
|
|
|
def delete_images_1(self, **kw):
|
|
return (204, None)
|
|
|
|
def delete_images_1_metadata_test_key(self, **kw):
|
|
return (204, None)
|
|
|
|
#
|
|
# Zones
|
|
#
|
|
def get_zones(self, **kw):
|
|
return (200, {'zones': [
|
|
{'id': 1, 'api_url': 'http://foo.com', 'username': 'bob'},
|
|
{'id': 2, 'api_url': 'http://foo.com', 'username': 'alice'},
|
|
]})
|
|
|
|
def get_zones_detail(self, **kw):
|
|
return (200, {'zones': [
|
|
{'id': 1, 'api_url': 'http://foo.com', 'username': 'bob',
|
|
'password': 'qwerty'},
|
|
{'id': 2, 'api_url': 'http://foo.com', 'username': 'alice',
|
|
'password': 'password'}
|
|
]})
|
|
|
|
def get_zones_1(self, **kw):
|
|
r = {'zone': self.get_zones_detail()[1]['zones'][0]}
|
|
return (200, r)
|
|
|
|
def get_zones_2(self, **kw):
|
|
r = {'zone': self.get_zones_detail()[1]['zones'][1]}
|
|
return (200, r)
|
|
|
|
def post_zones(self, body, **kw):
|
|
assert body.keys() == ['zone']
|
|
fakes.assert_has_keys(body['zone'],
|
|
required=['api_url', 'username', 'password'],
|
|
optional=['weight_offset', 'weight_scale'])
|
|
|
|
return (202, self.get_zones_1()[1])
|
|
|
|
def put_zones_1(self, body, **kw):
|
|
assert body.keys() == ['zone']
|
|
fakes.assert_has_keys(body['zone'], optional=['api_url', 'username',
|
|
'password',
|
|
'weight_offset',
|
|
'weight_scale'])
|
|
return (204, None)
|
|
|
|
def delete_zones_1(self, **kw):
|
|
return (202, None)
|
|
|
|
#
|
|
# Keypairs
|
|
#
|
|
def get_os_keypairs(self, *kw):
|
|
return (200, {"keypairs": [
|
|
{'fingerprint': 'FAKE_KEYPAIR', 'name': 'test'}
|
|
]})
|
|
|
|
def delete_os_keypairs_test(self, **kw):
|
|
return (202, None)
|
|
|
|
def post_os_keypairs(self, body, **kw):
|
|
assert body.keys() == ['keypair']
|
|
fakes.assert_has_keys(body['keypair'],
|
|
required=['name'])
|
|
r = {'keypair': self.get_os_keypairs()[1]['keypairs'][0]}
|
|
return (202, r)
|
|
|
|
#
|
|
# Quotas
|
|
#
|
|
|
|
def get_os_quota_sets_test(self, **kw):
|
|
return (200, {'quota_set': {
|
|
'tenant_id': 'test',
|
|
'metadata_items': [],
|
|
'injected_file_content_bytes': 1,
|
|
'volumes': 1,
|
|
'gigabytes': 1,
|
|
'ram': 1,
|
|
'floating_ips': 1,
|
|
'instances': 1,
|
|
'injected_files': 1,
|
|
'cores': 1}})
|
|
|
|
def get_os_quota_sets_test_defaults(self):
|
|
return (200, {'quota_set': {
|
|
'tenant_id': 'test',
|
|
'metadata_items': [],
|
|
'injected_file_content_bytes': 1,
|
|
'volumes': 1,
|
|
'gigabytes': 1,
|
|
'ram': 1,
|
|
'floating_ips': 1,
|
|
'instances': 1,
|
|
'injected_files': 1,
|
|
'cores': 1}})
|
|
|
|
def put_os_quota_sets_test(self, body, **kw):
|
|
assert body.keys() == ['quota_set']
|
|
fakes.assert_has_keys(body['quota_set'],
|
|
required=['tenant_id'])
|
|
return (200, {'quota_set': {
|
|
'tenant_id': 'test',
|
|
'metadata_items': [],
|
|
'injected_file_content_bytes': 1,
|
|
'volumes': 2,
|
|
'gigabytes': 1,
|
|
'ram': 1,
|
|
'floating_ips': 1,
|
|
'instances': 1,
|
|
'injected_files': 1,
|
|
'cores': 1}})
|
|
|
|
#
|
|
# Security Groups
|
|
#
|
|
def get_os_security_groups(self, **kw):
|
|
return (200, {"security_groups": [
|
|
{'id': 1, 'name': 'test', 'description': 'FAKE_SECURITY_GROUP'}
|
|
]})
|
|
|
|
def get_os_security_groups_1(self, **kw):
|
|
return (200, {"security_group":
|
|
{'id': 1, 'name': 'test', 'description': 'FAKE_SECURITY_GROUP'}
|
|
})
|
|
|
|
def delete_os_security_groups_1(self, **kw):
|
|
return (202, None)
|
|
|
|
def post_os_security_groups(self, body, **kw):
|
|
assert body.keys() == ['security_group']
|
|
fakes.assert_has_keys(body['security_group'],
|
|
required=['name', 'description'])
|
|
r = {'security_group':
|
|
self.get_os_security_groups()[1]['security_groups'][0]}
|
|
return (202, r)
|
|
|
|
#
|
|
# Security Group Rules
|
|
#
|
|
def get_os_security_group_rules(self, **kw):
|
|
return (200, {"security_group_rules": [
|
|
{'id': 1, 'parent_group_id': 1, 'group_id': 2,
|
|
'ip_protocol': 'TCP', 'from_port': '22', 'to_port': 22,
|
|
'cidr': '10.0.0.0/8'}
|
|
]})
|
|
|
|
def delete_os_security_group_rules_1(self, **kw):
|
|
return (202, None)
|
|
|
|
def post_os_security_group_rules(self, body, **kw):
|
|
assert body.keys() == ['security_group_rule']
|
|
fakes.assert_has_keys(body['security_group_rule'],
|
|
required=['parent_group_id'],
|
|
optional=['group_id', 'ip_protocol', 'from_port',
|
|
'to_port', 'cidr'])
|
|
r = {'security_group_rule':
|
|
self.get_os_security_group_rules()[1]['security_group_rules'][0]}
|
|
return (202, r)
|