From 2a281aecce376c0e9bb32bbe507a4ef0d6dc9b3c Mon Sep 17 00:00:00 2001 From: Anna Khmelnitsky Date: Fri, 25 Nov 2016 13:14:34 -0800 Subject: [PATCH] NSX|V: fix broken unit tests Commit 9e006cbe64717f3743a215293586713394c47467 broke unit tests. At the moment the V plugin does not support IPv6 Change-Id: I2115dba8703e352fb753a175e6ec2de6415d69b7 --- vmware_nsx/tests/unit/nsx_v/test_plugin.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/vmware_nsx/tests/unit/nsx_v/test_plugin.py b/vmware_nsx/tests/unit/nsx_v/test_plugin.py index 976239224f..add079fe77 100644 --- a/vmware_nsx/tests/unit/nsx_v/test_plugin.py +++ b/vmware_nsx/tests/unit/nsx_v/test_plugin.py @@ -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')