This patch localizes try...except blocks, DRYs construction of certain HTTP exceptions, and modifies what types of exceptions are thrown (in some cases), to be more precise. I also factored out some input validation code that happened to be mixed up with all the exception handling. Implements: blueprint grizzly-debt Change-Id: I1030308bed1ec55477b176bf022118d53b46b7ff
137 lines
4.4 KiB
Python
137 lines
4.4 KiB
Python
# Copyright (c) 2013 Rackspace, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
# implied.
|
|
#
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import io
|
|
|
|
import falcon
|
|
import json
|
|
import testtools
|
|
|
|
from marconi.transport.wsgi import helpers
|
|
|
|
|
|
class TestWSGIHelpers(testtools.TestCase):
|
|
|
|
def test_get_checked_field_missing(self):
|
|
doc = {}
|
|
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.get_checked_field, doc, 'openstack', int)
|
|
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.get_checked_field, doc, 42, int)
|
|
|
|
doc = {'openstac': 10}
|
|
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.get_checked_field, doc, 'openstack', int)
|
|
|
|
def test_get_checked_field_bad_type(self):
|
|
doc = {'openstack': '10'}
|
|
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.get_checked_field, doc, 'openstack', int)
|
|
|
|
doc = {'openstack': 10, 'openstack-mq': 'test'}
|
|
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.get_checked_field, doc, 'openstack', str)
|
|
|
|
doc = {'openstack': '[1, 2]'}
|
|
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.get_checked_field, doc, 'openstack', list)
|
|
|
|
def test_get_checked_field(self):
|
|
doc = {'hello': 'world', 'teh answer': 42, 'question': []}
|
|
|
|
value = helpers.get_checked_field(doc, 'hello', str)
|
|
self.assertEquals(value, 'world')
|
|
|
|
value = helpers.get_checked_field(doc, 'teh answer', int)
|
|
self.assertEquals(value, 42)
|
|
|
|
value = helpers.get_checked_field(doc, 'question', list)
|
|
self.assertEquals(value, [])
|
|
|
|
def test_filter_missing(self):
|
|
doc = {'body': {'event': 'start_backup'}}
|
|
spec = (('tag', dict),)
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.filter, doc, spec)
|
|
|
|
def test_filter_bad_type(self):
|
|
doc = {'ttl': '300', 'bogus': 'yogabbagabba'}
|
|
spec = [('ttl', int)]
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.filter, doc, spec)
|
|
|
|
def test_filter(self):
|
|
doc = {'body': {'event': 'start_backup'}}
|
|
|
|
def spec():
|
|
yield ('body', dict)
|
|
|
|
filtered = helpers.filter(doc, spec())
|
|
self.assertEqual(filtered, doc)
|
|
|
|
doc = {'ttl': 300, 'bogus': 'yogabbagabba'}
|
|
spec = [('ttl', int)]
|
|
filtered = helpers.filter(doc, spec)
|
|
self.assertEqual(filtered, {'ttl': 300})
|
|
|
|
doc = {'body': {'event': 'start_backup'}, 'ttl': 300}
|
|
spec = (('body', dict), ('ttl', int))
|
|
filtered = helpers.filter(doc, spec)
|
|
self.assertEqual(filtered, doc)
|
|
|
|
def test_filter_star(self):
|
|
doc = {'ttl': 300, 'body': {'event': 'start_backup'}}
|
|
|
|
spec = [('body', '*'), ('ttl', '*')]
|
|
filtered = helpers.filter(doc, spec)
|
|
|
|
self.assertEqual(filtered, doc)
|
|
|
|
def test_filter_stream_expect_obj(self):
|
|
obj = {u'body': {'event': 'start_backup'}, 'id': 'DEADBEEF'}
|
|
|
|
stream = io.StringIO(json.dumps(obj, ensure_ascii=False))
|
|
spec = [('body', dict), ('id', basestring)]
|
|
filtered_object, = helpers.filter_stream(stream, spec)
|
|
|
|
self.assertEqual(filtered_object, obj)
|
|
|
|
stream.seek(0)
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.filter_stream, stream, spec,
|
|
doctype=helpers.JSONArray)
|
|
|
|
def test_filter_stream_expect_array(self):
|
|
array = [{u'body': {u'x': 1}}, {u'body': {u'x': 2}}]
|
|
|
|
stream = io.StringIO(json.dumps(array, ensure_ascii=False))
|
|
spec = [('body', dict)]
|
|
filtered_objects = list(helpers.filter_stream(
|
|
stream, spec, doctype=helpers.JSONArray))
|
|
|
|
self.assertEqual(filtered_objects, array)
|
|
|
|
stream.seek(0)
|
|
self.assertRaises(falcon.HTTPBadRequest,
|
|
helpers.filter_stream, stream, spec,
|
|
doctype=helpers.JSONObject)
|