mirror of
https://github.com/turnstonelabs/turnstone.git
synced 2026-08-12 23:12:23 -06:00
2e95f2ac73
* test: add scope coverage for internal MCP/config reload endpoints Verify required_scope() returns "approve" for _internal endpoints across all access patterns (bare, /v1/-prefixed, console proxy with and without /v1/), plus a GET negative test confirming only POST is elevated. Closes the "internal endpoints accept read scope" item in PROGRESS.md — the endpoints were already in APPROVE_PATHS. * test: add config-reload v1/proxy scope tests per review feedback Add /v1/-prefixed and console proxy variants for config-reload to match the mcp-reload coverage, as flagged by Copilot review.
1453 lines
48 KiB
Python
1453 lines
48 KiB
Python
"""Tests for turnstone.core.auth — bearer token authentication and cookies."""
|
|
|
|
import os
|
|
import queue
|
|
import threading
|
|
from unittest.mock import MagicMock, patch
|
|
|
|
import pytest
|
|
|
|
from turnstone.core.auth import (
|
|
WRITE_PATHS,
|
|
AuthConfig,
|
|
_extract_bearer,
|
|
_extract_cookie,
|
|
check_request,
|
|
is_public_path,
|
|
load_auth_config,
|
|
make_clear_cookie,
|
|
make_set_cookie,
|
|
required_scope,
|
|
)
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestIsPublicPath
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestIsPublicPath:
|
|
def test_root(self):
|
|
assert is_public_path("/") is True
|
|
|
|
def test_health(self):
|
|
assert is_public_path("/health") is True
|
|
|
|
def test_metrics(self):
|
|
assert is_public_path("/metrics") is True
|
|
|
|
def test_static_css(self):
|
|
assert is_public_path("/static/style.css") is True
|
|
|
|
def test_static_js(self):
|
|
assert is_public_path("/static/app.js") is True
|
|
|
|
def test_static_subdir(self):
|
|
assert is_public_path("/static/fonts/mono.woff2") is True
|
|
|
|
def test_shared_css_public(self):
|
|
assert is_public_path("/shared/base.css") is True
|
|
|
|
def test_shared_js_public(self):
|
|
assert is_public_path("/shared/utils.js") is True
|
|
|
|
def test_api_workstreams_not_public(self):
|
|
assert is_public_path("/api/workstreams") is False
|
|
|
|
def test_api_send_not_public(self):
|
|
assert is_public_path("/api/send") is False
|
|
|
|
def test_api_cluster_overview_not_public(self):
|
|
assert is_public_path("/api/cluster/overview") is False
|
|
|
|
def test_api_events_not_public(self):
|
|
assert is_public_path("/api/events") is False
|
|
|
|
def test_v1_api_login_public(self):
|
|
assert is_public_path("/v1/api/auth/login") is True
|
|
|
|
def test_v1_api_logout_public(self):
|
|
assert is_public_path("/v1/api/auth/logout") is True
|
|
|
|
def test_v1_api_workstreams_not_public(self):
|
|
assert is_public_path("/v1/api/workstreams") is False
|
|
|
|
def test_v1_api_send_not_public(self):
|
|
assert is_public_path("/v1/api/send") is False
|
|
|
|
def test_openapi_json_public(self):
|
|
assert is_public_path("/openapi.json") is True
|
|
|
|
def test_docs_public(self):
|
|
assert is_public_path("/docs") is True
|
|
|
|
def test_shared_static_public(self):
|
|
assert is_public_path("/shared/base.css") is True
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestRequiredRole
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestRequiredScope:
|
|
def test_get_api_needs_read(self):
|
|
assert required_scope("GET", "/api/workstreams") == "read"
|
|
|
|
def test_get_events_needs_read(self):
|
|
assert required_scope("GET", "/api/events") == "read"
|
|
|
|
def test_post_send_needs_write(self):
|
|
assert required_scope("POST", "/api/send") == "write"
|
|
|
|
def test_post_approve_needs_approve(self):
|
|
assert required_scope("POST", "/api/approve") == "approve"
|
|
|
|
def test_post_plan_needs_write(self):
|
|
assert required_scope("POST", "/api/plan") == "write"
|
|
|
|
def test_post_command_needs_write(self):
|
|
assert required_scope("POST", "/api/command") == "write"
|
|
|
|
def test_post_workstreams_new_needs_write(self):
|
|
assert required_scope("POST", "/api/workstreams/new") == "write"
|
|
|
|
def test_post_workstreams_close_needs_write(self):
|
|
assert required_scope("POST", "/api/workstreams/close") == "write"
|
|
|
|
def test_all_write_paths_need_write(self):
|
|
for path in WRITE_PATHS:
|
|
scope = required_scope("POST", path)
|
|
assert scope in ("write", "approve"), f"{path} should need write or approve"
|
|
|
|
def test_post_unknown_path_needs_read(self):
|
|
assert required_scope("POST", "/api/unknown") == "read"
|
|
|
|
def test_v1_post_send_needs_write(self):
|
|
assert required_scope("POST", "/v1/api/send") == "write"
|
|
|
|
def test_v1_post_approve_needs_approve(self):
|
|
assert required_scope("POST", "/v1/api/approve") == "approve"
|
|
|
|
def test_v1_get_workstreams_needs_read(self):
|
|
assert required_scope("GET", "/v1/api/workstreams") == "read"
|
|
|
|
def test_v1_post_cluster_ws_new_needs_write(self):
|
|
assert required_scope("POST", "/v1/api/cluster/workstreams/new") == "write"
|
|
|
|
def test_proxy_v1_send_needs_write(self):
|
|
assert required_scope("POST", "/node/node-a/v1/api/send") == "write"
|
|
|
|
def test_proxy_v1_approve_needs_approve(self):
|
|
assert required_scope("POST", "/node/node-a/v1/api/approve") == "approve"
|
|
|
|
def test_proxy_v1_read_endpoint_needs_read(self):
|
|
assert required_scope("GET", "/node/node-a/v1/api/workstreams") == "read"
|
|
|
|
# Memory endpoints
|
|
def test_get_memories_needs_read(self):
|
|
assert required_scope("GET", "/api/memories") == "read"
|
|
|
|
def test_post_memories_needs_write(self):
|
|
assert required_scope("POST", "/api/memories") == "write"
|
|
|
|
def test_post_memories_search_needs_read(self):
|
|
"""Search via POST is non-mutating — requires only read scope."""
|
|
assert required_scope("POST", "/api/memories/search") == "read"
|
|
|
|
def test_delete_memory_needs_write(self):
|
|
assert required_scope("DELETE", "/api/memories/my_key") == "write"
|
|
|
|
def test_v1_post_memories_needs_write(self):
|
|
assert required_scope("POST", "/v1/api/memories") == "write"
|
|
|
|
def test_v1_delete_memory_needs_write(self):
|
|
assert required_scope("DELETE", "/v1/api/memories/test_key") == "write"
|
|
|
|
def test_admin_memories_needs_approve(self):
|
|
assert required_scope("GET", "/api/admin/memories") == "approve"
|
|
|
|
def test_admin_memory_delete_needs_approve(self):
|
|
assert required_scope("DELETE", "/api/admin/memories/some-id") == "approve"
|
|
|
|
# Internal endpoints
|
|
def test_internal_mcp_reload_needs_approve(self):
|
|
assert required_scope("POST", "/api/_internal/mcp-reload") == "approve"
|
|
|
|
def test_v1_internal_mcp_reload_needs_approve(self):
|
|
assert required_scope("POST", "/v1/api/_internal/mcp-reload") == "approve"
|
|
|
|
def test_internal_config_reload_needs_approve(self):
|
|
assert required_scope("POST", "/api/_internal/config-reload") == "approve"
|
|
|
|
def test_v1_internal_config_reload_needs_approve(self):
|
|
assert required_scope("POST", "/v1/api/_internal/config-reload") == "approve"
|
|
|
|
def test_proxy_internal_config_reload_needs_approve(self):
|
|
assert required_scope("POST", "/node/n1/v1/api/_internal/config-reload") == "approve"
|
|
|
|
def test_proxy_no_v1_internal_config_reload_needs_approve(self):
|
|
assert required_scope("POST", "/node/n1/api/_internal/config-reload") == "approve"
|
|
|
|
def test_proxy_internal_mcp_reload_needs_approve(self):
|
|
assert required_scope("POST", "/node/n1/v1/api/_internal/mcp-reload") == "approve"
|
|
|
|
def test_proxy_no_v1_internal_mcp_reload_needs_approve(self):
|
|
assert required_scope("POST", "/node/n1/api/_internal/mcp-reload") == "approve"
|
|
|
|
def test_get_internal_mcp_reload_needs_read(self):
|
|
"""Only POST is elevated — GET falls through to read."""
|
|
assert required_scope("GET", "/api/_internal/mcp-reload") == "read"
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestAuthConfig
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestAuthConfig:
|
|
def test_check_valid_full_token(self):
|
|
cfg = AuthConfig(enabled=True, tokens={"tok_full": "full", "tok_read": "read"})
|
|
assert cfg.check("tok_full") == "full"
|
|
|
|
def test_check_valid_read_token(self):
|
|
cfg = AuthConfig(enabled=True, tokens={"tok_full": "full", "tok_read": "read"})
|
|
assert cfg.check("tok_read") == "read"
|
|
|
|
def test_check_invalid_token(self):
|
|
cfg = AuthConfig(enabled=True, tokens={"tok_full": "full"})
|
|
assert cfg.check("wrong") is None
|
|
|
|
def test_check_none_token(self):
|
|
cfg = AuthConfig(enabled=True, tokens={"tok_full": "full"})
|
|
assert cfg.check(None) is None
|
|
|
|
def test_check_empty_token(self):
|
|
cfg = AuthConfig(enabled=True, tokens={"tok_full": "full"})
|
|
assert cfg.check("") is None
|
|
|
|
def test_check_no_tokens(self):
|
|
cfg = AuthConfig(enabled=True, tokens={})
|
|
assert cfg.check("anything") is None
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestExtractBearer
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestExtractBearer:
|
|
def test_valid_bearer(self):
|
|
assert _extract_bearer("Bearer tok_abc123") == "tok_abc123"
|
|
|
|
def test_case_insensitive(self):
|
|
assert _extract_bearer("bearer tok_abc123") == "tok_abc123"
|
|
|
|
def test_mixed_case(self):
|
|
assert _extract_bearer("BEARER tok_abc123") == "tok_abc123"
|
|
|
|
def test_no_bearer_prefix(self):
|
|
assert _extract_bearer("tok_abc123") is None
|
|
|
|
def test_basic_auth_ignored(self):
|
|
assert _extract_bearer("Basic dXNlcjpwYXNz") is None
|
|
|
|
def test_none(self):
|
|
assert _extract_bearer(None) is None
|
|
|
|
def test_empty(self):
|
|
assert _extract_bearer("") is None
|
|
|
|
def test_bearer_only_no_token(self):
|
|
assert _extract_bearer("Bearer") is None
|
|
|
|
def test_token_with_spaces(self):
|
|
# Only the first space separates scheme from token
|
|
assert _extract_bearer("Bearer tok with spaces") == "tok with spaces"
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestExtractCookie
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestExtractCookie:
|
|
def test_single_cookie(self):
|
|
assert _extract_cookie("turnstone_auth=tok_abc", "turnstone_auth") == "tok_abc"
|
|
|
|
def test_multiple_cookies(self):
|
|
header = "theme=dark; turnstone_auth=tok_abc; other=val"
|
|
assert _extract_cookie(header, "turnstone_auth") == "tok_abc"
|
|
|
|
def test_missing_cookie(self):
|
|
assert _extract_cookie("theme=dark; other=val", "turnstone_auth") is None
|
|
|
|
def test_none_header(self):
|
|
assert _extract_cookie(None, "turnstone_auth") is None
|
|
|
|
def test_empty_header(self):
|
|
assert _extract_cookie("", "turnstone_auth") is None
|
|
|
|
def test_spaces_around_value(self):
|
|
assert _extract_cookie("turnstone_auth = tok_abc ", "turnstone_auth") == "tok_abc"
|
|
|
|
def test_no_equals(self):
|
|
assert _extract_cookie("malformed", "turnstone_auth") is None
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestMakeSetCookie / TestMakeClearCookie
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestMakeSetCookie:
|
|
def test_contains_token(self):
|
|
val = make_set_cookie("tok_abc")
|
|
assert "turnstone_auth=tok_abc" in val
|
|
|
|
def test_httponly(self):
|
|
assert "HttpOnly" in make_set_cookie("tok_abc")
|
|
|
|
def test_samesite_lax(self):
|
|
assert "SameSite=Lax" in make_set_cookie("tok_abc")
|
|
|
|
def test_path(self):
|
|
assert "Path=/" in make_set_cookie("tok_abc")
|
|
|
|
def test_max_age_default(self):
|
|
val = make_set_cookie("tok_abc")
|
|
assert "Max-Age=86400" in val # 24 hours (matches JWT expiry)
|
|
|
|
def test_max_age_custom(self):
|
|
val = make_set_cookie("tok_abc", max_age=3600)
|
|
assert "Max-Age=3600" in val
|
|
|
|
def test_secure_default(self):
|
|
val = make_set_cookie("tok_abc")
|
|
assert "; Secure" in val
|
|
|
|
def test_secure_false(self):
|
|
val = make_set_cookie("tok_abc", secure=False)
|
|
assert "; Secure" not in val
|
|
|
|
def test_secure_true(self):
|
|
val = make_set_cookie("tok_abc", secure=True)
|
|
assert "; Secure" in val
|
|
|
|
|
|
class TestMakeClearCookie:
|
|
def test_max_age_zero(self):
|
|
assert "Max-Age=0" in make_clear_cookie()
|
|
|
|
def test_empty_value(self):
|
|
assert "turnstone_auth=;" in make_clear_cookie()
|
|
|
|
def test_httponly(self):
|
|
assert "HttpOnly" in make_clear_cookie()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestCheckRequest
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestCheckRequest:
|
|
"""Tests for the main check_request() entry point."""
|
|
|
|
@pytest.fixture()
|
|
def disabled(self):
|
|
return AuthConfig(enabled=False)
|
|
|
|
@pytest.fixture()
|
|
def enabled(self):
|
|
return AuthConfig(
|
|
enabled=True,
|
|
tokens={"tok_full": "full", "tok_read": "read"},
|
|
)
|
|
|
|
def test_disabled_allows_all(self, disabled):
|
|
allowed, status, msg, _result = check_request(disabled, "POST", "/api/send", None)
|
|
assert allowed is True
|
|
assert status == 200
|
|
|
|
def test_disabled_allows_no_header(self, disabled):
|
|
allowed, status, msg, _result = check_request(disabled, "GET", "/api/workstreams", None)
|
|
assert allowed is True
|
|
|
|
def test_public_path_no_token_ok(self, enabled):
|
|
allowed, status, msg, _result = check_request(enabled, "GET", "/health", None)
|
|
assert allowed is True
|
|
assert status == 200
|
|
|
|
def test_public_root_no_token_ok(self, enabled):
|
|
allowed, status, msg, _result = check_request(enabled, "GET", "/", None)
|
|
assert allowed is True
|
|
|
|
def test_public_static_no_token_ok(self, enabled):
|
|
allowed, status, msg, _result = check_request(enabled, "GET", "/static/style.css", None)
|
|
assert allowed is True
|
|
|
|
def test_api_no_token_401(self, enabled):
|
|
allowed, status, msg, _result = check_request(enabled, "GET", "/api/workstreams", None)
|
|
assert allowed is False
|
|
assert status == 401
|
|
assert "Unauthorized" in msg
|
|
|
|
def test_api_invalid_token_401(self, enabled):
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "GET", "/api/workstreams", "Bearer wrong_token"
|
|
)
|
|
assert allowed is False
|
|
assert status == 401
|
|
|
|
def test_api_read_token_ok(self, enabled):
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "GET", "/api/workstreams", "Bearer tok_read"
|
|
)
|
|
assert allowed is True
|
|
assert status == 200
|
|
|
|
def test_api_full_token_ok(self, enabled):
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "GET", "/api/workstreams", "Bearer tok_full"
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_write_read_token_403(self, enabled):
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/api/send", "Bearer tok_read"
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
assert "Forbidden" in msg
|
|
|
|
def test_write_full_token_ok(self, enabled):
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/api/send", "Bearer tok_full"
|
|
)
|
|
assert allowed is True
|
|
assert status == 200
|
|
|
|
def test_approve_read_token_403(self, enabled):
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/api/approve", "Bearer tok_read"
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_proxy_write_read_token_403(self, enabled):
|
|
"""Read tokens cannot escalate to write ops via proxy routes."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/node/node-a/api/send", "Bearer tok_read"
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_proxy_write_trailing_slash_read_token_403(self, enabled):
|
|
"""Trailing slash must not bypass write-role check on proxy routes."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/node/node-a/api/send/", "Bearer tok_read"
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_direct_write_trailing_slash_read_token_403(self, enabled):
|
|
"""Trailing slash must not bypass write-role check on direct routes."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/api/send/", "Bearer tok_read"
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_proxy_write_full_token_ok(self, enabled):
|
|
"""Full tokens pass through proxy write routes."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/node/node-a/api/send", "Bearer tok_full"
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_proxy_v1_write_read_token_403(self, enabled):
|
|
"""Read tokens cannot escalate to write ops via v1 proxy routes."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/node/node-a/v1/api/send", "Bearer tok_read"
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_proxy_v1_write_full_token_ok(self, enabled):
|
|
"""Full tokens pass through v1 proxy write routes."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/node/node-a/v1/api/send", "Bearer tok_full"
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_proxy_v1_cluster_ws_new_read_403(self, enabled):
|
|
"""Read tokens cannot create workstreams via v1 proxy."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled,
|
|
"POST",
|
|
"/node/node-a/v1/api/cluster/workstreams/new",
|
|
"Bearer tok_read",
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_proxy_read_endpoint_read_token_ok(self, enabled):
|
|
"""Read tokens can access proxy read endpoints."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "GET", "/node/node-a/api/workstreams", "Bearer tok_read"
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_console_create_ws_read_token_403(self, enabled):
|
|
"""Read tokens cannot create workstreams."""
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/api/cluster/workstreams/new", "Bearer tok_read"
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_approve_full_token_ok(self, enabled):
|
|
allowed, status, msg, _result = check_request(
|
|
enabled, "POST", "/api/approve", "Bearer tok_full"
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_no_auth_header_string(self, enabled):
|
|
allowed, status, msg, _result = check_request(enabled, "GET", "/api/dashboard", "")
|
|
assert allowed is False
|
|
assert status == 401
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestCheckRequestWithCookie
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestCheckRequestWithCookie:
|
|
"""Tests for cookie-based auth fallback in check_request."""
|
|
|
|
@pytest.fixture()
|
|
def enabled(self):
|
|
return AuthConfig(
|
|
enabled=True,
|
|
tokens={"tok_full": "full", "tok_read": "read"},
|
|
)
|
|
|
|
def test_cookie_fallback_when_no_bearer(self, enabled):
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"GET",
|
|
"/api/workstreams",
|
|
None,
|
|
cookie_header="turnstone_auth=tok_read",
|
|
)
|
|
assert allowed is True
|
|
assert status == 200
|
|
|
|
def test_bearer_takes_precedence_over_cookie(self, enabled):
|
|
# Bearer is full, cookie is read — Bearer should win
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"POST",
|
|
"/api/send",
|
|
"Bearer tok_full",
|
|
cookie_header="turnstone_auth=tok_read",
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_invalid_cookie_401(self, enabled):
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"GET",
|
|
"/api/workstreams",
|
|
None,
|
|
cookie_header="turnstone_auth=wrong_token",
|
|
)
|
|
assert allowed is False
|
|
assert status == 401
|
|
|
|
def test_cookie_read_on_write_403(self, enabled):
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"POST",
|
|
"/api/send",
|
|
None,
|
|
cookie_header="turnstone_auth=tok_read",
|
|
)
|
|
assert allowed is False
|
|
assert status == 403
|
|
|
|
def test_cookie_full_on_write_ok(self, enabled):
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"POST",
|
|
"/api/send",
|
|
None,
|
|
cookie_header="turnstone_auth=tok_full",
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_no_cookie_no_bearer_401(self, enabled):
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"GET",
|
|
"/api/workstreams",
|
|
None,
|
|
cookie_header=None,
|
|
)
|
|
assert allowed is False
|
|
assert status == 401
|
|
|
|
def test_login_path_public(self, enabled):
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"POST",
|
|
"/api/auth/login",
|
|
None,
|
|
)
|
|
assert allowed is True
|
|
|
|
def test_logout_path_public(self, enabled):
|
|
allowed, status, _, _r = check_request(
|
|
enabled,
|
|
"POST",
|
|
"/api/auth/logout",
|
|
None,
|
|
)
|
|
assert allowed is True
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestLoadAuthConfig
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestLoadAuthConfig:
|
|
"""Tests for load_auth_config with mocked config + env vars."""
|
|
|
|
def test_default_enabled(self):
|
|
with patch("turnstone.core.config.load_config", return_value={}):
|
|
cfg = load_auth_config()
|
|
assert cfg.enabled is True
|
|
assert cfg.tokens == {}
|
|
|
|
def test_explicit_disable(self):
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value={"enabled": False}),
|
|
patch.dict(os.environ, {}, clear=True),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.enabled is False
|
|
|
|
def test_env_disable(self):
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value={}),
|
|
patch.dict(os.environ, {"TURNSTONE_AUTH_ENABLED": "0"}, clear=True),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.enabled is False
|
|
|
|
def test_config_file_tokens(self):
|
|
mock_cfg = {
|
|
"enabled": True,
|
|
"tokens": [
|
|
{"value": "tok_a", "role": "full"},
|
|
{"value": "tok_b", "role": "read"},
|
|
],
|
|
}
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value=mock_cfg),
|
|
patch.dict(os.environ, {}, clear=True),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.enabled is True
|
|
assert cfg.tokens == {"tok_a": "full", "tok_b": "read"}
|
|
|
|
def test_env_var_enabled(self):
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value={}),
|
|
patch.dict(os.environ, {"TURNSTONE_AUTH_ENABLED": "1"}, clear=False),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.enabled is True
|
|
|
|
def test_env_var_token(self):
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value={}),
|
|
patch.dict(os.environ, {"TURNSTONE_AUTH_TOKEN": "tok_env"}, clear=False),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert "tok_env" in cfg.tokens
|
|
assert cfg.tokens["tok_env"] == "full"
|
|
|
|
def test_config_plus_env_merge(self):
|
|
mock_cfg = {
|
|
"enabled": True,
|
|
"tokens": [{"value": "tok_cfg", "role": "read"}],
|
|
}
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value=mock_cfg),
|
|
patch.dict(os.environ, {"TURNSTONE_AUTH_TOKEN": "tok_env"}, clear=False),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.tokens["tok_cfg"] == "read"
|
|
assert cfg.tokens["tok_env"] == "full"
|
|
|
|
def test_invalid_role_skipped(self):
|
|
mock_cfg = {
|
|
"enabled": True,
|
|
"tokens": [
|
|
{"value": "tok_ok", "role": "full"},
|
|
{"value": "tok_bad", "role": "admin"},
|
|
],
|
|
}
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value=mock_cfg),
|
|
patch.dict(os.environ, {}, clear=True),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert "tok_ok" in cfg.tokens
|
|
assert "tok_bad" not in cfg.tokens
|
|
|
|
def test_empty_value_skipped(self):
|
|
mock_cfg = {
|
|
"enabled": True,
|
|
"tokens": [{"value": "", "role": "full"}],
|
|
}
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value=mock_cfg),
|
|
patch.dict(os.environ, {}, clear=True),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert len(cfg.tokens) == 0
|
|
|
|
def test_non_dict_token_entry_skipped(self):
|
|
mock_cfg = {
|
|
"enabled": True,
|
|
"tokens": ["not_a_dict", {"value": "tok_ok", "role": "full"}],
|
|
}
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value=mock_cfg),
|
|
patch.dict(os.environ, {}, clear=True),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.tokens == {"tok_ok": "full"}
|
|
|
|
def test_env_enabled_true(self):
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value={}),
|
|
patch.dict(os.environ, {"TURNSTONE_AUTH_ENABLED": "true"}, clear=False),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.enabled is True
|
|
|
|
def test_env_enabled_yes(self):
|
|
with (
|
|
patch("turnstone.core.config.load_config", return_value={}),
|
|
patch.dict(os.environ, {"TURNSTONE_AUTH_ENABLED": "yes"}, clear=False),
|
|
):
|
|
cfg = load_auth_config()
|
|
assert cfg.enabled is True
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Integration tests — actual HTTP server with auth enabled
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestServerAuth:
|
|
"""Test turnstone-server with auth enabled using Starlette TestClient."""
|
|
|
|
@classmethod
|
|
def setup_class(cls):
|
|
import queue
|
|
import threading
|
|
from unittest.mock import MagicMock
|
|
|
|
from starlette.testclient import TestClient
|
|
|
|
import turnstone.server as srv_mod
|
|
from turnstone.core.metrics import MetricsCollector
|
|
from turnstone.core.workstream import WorkstreamState
|
|
|
|
srv_mod._metrics = MetricsCollector()
|
|
srv_mod._metrics.model = "test-model"
|
|
|
|
mock_session = MagicMock()
|
|
mock_session.ws_id = "test-session-id"
|
|
|
|
mock_ws = MagicMock()
|
|
mock_ws.id = "test-ws"
|
|
mock_ws.name = "test"
|
|
mock_ws.state = WorkstreamState.IDLE
|
|
mock_ws.session = mock_session
|
|
mock_mgr = MagicMock()
|
|
mock_mgr.list_all.return_value = [mock_ws]
|
|
|
|
app = srv_mod.create_app(
|
|
workstreams=mock_mgr,
|
|
global_queue=queue.Queue(),
|
|
global_listeners=[],
|
|
global_listeners_lock=threading.Lock(),
|
|
skip_permissions=False,
|
|
auth_config=AuthConfig(
|
|
enabled=True,
|
|
tokens={"tok_full": "full", "tok_read": "read"},
|
|
),
|
|
cors_origins=["*"],
|
|
)
|
|
cls.client = TestClient(app, raise_server_exceptions=False)
|
|
|
|
@classmethod
|
|
def teardown_class(cls):
|
|
cls.client.close()
|
|
|
|
def test_health_no_token_200(self):
|
|
resp = self.client.get("/health")
|
|
assert resp.status_code == 200
|
|
|
|
def test_metrics_no_token_passes_auth(self):
|
|
resp = self.client.get("/metrics")
|
|
# Public path — should never be 401/403
|
|
assert resp.status_code not in (401, 403)
|
|
|
|
def test_root_no_token_200(self):
|
|
resp = self.client.get("/")
|
|
assert resp.status_code == 200
|
|
|
|
def test_static_css_no_token_200(self):
|
|
resp = self.client.get("/static/style.css")
|
|
assert resp.status_code == 200
|
|
|
|
def test_api_workstreams_no_token_401(self):
|
|
resp = self.client.get("/v1/api/workstreams")
|
|
assert resp.status_code == 401
|
|
assert "Unauthorized" in resp.json().get("error", "")
|
|
|
|
def test_api_workstreams_read_token_200(self):
|
|
resp = self.client.get(
|
|
"/v1/api/workstreams",
|
|
headers={"Authorization": "Bearer tok_read"},
|
|
)
|
|
assert resp.status_code == 200
|
|
|
|
def test_api_workstreams_full_token_200(self):
|
|
resp = self.client.get(
|
|
"/v1/api/workstreams",
|
|
headers={"Authorization": "Bearer tok_full"},
|
|
)
|
|
assert resp.status_code == 200
|
|
|
|
def test_api_send_read_token_403(self):
|
|
resp = self.client.post(
|
|
"/v1/api/send",
|
|
headers={"Authorization": "Bearer tok_read"},
|
|
json={"message": "hello", "ws_id": "x"},
|
|
)
|
|
assert resp.status_code == 403
|
|
assert "Forbidden" in resp.json().get("error", "")
|
|
|
|
def test_api_send_full_token_passes_auth(self):
|
|
resp = self.client.post(
|
|
"/v1/api/send",
|
|
headers={"Authorization": "Bearer tok_full"},
|
|
json={"message": "hello", "ws_id": "nonexistent"},
|
|
)
|
|
# Should get 404 (unknown workstream), not 401/403
|
|
assert resp.status_code not in (401, 403)
|
|
|
|
def test_api_send_no_token_401(self):
|
|
resp = self.client.post(
|
|
"/v1/api/send",
|
|
json={"message": "hello", "ws_id": "x"},
|
|
)
|
|
assert resp.status_code == 401
|
|
|
|
def test_invalid_token_401(self):
|
|
resp = self.client.get(
|
|
"/v1/api/workstreams",
|
|
headers={"Authorization": "Bearer wrong_token"},
|
|
)
|
|
assert resp.status_code == 401
|
|
|
|
def test_options_no_auth_required(self):
|
|
resp = self.client.options(
|
|
"/v1/api/send",
|
|
headers={
|
|
"Origin": "http://example.com",
|
|
"Access-Control-Request-Method": "POST",
|
|
},
|
|
)
|
|
assert resp.status_code == 200
|
|
allowed = resp.headers.get("access-control-allow-headers", "")
|
|
assert "authorization" in allowed.lower()
|
|
|
|
def test_cors_includes_authorization(self):
|
|
resp = self.client.options(
|
|
"/v1/api/workstreams",
|
|
headers={
|
|
"Origin": "http://example.com",
|
|
"Access-Control-Request-Method": "GET",
|
|
},
|
|
)
|
|
allowed = resp.headers.get("access-control-allow-headers", "")
|
|
assert "authorization" in allowed.lower()
|
|
|
|
def test_shared_css_no_token_200(self):
|
|
resp = self.client.get("/shared/base.css")
|
|
assert resp.status_code == 200
|
|
|
|
|
|
class TestConsoleAuth:
|
|
"""Test console server with auth enabled using TestClient."""
|
|
|
|
@classmethod
|
|
def setup_class(cls):
|
|
from unittest.mock import MagicMock
|
|
|
|
from starlette.testclient import TestClient
|
|
|
|
from turnstone.console.collector import ClusterCollector
|
|
from turnstone.console.server import _load_static, create_app
|
|
|
|
_load_static()
|
|
|
|
mock_collector = MagicMock(spec=ClusterCollector)
|
|
mock_collector.get_overview.return_value = {
|
|
"nodes": 1,
|
|
"workstreams": 2,
|
|
"states": {"running": 1, "idle": 1},
|
|
"aggregate": {"total_tokens": 100},
|
|
}
|
|
|
|
app = create_app(
|
|
collector=mock_collector,
|
|
broker=MagicMock(),
|
|
auth_config=AuthConfig(
|
|
enabled=True,
|
|
tokens={"tok_full": "full", "tok_read": "read"},
|
|
),
|
|
)
|
|
cls.test_client = TestClient(app, raise_server_exceptions=False)
|
|
|
|
@classmethod
|
|
def teardown_class(cls):
|
|
cls.test_client.close()
|
|
|
|
def test_health_no_token_200(self):
|
|
resp = self.test_client.get("/health")
|
|
assert resp.status_code == 200
|
|
|
|
def test_root_no_token_200(self):
|
|
resp = self.test_client.get("/")
|
|
assert resp.status_code == 200
|
|
|
|
def test_api_overview_no_token_401(self):
|
|
resp = self.test_client.get("/v1/api/cluster/overview")
|
|
assert resp.status_code == 401
|
|
|
|
def test_api_overview_read_token_200(self):
|
|
resp = self.test_client.get(
|
|
"/v1/api/cluster/overview",
|
|
headers={"Authorization": "Bearer tok_read"},
|
|
)
|
|
assert resp.status_code == 200
|
|
|
|
def test_api_overview_full_token_200(self):
|
|
resp = self.test_client.get(
|
|
"/v1/api/cluster/overview",
|
|
headers={"Authorization": "Bearer tok_full"},
|
|
)
|
|
assert resp.status_code == 200
|
|
|
|
def test_invalid_token_401(self):
|
|
resp = self.test_client.get(
|
|
"/v1/api/cluster/overview",
|
|
headers={"Authorization": "Bearer wrong"},
|
|
)
|
|
assert resp.status_code == 401
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Login / Logout integration tests
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestServerLogin:
|
|
"""Test login/logout cookie flow on turnstone-server."""
|
|
|
|
@classmethod
|
|
def setup_class(cls):
|
|
import queue
|
|
import threading
|
|
from unittest.mock import MagicMock
|
|
|
|
from starlette.testclient import TestClient
|
|
|
|
import turnstone.server as srv_mod
|
|
from turnstone.core.metrics import MetricsCollector
|
|
from turnstone.core.workstream import WorkstreamState
|
|
|
|
srv_mod._metrics = MetricsCollector()
|
|
srv_mod._metrics.model = "test-model"
|
|
|
|
mock_session = MagicMock()
|
|
mock_session.ws_id = "test-session-id"
|
|
|
|
mock_ws = MagicMock()
|
|
mock_ws.id = "test-ws"
|
|
mock_ws.name = "test"
|
|
mock_ws.state = WorkstreamState.IDLE
|
|
mock_ws.session = mock_session
|
|
mock_mgr = MagicMock()
|
|
mock_mgr.list_all.return_value = [mock_ws]
|
|
|
|
app = srv_mod.create_app(
|
|
workstreams=mock_mgr,
|
|
global_queue=queue.Queue(),
|
|
global_listeners=[],
|
|
global_listeners_lock=threading.Lock(),
|
|
skip_permissions=False,
|
|
auth_config=AuthConfig(
|
|
enabled=True,
|
|
tokens={"tok_full": "full", "tok_read": "read"},
|
|
),
|
|
)
|
|
cls.test_client = TestClient(app, raise_server_exceptions=False)
|
|
|
|
@classmethod
|
|
def teardown_class(cls):
|
|
cls.test_client.close()
|
|
|
|
def test_login_valid_token_sets_cookie(self):
|
|
resp = self.test_client.post(
|
|
"/v1/api/auth/login",
|
|
json={"token": "tok_full"},
|
|
)
|
|
assert resp.status_code == 200
|
|
data = resp.json()
|
|
assert data["role"] == "full"
|
|
cookie = resp.headers.get("set-cookie", "")
|
|
assert "turnstone_auth=tok_full" in cookie
|
|
assert "HttpOnly" in cookie
|
|
|
|
def test_login_invalid_token_401(self):
|
|
resp = self.test_client.post(
|
|
"/v1/api/auth/login",
|
|
json={"token": "wrong"},
|
|
)
|
|
assert resp.status_code == 401
|
|
|
|
def test_login_no_auth_required(self):
|
|
# /v1/api/auth/login is public — shouldn't require auth itself
|
|
resp = self.test_client.post(
|
|
"/v1/api/auth/login",
|
|
json={"token": "tok_read"},
|
|
)
|
|
assert resp.status_code == 200
|
|
|
|
def test_cookie_auth_on_api(self):
|
|
# Login to get cookie (TestClient tracks cookies automatically)
|
|
login_resp = self.test_client.post("/v1/api/auth/login", json={"token": "tok_read"})
|
|
assert login_resp.status_code == 200
|
|
|
|
# Use cookie to access API — TestClient forwards cookies
|
|
resp = self.test_client.get("/v1/api/workstreams")
|
|
assert resp.status_code == 200
|
|
|
|
def test_logout_clears_cookie(self):
|
|
self.test_client.post("/v1/api/auth/login", json={"token": "tok_read"})
|
|
|
|
# Logout
|
|
logout_resp = self.test_client.post("/v1/api/auth/logout")
|
|
assert logout_resp.status_code == 200
|
|
cookie = logout_resp.headers.get("set-cookie", "")
|
|
assert "Max-Age=0" in cookie
|
|
|
|
# API should now fail (cookie cleared)
|
|
resp = self.test_client.get("/v1/api/workstreams")
|
|
assert resp.status_code == 401
|
|
|
|
|
|
class TestConsoleLogin:
|
|
"""Test login/logout cookie flow on turnstone-console."""
|
|
|
|
@classmethod
|
|
def setup_class(cls):
|
|
from unittest.mock import MagicMock
|
|
|
|
from starlette.testclient import TestClient
|
|
|
|
from turnstone.console.collector import ClusterCollector
|
|
from turnstone.console.server import _load_static, create_app
|
|
|
|
_load_static()
|
|
|
|
mock_collector = MagicMock(spec=ClusterCollector)
|
|
mock_collector.get_overview.return_value = {
|
|
"nodes": 1,
|
|
"workstreams": 2,
|
|
"states": {"running": 1, "idle": 1},
|
|
"aggregate": {"total_tokens": 100},
|
|
}
|
|
|
|
app = create_app(
|
|
collector=mock_collector,
|
|
broker=MagicMock(),
|
|
auth_config=AuthConfig(
|
|
enabled=True,
|
|
tokens={"tok_full": "full", "tok_read": "read"},
|
|
),
|
|
)
|
|
cls.test_client = TestClient(app, raise_server_exceptions=False)
|
|
|
|
@classmethod
|
|
def teardown_class(cls):
|
|
cls.test_client.close()
|
|
|
|
def test_login_valid_token(self):
|
|
resp = self.test_client.post(
|
|
"/v1/api/auth/login",
|
|
json={"token": "tok_read"},
|
|
)
|
|
assert resp.status_code == 200
|
|
assert "turnstone_auth" in resp.headers.get("set-cookie", "")
|
|
|
|
def test_login_invalid_token(self):
|
|
resp = self.test_client.post(
|
|
"/v1/api/auth/login",
|
|
json={"token": "wrong"},
|
|
)
|
|
assert resp.status_code == 401
|
|
|
|
def test_cookie_auth_on_api(self):
|
|
self.test_client.post("/v1/api/auth/login", json={"token": "tok_read"})
|
|
resp = self.test_client.get("/v1/api/cluster/overview")
|
|
assert resp.status_code == 200
|
|
|
|
def test_logout_then_api_fails(self):
|
|
self.test_client.post("/v1/api/auth/login", json={"token": "tok_read"})
|
|
self.test_client.post("/v1/api/auth/logout")
|
|
resp = self.test_client.get("/v1/api/cluster/overview")
|
|
assert resp.status_code == 401
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Security hardening tests
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestLoginRateLimiter:
|
|
def test_allows_under_limit(self):
|
|
from turnstone.core.auth import LoginRateLimiter
|
|
|
|
limiter = LoginRateLimiter(max_attempts=3, window_seconds=60)
|
|
for _ in range(3):
|
|
ok, _ = limiter.check("ip:1.2.3.4")
|
|
assert ok
|
|
limiter.record("ip:1.2.3.4")
|
|
# 4th should be blocked (3 recorded)
|
|
ok, retry = limiter.check("ip:1.2.3.4")
|
|
assert not ok
|
|
assert retry > 0
|
|
|
|
def test_different_keys_independent(self):
|
|
from turnstone.core.auth import LoginRateLimiter
|
|
|
|
limiter = LoginRateLimiter(max_attempts=2, window_seconds=60)
|
|
limiter.record("ip:a")
|
|
limiter.record("ip:a")
|
|
ok_a, _ = limiter.check("ip:a")
|
|
ok_b, _ = limiter.check("ip:b")
|
|
assert not ok_a
|
|
assert ok_b
|
|
|
|
def test_cleanup(self):
|
|
from turnstone.core.auth import LoginRateLimiter
|
|
|
|
limiter = LoginRateLimiter(max_attempts=1, window_seconds=60)
|
|
limiter.record("ip:old")
|
|
removed = limiter.cleanup(max_age=0.0)
|
|
assert removed == 1
|
|
ok, _ = limiter.check("ip:old")
|
|
assert ok
|
|
|
|
def test_max_keys_protection(self):
|
|
from turnstone.core.auth import LoginRateLimiter
|
|
|
|
limiter = LoginRateLimiter(max_attempts=5, window_seconds=60)
|
|
limiter.MAX_KEYS = 2
|
|
limiter.record("a")
|
|
limiter.record("b")
|
|
limiter.record("c") # should be silently dropped (at capacity)
|
|
assert "c" not in limiter._attempts
|
|
|
|
|
|
class TestJWTAudienceIssuer:
|
|
SECRET = "test-secret-that-is-at-least-32-chars"
|
|
|
|
def test_create_jwt_includes_iss(self):
|
|
import jwt as pyjwt
|
|
|
|
from turnstone.core.auth import JWT_ISSUER, create_jwt
|
|
|
|
token = create_jwt("user1", frozenset({"read"}), "test", self.SECRET)
|
|
payload = pyjwt.decode(
|
|
token, self.SECRET, algorithms=["HS256"], options={"verify_aud": False}
|
|
)
|
|
assert payload["iss"] == JWT_ISSUER
|
|
|
|
def test_create_jwt_with_audience(self):
|
|
import jwt as pyjwt
|
|
|
|
from turnstone.core.auth import JWT_AUD_SERVER, create_jwt
|
|
|
|
token = create_jwt(
|
|
"user1", frozenset({"read"}), "test", self.SECRET, audience=JWT_AUD_SERVER
|
|
)
|
|
payload = pyjwt.decode(token, self.SECRET, algorithms=["HS256"], audience=JWT_AUD_SERVER)
|
|
assert payload["aud"] == JWT_AUD_SERVER
|
|
|
|
def test_validate_jwt_wrong_audience_rejected(self):
|
|
from turnstone.core.auth import JWT_AUD_CONSOLE, JWT_AUD_SERVER, create_jwt, validate_jwt
|
|
|
|
token = create_jwt(
|
|
"user1", frozenset({"read"}), "test", self.SECRET, audience=JWT_AUD_SERVER
|
|
)
|
|
result = validate_jwt(token, self.SECRET, audience=JWT_AUD_CONSOLE)
|
|
assert result is None
|
|
|
|
def test_validate_jwt_correct_audience_accepted(self):
|
|
from turnstone.core.auth import JWT_AUD_SERVER, create_jwt, validate_jwt
|
|
|
|
token = create_jwt(
|
|
"user1", frozenset({"read"}), "test", self.SECRET, audience=JWT_AUD_SERVER
|
|
)
|
|
result = validate_jwt(token, self.SECRET, audience=JWT_AUD_SERVER)
|
|
assert result is not None
|
|
assert result.user_id == "user1"
|
|
|
|
def test_validate_jwt_no_audience_backward_compat(self):
|
|
from turnstone.core.auth import create_jwt, validate_jwt
|
|
|
|
# Token without aud claim should be accepted when audience="" (backward compat)
|
|
token = create_jwt("user1", frozenset({"read"}), "test", self.SECRET)
|
|
result = validate_jwt(token, self.SECRET, audience="")
|
|
assert result is not None
|
|
|
|
|
|
class TestServiceTokenManager:
|
|
SECRET = "test-secret-that-is-at-least-32-chars"
|
|
|
|
def test_auto_mints_on_first_access(self):
|
|
from turnstone.core.auth import ServiceTokenManager
|
|
|
|
mgr = ServiceTokenManager(
|
|
user_id="svc",
|
|
scopes=frozenset({"read"}),
|
|
source="test",
|
|
secret=self.SECRET,
|
|
)
|
|
token = mgr.token
|
|
assert token # non-empty
|
|
assert isinstance(token, str)
|
|
|
|
def test_bearer_header_format(self):
|
|
from turnstone.core.auth import ServiceTokenManager
|
|
|
|
mgr = ServiceTokenManager(
|
|
user_id="svc",
|
|
scopes=frozenset({"read"}),
|
|
source="test",
|
|
secret=self.SECRET,
|
|
)
|
|
header = mgr.bearer_header
|
|
assert "Authorization" in header
|
|
assert header["Authorization"].startswith("Bearer ")
|
|
|
|
def test_token_stable_within_window(self):
|
|
from turnstone.core.auth import ServiceTokenManager
|
|
|
|
mgr = ServiceTokenManager(
|
|
user_id="svc",
|
|
scopes=frozenset({"read"}),
|
|
source="test",
|
|
secret=self.SECRET,
|
|
expiry_hours=1,
|
|
)
|
|
t1 = mgr.token
|
|
t2 = mgr.token
|
|
assert t1 == t2
|
|
|
|
def test_token_rotates_near_expiry(self):
|
|
from turnstone.core.auth import ServiceTokenManager
|
|
|
|
mgr = ServiceTokenManager(
|
|
user_id="svc",
|
|
scopes=frozenset({"read"}),
|
|
source="test",
|
|
secret=self.SECRET,
|
|
expiry_hours=1,
|
|
)
|
|
_ = mgr.token # initial mint
|
|
# Simulate expiry by backdating _expires_at
|
|
mgr._expires_at = 0.0
|
|
t2 = mgr.token
|
|
# Token was re-minted (even if payload matches within same second,
|
|
# the internal state was refreshed)
|
|
assert t2 # non-empty, valid token
|
|
assert mgr._expires_at > 0.0 # was refreshed
|
|
|
|
def test_audience_included(self):
|
|
import jwt as pyjwt
|
|
|
|
from turnstone.core.auth import JWT_AUD_SERVER, ServiceTokenManager
|
|
|
|
mgr = ServiceTokenManager(
|
|
user_id="svc",
|
|
scopes=frozenset({"read"}),
|
|
source="test",
|
|
secret=self.SECRET,
|
|
audience=JWT_AUD_SERVER,
|
|
)
|
|
payload = pyjwt.decode(
|
|
mgr.token, self.SECRET, algorithms=["HS256"], audience=JWT_AUD_SERVER
|
|
)
|
|
assert payload["aud"] == JWT_AUD_SERVER
|
|
|
|
|
|
class TestIsSecureRequest:
|
|
def test_https_scheme(self):
|
|
from turnstone.core.auth import is_secure_request
|
|
|
|
assert is_secure_request({}, scheme="https") is True
|
|
|
|
def test_http_scheme(self):
|
|
from turnstone.core.auth import is_secure_request
|
|
|
|
assert is_secure_request({}, scheme="http") is False
|
|
|
|
def test_x_forwarded_proto_https(self):
|
|
from turnstone.core.auth import is_secure_request
|
|
|
|
assert is_secure_request({"x-forwarded-proto": "https"}, scheme="http") is True
|
|
|
|
def test_x_forwarded_proto_http(self):
|
|
from turnstone.core.auth import is_secure_request
|
|
|
|
assert is_secure_request({"x-forwarded-proto": "http"}, scheme="http") is False
|
|
|
|
|
|
class TestSecretStrength:
|
|
def test_short_secret_warns(self, caplog):
|
|
import logging
|
|
|
|
from turnstone.core.auth import _MIN_SECRET_LENGTH
|
|
|
|
with caplog.at_level(logging.WARNING, logger="turnstone.core.auth"):
|
|
import turnstone.core.auth as auth_mod
|
|
|
|
old = os.environ.get("TURNSTONE_JWT_SECRET", "")
|
|
os.environ["TURNSTONE_JWT_SECRET"] = "short"
|
|
try:
|
|
secret = auth_mod.load_jwt_secret()
|
|
assert secret == "short"
|
|
assert any(str(_MIN_SECRET_LENGTH) in r.message for r in caplog.records)
|
|
finally:
|
|
if old:
|
|
os.environ["TURNSTONE_JWT_SECRET"] = old
|
|
else:
|
|
os.environ.pop("TURNSTONE_JWT_SECRET", None)
|
|
|
|
|
|
class TestCorsConfigurable:
|
|
"""Verify CORS middleware is only added when origins are configured."""
|
|
|
|
def test_no_cors_origins_no_cors_headers(self):
|
|
"""Without cors_origins, no Access-Control headers."""
|
|
from starlette.testclient import TestClient
|
|
|
|
import turnstone.server as srv_mod
|
|
|
|
app = srv_mod.create_app(
|
|
workstreams=MagicMock(),
|
|
global_queue=queue.Queue(),
|
|
global_listeners=[],
|
|
global_listeners_lock=threading.Lock(),
|
|
skip_permissions=False,
|
|
auth_config=AuthConfig(enabled=False),
|
|
)
|
|
client = TestClient(app)
|
|
resp = client.get("/health", headers={"Origin": "http://evil.com"})
|
|
assert "Access-Control-Allow-Origin" not in resp.headers
|
|
client.close()
|
|
|
|
def test_cors_origins_set(self):
|
|
"""With cors_origins, CORS headers are present."""
|
|
from starlette.testclient import TestClient
|
|
|
|
import turnstone.server as srv_mod
|
|
|
|
app = srv_mod.create_app(
|
|
workstreams=MagicMock(),
|
|
global_queue=queue.Queue(),
|
|
global_listeners=[],
|
|
global_listeners_lock=threading.Lock(),
|
|
skip_permissions=False,
|
|
auth_config=AuthConfig(enabled=False),
|
|
cors_origins=["http://example.com"],
|
|
)
|
|
client = TestClient(app)
|
|
resp = client.get(
|
|
"/health",
|
|
headers={"Origin": "http://example.com"},
|
|
)
|
|
assert resp.headers.get("Access-Control-Allow-Origin") == "http://example.com"
|
|
client.close()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestVerifyPassword — OIDC sentinel handling
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestVerifyPassword:
|
|
def test_valid_bcrypt_hash(self):
|
|
from turnstone.core.auth import hash_password, verify_password
|
|
|
|
hashed = hash_password("mypassword")
|
|
assert verify_password("mypassword", hashed) is True
|
|
assert verify_password("wrongpassword", hashed) is False
|
|
|
|
def test_oidc_sentinel_rejected(self):
|
|
from turnstone.core.auth import verify_password
|
|
|
|
# OIDC sentinel must return False, not crash with ValueError
|
|
assert verify_password("anypassword", "!oidc") is False
|
|
|
|
def test_non_bcrypt_hash_rejected(self):
|
|
from turnstone.core.auth import verify_password
|
|
|
|
assert verify_password("password", "not_a_hash") is False
|
|
assert verify_password("password", "") is False
|
|
|
|
def test_empty_password_against_oidc_sentinel(self):
|
|
from turnstone.core.auth import verify_password
|
|
|
|
assert verify_password("", "!oidc") is False
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# TestOIDCPublicPaths — OIDC endpoints are public
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestOIDCPublicPaths:
|
|
def test_oidc_authorize_is_public(self):
|
|
assert is_public_path("/api/auth/oidc/authorize") is True
|
|
assert is_public_path("/v1/api/auth/oidc/authorize") is True
|
|
|
|
def test_oidc_callback_is_public(self):
|
|
assert is_public_path("/api/auth/oidc/callback") is True
|
|
assert is_public_path("/v1/api/auth/oidc/callback") is True
|