Browse Source
Co-authored-by: Denis Lisovik <[email protected]> Co-authored-by: Sebastián Ramírez <[email protected]>pull/9720/head
committed by
GitHub
2 changed files with 42 additions and 0 deletions
@ -0,0 +1,40 @@ |
|||
from fastapi import APIRouter, FastAPI |
|||
from fastapi.testclient import TestClient |
|||
|
|||
|
|||
def test_redirect_slashes_enabled(): |
|||
app = FastAPI() |
|||
router = APIRouter() |
|||
|
|||
@router.get("/hello/") |
|||
def hello_page() -> str: |
|||
return "Hello, World!" |
|||
|
|||
app.include_router(router) |
|||
|
|||
client = TestClient(app) |
|||
|
|||
response = client.get("/hello/", follow_redirects=False) |
|||
assert response.status_code == 200 |
|||
|
|||
response = client.get("/hello", follow_redirects=False) |
|||
assert response.status_code == 307 |
|||
|
|||
|
|||
def test_redirect_slashes_disabled(): |
|||
app = FastAPI(redirect_slashes=False) |
|||
router = APIRouter() |
|||
|
|||
@router.get("/hello/") |
|||
def hello_page() -> str: |
|||
return "Hello, World!" |
|||
|
|||
app.include_router(router) |
|||
|
|||
client = TestClient(app) |
|||
|
|||
response = client.get("/hello/", follow_redirects=False) |
|||
assert response.status_code == 200 |
|||
|
|||
response = client.get("/hello", follow_redirects=False) |
|||
assert response.status_code == 404 |
Loading…
Reference in new issue