2008-05-05 17:21:38 -03:00
|
|
|
import decimal
|
|
|
|
from unittest import TestCase
|
2009-03-29 19:33:58 -03:00
|
|
|
from StringIO import StringIO
|
2008-05-05 17:21:38 -03:00
|
|
|
|
|
|
|
import json
|
2009-03-19 16:19:03 -03:00
|
|
|
from collections import OrderedDict
|
2008-05-05 17:21:38 -03:00
|
|
|
|
|
|
|
class TestDecode(TestCase):
|
|
|
|
def test_decimal(self):
|
|
|
|
rval = json.loads('1.1', parse_float=decimal.Decimal)
|
2009-06-30 19:57:08 -03:00
|
|
|
self.assertTrue(isinstance(rval, decimal.Decimal))
|
2008-05-05 17:21:38 -03:00
|
|
|
self.assertEquals(rval, decimal.Decimal('1.1'))
|
|
|
|
|
|
|
|
def test_float(self):
|
|
|
|
rval = json.loads('1', parse_int=float)
|
2009-06-30 19:57:08 -03:00
|
|
|
self.assertTrue(isinstance(rval, float))
|
2008-05-05 17:21:38 -03:00
|
|
|
self.assertEquals(rval, 1.0)
|
2009-03-17 20:19:00 -03:00
|
|
|
|
|
|
|
def test_decoder_optimizations(self):
|
|
|
|
# Several optimizations were made that skip over calls to
|
|
|
|
# the whitespace regex, so this test is designed to try and
|
|
|
|
# exercise the uncommon cases. The array cases are already covered.
|
|
|
|
rval = json.loads('{ "key" : "value" , "k":"v" }')
|
|
|
|
self.assertEquals(rval, {"key":"value", "k":"v"})
|
2009-03-19 16:19:03 -03:00
|
|
|
|
|
|
|
def test_object_pairs_hook(self):
|
|
|
|
s = '{"xkd":1, "kcw":2, "art":3, "hxm":4, "qrt":5, "pad":6, "hoy":7}'
|
|
|
|
p = [("xkd", 1), ("kcw", 2), ("art", 3), ("hxm", 4),
|
|
|
|
("qrt", 5), ("pad", 6), ("hoy", 7)]
|
|
|
|
self.assertEqual(json.loads(s), eval(s))
|
2009-03-29 19:33:58 -03:00
|
|
|
self.assertEqual(json.loads(s, object_pairs_hook=lambda x: x), p)
|
|
|
|
self.assertEqual(json.load(StringIO(s),
|
|
|
|
object_pairs_hook=lambda x: x), p)
|
|
|
|
od = json.loads(s, object_pairs_hook=OrderedDict)
|
2009-03-19 16:19:03 -03:00
|
|
|
self.assertEqual(od, OrderedDict(p))
|
|
|
|
self.assertEqual(type(od), OrderedDict)
|
|
|
|
# the object_pairs_hook takes priority over the object_hook
|
|
|
|
self.assertEqual(json.loads(s,
|
2009-03-29 19:33:58 -03:00
|
|
|
object_pairs_hook=OrderedDict,
|
|
|
|
object_hook=lambda x: None),
|
2009-03-19 16:19:03 -03:00
|
|
|
OrderedDict(p))
|