json: convert value to string before encoding

If the JSON sent is not really a string, it's safer to try to convert it
to a string before calling the encode method. This way we can accept
integer as potentially valid strings.

Change-Id: Iad0b48f597a8c062cdb05c9bbb5342df15583edf
This commit is contained in:
Julien Danjou 2013-09-18 16:37:31 +02:00
parent b7875ffbb7
commit b45d1f16f1
2 changed files with 28 additions and 3 deletions

View File

@ -166,9 +166,10 @@ def dict_fromjson(datatype, value):
@fromjson.when_object(six.binary_type)
def str_fromjson(datatype, value):
if value is None:
return None
return value.encode('utf8')
if (isinstance(value, six.string_types)
or isinstance(value, six.integer_types)
or isinstance(value, float)):
return six.text_type(value).encode('utf8')
@fromjson.when_object(wsme.types.text)

View File

@ -86,6 +86,30 @@ Invalid value (should be one of:"))
self.assertIn('None', res.json_body['faultstring'])
self.assertEqual(res.status_int, 400)
def test_validate_enum_with_wrong_type(self):
class Version(object):
number = types.Enum(str, 'v1', 'v2', None)
class MyWS(WSRoot):
@expose(str)
@validate(Version)
def setcplx(self, version):
pass
r = MyWS(['restjson'])
app = webtest.TestApp(r.wsgiapp())
res = app.post_json('/setcplx', params={'version': {'number': 1}},
expect_errors=True,
headers={'Accept': 'application/json'})
self.assertTrue(
res.json_body['faultstring'].startswith(
"Invalid input for field/attribute number. Value: '1'. \
Invalid value (should be one of:"))
self.assertIn('v1', res.json_body['faultstring'])
self.assertIn('v2', res.json_body['faultstring'])
self.assertIn('None', res.json_body['faultstring'])
self.assertEqual(res.status_int, 400)
def test_scan_api(self):
class NS(object):
@expose(int)