mirror of
https://github.com/python/cpython.git
synced 2025-07-12 13:55:34 +00:00
#18273: move the tests in Lib/test/json_tests to Lib/test/test_json and make them discoverable by unittest. Patch by Zachary Ware.
This commit is contained in:
parent
0d2d2b8393
commit
66f2ea042a
21 changed files with 25 additions and 44 deletions
33
Lib/test/test_json/test_float.py
Normal file
33
Lib/test/test_json/test_float.py
Normal file
|
@ -0,0 +1,33 @@
|
|||
import math
|
||||
from test.test_json import PyTest, CTest
|
||||
|
||||
|
||||
class TestFloat:
|
||||
def test_floats(self):
|
||||
for num in [1617161771.7650001, math.pi, math.pi**100, math.pi**-100, 3.1]:
|
||||
self.assertEqual(float(self.dumps(num)), num)
|
||||
self.assertEqual(self.loads(self.dumps(num)), num)
|
||||
|
||||
def test_ints(self):
|
||||
for num in [1, 1<<32, 1<<64]:
|
||||
self.assertEqual(self.dumps(num), str(num))
|
||||
self.assertEqual(int(self.dumps(num)), num)
|
||||
|
||||
def test_out_of_range(self):
|
||||
self.assertEqual(self.loads('[23456789012E666]'), [float('inf')])
|
||||
self.assertEqual(self.loads('[-23456789012E666]'), [float('-inf')])
|
||||
|
||||
def test_allow_nan(self):
|
||||
for val in (float('inf'), float('-inf'), float('nan')):
|
||||
out = self.dumps([val])
|
||||
if val == val: # inf
|
||||
self.assertEqual(self.loads(out), [val])
|
||||
else: # nan
|
||||
res = self.loads(out)
|
||||
self.assertEqual(len(res), 1)
|
||||
self.assertNotEqual(res[0], res[0])
|
||||
self.assertRaises(ValueError, self.dumps, [val], allow_nan=False)
|
||||
|
||||
|
||||
class TestPyFloat(TestFloat, PyTest): pass
|
||||
class TestCFloat(TestFloat, CTest): pass
|
Loading…
Add table
Add a link
Reference in a new issue