- COOKIE_SECURE env now accepts: 'true' (secure), 'false' (memory-only), 'single_user' (no cookie) - config.parse_cookie_mode() returns (COOKIE_SECURE, SINGLE_USER) tuple for routing - single_user_owner() returns oldest Owner for test/local deployments - session cookie respects mode: Max-Age only in secure mode, dropped for memory-only - base.html renders ephemeral-session and single-user banners per mode - Tests: comprehensive coverage for all three modes with monkeypatch configs - CLAUDE.md + README docs updated Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
364 lines
12 KiB
Python
364 lines
12 KiB
Python
"""Tests for per-owner cookie-scoped session — first visit, isolation, restore."""
|
|
from fastapi.testclient import TestClient
|
|
|
|
from imptune.services.session import COOKIE_NAME
|
|
|
|
|
|
def test_first_visit_sets_cookie_and_new_owner_flag(client):
|
|
resp = client.get("/")
|
|
assert resp.status_code == 200
|
|
assert COOKIE_NAME in client.cookies
|
|
assert "session-choice-modal" in resp.text
|
|
|
|
# Second visit — cookie already present, modal must not reappear
|
|
resp2 = client.get("/")
|
|
assert "session-choice-modal" not in resp2.text
|
|
|
|
|
|
def test_printers_are_isolated_between_owners(tmp_data_dir):
|
|
from imptune.main import app
|
|
|
|
with TestClient(app) as client_a, TestClient(app) as client_b:
|
|
client_a.post(
|
|
"/printers",
|
|
data={"name": "Owner A Printer", "ip_address": "10.0.0.1", "port_name": "IP_A"},
|
|
follow_redirects=False,
|
|
)
|
|
|
|
page_a = client_a.get("/printers")
|
|
page_b = client_b.get("/printers")
|
|
|
|
assert "Owner A Printer" in page_a.text
|
|
assert "Owner A Printer" not in page_b.text
|
|
|
|
|
|
def test_owner_b_cannot_reach_owner_a_printer_by_id(tmp_data_dir):
|
|
from imptune.main import app
|
|
|
|
with TestClient(app) as client_a, TestClient(app) as client_b:
|
|
client_a.post(
|
|
"/printers",
|
|
data={"name": "Private Printer", "ip_address": "10.0.0.2", "port_name": "IP_B"},
|
|
follow_redirects=False,
|
|
)
|
|
from imptune.db.models import Printer
|
|
|
|
printer_id = Printer.get(Printer.name == "Private Printer").id
|
|
|
|
assert client_b.get(f"/printers/{printer_id}").status_code == 404
|
|
assert client_b.patch(f"/printers/{printer_id}", data={"name": "Hijacked"}).status_code == 404
|
|
assert client_b.delete(f"/printers/{printer_id}").status_code == 404
|
|
assert client_b.get(f"/printers/{printer_id}/scripts/install").status_code == 404
|
|
assert client_b.get(f"/printers/{printer_id}/packages/ninja").status_code == 404
|
|
|
|
|
|
def test_download_key_marks_permanent_and_returns_key(client):
|
|
from imptune.db.models import Owner
|
|
|
|
client.get("/")
|
|
resp = client.get("/session/key/download")
|
|
assert resp.status_code == 200
|
|
assert "attachment" in resp.headers["content-disposition"]
|
|
assert "imptune-backup-key.txt" in resp.headers["content-disposition"]
|
|
|
|
key = resp.text
|
|
assert len(key) > 20
|
|
|
|
owner = Owner.get(Owner.key == key)
|
|
assert owner.is_permanent is True
|
|
|
|
|
|
def test_restore_with_valid_key_reattaches_owner_data(tmp_data_dir):
|
|
from imptune.main import app
|
|
|
|
with TestClient(app) as client_a:
|
|
client_a.get("/")
|
|
client_a.post(
|
|
"/printers",
|
|
data={"name": "Backed Up Printer", "ip_address": "10.0.0.3", "port_name": "IP_C"},
|
|
follow_redirects=False,
|
|
)
|
|
key = client_a.get("/session/key/download").text
|
|
|
|
with TestClient(app) as client_new:
|
|
restore_resp = client_new.post(
|
|
"/session/restore",
|
|
data={"key": key},
|
|
headers={"origin": "http://testserver"},
|
|
follow_redirects=False,
|
|
)
|
|
assert restore_resp.status_code == 303
|
|
|
|
page = client_new.get("/printers")
|
|
assert "Backed Up Printer" in page.text
|
|
|
|
|
|
def test_restore_with_invalid_key_shows_error(client):
|
|
resp = client.post(
|
|
"/session/restore",
|
|
data={"key": "not-a-real-key"},
|
|
headers={"origin": "http://testserver"},
|
|
)
|
|
assert resp.status_code == 404
|
|
assert "Key not found" in resp.text
|
|
|
|
|
|
def test_restore_rejects_cross_origin_post(client):
|
|
"""CSRF guard: a forged cross-site form POST must not be able to re-point
|
|
the victim's cookie at an attacker-known key (login-CSRF / session fixation)."""
|
|
resp = client.post(
|
|
"/session/restore",
|
|
data={"key": "irrelevant"},
|
|
headers={"origin": "https://attacker.example"},
|
|
)
|
|
assert resp.status_code == 403
|
|
|
|
resp_no_header = client.post("/session/restore", data={"key": "irrelevant"})
|
|
assert resp_no_header.status_code == 403
|
|
|
|
|
|
def test_health_endpoint_does_not_create_owner_rows(client):
|
|
from imptune.db.models import Owner
|
|
|
|
before = Owner.select().count()
|
|
for _ in range(5):
|
|
client.get("/health")
|
|
after = Owner.select().count()
|
|
assert after == before
|
|
|
|
|
|
def test_static_assets_do_not_create_owner_rows(client):
|
|
"""Asset fetches are unscoped — they must not mint an Owner row each time."""
|
|
from imptune.db.models import Owner
|
|
|
|
client.get("/") # first visit provisions exactly one Owner
|
|
before = Owner.select().count()
|
|
for _ in range(5):
|
|
assert client.get("/static/app.css").status_code == 200
|
|
client.get("/favicon.ico")
|
|
assert Owner.select().count() == before
|
|
|
|
|
|
def test_restore_accepts_https_origin_behind_tls_proxy(tmp_data_dir):
|
|
"""A TLS-terminating proxy leaves uvicorn seeing http:// while the browser
|
|
sends Origin: https://host. Comparing schemes rejected every real restore."""
|
|
from imptune.main import app
|
|
|
|
with TestClient(app) as client_a:
|
|
client_a.get("/")
|
|
client_a.post(
|
|
"/printers",
|
|
data={"name": "Proxied Printer", "ip_address": "10.0.0.9", "port_name": "IP_P"},
|
|
follow_redirects=False,
|
|
)
|
|
key = client_a.get("/session/key/download").text
|
|
|
|
with TestClient(app) as client_new:
|
|
resp = client_new.post(
|
|
"/session/restore",
|
|
data={"key": key},
|
|
headers={"origin": "https://testserver"},
|
|
follow_redirects=False,
|
|
)
|
|
assert resp.status_code == 303
|
|
assert "Proxied Printer" in client_new.get("/printers").text
|
|
|
|
|
|
def test_restore_still_rejects_foreign_host_origin(client):
|
|
"""Host is what's checked — a same-scheme attacker host must still fail."""
|
|
resp = client.post(
|
|
"/session/restore",
|
|
data={"key": "irrelevant"},
|
|
headers={"origin": "http://attacker.example"},
|
|
)
|
|
assert resp.status_code == 403
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# COOKIE_SECURE=false — usable, remembered, but memory-only + warned about
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _set_cookie_header(resp):
|
|
return next(
|
|
v for k, v in resp.headers.multi_items() if k.lower() == "set-cookie"
|
|
)
|
|
|
|
|
|
def test_insecure_mode_issues_a_browser_session_cookie(client, monkeypatch):
|
|
"""No Max-Age/Expires: the browser keeps the key in memory and drops it on
|
|
exit, instead of writing a 10-year plaintext bearer credential to disk."""
|
|
import imptune.config as cfg
|
|
|
|
monkeypatch.setattr(cfg, "COOKIE_SECURE", False)
|
|
resp = client.get("/")
|
|
|
|
header = _set_cookie_header(resp)
|
|
assert COOKIE_NAME in header
|
|
assert "Max-Age" not in header
|
|
assert "Expires" not in header
|
|
assert "Secure" not in header
|
|
|
|
|
|
def test_secure_mode_still_issues_a_persistent_cookie(tmp_data_dir, monkeypatch):
|
|
from imptune.main import app
|
|
|
|
import imptune.config as cfg
|
|
|
|
monkeypatch.setattr(cfg, "COOKIE_SECURE", True)
|
|
with TestClient(app) as fresh:
|
|
header = _set_cookie_header(fresh.get("/"))
|
|
|
|
assert "Max-Age=" in header
|
|
assert "Secure" in header
|
|
|
|
|
|
def test_insecure_mode_still_remembers_configs_within_the_session(client, monkeypatch):
|
|
"""The whole point: memory-only ≠ stateless. Same browser, same data."""
|
|
import imptune.config as cfg
|
|
|
|
monkeypatch.setattr(cfg, "COOKIE_SECURE", False)
|
|
client.post(
|
|
"/printers",
|
|
data={"name": "Ephemeral Printer", "ip_address": "10.0.6.1", "port_name": "IP_E"},
|
|
follow_redirects=False,
|
|
)
|
|
assert "Ephemeral Printer" in client.get("/printers").text
|
|
|
|
|
|
def test_insecure_mode_warns_the_user(client, monkeypatch):
|
|
import imptune.config as cfg
|
|
|
|
monkeypatch.setattr(cfg, "COOKIE_SECURE", False)
|
|
html = client.get("/printers").text
|
|
|
|
assert "ephemeral-session-warning" in html
|
|
assert "only while this browser stays open" in html
|
|
assert "/session/key/download" in html
|
|
|
|
|
|
def test_secure_mode_shows_no_warning(tmp_data_dir, monkeypatch):
|
|
from imptune.main import app
|
|
|
|
import imptune.config as cfg
|
|
|
|
monkeypatch.setattr(cfg, "COOKIE_SECURE", True)
|
|
with TestClient(app) as fresh:
|
|
assert "ephemeral-session-warning" not in fresh.get("/").text
|
|
|
|
|
|
def test_restore_also_issues_a_session_cookie_when_insecure(tmp_data_dir, monkeypatch):
|
|
"""The restore route sets its own cookie — it must honour the same policy."""
|
|
from imptune.main import app
|
|
|
|
import imptune.config as cfg
|
|
|
|
monkeypatch.setattr(cfg, "COOKIE_SECURE", False)
|
|
with TestClient(app) as client_a:
|
|
client_a.get("/")
|
|
key = client_a.get("/session/key/download").text
|
|
|
|
with TestClient(app) as client_new:
|
|
resp = client_new.post(
|
|
"/session/restore",
|
|
data={"key": key},
|
|
headers={"origin": "http://testserver"},
|
|
follow_redirects=False,
|
|
)
|
|
assert resp.status_code == 303
|
|
header = _set_cookie_header(resp)
|
|
assert "Max-Age" not in header and "Expires" not in header
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# COOKIE_SECURE=single_user — no cookie at all, one shared Owner
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def test_parse_cookie_mode_reads_three_modes():
|
|
from imptune.config import parse_cookie_mode
|
|
|
|
assert parse_cookie_mode("true") == (True, False)
|
|
assert parse_cookie_mode("") == (True, False) # unset-ish → secure default
|
|
assert parse_cookie_mode("False") == (False, False)
|
|
for spelling in ("single_user", "single-user", "SingleUser", " single "):
|
|
assert parse_cookie_mode(spelling) == (False, True)
|
|
|
|
|
|
def _single_user(monkeypatch):
|
|
import imptune.config as cfg
|
|
|
|
monkeypatch.setattr(cfg, "SINGLE_USER", True)
|
|
monkeypatch.setattr(cfg, "COOKIE_SECURE", False)
|
|
|
|
|
|
def test_single_user_mode_sets_no_cookie_and_skips_onboarding(tmp_data_dir, monkeypatch):
|
|
from imptune.main import app
|
|
|
|
_single_user(monkeypatch)
|
|
with TestClient(app) as fresh:
|
|
resp = fresh.get("/")
|
|
assert resp.status_code == 200
|
|
assert COOKIE_NAME not in fresh.cookies
|
|
assert not [v for k, v in resp.headers.multi_items() if k.lower() == "set-cookie"]
|
|
assert "session-choice-modal" not in resp.text
|
|
assert "ephemeral-session-warning" not in resp.text
|
|
assert "single-user-notice" in resp.text
|
|
|
|
|
|
def test_single_user_mode_shares_data_across_browsers(tmp_data_dir, monkeypatch):
|
|
"""The point of the mode: a cookie-less client sees the same printers."""
|
|
from imptune.main import app
|
|
|
|
_single_user(monkeypatch)
|
|
with TestClient(app) as client_a, TestClient(app) as client_b:
|
|
client_a.post(
|
|
"/printers",
|
|
data={"name": "Shared Printer", "ip_address": "10.0.7.1", "port_name": "IP_S"},
|
|
follow_redirects=False,
|
|
)
|
|
assert "Shared Printer" in client_b.get("/printers").text
|
|
|
|
|
|
def test_single_user_mode_creates_exactly_one_owner(tmp_data_dir, monkeypatch):
|
|
from imptune.db.models import Owner
|
|
from imptune.main import app
|
|
|
|
_single_user(monkeypatch)
|
|
with TestClient(app) as fresh:
|
|
for _ in range(4):
|
|
assert fresh.get("/printers").status_code == 200
|
|
assert Owner.select().count() == 1
|
|
|
|
|
|
def test_single_user_mode_adopts_the_existing_owner(tmp_data_dir, monkeypatch):
|
|
"""Switching a cookie-scoped deployment over must not hide its printers."""
|
|
from imptune.main import app
|
|
|
|
with TestClient(app) as cookie_client:
|
|
cookie_client.post(
|
|
"/printers",
|
|
data={"name": "Pre-switch Printer", "ip_address": "10.0.7.2", "port_name": "IP_T"},
|
|
follow_redirects=False,
|
|
)
|
|
|
|
_single_user(monkeypatch)
|
|
with TestClient(app) as after_switch:
|
|
assert "Pre-switch Printer" in after_switch.get("/printers").text
|
|
|
|
|
|
def test_single_user_mode_disables_session_key_routes(tmp_data_dir, monkeypatch):
|
|
"""No cookie to re-point, and the shared owner's key must not leak."""
|
|
from imptune.main import app
|
|
|
|
_single_user(monkeypatch)
|
|
with TestClient(app) as fresh:
|
|
assert fresh.get("/session/key/download").status_code == 404
|
|
assert fresh.get("/session/restore").status_code == 404
|
|
assert fresh.post(
|
|
"/session/restore",
|
|
data={"key": "anything"},
|
|
headers={"origin": "http://testserver"},
|
|
).status_code == 404
|
|
assert "/session/key/download" not in fresh.get("/printers").text
|