These files are a subset of the python-2.7.2.tgz distribution from python.org. Changed files from PyMod-2.7.2 have been copied into the corresponding directories of this tree, replacing the original files in the distribution. Signed-off-by: daryl.mcdaniel@intel.com git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13197 6f19259b-4bc3-4df7-8a09-765794883524
		
			
				
	
	
		
			51 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import decimal
 | 
						|
from StringIO import StringIO
 | 
						|
from collections import OrderedDict
 | 
						|
from json.tests import PyTest, CTest
 | 
						|
 | 
						|
 | 
						|
class TestDecode(object):
 | 
						|
    def test_decimal(self):
 | 
						|
        rval = self.loads('1.1', parse_float=decimal.Decimal)
 | 
						|
        self.assertTrue(isinstance(rval, decimal.Decimal))
 | 
						|
        self.assertEqual(rval, decimal.Decimal('1.1'))
 | 
						|
 | 
						|
    def test_float(self):
 | 
						|
        rval = self.loads('1', parse_int=float)
 | 
						|
        self.assertTrue(isinstance(rval, float))
 | 
						|
        self.assertEqual(rval, 1.0)
 | 
						|
 | 
						|
    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 = self.loads('{   "key"    :    "value"    ,  "k":"v"    }')
 | 
						|
        self.assertEqual(rval, {"key":"value", "k":"v"})
 | 
						|
 | 
						|
    def test_empty_objects(self):
 | 
						|
        self.assertEqual(self.loads('{}'), {})
 | 
						|
        self.assertEqual(self.loads('[]'), [])
 | 
						|
        self.assertEqual(self.loads('""'), u"")
 | 
						|
        self.assertIsInstance(self.loads('""'), unicode)
 | 
						|
 | 
						|
    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(self.loads(s), eval(s))
 | 
						|
        self.assertEqual(self.loads(s, object_pairs_hook=lambda x: x), p)
 | 
						|
        self.assertEqual(self.json.load(StringIO(s),
 | 
						|
                                        object_pairs_hook=lambda x: x), p)
 | 
						|
        od = self.loads(s, object_pairs_hook=OrderedDict)
 | 
						|
        self.assertEqual(od, OrderedDict(p))
 | 
						|
        self.assertEqual(type(od), OrderedDict)
 | 
						|
        # the object_pairs_hook takes priority over the object_hook
 | 
						|
        self.assertEqual(self.loads(s,
 | 
						|
                                    object_pairs_hook=OrderedDict,
 | 
						|
                                    object_hook=lambda x: None),
 | 
						|
                         OrderedDict(p))
 | 
						|
 | 
						|
 | 
						|
class TestPyDecode(TestDecode, PyTest): pass
 | 
						|
class TestCDecode(TestDecode, CTest): pass
 |