mirror of https://github.com/tiangolo/fastapi.git
Fix: Make Basic Auth realm required per RFC 7235
This commit is contained in:
parent
cbe5bdb85f
commit
a053ad6bea
|
|
@ -3,7 +3,7 @@ from fastapi.security import HTTPBasic, HTTPBasicCredentials
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
security = HTTPBasic()
|
security = HTTPBasic(realm="simple")
|
||||||
|
|
||||||
|
|
||||||
@app.get("/users/me")
|
@app.get("/users/me")
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ from typing_extensions import Annotated
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
security = HTTPBasic()
|
security = HTTPBasic(realm="simple")
|
||||||
|
|
||||||
|
|
||||||
@app.get("/users/me")
|
@app.get("/users/me")
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ from fastapi.security import HTTPBasic, HTTPBasicCredentials
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
security = HTTPBasic()
|
security = HTTPBasic(realm="simple")
|
||||||
|
|
||||||
|
|
||||||
@app.get("/users/me")
|
@app.get("/users/me")
|
||||||
|
|
|
||||||
|
|
@ -142,13 +142,13 @@ class HTTPBasic(HTTPBase):
|
||||||
),
|
),
|
||||||
] = None,
|
] = None,
|
||||||
realm: Annotated[
|
realm: Annotated[
|
||||||
Optional[str],
|
str,
|
||||||
Doc(
|
Doc(
|
||||||
"""
|
"""
|
||||||
HTTP Basic authentication realm.
|
HTTP Basic authentication realm.
|
||||||
"""
|
"""
|
||||||
),
|
),
|
||||||
] = None,
|
],
|
||||||
description: Annotated[
|
description: Annotated[
|
||||||
Optional[str],
|
Optional[str],
|
||||||
Doc(
|
Doc(
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ from fastapi.testclient import TestClient
|
||||||
|
|
||||||
app = FastAPI()
|
app = FastAPI()
|
||||||
|
|
||||||
security = HTTPBasic(auto_error=False)
|
security = HTTPBasic(realm="simple", auto_error=False)
|
||||||
|
|
||||||
|
|
||||||
@app.get("/users/me")
|
@app.get("/users/me")
|
||||||
|
|
@ -37,7 +37,7 @@ def test_security_http_basic_invalid_credentials():
|
||||||
"/users/me", headers={"Authorization": "Basic notabase64token"}
|
"/users/me", headers={"Authorization": "Basic notabase64token"}
|
||||||
)
|
)
|
||||||
assert response.status_code == 401, response.text
|
assert response.status_code == 401, response.text
|
||||||
assert response.headers["WWW-Authenticate"] == "Basic"
|
assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"'
|
||||||
assert response.json() == {"detail": "Invalid authentication credentials"}
|
assert response.json() == {"detail": "Invalid authentication credentials"}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -46,7 +46,7 @@ def test_security_http_basic_non_basic_credentials():
|
||||||
auth_header = f"Basic {payload}"
|
auth_header = f"Basic {payload}"
|
||||||
response = client.get("/users/me", headers={"Authorization": auth_header})
|
response = client.get("/users/me", headers={"Authorization": auth_header})
|
||||||
assert response.status_code == 401, response.text
|
assert response.status_code == 401, response.text
|
||||||
assert response.headers["WWW-Authenticate"] == "Basic"
|
assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"'
|
||||||
assert response.json() == {"detail": "Invalid authentication credentials"}
|
assert response.json() == {"detail": "Invalid authentication credentials"}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,7 @@ def test_security_http_basic_no_credentials(client: TestClient):
|
||||||
response = client.get("/users/me")
|
response = client.get("/users/me")
|
||||||
assert response.json() == {"detail": "Not authenticated"}
|
assert response.json() == {"detail": "Not authenticated"}
|
||||||
assert response.status_code == 401, response.text
|
assert response.status_code == 401, response.text
|
||||||
assert response.headers["WWW-Authenticate"] == "Basic"
|
assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"'
|
||||||
|
|
||||||
|
|
||||||
def test_security_http_basic_invalid_credentials(client: TestClient):
|
def test_security_http_basic_invalid_credentials(client: TestClient):
|
||||||
|
|
@ -40,7 +40,7 @@ def test_security_http_basic_invalid_credentials(client: TestClient):
|
||||||
"/users/me", headers={"Authorization": "Basic notabase64token"}
|
"/users/me", headers={"Authorization": "Basic notabase64token"}
|
||||||
)
|
)
|
||||||
assert response.status_code == 401, response.text
|
assert response.status_code == 401, response.text
|
||||||
assert response.headers["WWW-Authenticate"] == "Basic"
|
assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"'
|
||||||
assert response.json() == {"detail": "Invalid authentication credentials"}
|
assert response.json() == {"detail": "Invalid authentication credentials"}
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -49,7 +49,7 @@ def test_security_http_basic_non_basic_credentials(client: TestClient):
|
||||||
auth_header = f"Basic {payload}"
|
auth_header = f"Basic {payload}"
|
||||||
response = client.get("/users/me", headers={"Authorization": auth_header})
|
response = client.get("/users/me", headers={"Authorization": auth_header})
|
||||||
assert response.status_code == 401, response.text
|
assert response.status_code == 401, response.text
|
||||||
assert response.headers["WWW-Authenticate"] == "Basic"
|
assert response.headers["WWW-Authenticate"] == 'Basic realm="simple"'
|
||||||
assert response.json() == {"detail": "Invalid authentication credentials"}
|
assert response.json() == {"detail": "Invalid authentication credentials"}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue