|
|
@ -1,5 +1,5 @@ |
|
|
|
import pytest |
|
|
|
from fastapi import FastAPI, HTTPException |
|
|
|
from fastapi import Depends, FastAPI, HTTPException |
|
|
|
from fastapi.exceptions import RequestValidationError |
|
|
|
from fastapi.testclient import TestClient |
|
|
|
from starlette.responses import JSONResponse |
|
|
@ -28,6 +28,18 @@ app = FastAPI( |
|
|
|
client = TestClient(app) |
|
|
|
|
|
|
|
|
|
|
|
def raise_value_error(): |
|
|
|
raise ValueError() |
|
|
|
|
|
|
|
|
|
|
|
def dependency_with_yield(): |
|
|
|
yield raise_value_error() |
|
|
|
|
|
|
|
|
|
|
|
@app.get("/dependency-with-yield", dependencies=[Depends(dependency_with_yield)]) |
|
|
|
def with_yield(): ... |
|
|
|
|
|
|
|
|
|
|
|
@app.get("/http-exception") |
|
|
|
def route_with_http_exception(): |
|
|
|
raise HTTPException(status_code=400) |
|
|
@ -65,3 +77,12 @@ def test_override_server_error_exception_response(): |
|
|
|
response = client.get("/server-error") |
|
|
|
assert response.status_code == 500 |
|
|
|
assert response.json() == {"exception": "server-error"} |
|
|
|
|
|
|
|
|
|
|
|
def test_traceback_for_dependency_with_yield(): |
|
|
|
client = TestClient(app, raise_server_exceptions=True) |
|
|
|
with pytest.raises(ValueError) as exc_info: |
|
|
|
client.get("/dependency-with-yield") |
|
|
|
last_frame = exc_info.traceback[-1] |
|
|
|
assert str(last_frame.path) == __file__ |
|
|
|
assert last_frame.lineno == raise_value_error.__code__.co_firstlineno |
|
|
|