Fix failing unit tests

Unit tests have failed because NSXv DHCP is uses a different IP address than
Neutron's default

Tests have been overriden.

Change-Id: I88f76b8df5edc85d25edb4cab9cf111783183953
This commit is contained in:
Kobi Samoray 2015-07-14 12:42:48 +03:00
parent 8758b85413
commit cf333945f0

View File

@ -1749,6 +1749,15 @@ class TestExclusiveRouterTestCase(L3NatTest, L3NatTestCaseBase,
# attempting to parse the response of a failed create_subnet req
supercall()
def test_create_floatingip_ipv6_and_ipv4_network_creates_ipv4(self):
with self.network() as n,\
self.subnet(cidr="2001:db8::/48", ip_version=6, network=n),\
self.subnet(cidr="192.168.1.0/24", ip_version=4, network=n):
self._set_net_external(n['network']['id'])
fip = self._make_floatingip(self.fmt, n['network']['id'])
self.assertEqual(fip['floatingip']['floating_ip_address'],
'192.168.1.3')
class ExtGwModeTestCase(NsxVPluginV2TestCase,
test_ext_gw_mode.ExtGwModeIntTestCase):
@ -1989,6 +1998,15 @@ class TestVdrTestCase(L3NatTest, L3NatTestCaseBase,
# attempting to parse the response of a failed create_subnet req
supercall()
def test_create_floatingip_ipv6_and_ipv4_network_creates_ipv4(self):
with self.network() as n,\
self.subnet(cidr="2001:db8::/48", ip_version=6, network=n),\
self.subnet(cidr="192.168.1.0/24", ip_version=4, network=n):
self._set_net_external(n['network']['id'])
fip = self._make_floatingip(self.fmt, n['network']['id'])
self.assertEqual(fip['floatingip']['floating_ip_address'],
'192.168.1.3')
class TestNSXvAllowedAddressPairs(test_addr_pair.TestAllowedAddressPairs,
NsxVPluginV2TestCase):