blob: 08f39d0b11948f1e7d3d2a594c73afe33885032b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# coding: utf-8
import pytest # type: ignore # NOQA
import json
from typing import Any
def load(s: str, typ: Any = float) -> float:
import ruamel.yaml
yaml = ruamel.yaml.YAML()
x = '{"low": %s }' % (s)
print('input: [%s]' % (s), repr(x))
# just to check it is loadable json
res = json.loads(x)
assert isinstance(res['low'], typ)
ret_val = yaml.load(x)
print(ret_val)
return ret_val['low'] # type: ignore
class TestJSONNumbers:
# based on http://stackoverflow.com/a/30462009/1307905
# yaml number regex: http://yaml.org/spec/1.2/spec.html#id2804092
#
# -? [1-9] ( \. [0-9]* [1-9] )? ( e [-+] [1-9] [0-9]* )?
#
# which is not a superset of the JSON numbers
def test_json_number_float(self) -> None:
for x in (
y.split('#')[0].strip()
for y in """
1.0 # should fail on YAML spec on 1-9 allowed as single digit
-1.0
1e-06
3.1e-5
3.1e+5
3.1e5 # should fail on YAML spec: no +- after e
""".splitlines()
):
if not x:
continue
res = load(x)
assert isinstance(res, float)
def test_json_number_int(self) -> None:
for x in (
y.split('#')[0].strip()
for y in """
42
""".splitlines()
):
if not x:
continue
res = load(x, int)
assert isinstance(res, int)
|