feat: redirect to OIDC authorization after login when pending

This commit is contained in:
Johan Lundberg 2026-02-16 13:34:06 +01:00
parent d8c891af89
commit 18e9e7f2b5
No known key found for this signature in database
GPG key ID: A6C152738D03C7D1
2 changed files with 90 additions and 2 deletions

View file

@ -0,0 +1,77 @@
import secrets
from datetime import UTC, datetime
from argon2 import PasswordHasher
from httpx import AsyncClient
from fastapi_oidc_op.authn.password import PasswordService
from fastapi_oidc_op.models import PasswordCredential, User
def _register_test_client(client: AsyncClient) -> None:
app = client._transport.app # type: ignore[union-attr]
oidc_server = app.state.oidc_server
oidc_server.context.cdb["test-rp"] = {
"client_id": "test-rp",
"client_secret": "test-secret",
"redirect_uris": [("http://localhost:9000/callback", {})],
"response_types_supported": ["code"],
"token_endpoint_auth_method": "client_secret_basic",
"scope": ["openid", "profile", "email"],
"allowed_scopes": ["openid", "profile", "email"],
"client_salt": secrets.token_hex(8),
}
oidc_server.keyjar.add_symmetric("test-rp", "test-secret")
async def _create_user(client: AsyncClient) -> None:
app = client._transport.app # type: ignore[union-attr]
user_repo = app.state.user_repo
cred_repo = app.state.credential_repo
user = User(userid="lusab-bansen", username="alice", created_at=datetime.now(UTC), updated_at=datetime.now(UTC))
await user_repo.create(user)
svc = PasswordService(hasher=PasswordHasher(time_cost=1, memory_cost=8192))
await cred_repo.create_password(PasswordCredential(user_id=user.userid, password_hash=svc.hash("testpass")))
async def test_login_with_pending_oidc_redirects_to_authorization_complete(client: AsyncClient) -> None:
_register_test_client(client)
await _create_user(client)
# Step 1: Start OIDC authorization (stores request in session, redirects to /login)
auth_res = await client.get(
"/authorization",
params={
"response_type": "code",
"client_id": "test-rp",
"redirect_uri": "http://localhost:9000/callback",
"scope": "openid",
"state": "test-state",
"nonce": "test-nonce",
},
follow_redirects=False,
)
assert auth_res.status_code in (302, 303)
# Step 2: Login via password
login_res = await client.post(
"/login/password",
data={"username": "alice", "password": "testpass"},
headers={"HX-Request": "true"},
)
assert login_res.status_code == 200
redirect_target = login_res.headers.get("HX-Redirect", "")
assert "/authorization/complete" in redirect_target
async def test_login_without_pending_oidc_redirects_to_manage(client: AsyncClient) -> None:
await _create_user(client)
login_res = await client.post(
"/login/password",
data={"username": "alice", "password": "testpass"},
headers={"HX-Request": "true"},
)
assert login_res.status_code == 200
redirect_target = login_res.headers.get("HX-Redirect", "")
assert redirect_target == "/manage/credentials"