Browse Source
* ✨ Add ORJSONResponse * 📝 Add tutorial using ORJSONResponse * ✅ Add test for ORJSONResponse * 📝 Update index.mdpull/1068/head
committed by
GitHub
6 changed files with 80 additions and 4 deletions
@ -0,0 +1,9 @@ |
|||
from fastapi import FastAPI |
|||
from fastapi.responses import ORJSONResponse |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
@app.get("/items/", response_class=ORJSONResponse) |
|||
async def read_items(): |
|||
return [{"item_id": "Foo"}] |
@ -0,0 +1,36 @@ |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from custom_response.tutorial001b import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
openapi_schema = { |
|||
"openapi": "3.0.2", |
|||
"info": {"title": "FastAPI", "version": "0.1.0"}, |
|||
"paths": { |
|||
"/items/": { |
|||
"get": { |
|||
"responses": { |
|||
"200": { |
|||
"description": "Successful Response", |
|||
"content": {"application/json": {"schema": {}}}, |
|||
} |
|||
}, |
|||
"summary": "Read Items", |
|||
"operationId": "read_items_items__get", |
|||
} |
|||
} |
|||
}, |
|||
} |
|||
|
|||
|
|||
def test_openapi_schema(): |
|||
response = client.get("/openapi.json") |
|||
assert response.status_code == 200 |
|||
assert response.json() == openapi_schema |
|||
|
|||
|
|||
def test_get_custom_response(): |
|||
response = client.get("/items/") |
|||
assert response.status_code == 200 |
|||
assert response.json() == [{"item_id": "Foo"}] |
Loading…
Reference in new issue