plausible (analytics; app + postgres db + clickhouse events_db). recipe_meta stub (DISABLE_AUTH/ REGISTRATION + SECRET_KEY_BASE) + health test pre-existing. Added ops.py (postgres ci_marker via db service, container-env psql) + test_install/upgrade/backup/restore overlays. plausible's postgres has a real pg_dump backup/restore hook (so P4 marker survives, unlike immich). §4.3 event-tracking test next (after live-API discovery). Tags annotated. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
14 lines
477 B
Python
14 lines
477 B
Python
"""plausible — INSTALL overlay (Phase 1d): reuse generic serving, then assert the SPA shell serves."""
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "runner"))
|
|
from harness import generic, lifecycle # noqa: E402
|
|
|
|
|
|
def test_serving(live_app, meta):
|
|
generic.assert_serving(live_app, meta)
|
|
status = lifecycle.http_get(live_app, "/")
|
|
assert status in (200, 301, 302), f"expected 2xx/3xx from {live_app}, got {status}"
|