Merge "Fix tempest test for empty_body"

This commit is contained in:
Jenkins 2017-07-03 08:57:58 +00:00 committed by Gerrit Code Review
commit 1c0d256aa6
1 changed files with 4 additions and 2 deletions

View File

@ -26,10 +26,12 @@ class TestLogApiConstraints(base.BaseLogsTestCase):
try:
cli.custom_request('POST', headers, None)
except exceptions.UnprocessableEntity as urc:
self.assertEqual(422, urc.resp.status)
# depending on the actual server (for example gunicorn vs mod_wsgi)
# monasca-log-api may return a different error code
self.assertTrue(urc.resp.status in [411, 422])
return
self.assertTrue(False, 'API should respond with 411')
self.assertTrue(False, 'API should respond with an error')
@decorators.attr(type='gate')
def test_should_reject_if_content_type_missing(self):