committed by
GitHub
6 changed files with 94 additions and 1 deletions
@ -0,0 +1,22 @@ |
|||||
|
import time |
||||
|
|
||||
|
from fastapi import FastAPI, Request, Response |
||||
|
from starlette.middleware.base import BaseHTTPMiddleware |
||||
|
|
||||
|
|
||||
|
class ProcessTimeHeaderMiddleware(BaseHTTPMiddleware): |
||||
|
async def dispatch(self, request: Request, call_next): |
||||
|
start_time = time.perf_counter() |
||||
|
response: Response = await call_next(request) |
||||
|
process_time = time.perf_counter() - start_time |
||||
|
response.headers["X-Process-Time"] = str(process_time) |
||||
|
return response |
||||
|
|
||||
|
|
||||
|
app = FastAPI() |
||||
|
app.add_middleware(ProcessTimeHeaderMiddleware) |
||||
|
|
||||
|
|
||||
|
@app.get("/") |
||||
|
def hello(): |
||||
|
return {"hello": "world"} |
@ -0,0 +1,15 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from docs_src.middleware.tutorial001 import app |
||||
|
|
||||
|
|
||||
|
def test_add_process_time_header_middleware(): |
||||
|
client = TestClient(app) |
||||
|
response = client.get("/") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"hello": "world"} |
||||
|
assert "X-Process-Time" in response.headers |
||||
|
assert len(response.headers["X-Process-Time"]) > 0 |
||||
|
# request/response process time |
||||
|
process_time = response.headers["X-Process-Time"] |
||||
|
assert float(process_time) > 0 |
@ -0,0 +1,15 @@ |
|||||
|
from fastapi.testclient import TestClient |
||||
|
|
||||
|
from docs_src.middleware.tutorial002 import app |
||||
|
|
||||
|
|
||||
|
def test_add_process_time_header_middleware(): |
||||
|
client = TestClient(app) |
||||
|
response = client.get("/") |
||||
|
assert response.status_code == 200 |
||||
|
assert response.json() == {"hello": "world"} |
||||
|
assert "X-Process-Time" in response.headers |
||||
|
assert len(response.headers["X-Process-Time"]) > 0 |
||||
|
# request/response process time |
||||
|
process_time = response.headers["X-Process-Time"] |
||||
|
assert float(process_time) > 0 |
Loading…
Reference in new issue