summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_json
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-07-13 07:14:11 (GMT)
committerGitHub <noreply@github.com>2017-07-13 07:14:11 (GMT)
commitd3aaa2f1496aae0809c9ec9623fa528d3a2c16c2 (patch)
treeb6e3e9610a0f801de343a4ca00bcddb7a0c265a7 /Lib/test/test_json
parent541bd28941af407f2329e6a540d6367e5625b115 (diff)
downloadcpython-d3aaa2f1496aae0809c9ec9623fa528d3a2c16c2.zip
cpython-d3aaa2f1496aae0809c9ec9623fa528d3a2c16c2.tar.gz
cpython-d3aaa2f1496aae0809c9ec9623fa528d3a2c16c2.tar.bz2
bpo-30911: Add tests for bad boolean arguments for accelerated json (#2690)
encoder and decoder.
Diffstat (limited to 'Lib/test/test_json')
-rw-r--r--Lib/test/test_json/test_speedups.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/Lib/test/test_json/test_speedups.py b/Lib/test/test_json/test_speedups.py
index 109a246..8d98ab5 100644
--- a/Lib/test/test_json/test_speedups.py
+++ b/Lib/test/test_json/test_speedups.py
@@ -1,6 +1,11 @@
from test.test_json import CTest
+class BadBool:
+ def __bool__(self):
+ 1/0
+
+
class TestSpeedups(CTest):
def test_scanstring(self):
self.assertEqual(self.json.decoder.scanstring.__module__, "_json")
@@ -17,8 +22,25 @@ class TestDecode(CTest):
def test_make_scanner(self):
self.assertRaises(AttributeError, self.json.scanner.c_make_scanner, 1)
+ def test_bad_bool_args(self):
+ def test(value):
+ self.json.decoder.JSONDecoder(strict=BadBool()).decode(value)
+ self.assertRaises(ZeroDivisionError, test, '""')
+ self.assertRaises(ZeroDivisionError, test, '{}')
+
+
+class TestEncode(CTest):
def test_make_encoder(self):
self.assertRaises(TypeError, self.json.encoder.c_make_encoder,
(True, False),
b"\xCD\x7D\x3D\x4E\x12\x4C\xF9\x79\xD7\x52\xBA\x82\xF2\x27\x4A\x7D\xA0\xCA\x75",
None)
+
+ def test_bad_bool_args(self):
+ def test(name):
+ self.json.encoder.JSONEncoder(**{name: BadBool()}).encode({'a': 1})
+ self.assertRaises(ZeroDivisionError, test, 'skipkeys')
+ self.assertRaises(ZeroDivisionError, test, 'ensure_ascii')
+ self.assertRaises(ZeroDivisionError, test, 'check_circular')
+ self.assertRaises(ZeroDivisionError, test, 'allow_nan')
+ self.assertRaises(ZeroDivisionError, test, 'sort_keys')