forked from pydantic/pydantic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_strict.py
93 lines (74 loc) · 3.05 KB
/
test_strict.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
import sys
from typing import Any, Type
if sys.version_info < (3, 9):
from typing_extensions import Annotated
else:
from typing import Annotated
import pytest
from pydantic import BaseModel, ConfigDict, Field, ValidationError
@pytest.fixture(scope='session', name='ModelWithStrictField')
def model_with_strict_field():
class ModelWithStrictField(BaseModel):
a: Annotated[int, Field(strict=True)]
return ModelWithStrictField
@pytest.mark.parametrize(
'value',
[
'1',
True,
1.0,
],
)
def test_parse_strict_mode_on_field_invalid(value: Any, ModelWithStrictField: Type[BaseModel]) -> None:
with pytest.raises(ValidationError) as exc_info:
ModelWithStrictField(a=value)
assert exc_info.value.errors() == [
{'type': 'int_type', 'loc': ('a',), 'msg': 'Input should be a valid integer', 'input': value}
]
def test_parse_strict_mode_on_field_valid(ModelWithStrictField: Type[BaseModel]) -> None:
value = ModelWithStrictField(a=1)
assert value.model_dump() == {'a': 1}
@pytest.fixture(scope='session', name='ModelWithStrictConfig')
def model_with_strict_config_false():
class ModelWithStrictConfig(BaseModel):
a: int
# strict=False overrides the Config
b: Annotated[int, Field(strict=False)]
# strict=None or not including it is equivalent
# lets this field be overridden by the Config
c: Annotated[int, Field(strict=None)]
d: Annotated[int, Field()]
model_config = ConfigDict(strict=True)
return ModelWithStrictConfig
def test_parse_model_with_strict_config_enabled(ModelWithStrictConfig: Type[BaseModel]) -> None:
with pytest.raises(ValidationError) as exc_info:
ModelWithStrictConfig(a='1', b=2, c=3, d=4)
assert exc_info.value.errors() == [
{'type': 'int_type', 'loc': ('a',), 'msg': 'Input should be a valid integer', 'input': '1'}
]
with pytest.raises(ValidationError) as exc_info:
ModelWithStrictConfig(a=1, b=2, c='3', d=4)
assert exc_info.value.errors() == [
{'type': 'int_type', 'loc': ('c',), 'msg': 'Input should be a valid integer', 'input': '3'}
]
with pytest.raises(ValidationError) as exc_info:
ModelWithStrictConfig(a=1, b=2, c=3, d='4')
assert exc_info.value.errors() == [
{'type': 'int_type', 'loc': ('d',), 'msg': 'Input should be a valid integer', 'input': '4'}
]
values = [
ModelWithStrictConfig(a=1, b='2', c=3, d=4),
ModelWithStrictConfig(a=1, b=2, c=3, d=4),
]
assert all(v.model_dump() == {'a': 1, 'b': 2, 'c': 3, 'd': 4} for v in values)
def test_parse_model_with_strict_config_disabled(ModelWithStrictConfig: Type[BaseModel]) -> None:
class Model(ModelWithStrictConfig):
model_config = ConfigDict(strict=False)
values = [
Model(a='1', b=2, c=3, d=4),
Model(a=1, b=2, c='3', d=4),
Model(a=1, b=2, c=3, d='4'),
Model(a=1, b='2', c=3, d=4),
Model(a=1, b=2, c=3, d=4),
]
assert all(v.model_dump() == {'a': 1, 'b': 2, 'c': 3, 'd': 4} for v in values)