Browse Source

Merge 5f263abbfe into 8032e21418

pull/10319/merge
ht 24 hours ago
committed by GitHub
parent
commit
448b6e48b6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. BIN
      .coverage.LAPTOP-7BUC2HHB.20644.XYqHRFXx
  2. 1
      .gitignore
  3. 9
      fastapi/_compat.py
  4. 58
      tests/test_alias_and_validation_alias_in_form.py

BIN
.coverage.LAPTOP-7BUC2HHB.20644.XYqHRFXx

Binary file not shown.

1
.gitignore

@ -28,3 +28,4 @@ archive.zip
# macOS
.DS_Store
.python-version

9
fastapi/_compat.py

@ -92,7 +92,10 @@ if PYDANTIC_V2:
@property
def alias(self) -> str:
a = self.field_info.alias
a = (
isinstance(self.field_info.validation_alias, str)
and self.field_info.validation_alias
) or self.field_info.alias
return a if a is not None else self.name
@property
@ -277,7 +280,9 @@ if PYDANTIC_V2:
def create_body_model(
*, fields: Sequence[ModelField], model_name: str
) -> Type[BaseModel]:
field_params = {f.name: (f.field_info.annotation, f.field_info) for f in fields}
field_params = {
f"{f.alias}": (f.field_info.annotation, f.field_info) for f in fields
}
BodyModel: Type[BaseModel] = create_model(model_name, **field_params) # type: ignore[call-overload]
return BodyModel

58
tests/test_alias_and_validation_alias_in_form.py

@ -0,0 +1,58 @@
"""
testing to fix incompatibility with alias and validation_alias between fastapi and PYDANTIC_V2
"""
from fastapi import FastAPI, Form
from fastapi._compat import PYDANTIC_V2
from starlette.testclient import TestClient
app: FastAPI = FastAPI()
@app.post("/testing_alias")
async def check_alias(id_test: int = Form(alias="otherId")):
return {"other_id": id_test}
@app.post("/testing_validation_alias")
async def check_validation_alias(id_test: int = Form(validation_alias="otherId")):
return {"other_id": id_test}
client = TestClient(app)
def test_get_alias():
response = client.post("/testing_alias", data={"otherId": "1"})
assert response.status_code == 200
assert response.json() == {"other_id": 1}
def test_get_validation_alias():
if PYDANTIC_V2:
data = {"otherId": "1"}
else:
data = {"id_test": "1"}
response = client.post("/testing_validation_alias", data=data)
assert response.status_code == 200
assert response.json() == {"other_id": 1}
def test_file_alias_schema():
response = client.get("/openapi.json")
assert response.status_code == 200, response.text
if PYDANTIC_V2:
schema = response.json()
assert (
"otherId"
in schema["components"]["schemas"]["Body_check_alias_testing_alias_post"][
"properties"
]
)
assert (
"otherId"
in schema["components"]["schemas"][
"Body_check_validation_alias_testing_validation_alias_post"
]["properties"]
)
Loading…
Cancel
Save