committed by
GitHub
11 changed files with 246 additions and 2 deletions
@ -0,0 +1,17 @@ |
|||
from anyio import open_file |
|||
from fastapi import Depends, FastAPI |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
async def get_username(): |
|||
try: |
|||
async with await open_file("/path/to/sanchez.txt", "r") as f: |
|||
yield await f.read() # pragma: no cover |
|||
except OSError: |
|||
print("We didn't re-raise, wubba lubba dub dub!") |
|||
|
|||
|
|||
@app.get("/me") |
|||
def get_me(username: str = Depends(get_username)): |
|||
return username # pragma: no cover |
@ -0,0 +1,18 @@ |
|||
from anyio import open_file |
|||
from fastapi import Depends, FastAPI |
|||
from typing_extensions import Annotated |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
async def get_username(): |
|||
try: |
|||
async with await open_file("/path/to/sanchez.txt", "r") as f: |
|||
yield await f.read() # pragma: no cover |
|||
except OSError: |
|||
print("We didn't re-raise, wubba lubba dub dub!") |
|||
|
|||
|
|||
@app.get("/me") |
|||
def get_me(username: Annotated[str, Depends(get_username)]): |
|||
return username # pragma: no cover |
@ -0,0 +1,19 @@ |
|||
from typing import Annotated |
|||
|
|||
from anyio import open_file |
|||
from fastapi import Depends, FastAPI |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
async def get_username(): |
|||
try: |
|||
async with await open_file("/path/to/sanchez.txt", "r") as f: |
|||
yield await f.read() # pragma: no cover |
|||
except OSError: |
|||
print("We didn't re-raise, wubba lubba dub dub!") |
|||
|
|||
|
|||
@app.get("/me") |
|||
def get_me(username: Annotated[str, Depends(get_username)]): |
|||
return username # pragma: no cover |
@ -0,0 +1,18 @@ |
|||
from anyio import open_file |
|||
from fastapi import Depends, FastAPI |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
async def get_username(): |
|||
try: |
|||
async with await open_file("/path/to/sanchez.txt", "r") as f: |
|||
yield await f.read() # pragma: no cover |
|||
except OSError: |
|||
print("We don't swallow the OS error here, we raise again 😎") |
|||
raise |
|||
|
|||
|
|||
@app.get("/me") |
|||
def get_me(username: str = Depends(get_username)): |
|||
return username # pragma: no cover |
@ -0,0 +1,19 @@ |
|||
from anyio import open_file |
|||
from fastapi import Depends, FastAPI |
|||
from typing_extensions import Annotated |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
async def get_username(): |
|||
try: |
|||
async with await open_file("/path/to/sanchez.txt", "r") as f: |
|||
yield await f.read() # pragma: no cover |
|||
except OSError: |
|||
print("We don't swallow the OS error here, we raise again 😎") |
|||
raise |
|||
|
|||
|
|||
@app.get("/me") |
|||
def get_me(username: Annotated[str, Depends(get_username)]): |
|||
return username # pragma: no cover |
@ -0,0 +1,20 @@ |
|||
from typing import Annotated |
|||
|
|||
from anyio import open_file |
|||
from fastapi import Depends, FastAPI |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
async def get_username(): |
|||
try: |
|||
async with await open_file("/path/to/sanchez.txt", "r") as f: |
|||
yield await f.read() # pragma: no cover |
|||
except OSError: |
|||
print("We don't swallow the OS error here, we raise again 😎") |
|||
raise |
|||
|
|||
|
|||
@app.get("/me") |
|||
def get_me(username: Annotated[str, Depends(get_username)]): |
|||
return username # pragma: no cover |
@ -0,0 +1,29 @@ |
|||
import pytest |
|||
from anyio import open_file |
|||
from fastapi import Depends, FastAPI |
|||
from fastapi.testclient import TestClient |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
async def get_username(): |
|||
try: |
|||
async with await open_file("/path/to/sanchez.txt", "r") as f: |
|||
yield await f.read() # pragma: no cover |
|||
except OSError as ex: |
|||
raise RuntimeError("File something something, wubba lubba dub dub!") from ex |
|||
|
|||
|
|||
@app.get("/me") |
|||
def get_me(username: str = Depends(get_username)): |
|||
return username # pragma: no cover |
|||
|
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
@pytest.mark.anyio |
|||
def test_runtime_error(): |
|||
with pytest.raises(RuntimeError) as exc_info: |
|||
client.get("/me") |
|||
assert "File something something" in exc_info.value.args[0] |
@ -0,0 +1,41 @@ |
|||
import importlib |
|||
from types import ModuleType |
|||
|
|||
import pytest |
|||
from fastapi.exceptions import FastAPIError |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture( |
|||
name="mod", |
|||
params=[ |
|||
"tutorial008e", |
|||
"tutorial008e_an", |
|||
pytest.param("tutorial008e_an_py39", marks=needs_py39), |
|||
], |
|||
) |
|||
def get_mod(request: pytest.FixtureRequest): |
|||
mod = importlib.import_module(f"docs_src.dependencies.{request.param}") |
|||
|
|||
return mod |
|||
|
|||
|
|||
@pytest.mark.anyio |
|||
def test_fastapi_error(mod: ModuleType): |
|||
client = TestClient(mod.app) |
|||
with pytest.raises(FastAPIError) as exc_info: |
|||
client.get("/me") |
|||
assert ( |
|||
"Dependency get_username raised: generator didn't yield" |
|||
in exc_info.value.args[0] |
|||
) |
|||
|
|||
|
|||
@pytest.mark.anyio |
|||
def test_internal_server_error(mod: ModuleType): |
|||
client = TestClient(mod.app, raise_server_exceptions=False) |
|||
response = client.get("/me") |
|||
assert response.status_code == 500, response.text |
|||
assert response.text == "Internal Server Error" |
@ -0,0 +1,37 @@ |
|||
import importlib |
|||
from types import ModuleType |
|||
|
|||
import pytest |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from ...utils import needs_py39 |
|||
|
|||
|
|||
@pytest.fixture( |
|||
name="mod", |
|||
params=[ |
|||
"tutorial008f", |
|||
"tutorial008f_an", |
|||
pytest.param("tutorial008f_an_py39", marks=needs_py39), |
|||
], |
|||
) |
|||
def get_mod(request: pytest.FixtureRequest): |
|||
mod = importlib.import_module(f"docs_src.dependencies.{request.param}") |
|||
|
|||
return mod |
|||
|
|||
|
|||
@pytest.mark.anyio |
|||
def test_os_error(mod: ModuleType): |
|||
client = TestClient(mod.app) |
|||
with pytest.raises(OSError) as exc_info: |
|||
client.get("/me") |
|||
assert "No such file or directory" in str(exc_info.value) |
|||
|
|||
|
|||
@pytest.mark.anyio |
|||
def test_internal_server_error(mod: ModuleType): |
|||
client = TestClient(mod.app, raise_server_exceptions=False) |
|||
response = client.get("/me") |
|||
assert response.status_code == 500, response.text |
|||
assert response.text == "Internal Server Error" |
Loading…
Reference in new issue