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. 20
      tests/test_forms_defaults.py

20
tests/test_forms_defaults.py

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

Loading…
Cancel
Save