diff --git a/docs/en/docs/tutorial/middleware.md b/docs/en/docs/tutorial/middleware.md index 4f7980165..02daaaa64 100644 --- a/docs/en/docs/tutorial/middleware.md +++ b/docs/en/docs/tutorial/middleware.md @@ -2,7 +2,13 @@ You can add middleware to **FastAPI** applications. -A "middleware" is a function that works with every **request** before it is processed by any specific *path operation*. And also with every **response** before returning it. +In this tutorial we will discuss how to add a custom `http` middleware to your FastAPI applications. + +The `http` middleware is designed to work with HTTP protocol, and it is responsible for handling of HTTP requests and responses. + +## How `http` middleware works? + +The `http` middleware works with every **request** before it is processed by any specific *path operation*. And also with every **response** before returning it. * It takes each **request** that comes to your application. * It can then do something to that **request** or run any needed code. @@ -65,6 +71,36 @@ Here we use 0 + # request/response process time + process_time = response.headers["X-Process-Time"] + assert float(process_time) > 0 diff --git a/tests/test_tutorial/test_middleware/test_tutorial002.py b/tests/test_tutorial/test_middleware/test_tutorial002.py new file mode 100644 index 000000000..43b2c1121 --- /dev/null +++ b/tests/test_tutorial/test_middleware/test_tutorial002.py @@ -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