Harden session endpoint owner scope (#1308)

This commit is contained in:
Vykos
2026-06-02 19:40:22 +02:00
committed by GitHub
parent 80de69ebb0
commit 4771d80eb2
6 changed files with 261 additions and 71 deletions
@@ -0,0 +1,57 @@
from pathlib import Path
from types import SimpleNamespace
import pytest
from fastapi import HTTPException
# Import the route helper during collection so sibling session tests that use
# partial import stubs do not become the first loader of core.session_manager.
from routes.session_routes import _reject_raw_endpoint_url_for_non_admin
def _request(user, *, admin=False):
auth_manager = SimpleNamespace(is_admin=lambda username: bool(admin))
return SimpleNamespace(
state=SimpleNamespace(current_user=user),
app=SimpleNamespace(state=SimpleNamespace(auth_manager=auth_manager)),
)
def test_non_admin_session_create_rejects_raw_endpoint_url_without_endpoint_id():
with pytest.raises(HTTPException) as exc:
_reject_raw_endpoint_url_for_non_admin(
_request("alice", admin=False),
"alice",
"",
"http://169.254.169.254/latest/meta-data",
)
assert exc.value.status_code == 403
def test_admin_and_registered_endpoint_can_use_endpoint_url():
_reject_raw_endpoint_url_for_non_admin(
_request("alice", admin=False),
"alice",
"endpoint-id",
"http://127.0.0.1:8000/v1/chat/completions",
)
_reject_raw_endpoint_url_for_non_admin(
_request("admin", admin=True),
"admin",
"",
"http://127.0.0.1:8000/v1/chat/completions",
)
def test_chat_endpoint_recovery_paths_are_owner_scoped():
root = Path(__file__).resolve().parents[1]
chat_routes = (root / "routes" / "chat_routes.py").read_text(encoding="utf-8")
chat_helpers = (root / "routes" / "chat_helpers.py").read_text(encoding="utf-8")
assert "def _clear_orphaned_session_endpoint(sess, owner:" in chat_routes
assert "def _recover_empty_session_model(sess, session_id: str, owner:" in chat_routes
assert "q = owner_filter(q, ModelEndpoint, owner)" in chat_routes
assert "resolve_session_auth(sess, session, owner=get_current_user(request))" in chat_routes
assert "def resolve_session_auth(sess, session_id: str, owner:" in chat_helpers
assert "update_q = update_q.filter(DBSession.owner == owner)" in chat_helpers