NSX|V: fix broken unit tests

Commit 9e006cbe64717f3743a215293586713394c47467 broke unit
tests. At the moment the V plugin does not support IPv6

Change-Id: I2115dba8703e352fb753a175e6ec2de6415d69b7
This commit is contained in:
Anna Khmelnitsky 2016-11-25 13:14:34 -08:00
parent 4aebed14f9
commit 2a281aecce
1 changed files with 10 additions and 1 deletions

View File

@ -1633,7 +1633,10 @@ class TestSubnetsV2(NsxVPluginV2TestCase,
self.assertNotEqual(dhcp_server_id, dhcp_server_id_1)
def test_create_subnet_ipv6_slaac_with_db_reference_error(self):
self.skipTest('Currently not support')
self.skipTest('Currently not supported')
def test_create_subnet_ipv6_slaac_with_port_not_found(self):
self.skipTest('Currently not supported')
def test_create_subnet_ipv6_gw_values(self):
# This test should fail with response code 400 as IPv6 subnets with
@ -1704,6 +1707,9 @@ class TestSubnetPoolsV2(NsxVPluginV2TestCase, test_plugin.TestSubnetsV2):
def test_create_subnet_ipv6_slaac_with_db_reference_error(self):
self.skipTest('Not supported')
def test_create_subnet_ipv6_slaac_with_port_not_found(self):
self.skipTest('Not supported')
def test_create_subnet_ipv6_slaac_with_dhcp_port_on_network(self):
self.skipTest('Not supported')
@ -2421,6 +2427,9 @@ class L3NatTestCaseBase(test_l3_plugin.L3NatTestCaseMixin):
def test_router_update_gateway_add_multiple_prefixes_ipv6(self):
self.skipTest('No DHCP v6 Support yet')
def test_router_concurrent_delete_upon_subnet_create(self):
self.skipTest('No DHCP v6 Support yet')
def test_router_update_gateway_upon_subnet_create_ipv6(self):
self.skipTest('No DHCP v6 Support yet')