WSGI: added the control for non empty X-PROJECT-ID
Closes-bug: #1228249 Change-Id: I6fbf0344fd45f9581a28a55ef852139b32e93ed7
This commit is contained in:
parent
e8e3baef4e
commit
c5d62ed385
@ -52,6 +52,11 @@ media type support with the "Accept" header.''',
|
||||
|
||||
def _extract_project_id(req, resp, params):
|
||||
params['project_id'] = req.get_header('X-PROJECT-ID')
|
||||
if params['project_id'] == "":
|
||||
raise falcon.HTTPBadRequest('Empty project header not allowed',
|
||||
_(u'''
|
||||
X-PROJECT-ID cannot be an empty string. Specify the right header X-PROJECT-ID
|
||||
and retry.'''))
|
||||
|
||||
|
||||
class Driver(transport.DriverBase):
|
||||
|
@ -36,7 +36,22 @@ class QueueLifecycleBaseTest(base.TestBase):
|
||||
self.wsgi_cfg = config.namespace(
|
||||
'drivers:transport:wsgi').from_options()
|
||||
|
||||
@ddt.data('480924', 'foo', '', None)
|
||||
def test_empty_project_id(self):
|
||||
path = '/v1/queues/gumshoe'
|
||||
|
||||
self.simulate_get(path, '')
|
||||
self.assertEquals(self.srmock.status, falcon.HTTP_400)
|
||||
|
||||
self.simulate_put(path, '')
|
||||
self.assertEquals(self.srmock.status, falcon.HTTP_400)
|
||||
|
||||
self.simulate_head(path, '')
|
||||
self.assertEquals(self.srmock.status, falcon.HTTP_400)
|
||||
|
||||
self.simulate_delete(path, '')
|
||||
self.assertEquals(self.srmock.status, falcon.HTTP_400)
|
||||
|
||||
@ddt.data('480924', 'foo', None)
|
||||
def test_basics_thoroughly(self, project_id):
|
||||
path = '/v1/queues/gumshoe'
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user