Browse Source

pydantic v1 compat

pull/13464/head
sneakers-the-rat 4 weeks ago
parent
commit
e76184380d
No known key found for this signature in database GPG Key ID: 6DCB96EF1E4D232D
  1. 10
      tests/test_forms_defaults.py

10
tests/test_forms_defaults.py

@ -7,6 +7,8 @@ from pydantic import BaseModel, Field
from starlette.testclient import TestClient
from typing_extensions import Annotated
from .utils import needs_pydanticv2
if PYDANTIC_V2:
from pydantic import model_validator
else:
@ -81,7 +83,7 @@ if PYDANTIC_V2:
true_if_unset: Annotated[Optional[bool], Form(default=None)]
class SimpleForm(BaseModel):
class SimpleForm(BaseModel):
"""https://github.com/fastapi/fastapi/pull/13464#issuecomment-2708378172"""
foo: Annotated[str, Form(default="bar")]
@ -199,8 +201,8 @@ if PYDANTIC_V2:
return ResponseModel.from_value(value)
@app.post("/simple-form")
def form_endpoint(model: Annotated[SimpleForm, Form()]) -> dict:
@app.post("/simple-form")
def form_endpoint(model: Annotated[SimpleForm, Form()]) -> dict:
"""https://github.com/fastapi/fastapi/pull/13464#issuecomment-2708378172"""
return model.model_dump()
@ -283,7 +285,7 @@ def test_no_prefill_defaults_partially_set(encoding, model_type, client):
assert "default_zero" not in dumped_exclude_default
assert "default_zero" not in response_model.dumped_fields_exclude_default
@needs_pydanticv2
def test_casted_empty_defaults(client: TestClient):
"""https://github.com/fastapi/fastapi/pull/13464#issuecomment-2708378172"""
form_content = {"foo": "", "with": ""}

Loading…
Cancel
Save