Merge "Adds support for ExtendedFloatingIps APi extension"

This commit is contained in:
Jenkins 2013-06-17 23:21:40 +00:00 committed by Gerrit Code Review
commit 576006ec61
4 changed files with 35 additions and 6 deletions

@ -517,7 +517,9 @@ class FakeHTTPClient(base_client.HTTPClient):
elif action == 'removeFixedIp':
assert body[action].keys() == ['address']
elif action == 'addFloatingIp':
assert body[action].keys() == ['address']
assert (body[action].keys() == ['address'] or
body[action].keys() == ['fixed_address',
'address'])
elif action == 'removeFloatingIp':
assert body[action].keys() == ['address']
elif action == 'createImage':

@ -251,6 +251,19 @@ class ServersTest(utils.TestCase):
s.add_floating_ip(f)
cs.assert_called('POST', '/servers/1234/action')
def test_add_floating_ip_to_fixed(self):
s = cs.servers.get(1234)
s.add_floating_ip('11.0.0.1', fixed_address='12.0.0.1')
cs.assert_called('POST', '/servers/1234/action')
cs.servers.add_floating_ip(s, '11.0.0.1',
fixed_address='12.0.0.1')
cs.assert_called('POST', '/servers/1234/action')
f = cs.floating_ips.list()[0]
cs.servers.add_floating_ip(s, f)
cs.assert_called('POST', '/servers/1234/action')
s.add_floating_ip(f)
cs.assert_called('POST', '/servers/1234/action')
def test_remove_floating_ip(self):
s = cs.servers.get(1234)
s.remove_floating_ip('11.0.0.1')

@ -97,13 +97,15 @@ class Server(base.Resource):
"""
self.manager.add_fixed_ip(self, network_id)
def add_floating_ip(self, address):
def add_floating_ip(self, address, fixed_address=None):
"""
Add floating IP to an instance
:param address: The ip address or FloatingIP to add to the instance
:param fixed_address: The fixedIP address the FloatingIP is to be
associated with (optional)
"""
self.manager.add_floating_ip(self, address)
self.manager.add_floating_ip(self, address, fixed_address)
def remove_floating_ip(self, address):
"""
@ -392,16 +394,24 @@ class ServerManager(local_base.BootingManagerWithFind):
"""
self._action('removeFixedIp', server, {'address': address})
def add_floating_ip(self, server, address):
def add_floating_ip(self, server, address, fixed_address=None):
"""
Add a floating ip to an instance
:param server: The :class:`Server` (or its ID) to add an IP to.
:param address: The FloatingIP or string floating address to add.
:param fixed_address: The FixedIP the floatingIP should be
associated with (optional)
"""
address = address.ip if hasattr(address, 'ip') else address
self._action('addFloatingIp', server, {'address': address})
if fixed_address:
if hasattr(fixed_address, 'ip'):
fixed_address = fixed_address.ip
self._action('addFloatingIp', server,
{'address': address, 'fixed_address': fixed_address})
else:
self._action('addFloatingIp', server, {'address': address})
def remove_floating_ip(self, server, address):
"""

@ -1707,10 +1707,14 @@ def do_console_log(cs, args):
@utils.arg('server', metavar='<server>', help='Name or ID of server.')
@utils.arg('address', metavar='<address>', help='IP Address.')
@utils.arg('--fixed-address',
metavar='<fixed_address>',
default=None,
help='Fixed IP Address to associate with.')
def do_add_floating_ip(cs, args):
"""Add a floating IP address to a server."""
server = _find_server(cs, args.server)
server.add_floating_ip(args.address)
server.add_floating_ip(args.address, args.fixed_address)
@utils.arg('server', metavar='<server>', help='Name or ID of server.')