committed by
Sebastián Ramírez
8 changed files with 241 additions and 60 deletions
@ -1,28 +1,27 @@ |
|||
from fastapi import FastAPI, HTTPException |
|||
from fastapi.exception_handlers import ( |
|||
http_exception_handler, |
|||
request_validation_exception_handler, |
|||
) |
|||
from fastapi import FastAPI |
|||
from fastapi.encoders import jsonable_encoder |
|||
from fastapi.exceptions import RequestValidationError |
|||
from starlette.exceptions import HTTPException as StarletteHTTPException |
|||
from pydantic import BaseModel |
|||
from starlette import status |
|||
from starlette.requests import Request |
|||
from starlette.responses import JSONResponse |
|||
|
|||
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: Request, exc: RequestValidationError): |
|||
return JSONResponse( |
|||
status_code=status.HTTP_422_UNPROCESSABLE_ENTITY, |
|||
content=jsonable_encoder({"detail": exc.errors(), "body": exc.body}), |
|||
) |
|||
|
|||
|
|||
@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) |
|||
class Item(BaseModel): |
|||
title: str |
|||
size: int |
|||
|
|||
|
|||
@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} |
|||
@app.post("/items/") |
|||
async def create_item(item: Item): |
|||
return item |
|||
|
@ -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,103 @@ |
|||
from starlette.testclient import TestClient |
|||
|
|||
from handling_errors.tutorial006 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