NSX: Fix fake_api_client to raise NotFound
If one quries NSX doing GET /ws.v1/lswitch/LS_UUID/lport and LS_UUID is a UUID that does not exist in NSX. NSX raises a 404. If LS_UUID is * NSX returns an empty result string. This patch fixes the fake_api_client so that it's behavior is correct. Change-Id: Id66299d6ae3cfa43a65d4cb28f34348d64d8ed65 Closes-bug: 1311291
This commit is contained in:
parent
67f89e52a5
commit
57bf3ace1b
@ -381,6 +381,9 @@ class FakeClient:
|
||||
res_dict = getattr(self, '_fake_%s_dict' % resource_type)
|
||||
if parent_uuid == '*':
|
||||
parent_uuid = None
|
||||
# NSX raises ResourceNotFound if lswitch doesn't exist and is not *
|
||||
elif not res_dict and resource_type == self.LSWITCH_LPORT_RESOURCE:
|
||||
raise api_exc.ResourceNotFound()
|
||||
|
||||
def _attr_match(res_uuid):
|
||||
if not attr_filter:
|
||||
|
@ -183,7 +183,7 @@ class LogicalPortsTestCase(base.NsxlibTestCase):
|
||||
self.assertIsNotNone(lport2)
|
||||
self.assertEqual(lport['uuid'], lport2['uuid'])
|
||||
|
||||
def test_get_port_by_tag_not_found_returns_None(self):
|
||||
def test_get_port_by_tag_not_found_with_switch_id_raises_not_found(self):
|
||||
tenant_id = 'pippo'
|
||||
neutron_port_id = 'whatever'
|
||||
transport_zones_config = [{'zone_uuid': _uuid(),
|
||||
@ -191,8 +191,21 @@ class LogicalPortsTestCase(base.NsxlibTestCase):
|
||||
lswitch = switchlib.create_lswitch(
|
||||
self.fake_cluster, tenant_id, _uuid(),
|
||||
'fake-switch', transport_zones_config)
|
||||
self.assertRaises(exceptions.NotFound,
|
||||
switchlib.get_port_by_neutron_tag,
|
||||
self.fake_cluster, lswitch['uuid'],
|
||||
neutron_port_id)
|
||||
|
||||
def test_get_port_by_tag_not_find_wildcard_lswitch_returns_none(self):
|
||||
tenant_id = 'pippo'
|
||||
neutron_port_id = 'whatever'
|
||||
transport_zones_config = [{'zone_uuid': _uuid(),
|
||||
'transport_type': 'stt'}]
|
||||
switchlib.create_lswitch(
|
||||
self.fake_cluster, tenant_id, _uuid(),
|
||||
'fake-switch', transport_zones_config)
|
||||
lport = switchlib.get_port_by_neutron_tag(
|
||||
self.fake_cluster, lswitch['uuid'], neutron_port_id)
|
||||
self.fake_cluster, '*', neutron_port_id)
|
||||
self.assertIsNone(lport)
|
||||
|
||||
def test_get_port_status(self):
|
||||
|
Loading…
x
Reference in New Issue
Block a user