mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-07 11:40:01 -08:00
1798594569
* Bump simplejson from 3.18.3 to 3.19.1 Bumps [simplejson](https://github.com/simplejson/simplejson) from 3.18.3 to 3.19.1. - [Release notes](https://github.com/simplejson/simplejson/releases) - [Changelog](https://github.com/simplejson/simplejson/blob/master/CHANGES.txt) - [Commits](https://github.com/simplejson/simplejson/compare/v3.18.3...v3.19.1) --- updated-dependencies: - dependency-name: simplejson dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * Update simplejson==3.19.1 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: JonnyWong16 <9099342+JonnyWong16@users.noreply.github.com> [skip ci]
39 lines
1.6 KiB
Python
39 lines
1.6 KiB
Python
import math
|
|
from unittest import TestCase
|
|
from simplejson.compat import long_type, text_type
|
|
import simplejson as json
|
|
from simplejson.decoder import NaN, PosInf, NegInf
|
|
|
|
class TestFloat(TestCase):
|
|
def test_degenerates_allow(self):
|
|
for inf in (PosInf, NegInf):
|
|
self.assertEqual(json.loads(json.dumps(inf, allow_nan=True), allow_nan=True), inf)
|
|
# Python 2.5 doesn't have math.isnan
|
|
nan = json.loads(json.dumps(NaN, allow_nan=True), allow_nan=True)
|
|
self.assertTrue((0 + nan) != nan)
|
|
|
|
def test_degenerates_ignore(self):
|
|
for f in (PosInf, NegInf, NaN):
|
|
self.assertEqual(json.loads(json.dumps(f, ignore_nan=True)), None)
|
|
|
|
def test_degenerates_deny(self):
|
|
for f in (PosInf, NegInf, NaN):
|
|
self.assertRaises(ValueError, json.dumps, f, allow_nan=False)
|
|
for s in ('Infinity', '-Infinity', 'NaN'):
|
|
self.assertRaises(ValueError, json.loads, s, allow_nan=False)
|
|
self.assertRaises(ValueError, json.loads, s)
|
|
|
|
def test_floats(self):
|
|
for num in [1617161771.7650001, math.pi, math.pi**100,
|
|
math.pi**-100, 3.1]:
|
|
self.assertEqual(float(json.dumps(num)), num)
|
|
self.assertEqual(json.loads(json.dumps(num)), num)
|
|
self.assertEqual(json.loads(text_type(json.dumps(num))), num)
|
|
|
|
def test_ints(self):
|
|
for num in [1, long_type(1), 1<<32, 1<<64]:
|
|
self.assertEqual(json.dumps(num), str(num))
|
|
self.assertEqual(int(json.dumps(num)), num)
|
|
self.assertEqual(json.loads(json.dumps(num)), num)
|
|
self.assertEqual(json.loads(text_type(json.dumps(num))), num)
|