|
|
@ -105,3 +105,18 @@ def test_encode_model_with_alias_raises(): |
|
|
|
def test_encode_model_with_alias(): |
|
|
|
model = ModelWithAlias(Foo="Bar") |
|
|
|
assert jsonable_encoder(model) == {"Foo": "Bar"} |
|
|
|
|
|
|
|
|
|
|
|
def test_custom_encoders(): |
|
|
|
class safe_datetime(datetime): |
|
|
|
pass |
|
|
|
|
|
|
|
class MyModel(BaseModel): |
|
|
|
dt_field: safe_datetime |
|
|
|
|
|
|
|
instance = MyModel(dt_field=safe_datetime.now()) |
|
|
|
|
|
|
|
encoded_instance = jsonable_encoder( |
|
|
|
instance, custom_encoder={safe_datetime: lambda o: o.isoformat()} |
|
|
|
) |
|
|
|
assert encoded_instance["dt_field"] == instance.dt_field.isoformat() |
|
|
|