33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
"""custom-html — pre-op seed hooks (Phase 1e HC3). The orchestrator runs `pre_<op>(domain, meta)`
|
|
BEFORE it performs the op; the matching test_<op>.py asserts the post-op state (assertion-only).
|
|
|
|
nginx serves the volume at /var/www/html, so the marker file survives an upgrade / a
|
|
backup+restore of that volume and is both HTTP-readable and exec-readable."""
|
|
|
|
import os
|
|
import sys
|
|
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "runner"))
|
|
from harness import lifecycle # noqa: E402
|
|
|
|
MARKER_PATH = "/var/www/html/ci-marker.txt"
|
|
|
|
|
|
def _write(domain: str, val: str) -> None:
|
|
lifecycle.exec_in_app(domain, ["sh", "-c", f"mkdir -p $(dirname {MARKER_PATH}) && echo {val} > {MARKER_PATH}"])
|
|
|
|
|
|
def pre_upgrade(domain, meta):
|
|
# seed a marker before the upgrade so the overlay can prove the data survives it
|
|
_write(domain, "upgrade-survives")
|
|
|
|
|
|
def pre_backup(domain, meta):
|
|
# establish a known original state before the backup op captures it
|
|
_write(domain, "original")
|
|
|
|
|
|
def pre_restore(domain, meta):
|
|
# diverge from the backed-up state so a successful restore (back to "original") is observable
|
|
_write(domain, "mutated")
|