NSXv: fix broken unit tests

- test_create_port_anticipating_allocation
- test_create_port_security_false_allowed_address_pairs

Change-Id: Ia878887ff2d6f2e55131da604065dfa278216108
This commit is contained in:
Gary Kotton 2015-05-31 05:15:40 -07:00
parent 8b54c1c412
commit 7929321517
2 changed files with 13 additions and 0 deletions

View File

@ -30,3 +30,6 @@ class TestAllowedAddressPairs(test_nsx_plugin.NsxPluginV2TestCase,
port = self.deserialize(self.fmt, res)
self.assertEqual(port['port'][addr_pair.ADDRESS_PAIRS], [])
self._delete('ports', port['port']['id'])
def test_create_port_security_false_allowed_address_pairs(self):
self.skipTest('TBD')

View File

@ -135,6 +135,16 @@ class NsxVPluginV2TestCase(test_plugin.NeutronDbPluginV2TestCase):
self.assertEqual(expected,
p._get_vlan_network_name(net))
def test_create_port_anticipating_allocation(self):
with self.network(shared=True) as network:
with self.subnet(network=network, cidr='10.0.0.0/24') as subnet:
fixed_ips = [{'subnet_id': subnet['subnet']['id']},
{'subnet_id': subnet['subnet']['id'],
'ip_address': '10.0.0.3'}]
self._create_port(self.fmt, network['network']['id'],
webob.exc.HTTPCreated.code,
fixed_ips=fixed_ips)
class TestNetworksV2(test_plugin.TestNetworksV2, NsxVPluginV2TestCase):