forked from pydantic/pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_tools.py
100 lines (75 loc) · 2.92 KB
/
test_tools.py
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
from typing import Dict, List, Mapping, Union
import pytest
from pydantic import BaseModel, ValidationError
from pydantic.dataclasses import dataclass
from pydantic.tools import parse_obj_as, schema_json_of, schema_of
@pytest.mark.xfail(reason='working on V2')
@pytest.mark.parametrize('obj,type_,parsed', [('1', int, 1), (['1'], List[int], [1])])
def test_parse_obj(obj, type_, parsed):
assert parse_obj_as(type_, obj) == parsed
@pytest.mark.xfail(reason='working on V2')
def test_parse_obj_as_model():
class Model(BaseModel):
x: int
y: bool
z: str
model_inputs = {'x': '1', 'y': 'true', 'z': 'abc'}
assert parse_obj_as(Model, model_inputs) == Model(**model_inputs)
@pytest.mark.xfail(reason='working on V2')
def test_parse_obj_preserves_subclasses():
class ModelA(BaseModel):
a: Mapping[int, str]
class ModelB(ModelA):
b: int
model_b = ModelB(a={1: 'f'}, b=2)
parsed = parse_obj_as(List[ModelA], [model_b])
assert parsed == [model_b]
@pytest.mark.xfail(reason='working on V2')
def test_parse_obj_fails():
with pytest.raises(ValidationError) as exc_info:
parse_obj_as(int, 'a')
assert exc_info.value.errors() == [
{'loc': ('__root__',), 'msg': 'value is not a valid integer', 'type': 'type_error.integer'}
]
assert exc_info.value.model.__name__ == 'ParsingModel[int]'
@pytest.mark.xfail(reason='working on V2')
def test_parsing_model_naming():
with pytest.raises(ValidationError) as exc_info:
parse_obj_as(int, 'a')
assert str(exc_info.value).split('\n')[0] == '1 validation error for ParsingModel[int]'
with pytest.raises(ValidationError) as exc_info:
parse_obj_as(int, 'a', type_name='ParsingModel')
assert str(exc_info.value).split('\n')[0] == '1 validation error for ParsingModel'
with pytest.raises(ValidationError) as exc_info:
parse_obj_as(int, 'a', type_name=lambda type_: type_.__name__)
assert str(exc_info.value).split('\n')[0] == '1 validation error for int'
@pytest.mark.xfail(reason='working on V2')
def test_parse_as_dataclass():
@dataclass
class PydanticDataclass:
x: int
inputs = {'x': '1'}
assert parse_obj_as(PydanticDataclass, inputs) == PydanticDataclass(1)
@pytest.mark.xfail(reason='working on V2')
def test_parse_mapping_as():
inputs = {'1': '2'}
assert parse_obj_as(Dict[int, int], inputs) == {1: 2}
@pytest.mark.xfail(reason='working on V2')
def test_schema():
assert schema_of(Union[int, str], title='IntOrStr') == {
'title': 'IntOrStr',
'anyOf': [{'type': 'integer'}, {'type': 'string'}],
}
assert schema_json_of(Union[int, str], title='IntOrStr', indent=2) == (
'{\n'
' "title": "IntOrStr",\n'
' "anyOf": [\n'
' {\n'
' "type": "integer"\n'
' },\n'
' {\n'
' "type": "string"\n'
' }\n'
' ]\n'
'}'
)