/opt/imunify360/venv/lib/python3.11/site-packages/simplejson/tests
from unittest import TestCase import simplejson as json class TestBitSizeIntAsString(TestCase): # Python 2.5, at least the one that ships on Mac OS X, calculates # 2 ** 31 as 0! It manages to calculate 1 << 31 correctly. values = [ (200, 200), ((1 << 31) - 1, (1 << 31) - 1), ((1 << 31), str(1 << 31)), ((1 << 31) + 1, str((1 << 31) + 1)), (-100, -100), ((-1 << 31), str(-1 << 31)), ((-1 << 31) - 1, str((-1 << 31) - 1)), ((-1 << 31) + 1, (-1 << 31) + 1), ] def test_invalid_counts(self): for n in ['foo', -1, 0, 1.0]: self.assertRaises( TypeError, json.dumps, 0, int_as_string_bitcount=n) def test_ints_outside_range_fails(self): self.assertNotEqual( str(1 << 15), json.loads(json.dumps(1 << 15, int_as_string_bitcount=16)), ) def test_ints(self): for val, expect in self.values: self.assertEqual( val, json.loads(json.dumps(val))) self.assertEqual( expect, json.loads(json.dumps(val, int_as_string_bitcount=31)), ) def test_lists(self): for val, expect in self.values: val = [val, val] expect = [expect, expect] self.assertEqual( val, json.loads(json.dumps(val))) self.assertEqual( expect, json.loads(json.dumps(val, int_as_string_bitcount=31))) def test_dicts(self): for val, expect in self.values: val = {'k': val} expect = {'k': expect} self.assertEqual( val, json.loads(json.dumps(val))) self.assertEqual( expect, json.loads(json.dumps(val, int_as_string_bitcount=31))) def test_dict_keys(self): for val, _ in self.values: expect = {str(val): 'value'} val = {val: 'value'} self.assertEqual( expect, json.loads(json.dumps(val))) self.assertEqual( expect, json.loads(json.dumps(val, int_as_string_bitcount=31)))
.
Edit
..
Edit
__init__.py
Edit
__pycache__
Edit
_cibw_runner.py
Edit
test_bigint_as_string.py
Edit
test_bitsize_int_as_string.py
Edit
test_check_circular.py
Edit
test_decimal.py
Edit
test_decode.py
Edit
test_default.py
Edit
test_dump.py
Edit
test_encode_basestring_ascii.py
Edit
test_encode_for_html.py
Edit
test_errors.py
Edit
test_fail.py
Edit
test_float.py
Edit
test_for_json.py
Edit
test_indent.py
Edit
test_item_sort_key.py
Edit
test_iterable.py
Edit
test_namedtuple.py
Edit
test_pass1.py
Edit
test_pass2.py
Edit
test_pass3.py
Edit
test_raw_json.py
Edit
test_recursion.py
Edit
test_scanstring.py
Edit
test_separators.py
Edit
test_speedups.py
Edit
test_str_subclass.py
Edit
test_subclass.py
Edit
test_tool.py
Edit
test_tuple.py
Edit
test_unicode.py
Edit