Coverage for tests/test_router_redirect_slashes.py: 100%
26 statements
« prev ^ index » next coverage.py v7.6.1, created at 2025-01-13 13:38 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2025-01-13 13:38 +0000
1from fastapi import APIRouter, FastAPI 1klmno
2from fastapi.testclient import TestClient 1klmno
5def test_redirect_slashes_enabled(): 1klmno
6 app = FastAPI() 1abcde
7 router = APIRouter() 1abcde
9 @router.get("/hello/") 1abcde
10 def hello_page() -> str: 1abcde
11 return "Hello, World!" 1abcde
13 app.include_router(router) 1abcde
15 client = TestClient(app) 1abcde
17 response = client.get("/hello/", follow_redirects=False) 1abcde
18 assert response.status_code == 200 1abcde
20 response = client.get("/hello", follow_redirects=False) 1abcde
21 assert response.status_code == 307 1abcde
24def test_redirect_slashes_disabled(): 1klmno
25 app = FastAPI(redirect_slashes=False) 1fghij
26 router = APIRouter() 1fghij
28 @router.get("/hello/") 1fghij
29 def hello_page() -> str: 1fghij
30 return "Hello, World!" 1fghij
32 app.include_router(router) 1fghij
34 client = TestClient(app) 1fghij
36 response = client.get("/hello/", follow_redirects=False) 1fghij
37 assert response.status_code == 200 1fghij
39 response = client.get("/hello", follow_redirects=False) 1fghij
40 assert response.status_code == 404 1fghij