committed by
GitHub
3 changed files with 59 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||
from typing import Any |
|||
|
|||
import orjson |
|||
from fastapi import FastAPI, Response |
|||
|
|||
app = FastAPI() |
|||
|
|||
|
|||
class CustomORJSONResponse(Response): |
|||
media_type = "application/json" |
|||
|
|||
def render(self, content: Any) -> bytes: |
|||
assert orjson is not None, "orjson must be installed" |
|||
return orjson.dumps(content, option=orjson.OPT_INDENT_2) |
|||
|
|||
|
|||
@app.get("/", response_class=CustomORJSONResponse) |
|||
async def main(): |
|||
return {"message": "Hello World"} |
@ -0,0 +1,10 @@ |
|||
from fastapi.testclient import TestClient |
|||
|
|||
from docs_src.custom_response.tutorial009c import app |
|||
|
|||
client = TestClient(app) |
|||
|
|||
|
|||
def test_get(): |
|||
response = client.get("/") |
|||
assert response.content == b'{\n "message": "Hello World"\n}' |
Loading…
Reference in new issue