Skip test_create_router_gateway_fails test

Skip the test_create_router_gateway_fails test case in all three
plugins since we do not inherit from L3_NAT_dbonly_mixin in any
of these plugins. This test case was introduced as part of change
Ic5d5162320bf3ff1bb8b09de3e8200ca46023b32 in upstream neutron.

Change-Id: I197b76235450107c1423743da19af1b2bb99caad
This commit is contained in:
Abhishek Raut 2015-08-26 12:17:39 -07:00
parent bab83aaa38
commit 9059dba6a7
3 changed files with 12 additions and 0 deletions

View File

@ -1071,6 +1071,9 @@ class TestL3NatTestCase(L3NatTest,
def test_floating_port_status_not_applicable(self):
self.skipTest('Plugin changes floating port status')
def test_create_router_gateway_fails(self):
self.skipTest('not supported')
class ExtGwModeTestCase(NsxPluginV2TestCase,
test_ext_gw_mode.ExtGwModeIntTestCase):

View File

@ -2219,6 +2219,9 @@ class TestExclusiveRouterTestCase(L3NatTest, L3NatTestCaseBase,
with self.subnet(network=net, enable_dhcp=False):
self._make_floatingip(self.fmt, net_id)
def test_create_router_gateway_fails(self):
self.skipTest('not supported')
class ExtGwModeTestCase(NsxVPluginV2TestCase,
test_ext_gw_mode.ExtGwModeIntTestCase):
@ -2498,6 +2501,9 @@ class TestVdrTestCase(L3NatTest, L3NatTestCaseBase,
def test_router_add_interface_multiple_ipv6_subnets_different_net(self):
self.skipTest('TBD')
def test_create_router_gateway_fails(self):
self.skipTest('not supported')
class TestNSXvAllowedAddressPairs(test_addr_pair.TestAllowedAddressPairs,
NsxVPluginV2TestCase):

View File

@ -328,6 +328,9 @@ class TestL3NatTestCase(L3NatTest,
gw_info = body['router']['external_gateway_info']
self.assertIsNone(gw_info)
def test_create_router_gateway_fails(self):
self.skipTest('not supported')
class ExtGwModeTestCase(L3NatTest,
test_ext_gw_mode.ExtGwModeIntTestCase):