mirror of
https://github.com/kennethreitz/pydantic.git
synced 2026-06-05 23:00:18 +00:00
62bb2ad492
* allow Config.field to update a Field, fix #2426 * move logic to update_from_config, work with Annotated * fix flake8 erroneous warnings * test for allow_mutation * better support for allow_mutation
208 lines
6.3 KiB
Python
208 lines
6.3 KiB
Python
import pytest
|
|
|
|
from pydantic import BaseModel, Extra, Field, ValidationError, create_model, errors, validator
|
|
|
|
|
|
def test_create_model():
|
|
model = create_model('FooModel', foo=(str, ...), bar=123)
|
|
assert issubclass(model, BaseModel)
|
|
assert issubclass(model.__config__, BaseModel.Config)
|
|
assert model.__name__ == 'FooModel'
|
|
assert model.__fields__.keys() == {'foo', 'bar'}
|
|
assert model.__validators__ == {}
|
|
assert model.__config__.__name__ == 'Config'
|
|
assert model.__module__ == 'pydantic.main'
|
|
|
|
|
|
def test_create_model_usage():
|
|
model = create_model('FooModel', foo=(str, ...), bar=123)
|
|
m = model(foo='hello')
|
|
assert m.foo == 'hello'
|
|
assert m.bar == 123
|
|
with pytest.raises(ValidationError):
|
|
model()
|
|
with pytest.raises(ValidationError):
|
|
model(foo='hello', bar='xxx')
|
|
|
|
|
|
def test_create_model_pickle(create_module):
|
|
"""
|
|
Pickle will work for dynamically created model only if it was defined globally with its class name
|
|
and module where it's defined was specified
|
|
"""
|
|
|
|
@create_module
|
|
def module():
|
|
import pickle
|
|
|
|
from pydantic import create_model
|
|
|
|
FooModel = create_model('FooModel', foo=(str, ...), bar=123, __module__=__name__)
|
|
|
|
m = FooModel(foo='hello')
|
|
d = pickle.dumps(m)
|
|
m2 = pickle.loads(d)
|
|
assert m2.foo == m.foo == 'hello'
|
|
assert m2.bar == m.bar == 123
|
|
assert m2 == m
|
|
assert m2 is not m
|
|
|
|
|
|
def test_invalid_name():
|
|
with pytest.warns(RuntimeWarning):
|
|
model = create_model('FooModel', _foo=(str, ...))
|
|
assert len(model.__fields__) == 0
|
|
|
|
|
|
def test_field_wrong_tuple():
|
|
with pytest.raises(errors.ConfigError):
|
|
create_model('FooModel', foo=(1, 2, 3))
|
|
|
|
|
|
def test_config_and_base():
|
|
with pytest.raises(errors.ConfigError):
|
|
create_model('FooModel', __config__=BaseModel.Config, __base__=BaseModel)
|
|
|
|
|
|
def test_inheritance():
|
|
class BarModel(BaseModel):
|
|
x = 1
|
|
y = 2
|
|
|
|
model = create_model('FooModel', foo=(str, ...), bar=(int, 123), __base__=BarModel)
|
|
assert model.__fields__.keys() == {'foo', 'bar', 'x', 'y'}
|
|
m = model(foo='a', x=4)
|
|
assert m.dict() == {'bar': 123, 'foo': 'a', 'x': 4, 'y': 2}
|
|
|
|
|
|
def test_custom_config():
|
|
class Config:
|
|
fields = {'foo': 'api-foo-field'}
|
|
|
|
model = create_model('FooModel', foo=(int, ...), __config__=Config)
|
|
assert model(**{'api-foo-field': '987'}).foo == 987
|
|
assert issubclass(model.__config__, BaseModel.Config)
|
|
with pytest.raises(ValidationError):
|
|
model(foo=654)
|
|
|
|
|
|
def test_custom_config_inherits():
|
|
class Config(BaseModel.Config):
|
|
fields = {'foo': 'api-foo-field'}
|
|
|
|
model = create_model('FooModel', foo=(int, ...), __config__=Config)
|
|
assert model(**{'api-foo-field': '987'}).foo == 987
|
|
assert issubclass(model.__config__, BaseModel.Config)
|
|
with pytest.raises(ValidationError):
|
|
model(foo=654)
|
|
|
|
|
|
def test_custom_config_extras():
|
|
class Config(BaseModel.Config):
|
|
extra = Extra.forbid
|
|
|
|
model = create_model('FooModel', foo=(int, ...), __config__=Config)
|
|
assert model(foo=654)
|
|
with pytest.raises(ValidationError):
|
|
model(bar=654)
|
|
|
|
|
|
def test_inheritance_validators():
|
|
class BarModel(BaseModel):
|
|
@validator('a', check_fields=False)
|
|
def check_a(cls, v):
|
|
if 'foobar' not in v:
|
|
raise ValueError('"foobar" not found in a')
|
|
return v
|
|
|
|
model = create_model('FooModel', a='cake', __base__=BarModel)
|
|
assert model().a == 'cake'
|
|
assert model(a='this is foobar good').a == 'this is foobar good'
|
|
with pytest.raises(ValidationError):
|
|
model(a='something else')
|
|
|
|
|
|
def test_inheritance_validators_always():
|
|
class BarModel(BaseModel):
|
|
@validator('a', check_fields=False, always=True)
|
|
def check_a(cls, v):
|
|
if 'foobar' not in v:
|
|
raise ValueError('"foobar" not found in a')
|
|
return v
|
|
|
|
model = create_model('FooModel', a='cake', __base__=BarModel)
|
|
with pytest.raises(ValidationError):
|
|
model()
|
|
assert model(a='this is foobar good').a == 'this is foobar good'
|
|
with pytest.raises(ValidationError):
|
|
model(a='something else')
|
|
|
|
|
|
def test_inheritance_validators_all():
|
|
class BarModel(BaseModel):
|
|
@validator('*')
|
|
def check_all(cls, v):
|
|
return v * 2
|
|
|
|
model = create_model('FooModel', a=(int, ...), b=(int, ...), __base__=BarModel)
|
|
assert model(a=2, b=6).dict() == {'a': 4, 'b': 12}
|
|
|
|
|
|
def test_funky_name():
|
|
model = create_model('FooModel', **{'this-is-funky': (int, ...)})
|
|
m = model(**{'this-is-funky': '123'})
|
|
assert m.dict() == {'this-is-funky': 123}
|
|
with pytest.raises(ValidationError) as exc_info:
|
|
model()
|
|
assert exc_info.value.errors() == [
|
|
{'loc': ('this-is-funky',), 'msg': 'field required', 'type': 'value_error.missing'}
|
|
]
|
|
|
|
|
|
def test_repeat_base_usage():
|
|
class Model(BaseModel):
|
|
a: str
|
|
|
|
assert Model.__fields__.keys() == {'a'}
|
|
|
|
model = create_model('FooModel', b=1, __base__=Model)
|
|
|
|
assert Model.__fields__.keys() == {'a'}
|
|
assert model.__fields__.keys() == {'a', 'b'}
|
|
|
|
model2 = create_model('Foo2Model', c=1, __base__=Model)
|
|
|
|
assert Model.__fields__.keys() == {'a'}
|
|
assert model.__fields__.keys() == {'a', 'b'}
|
|
assert model2.__fields__.keys() == {'a', 'c'}
|
|
|
|
model3 = create_model('Foo2Model', d=1, __base__=model)
|
|
|
|
assert Model.__fields__.keys() == {'a'}
|
|
assert model.__fields__.keys() == {'a', 'b'}
|
|
assert model2.__fields__.keys() == {'a', 'c'}
|
|
assert model3.__fields__.keys() == {'a', 'b', 'd'}
|
|
|
|
|
|
def test_dynamic_and_static():
|
|
class A(BaseModel):
|
|
x: int
|
|
y: float
|
|
z: str
|
|
|
|
DynamicA = create_model('A', x=(int, ...), y=(float, ...), z=(str, ...))
|
|
|
|
for field_name in ('x', 'y', 'z'):
|
|
assert A.__fields__[field_name].default == DynamicA.__fields__[field_name].default
|
|
|
|
|
|
def test_config_field_info_create_model():
|
|
class Config:
|
|
fields = {'a': {'description': 'descr'}}
|
|
|
|
m1 = create_model('M1', __config__=Config, a=(str, ...))
|
|
assert m1.schema()['properties'] == {'a': {'title': 'A', 'description': 'descr', 'type': 'string'}}
|
|
|
|
m2 = create_model('M2', __config__=Config, a=(str, Field(...)))
|
|
assert m2.schema()['properties'] == {'a': {'title': 'A', 'description': 'descr', 'type': 'string'}}
|