Merge "Send proper exception info as expected by the neutron client"
This commit is contained in:
commit
8ee86c867f
@ -86,7 +86,10 @@ def Resource(controller, faults=None, deserializers=None, serializers=None):
|
|||||||
netaddr.AddrFormatError) as e:
|
netaddr.AddrFormatError) as e:
|
||||||
LOG.exception(_('%s failed'), action)
|
LOG.exception(_('%s failed'), action)
|
||||||
e = translate(e, language)
|
e = translate(e, language)
|
||||||
body = serializer.serialize({'NeutronError': e})
|
# following structure is expected by python-neutronclient
|
||||||
|
err_data = {'type': e.__class__.__name__,
|
||||||
|
'message': e, 'detail': ''}
|
||||||
|
body = serializer.serialize({'NeutronError': err_data})
|
||||||
kwargs = {'body': body, 'content_type': content_type}
|
kwargs = {'body': body, 'content_type': content_type}
|
||||||
for fault in faults:
|
for fault in faults:
|
||||||
if isinstance(e, fault):
|
if isinstance(e, fault):
|
||||||
|
@ -1315,7 +1315,7 @@ class QuotaTest(APIv2TestBase):
|
|||||||
instance.get_networks_count.assert_called_with(mock.ANY,
|
instance.get_networks_count.assert_called_with(mock.ANY,
|
||||||
filters=mock.ANY)
|
filters=mock.ANY)
|
||||||
self.assertIn("Quota exceeded for resources",
|
self.assertIn("Quota exceeded for resources",
|
||||||
res.json['NeutronError'])
|
res.json['NeutronError']['message'])
|
||||||
|
|
||||||
def test_create_network_quota_no_counts(self):
|
def test_create_network_quota_no_counts(self):
|
||||||
cfg.CONF.set_override('quota_network', 1, group='QUOTAS')
|
cfg.CONF.set_override('quota_network', 1, group='QUOTAS')
|
||||||
@ -1332,7 +1332,7 @@ class QuotaTest(APIv2TestBase):
|
|||||||
instance.get_networks_count.assert_called_with(mock.ANY,
|
instance.get_networks_count.assert_called_with(mock.ANY,
|
||||||
filters=mock.ANY)
|
filters=mock.ANY)
|
||||||
self.assertIn("Quota exceeded for resources",
|
self.assertIn("Quota exceeded for resources",
|
||||||
res.json['NeutronError'])
|
res.json['NeutronError']['message'])
|
||||||
|
|
||||||
def test_create_network_quota_without_limit(self):
|
def test_create_network_quota_without_limit(self):
|
||||||
cfg.CONF.set_override('quota_network', -1, group='QUOTAS')
|
cfg.CONF.set_override('quota_network', -1, group='QUOTAS')
|
||||||
|
@ -129,7 +129,11 @@ class ResourceTestCase(base.BaseTestCase):
|
|||||||
|
|
||||||
class TestException(q_exc.NeutronException):
|
class TestException(q_exc.NeutronException):
|
||||||
message = msg
|
message = msg
|
||||||
expected_res = {'body': {'NeutronError': msg}}
|
expected_res = {'body': {
|
||||||
|
'NeutronError': {
|
||||||
|
'type': 'TestException',
|
||||||
|
'message': msg,
|
||||||
|
'detail': ''}}}
|
||||||
controller = mock.MagicMock()
|
controller = mock.MagicMock()
|
||||||
controller.test.side_effect = TestException()
|
controller.test.side_effect = TestException()
|
||||||
|
|
||||||
@ -147,7 +151,11 @@ class ResourceTestCase(base.BaseTestCase):
|
|||||||
|
|
||||||
class TestException(q_exc.NeutronException):
|
class TestException(q_exc.NeutronException):
|
||||||
message = msg
|
message = msg
|
||||||
expected_res = {'body': {'NeutronError': msg}}
|
expected_res = {'body': {
|
||||||
|
'NeutronError': {
|
||||||
|
'type': 'TestException',
|
||||||
|
'message': msg,
|
||||||
|
'detail': ''}}}
|
||||||
controller = mock.MagicMock()
|
controller = mock.MagicMock()
|
||||||
controller.test.side_effect = TestException()
|
controller.test.side_effect = TestException()
|
||||||
|
|
||||||
@ -187,7 +195,11 @@ class ResourceTestCase(base.BaseTestCase):
|
|||||||
|
|
||||||
class TestException(q_exc.NeutronException):
|
class TestException(q_exc.NeutronException):
|
||||||
message = msg
|
message = msg
|
||||||
expected_res = {'body': {'NeutronError': msg}}
|
expected_res = {'body': {
|
||||||
|
'NeutronError': {
|
||||||
|
'type': 'TestException',
|
||||||
|
'message': msg,
|
||||||
|
'detail': ''}}}
|
||||||
controller = mock.MagicMock()
|
controller = mock.MagicMock()
|
||||||
controller.test.side_effect = TestException()
|
controller.test.side_effect = TestException()
|
||||||
|
|
||||||
@ -207,7 +219,11 @@ class ResourceTestCase(base.BaseTestCase):
|
|||||||
|
|
||||||
class TestException(q_exc.NeutronException):
|
class TestException(q_exc.NeutronException):
|
||||||
message = msg
|
message = msg
|
||||||
expected_res = {'body': {'NeutronError': msg}}
|
expected_res = {'body': {
|
||||||
|
'NeutronError': {
|
||||||
|
'type': 'TestException',
|
||||||
|
'message': msg,
|
||||||
|
'detail': ''}}}
|
||||||
controller = mock.MagicMock()
|
controller = mock.MagicMock()
|
||||||
controller.test.side_effect = TestException()
|
controller.test.side_effect = TestException()
|
||||||
|
|
||||||
|
@ -1162,7 +1162,7 @@ fixed_ips=ip_address%%3D%s&fixed_ips=ip_address%%3D%s&fixed_ips=subnet_id%%3D%s
|
|||||||
res = self._create_port(self.fmt, id)
|
res = self._create_port(self.fmt, id)
|
||||||
data = self.deserialize(self.fmt, res)
|
data = self.deserialize(self.fmt, res)
|
||||||
msg = str(q_exc.IpAddressGenerationFailure(net_id=id))
|
msg = str(q_exc.IpAddressGenerationFailure(net_id=id))
|
||||||
self.assertEqual(data['NeutronError'], msg)
|
self.assertEqual(data['NeutronError']['message'], msg)
|
||||||
self.assertEqual(res.status_int, webob.exc.HTTPConflict.code)
|
self.assertEqual(res.status_int, webob.exc.HTTPConflict.code)
|
||||||
|
|
||||||
def test_update_port_update_ip(self):
|
def test_update_port_update_ip(self):
|
||||||
@ -2477,7 +2477,7 @@ class TestSubnetsV2(NeutronDbPluginV2TestCase):
|
|||||||
data = self.deserialize(self.fmt, res)
|
data = self.deserialize(self.fmt, res)
|
||||||
self.assertEqual(res.status_int, webob.exc.HTTPConflict.code)
|
self.assertEqual(res.status_int, webob.exc.HTTPConflict.code)
|
||||||
msg = str(q_exc.SubnetInUse(subnet_id=id))
|
msg = str(q_exc.SubnetInUse(subnet_id=id))
|
||||||
self.assertEqual(data['NeutronError'], msg)
|
self.assertEqual(data['NeutronError']['message'], msg)
|
||||||
|
|
||||||
def test_delete_network(self):
|
def test_delete_network(self):
|
||||||
gateway_ip = '10.0.0.1'
|
gateway_ip = '10.0.0.1'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user