summaryrefslogtreecommitdiffstats
path: root/Lib/test/json_tests/test_unicode.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2013-08-08 12:03:45 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2013-08-08 12:03:45 (GMT)
commit66f2ea042acf792bf6ff432f409628e1cec99e43 (patch)
tree9d7e5a24d3f26eeeb63a0f00fa4758b5dde8d099 /Lib/test/json_tests/test_unicode.py
parent0d2d2b83935a516235f4dbce25aefad789d088cf (diff)
downloadcpython-66f2ea042acf792bf6ff432f409628e1cec99e43.zip
cpython-66f2ea042acf792bf6ff432f409628e1cec99e43.tar.gz
cpython-66f2ea042acf792bf6ff432f409628e1cec99e43.tar.bz2
#18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make them discoverable by unittest. Patch by Zachary Ware.
Diffstat (limited to 'Lib/test/json_tests/test_unicode.py')
-rw-r--r--Lib/test/json_tests/test_unicode.py75
1 files changed, 0 insertions, 75 deletions
diff --git a/Lib/test/json_tests/test_unicode.py b/Lib/test/json_tests/test_unicode.py
deleted file mode 100644
index f226aa6..0000000
--- a/Lib/test/json_tests/test_unicode.py
+++ /dev/null
@@ -1,75 +0,0 @@
-from collections import OrderedDict
-from test.json_tests import PyTest, CTest
-
-
-class TestUnicode:
- # test_encoding1 and test_encoding2 from 2.x are irrelevant (only str
- # is supported as input, not bytes).
-
- def test_encoding3(self):
- u = '\N{GREEK SMALL LETTER ALPHA}\N{GREEK CAPITAL LETTER OMEGA}'
- j = self.dumps(u)
- self.assertEqual(j, '"\\u03b1\\u03a9"')
-
- def test_encoding4(self):
- u = '\N{GREEK SMALL LETTER ALPHA}\N{GREEK CAPITAL LETTER OMEGA}'
- j = self.dumps([u])
- self.assertEqual(j, '["\\u03b1\\u03a9"]')
-
- def test_encoding5(self):
- u = '\N{GREEK SMALL LETTER ALPHA}\N{GREEK CAPITAL LETTER OMEGA}'
- j = self.dumps(u, ensure_ascii=False)
- self.assertEqual(j, '"{0}"'.format(u))
-
- def test_encoding6(self):
- u = '\N{GREEK SMALL LETTER ALPHA}\N{GREEK CAPITAL LETTER OMEGA}'
- j = self.dumps([u], ensure_ascii=False)
- self.assertEqual(j, '["{0}"]'.format(u))
-
- def test_big_unicode_encode(self):
- u = '\U0001d120'
- self.assertEqual(self.dumps(u), '"\\ud834\\udd20"')
- self.assertEqual(self.dumps(u, ensure_ascii=False), '"\U0001d120"')
-
- def test_big_unicode_decode(self):
- u = 'z\U0001d120x'
- self.assertEqual(self.loads('"' + u + '"'), u)
- self.assertEqual(self.loads('"z\\ud834\\udd20x"'), u)
-
- def test_unicode_decode(self):
- for i in range(0, 0xd7ff):
- u = chr(i)
- s = '"\\u{0:04x}"'.format(i)
- self.assertEqual(self.loads(s), u)
-
- def test_unicode_preservation(self):
- self.assertEqual(type(self.loads('""')), str)
- self.assertEqual(type(self.loads('"a"')), str)
- self.assertEqual(type(self.loads('["a"]')[0]), str)
-
- def test_bytes_encode(self):
- self.assertRaises(TypeError, self.dumps, b"hi")
- self.assertRaises(TypeError, self.dumps, [b"hi"])
-
- def test_bytes_decode(self):
- self.assertRaises(TypeError, self.loads, b'"hi"')
- self.assertRaises(TypeError, self.loads, b'["hi"]')
-
-
- def test_object_pairs_hook_with_unicode(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)
- 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 TestPyUnicode(TestUnicode, PyTest): pass
-class TestCUnicode(TestUnicode, CTest): pass