forked from pydantic/pydantic-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_build.py
More file actions
78 lines (63 loc) · 2.34 KB
/
test_build.py
File metadata and controls
78 lines (63 loc) · 2.34 KB
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
import pickle
import pytest
from pydantic_core import SchemaValidator
from pydantic_core import core_schema as cs
def test_schema_as_string():
v = SchemaValidator(cs.bool_schema())
assert v.validate_python('tRuE') is True
@pytest.mark.parametrize('pickle_protocol', range(1, pickle.HIGHEST_PROTOCOL + 1))
def test_pickle(pickle_protocol: int) -> None:
v1 = SchemaValidator(cs.bool_schema())
assert v1.validate_python('tRuE') is True
p = pickle.dumps(v1, protocol=pickle_protocol)
v2 = pickle.loads(p)
assert v2.validate_python('tRuE') is True
assert repr(v1) == repr(v2)
def test_not_schema_definition_error():
schema = {
'type': 'typed-dict',
'fields': {
f'f_{i}': {'type': 'typed-dict-field', 'schema': {'type': 'nullable', 'schema': {'type': 'int'}}}
for i in range(101)
},
}
v = SchemaValidator(schema)
assert repr(v).count('TypedDictField') == 101
def test_try_self_schema_discriminator():
"""Trying to use self-schema when it shouldn't be used"""
v = SchemaValidator(cs.tagged_union_schema(choices={'int': cs.int_schema()}, discriminator='self-schema'))
assert 'discriminator: LookupKey' in repr(v)
def test_build_recursive_schema_from_defs() -> None:
"""
Validate a schema representing mutually recursive models, analogous to the following JSON schema:
```json
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"oneOf": [{"$ref": "#/$defs/a"}],
"$defs": {
"a": {
"type": "object",
"properties": {"b": {"type": "array", "items": {"$ref": "#/$defs/a"}}},
"required": ["b"],
},
"b": {
"type": "object",
"properties": {"a": {"type": "array", "items": {"$ref": "#/$defs/b"}}},
"required": ["a"],
},
},
}
```
"""
s = cs.definitions_schema(
cs.definition_reference_schema(schema_ref='a'),
[
cs.typed_dict_schema(
{'b': cs.typed_dict_field(cs.list_schema(cs.definition_reference_schema('b')))}, ref='a'
),
cs.typed_dict_schema(
{'a': cs.typed_dict_field(cs.list_schema(cs.definition_reference_schema('a')))}, ref='b'
),
],
)
SchemaValidator(s)