Astrolabe was refactored to mint session-derived JWTs (TokenGenerationRequest Event) and a one-click background-indexing opt-in, dropping the OAuth authorize/callback/refresh surface. Bump the submodule and bring the test suite in line: - New test_astrolabe_session_jwt_search.py: a logged-in user searches via the minted JWT with no provisioning (replaces the obsolete login_flow_provisioning OAuth-authorize test; token_refresh test deleted — refresh flow is gone). - settings_buttons: assert the new revoke endpoint + that oauth/disconnect is gone (404). - multi_user_background_sync / plotly / chunk_context: drop the OAuth authorize step; provision via the one-click "Enable background indexing" button (#mcp-enable-background-button -> #mcp-revoke-background-button) instead of generating + pasting an app password. - docker-compose.yml: mount the astrolabe submodule into the app container. - third_party/astrolabe: bump to the one-click opt-in commit. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
110 lines
4.3 KiB
Python
110 lines
4.3 KiB
Python
"""Astrolabe session-derived JWT search path (card 120 auth refactor).
|
|
|
|
Cross-system interface test. The astrolabe app was refactored to mint a
|
|
short-lived JWT for the current Nextcloud session user on demand (via the
|
|
`oidc` app's ``TokenGenerationRequestEvent``), replacing the old OAuth
|
|
authorize + offline_access + stored-refresh-token flow. This test proves the
|
|
new path end-to-end:
|
|
|
|
logged-in NC user → GET /apps/astrolabe/api/search → astrolabe mints a JWT
|
|
(McpTokenMinter) → calls the MCP server with ``Authorization: Bearer`` →
|
|
MCP validates the JWT (unified_verifier, aud=astrolabe_client_id) → results.
|
|
|
|
The headline behavioural change is that a user needs **no provisioning** to
|
|
search: there is no authorize redirect and ``has_background_access`` stays
|
|
False (app-password provisioning is now only for *background indexing*, a
|
|
separate opt-in covered by the background-sync tests).
|
|
|
|
Astrolabe is installed + configured (astrolabe_client_id, mcp_server_url) by
|
|
the container app-hooks; the test skips if that wiring is absent. Driven over
|
|
HTTP with BasicAuth (which establishes a Nextcloud session for the request) —
|
|
no browser needed.
|
|
"""
|
|
|
|
import os
|
|
|
|
import httpx
|
|
import pytest
|
|
|
|
pytestmark = [pytest.mark.integration, pytest.mark.login_flow]
|
|
|
|
NEXTCLOUD_URL = "http://localhost:8080"
|
|
ASTROLABE_API = f"{NEXTCLOUD_URL}/apps/astrolabe/api"
|
|
_HEADERS = {"OCS-APIRequest": "true"}
|
|
|
|
|
|
async def _astrolabe_configured(client: httpx.AsyncClient, auth) -> bool:
|
|
"""Readiness probe: astrolabe must be able to reach its MCP server."""
|
|
try:
|
|
resp = await client.get(
|
|
f"{ASTROLABE_API}/vector-status", auth=auth, headers=_HEADERS
|
|
)
|
|
except httpx.HTTPError:
|
|
return False
|
|
if resp.status_code != 200:
|
|
return False
|
|
return bool(resp.json().get("success"))
|
|
|
|
|
|
async def test_session_user_searches_without_provisioning(test_users_setup):
|
|
"""A non-admin session user searches with no OAuth/provisioning step.
|
|
|
|
success=True proves astrolabe minted a JWT from the session and the MCP
|
|
server accepted it. Results may be empty (nothing indexed) — the auth
|
|
chain, not recall, is under test here.
|
|
"""
|
|
auth = httpx.BasicAuth("bob", test_users_setup["bob"]["password"])
|
|
async with httpx.AsyncClient(timeout=30) as client:
|
|
if not await _astrolabe_configured(client, auth):
|
|
pytest.skip("Astrolabe not wired to an MCP server in this stack")
|
|
|
|
# No provisioning: search must work purely from the session JWT.
|
|
status = await client.get(
|
|
f"{ASTROLABE_API}/v1/background-sync/status", auth=auth, headers=_HEADERS
|
|
)
|
|
assert status.json()["has_background_access"] is False, (
|
|
"precondition: bob has not opted into background indexing"
|
|
)
|
|
|
|
resp = await client.get(
|
|
f"{ASTROLABE_API}/search",
|
|
params={"query": "quarterly planning", "limit": 3},
|
|
auth=auth,
|
|
headers=_HEADERS,
|
|
)
|
|
|
|
assert resp.status_code == 200, resp.text
|
|
body = resp.json()
|
|
assert body["success"] is True, (
|
|
f"session-JWT search must succeed without provisioning; got {body}"
|
|
)
|
|
assert "results" in body and "algorithm_used" in body
|
|
|
|
|
|
async def test_admin_session_search_succeeds():
|
|
"""The same JWT-mint path works for the admin session user."""
|
|
admin_pw = os.environ["NEXTCLOUD_PASSWORD"]
|
|
auth = httpx.BasicAuth(os.environ["NEXTCLOUD_USERNAME"], admin_pw)
|
|
async with httpx.AsyncClient(timeout=30) as client:
|
|
if not await _astrolabe_configured(client, auth):
|
|
pytest.skip("Astrolabe not wired to an MCP server in this stack")
|
|
resp = await client.get(
|
|
f"{ASTROLABE_API}/search",
|
|
params={"query": "infrastructure", "limit": 3},
|
|
auth=auth,
|
|
headers=_HEADERS,
|
|
)
|
|
assert resp.status_code == 200, resp.text
|
|
assert resp.json()["success"] is True
|
|
|
|
|
|
async def test_search_requires_authentication():
|
|
"""Unauthenticated search is rejected (no anonymous JWT minting)."""
|
|
async with httpx.AsyncClient(follow_redirects=False, timeout=30) as client:
|
|
resp = await client.get(
|
|
f"{ASTROLABE_API}/search",
|
|
params={"query": "x"},
|
|
headers=_HEADERS,
|
|
)
|
|
assert resp.status_code in (401, 302, 303, 307, 308), resp.status_code
|