Browse Source

Merge 8dc8298737 into 1d434dec47

pull/11140/merge
Torsten Zielke 2 days ago
committed by GitHub
parent
commit
210ab9be53
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 9
      fastapi/dependencies/utils.py
  2. 1
      pyproject.toml
  3. 4
      tests/conftest.py
  4. 29
      tests/test_dependency_pep695_py312.py
  5. 3
      tests/utils.py

9
fastapi/dependencies/utils.py

@ -73,6 +73,12 @@ from starlette.responses import Response
from starlette.websockets import WebSocket
from typing_extensions import Annotated, get_args, get_origin
try:
from typing_extensions import TypeAliasType
except ImportError: # pragma: no cover
TypeAliasType = None # type: ignore[misc,assignment]
multipart_not_installed_error = (
'Form data requires "python-multipart" to be installed. \n'
'You can install "python-multipart" with: \n\n'
@ -356,6 +362,9 @@ def analyze_param(
depends = None
type_annotation: Any = Any
use_annotation: Any = Any
if TypeAliasType is not None and isinstance(annotation, TypeAliasType):
# unpack in case py3.12 type syntax is used
annotation = annotation.__value__
if annotation is not inspect.Signature.empty:
use_annotation = annotation
type_annotation = annotation

1
pyproject.toml

@ -180,6 +180,7 @@ dynamic_context = "test_function"
omit = [
"docs_src/response_model/tutorial003_04.py",
"docs_src/response_model/tutorial003_04_py310.py",
"tests/test_dependency_pep695_py312.py" # syntax error for version < py312
]
[tool.coverage.report]

4
tests/conftest.py

@ -0,0 +1,4 @@
import sys
if sys.version_info < (3, 12):
collect_ignore_glob = ["*_py312.py"]

29
tests/test_dependency_pep695_py312.py

@ -0,0 +1,29 @@
from __future__ import annotations
from typing import Annotated
from fastapi import Depends, FastAPI
from fastapi.testclient import TestClient
from .utils import needs_py312
async def some_value() -> int:
return 123
type DependedValue = Annotated[int, Depends(some_value)]
@needs_py312
def test_pep695_type_dependencies():
app = FastAPI()
@app.get("/")
async def get_with_dep(value: DependedValue) -> str: # noqa
return f"value: {value}"
client = TestClient(app)
response = client.get("/")
assert response.status_code == 200
assert response.text == '"value: 123"'

3
tests/utils.py

@ -7,5 +7,8 @@ needs_py39 = pytest.mark.skipif(sys.version_info < (3, 9), reason="requires pyth
needs_py310 = pytest.mark.skipif(
sys.version_info < (3, 10), reason="requires python3.10+"
)
needs_py312 = pytest.mark.skipif(
sys.version_info < (3, 12), reason="requires python3.12+"
)
needs_pydanticv2 = pytest.mark.skipif(not PYDANTIC_V2, reason="requires Pydantic v2")
needs_pydanticv1 = pytest.mark.skipif(PYDANTIC_V2, reason="requires Pydantic v1")

Loading…
Cancel
Save