Browse Source
* ✨ Implement separated ValidationError handlers and custom exceptions * ✅ Add tutorial source examples and tests * 📝 Add docs for custom exception handlers * 📝 Update docs section titlespull/275/head
committed by
GitHub
11 changed files with 533 additions and 39 deletions
@ -1,15 +1,26 @@ |
|||||
from fastapi import FastAPI |
from fastapi import FastAPI |
||||
from starlette.exceptions import HTTPException |
from starlette.requests import Request |
||||
from starlette.responses import PlainTextResponse |
from starlette.responses import JSONResponse |
||||
|
|
||||
|
|
||||
|
class UnicornException(Exception): |
||||
|
def __init__(self, name: str): |
||||
|
self.name = name |
||||
|
|
||||
|
|
||||
app = FastAPI() |
app = FastAPI() |
||||
|
|
||||
|
|
||||
@app.exception_handler(HTTPException) |
@app.exception_handler(UnicornException) |
||||
async def http_exception(request, exc): |
async def unicorn_exception_handler(request: Request, exc: UnicornException): |
||||
return PlainTextResponse(str(exc.detail), status_code=exc.status_code) |
return JSONResponse( |
||||
|
status_code=418, |
||||
|
content={"message": f"Oops! {exc.name} did something. There goes a rainbow..."}, |
||||
|
) |
||||
|
|
||||
|
|
||||
@app.get("/") |
@app.get("/unicorns/{name}") |
||||
async def root(): |
async def read_unicorn(name: str): |
||||
return {"message": "Hello World"} |
if name == "yolo": |
||||
|
raise UnicornException(name=name) |
||||
|
return {"unicorn_name": name} |
||||
|
@ -0,0 +1,23 @@ |
|||||
|
from fastapi import FastAPI, HTTPException |
||||
|
from fastapi.exceptions import RequestValidationError |
||||
|
from starlette.exceptions import HTTPException as StarletteHTTPException |
||||
|
from starlette.responses import PlainTextResponse |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.exception_handler(StarletteHTTPException) |
||||
|
async def http_exception_handler(request, exc): |
||||
|
return PlainTextResponse(str(exc.detail), status_code=exc.status_code) |
||||
|
|
||||
|
|
||||
|
@app.exception_handler(RequestValidationError) |
||||
|
async def validation_exception_handler(request, exc): |
||||
|
return PlainTextResponse(str(exc), status_code=400) |
||||
|
|
||||
|
|
||||
|
@app.get("/items/{item_id}") |
||||
|
async def read_item(item_id: int): |
||||
|
if item_id == 3: |
||||
|
raise HTTPException(status_code=418, detail="Nope! I don't like 3.") |
||||
|
return {"item_id": item_id} |
@ -0,0 +1,28 @@ |
|||||
|
from fastapi import FastAPI, HTTPException |
||||
|
from fastapi.exception_handlers import ( |
||||
|
http_exception_handler, |
||||
|
request_validation_exception_handler, |
||||
|
) |
||||
|
from fastapi.exceptions import RequestValidationError |
||||
|
from starlette.exceptions import HTTPException as StarletteHTTPException |
||||
|
|
||||
|
app = FastAPI() |
||||
|
|
||||
|
|
||||
|
@app.exception_handler(StarletteHTTPException) |
||||
|
async def custom_http_exception_handler(request, exc): |
||||
|
print(f"OMG! An HTTP error!: {exc}") |
||||
|
return await http_exception_handler(request, exc) |
||||
|
|
||||
|
|
||||
|
@app.exception_handler(RequestValidationError) |
||||
|
async def validation_exception_handler(request, exc): |
||||
|
print(f"OMG! The client sent invalid data!: {exc}") |
||||
|
return await request_validation_exception_handler(request, exc) |
||||
|
|
||||
|
|
||||
|
@app.get("/items/{item_id}") |
||||
|
async def read_item(item_id: int): |
||||
|
if item_id == 3: |
||||
|
raise HTTPException(status_code=418, detail="Nope! I don't like 3.") |
||||
|
return {"item_id": item_id} |
@ -0,0 +1,23 @@ |
|||||
|
from fastapi.exceptions import RequestValidationError |
||||
|
from starlette.exceptions import HTTPException |
||||
|
from starlette.requests import Request |
||||
|
from starlette.responses import JSONResponse |
||||
|
from starlette.status import HTTP_422_UNPROCESSABLE_ENTITY |
||||
|
|
||||
|
|
||||
|
async def http_exception_handler(request: Request, exc: HTTPException) -> JSONResponse: |
||||
|
headers = getattr(exc, "headers", None) |
||||
|
if headers: |
||||
|
return JSONResponse( |
||||
|
{"detail": exc.detail}, status_code=exc.status_code, headers=headers |
||||
|
) |
||||
|
else: |
||||
|
return JSONResponse({"detail": exc.detail}, status_code=exc.status_code) |
||||
|
|
||||
|
|
||||
|
async def request_validation_exception_handler( |
||||
|
request: Request, exc: RequestValidationError |
||||
|
) -> JSONResponse: |
||||
|
return JSONResponse( |
||||
|
status_code=HTTP_422_UNPROCESSABLE_ENTITY, content={"detail": exc.errors()} |
||||
|
) |
@ -0,0 +1,91 @@ |
|||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
from handling_errors.tutorial003 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/unicorns/{name}": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
}, |
||||
|
"422": { |
||||
|
"description": "Validation Error", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/HTTPValidationError" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"summary": "Read Unicorn", |
||||
|
"operationId": "read_unicorn_unicorns__name__get", |
||||
|
"parameters": [ |
||||
|
{ |
||||
|
"required": True, |
||||
|
"schema": {"title": "Name", "type": "string"}, |
||||
|
"name": "name", |
||||
|
"in": "path", |
||||
|
} |
||||
|
], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"schemas": { |
||||
|
"ValidationError": { |
||||
|
"title": "ValidationError", |
||||
|
"required": ["loc", "msg", "type"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"loc": { |
||||
|
"title": "Location", |
||||
|
"type": "array", |
||||
|
"items": {"type": "string"}, |
||||
|
}, |
||||
|
"msg": {"title": "Message", "type": "string"}, |
||||
|
"type": {"title": "Error Type", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"HTTPValidationError": { |
||||
|
"title": "HTTPValidationError", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"detail": { |
||||
|
"title": "Detail", |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/ValidationError"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_get(): |
||||
|
response = client.get("/unicorns/shinny") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"unicorn_name": "shinny"} |
||||
|
|
||||
|
|
||||
|
def test_get_exception(): |
||||
|
response = client.get("/unicorns/yolo") |
||||
|
assert response.status_code == 418 |
||||
|
assert response.json() == { |
||||
|
"message": "Oops! yolo did something. There goes a rainbow..." |
||||
|
} |
@ -0,0 +1,100 @@ |
|||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
from handling_errors.tutorial004 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/items/{item_id}": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
}, |
||||
|
"422": { |
||||
|
"description": "Validation Error", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/HTTPValidationError" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"summary": "Read Item", |
||||
|
"operationId": "read_item_items__item_id__get", |
||||
|
"parameters": [ |
||||
|
{ |
||||
|
"required": True, |
||||
|
"schema": {"title": "Item_Id", "type": "integer"}, |
||||
|
"name": "item_id", |
||||
|
"in": "path", |
||||
|
} |
||||
|
], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"schemas": { |
||||
|
"ValidationError": { |
||||
|
"title": "ValidationError", |
||||
|
"required": ["loc", "msg", "type"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"loc": { |
||||
|
"title": "Location", |
||||
|
"type": "array", |
||||
|
"items": {"type": "string"}, |
||||
|
}, |
||||
|
"msg": {"title": "Message", "type": "string"}, |
||||
|
"type": {"title": "Error Type", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"HTTPValidationError": { |
||||
|
"title": "HTTPValidationError", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"detail": { |
||||
|
"title": "Detail", |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/ValidationError"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_get_validation_error(): |
||||
|
response = client.get("/items/foo") |
||||
|
assert response.status_code == 400 |
||||
|
validation_error_str_lines = [ |
||||
|
b"1 validation error", |
||||
|
b"path -> item_id", |
||||
|
b" value is not a valid integer (type=type_error.integer)", |
||||
|
] |
||||
|
assert response.content == b"\n".join(validation_error_str_lines) |
||||
|
|
||||
|
|
||||
|
def test_get_http_error(): |
||||
|
response = client.get("/items/3") |
||||
|
assert response.status_code == 418 |
||||
|
assert response.content == b"Nope! I don't like 3." |
||||
|
|
||||
|
|
||||
|
def test_get(): |
||||
|
response = client.get("/items/2") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"item_id": 2} |
@ -0,0 +1,103 @@ |
|||||
|
from starlette.testclient import TestClient |
||||
|
|
||||
|
from handling_errors.tutorial005 import app |
||||
|
|
||||
|
client = TestClient(app) |
||||
|
|
||||
|
openapi_schema = { |
||||
|
"openapi": "3.0.2", |
||||
|
"info": {"title": "Fast API", "version": "0.1.0"}, |
||||
|
"paths": { |
||||
|
"/items/{item_id}": { |
||||
|
"get": { |
||||
|
"responses": { |
||||
|
"200": { |
||||
|
"description": "Successful Response", |
||||
|
"content": {"application/json": {"schema": {}}}, |
||||
|
}, |
||||
|
"422": { |
||||
|
"description": "Validation Error", |
||||
|
"content": { |
||||
|
"application/json": { |
||||
|
"schema": { |
||||
|
"$ref": "#/components/schemas/HTTPValidationError" |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
}, |
||||
|
"summary": "Read Item", |
||||
|
"operationId": "read_item_items__item_id__get", |
||||
|
"parameters": [ |
||||
|
{ |
||||
|
"required": True, |
||||
|
"schema": {"title": "Item_Id", "type": "integer"}, |
||||
|
"name": "item_id", |
||||
|
"in": "path", |
||||
|
} |
||||
|
], |
||||
|
} |
||||
|
} |
||||
|
}, |
||||
|
"components": { |
||||
|
"schemas": { |
||||
|
"ValidationError": { |
||||
|
"title": "ValidationError", |
||||
|
"required": ["loc", "msg", "type"], |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"loc": { |
||||
|
"title": "Location", |
||||
|
"type": "array", |
||||
|
"items": {"type": "string"}, |
||||
|
}, |
||||
|
"msg": {"title": "Message", "type": "string"}, |
||||
|
"type": {"title": "Error Type", "type": "string"}, |
||||
|
}, |
||||
|
}, |
||||
|
"HTTPValidationError": { |
||||
|
"title": "HTTPValidationError", |
||||
|
"type": "object", |
||||
|
"properties": { |
||||
|
"detail": { |
||||
|
"title": "Detail", |
||||
|
"type": "array", |
||||
|
"items": {"$ref": "#/components/schemas/ValidationError"}, |
||||
|
} |
||||
|
}, |
||||
|
}, |
||||
|
} |
||||
|
}, |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_openapi_schema(): |
||||
|
response = client.get("/openapi.json") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == openapi_schema |
||||
|
|
||||
|
|
||||
|
def test_get_validation_error(): |
||||
|
response = client.get("/items/foo") |
||||
|
assert response.status_code == 422 |
||||
|
assert response.json() == { |
||||
|
"detail": [ |
||||
|
{ |
||||
|
"loc": ["path", "item_id"], |
||||
|
"msg": "value is not a valid integer", |
||||
|
"type": "type_error.integer", |
||||
|
} |
||||
|
] |
||||
|
} |
||||
|
|
||||
|
|
||||
|
def test_get_http_error(): |
||||
|
response = client.get("/items/3") |
||||
|
assert response.status_code == 418 |
||||
|
assert response.json() == {"detail": "Nope! I don't like 3."} |
||||
|
|
||||
|
|
||||
|
def test_get(): |
||||
|
response = client.get("/items/2") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"item_id": 2} |
Loading…
Reference in new issue