forked from pydantic/pydantic-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_isinstance.py
67 lines (49 loc) · 2.13 KB
/
test_isinstance.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
import pytest
from pydantic_core import PydanticOmit, SchemaError, SchemaValidator, ValidationError, core_schema
from .conftest import PyAndJson
def test_isinstance():
v = SchemaValidator({'type': 'int'})
assert v.validate_python(123) == 123
assert v.isinstance_python(123) is True
assert v.validate_python('123') == 123
assert v.isinstance_python('123') is True
with pytest.raises(ValidationError, match='Input should be a valid integer'):
v.validate_python('foo')
assert v.isinstance_python('foo') is False
def test_isinstance_strict():
v = SchemaValidator({'type': 'int', 'strict': True})
assert v.validate_python(123) == 123
assert v.isinstance_python(123) is True
with pytest.raises(ValidationError, match='Input should be a valid integer'):
v.validate_python('123')
assert v.isinstance_python('123') is False
def test_internal_error():
v = SchemaValidator(
{
'type': 'model',
'cls': int,
'schema': {'type': 'model-fields', 'fields': {'f': {'type': 'model-field', 'schema': {'type': 'int'}}}},
}
)
with pytest.raises(AttributeError, match="'int' object has no attribute '__dict__'"):
v.validate_python({'f': 123})
with pytest.raises(AttributeError, match="'int' object has no attribute '__dict__'"):
v.validate_json('{"f": 123}')
with pytest.raises(AttributeError, match="'int' object has no attribute '__dict__'"):
v.isinstance_python({'f': 123})
def test_omit(py_and_json: PyAndJson):
def omit(v, info):
if v == 'omit':
raise PydanticOmit
elif v == 'error':
raise ValueError('error')
else:
return v
v = py_and_json(core_schema.with_info_plain_validator_function(omit))
assert v.validate_test('foo') == 'foo'
if v.validator_type == 'python':
assert v.isinstance_test('foo') is True
if v.validator_type == 'python':
assert v.isinstance_test('error') is False
with pytest.raises(SchemaError, match='Uncaught Omit error, please check your usage of `default` validators.'):
v.validate_test('omit')