b4fbd6fe9f
Deploy Site / deploy-vercel (push) Has been skipped
Deploy Site / deploy-docs (push) Has been skipped
Build Skills Index / build-index (push) Has been skipped
CI / Deny unrelated histories (push) Has been skipped
CI / Detect affected areas (push) Successful in 27m35s
CI / OSV scan (push) Failing after 4s
CI / Build&Test Docker image (push) Successful in 9s
CI / Supply-chain scan (push) Has been skipped
CI / Lint Docker scripts (push) Failing after 5m13s
CI / Check contributors (push) Failing after 12m8s
CI / Docs Site (push) Failing after 12m8s
CI / TypeScript (push) Failing after 12m8s
CI / Python lints (push) Failing after 12m9s
CI / Python tests (push) Failing after 12m9s
CI / Check uv.lock (push) Failing after 23m22s
CI / CI timing report (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
CI / All required checks pass (push) Has been cancelled
344 lines
14 KiB
Python
344 lines
14 KiB
Python
"""Tests for the external drain-control marker contract + gateway state machine.
|
|
|
|
Task 2.2/2.3. Two layers:
|
|
* drain_control.py — the presence-based marker contract (write/clear/read,
|
|
HERMES_HOME-scoped, never-raises).
|
|
* GatewayRunner enter/exit/watcher + the new-turn accept gate — the
|
|
reversible state machine driven by the marker.
|
|
|
|
Mocked tests are necessary-not-sufficient here (the HARD live-validation gate,
|
|
Q-B, exercises a real `hermes gateway run`); these lock the unit contract.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
from pathlib import Path
|
|
from unittest.mock import MagicMock
|
|
|
|
import pytest
|
|
|
|
import gateway.drain_control as dc
|
|
from gateway.run import GatewayRunner
|
|
from gateway.platforms.base import MessageEvent, MessageType
|
|
from tests.gateway.restart_test_helpers import make_restart_runner, make_restart_source
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Marker contract (drain_control.py)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
@pytest.fixture
|
|
def home(tmp_path, monkeypatch):
|
|
monkeypatch.setenv("HERMES_HOME", str(tmp_path))
|
|
return tmp_path
|
|
|
|
|
|
class TestMarkerContract:
|
|
def test_absent_by_default(self, home):
|
|
assert dc.drain_requested() is False
|
|
assert dc.read_drain_request() is None
|
|
|
|
def test_write_then_present(self, home):
|
|
payload = dc.write_drain_request(principal="nas")
|
|
assert dc.drain_requested() is True
|
|
assert payload["action"] == "drain"
|
|
assert payload["principal"] == "nas"
|
|
body = dc.read_drain_request()
|
|
assert body is not None and body["principal"] == "nas"
|
|
|
|
def test_clear_removes(self, home):
|
|
dc.write_drain_request()
|
|
assert dc.clear_drain_request() is True
|
|
assert dc.drain_requested() is False
|
|
# idempotent: clearing again is a no-op, returns False
|
|
assert dc.clear_drain_request() is False
|
|
|
|
def test_path_respects_hermes_home(self, home):
|
|
assert dc.drain_request_path() == home / ".drain_request.json"
|
|
|
|
def test_corrupt_marker_reads_as_present_contentless(self, home):
|
|
# A half-written / malformed marker must still count as "drain active"
|
|
# (fail-safe toward quiescing).
|
|
dc.drain_request_path().write_text("{not valid json", encoding="utf-8")
|
|
assert dc.drain_requested() is True
|
|
assert dc.read_drain_request() == {}
|
|
|
|
def test_write_is_atomic_json(self, home):
|
|
dc.write_drain_request(principal="x")
|
|
import json
|
|
|
|
data = json.loads(dc.drain_request_path().read_text())
|
|
assert data["action"] == "drain"
|
|
|
|
|
|
class TestSuppressNotification:
|
|
"""The generic suppress_notification flag on the drain marker.
|
|
|
|
Gates ONLY the gateway's home-channel shutdown broadcast (NAS auto-update
|
|
sets it true). Default-false so legacy/operator drains behave as before.
|
|
The reader reuses the NS-570 epoch-staleness check so an orphaned marker
|
|
can never silence a fresh gateway.
|
|
"""
|
|
|
|
def test_default_false(self, home):
|
|
payload = dc.write_drain_request(principal="nas")
|
|
assert payload["suppress_notification"] is False
|
|
assert dc.drain_notification_suppressed() is False
|
|
|
|
def test_flag_round_trips_true(self, home):
|
|
payload = dc.write_drain_request(principal="nas", suppress_notification=True)
|
|
assert payload["suppress_notification"] is True
|
|
body = dc.read_drain_request()
|
|
assert body is not None and body["suppress_notification"] is True
|
|
assert dc.drain_notification_suppressed() is True
|
|
|
|
def test_suppressed_false_when_no_marker(self, home):
|
|
assert dc.drain_notification_suppressed() is False
|
|
|
|
def test_legacy_marker_without_field_not_suppressed(self, home):
|
|
# A marker written before this change has no suppress_notification key →
|
|
# must read as not-suppressed (broadcast still fires), while still being
|
|
# an active drain.
|
|
import json
|
|
|
|
dc.drain_request_path().write_text(
|
|
json.dumps({"action": "drain", "epoch": dc.current_instantiation_epoch()}),
|
|
encoding="utf-8",
|
|
)
|
|
assert dc.drain_requested() is True
|
|
assert dc.drain_notification_suppressed() is False
|
|
|
|
def test_corrupt_marker_not_suppressed(self, home):
|
|
# Half-written marker → read_drain_request returns {} → no flag → not
|
|
# suppressed (fail toward the louder, visible behaviour) even though the
|
|
# drain itself stays active (fail-safe toward quiescing).
|
|
dc.drain_request_path().write_text("{not valid json", encoding="utf-8")
|
|
assert dc.drain_requested() is True
|
|
assert dc.drain_notification_suppressed() is False
|
|
|
|
def test_stale_epoch_marker_not_suppressed(self, home, monkeypatch):
|
|
# THE NS-570 ANALOGUE for suppression: a suppress_notification:true
|
|
# marker that survived a machine restart on the durable volume must NOT
|
|
# silence the freshly-restarted gateway's legitimate shutdown broadcast.
|
|
monkeypatch.setattr(dc, "current_instantiation_epoch", lambda: "epoch-OLD")
|
|
dc.write_drain_request(principal="nas", suppress_notification=True)
|
|
assert dc.drain_notification_suppressed() is True # same epoch → honoured
|
|
|
|
monkeypatch.setattr(dc, "current_instantiation_epoch", lambda: "epoch-NEW")
|
|
assert dc.drain_request_path().exists() is True
|
|
assert dc.drain_notification_suppressed() is False # stale → ignored
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Instantiation-epoch staleness (NS-570: orphaned marker on durable volume)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestInstantiationEpoch:
|
|
def test_write_stamps_current_epoch(self, home):
|
|
payload = dc.write_drain_request(principal="nas")
|
|
assert payload["epoch"] == dc.current_instantiation_epoch()
|
|
body = dc.read_drain_request()
|
|
assert body is not None and body["epoch"] == dc.current_instantiation_epoch()
|
|
|
|
def test_current_epoch_is_stable_within_process(self):
|
|
# Memoised — an s6 respawn of just the gateway keeps PID 1, so a
|
|
# repeated call inside one process must return the same value (an
|
|
# in-flight drain stays honoured).
|
|
assert dc.current_instantiation_epoch() == dc.current_instantiation_epoch()
|
|
|
|
def test_marker_from_prior_instantiation_reads_as_absent(self, home, monkeypatch):
|
|
# THE NS-570 REGRESSION. A begin-drain marker written by a PREVIOUS
|
|
# container/VM instantiation survives on the durable HERMES_HOME volume
|
|
# across a machine restart. The freshly-restarted gateway (new epoch)
|
|
# must treat it as absent, NOT re-engage drain.
|
|
monkeypatch.setattr(dc, "current_instantiation_epoch", lambda: "epoch-OLD")
|
|
dc.write_drain_request(principal="nas") # stamps "epoch-OLD"
|
|
assert dc.drain_requested() is True # same epoch → active
|
|
|
|
# Simulate the restart: a brand-new instantiation epoch.
|
|
monkeypatch.setattr(dc, "current_instantiation_epoch", lambda: "epoch-NEW")
|
|
# The marker file is still physically present on the volume…
|
|
assert dc.drain_request_path().exists() is True
|
|
# …but it is ignored because its epoch belongs to a prior instantiation.
|
|
assert dc.drain_requested() is False
|
|
|
|
def test_marker_from_current_instantiation_is_honoured(self, home, monkeypatch):
|
|
monkeypatch.setattr(dc, "current_instantiation_epoch", lambda: "epoch-A")
|
|
dc.write_drain_request()
|
|
assert dc.drain_requested() is True
|
|
|
|
def test_legacy_marker_without_epoch_still_active(self, home):
|
|
# A marker written before this change (no "epoch" key) must remain
|
|
# fail-safe toward quiescing — never silently ignored.
|
|
import json
|
|
|
|
dc.drain_request_path().write_text(
|
|
json.dumps({"action": "drain", "requested_at": "x", "principal": "p"}),
|
|
encoding="utf-8",
|
|
)
|
|
assert dc.drain_requested() is True
|
|
|
|
def test_corrupt_marker_with_no_parseable_epoch_still_active(self, home):
|
|
# Half-written / malformed → read_drain_request returns {} → no epoch →
|
|
# lenient check keeps it active (fail-safe), same as before the change.
|
|
dc.drain_request_path().write_text("{not valid json", encoding="utf-8")
|
|
assert dc.drain_requested() is True
|
|
|
|
def test_unavailable_epoch_disables_staleness_check(self, home, monkeypatch):
|
|
# No /proc (non-Linux, etc.) → epoch "" → degrade to presence-only:
|
|
# any present marker (even with a foreign epoch) reads as active rather
|
|
# than fail-closed.
|
|
import json
|
|
|
|
dc.drain_request_path().write_text(
|
|
json.dumps({"action": "drain", "epoch": "some-other-epoch"}),
|
|
encoding="utf-8",
|
|
)
|
|
monkeypatch.setattr(dc, "current_instantiation_epoch", lambda: "")
|
|
assert dc.drain_requested() is True
|
|
|
|
def test_current_epoch_empty_when_proc_unreadable(self, monkeypatch):
|
|
# When neither /proc identity source is readable, the epoch is "" so
|
|
# the staleness check is disabled rather than crashing.
|
|
from pathlib import Path as _P
|
|
|
|
orig_read_text = _P.read_text
|
|
|
|
def _boom(self, *a, **k):
|
|
if str(self).startswith("/proc/"):
|
|
raise OSError("no /proc")
|
|
return orig_read_text(self, *a, **k)
|
|
|
|
dc.current_instantiation_epoch.cache_clear()
|
|
monkeypatch.setattr(_P, "read_text", _boom)
|
|
try:
|
|
assert dc.current_instantiation_epoch() == ""
|
|
finally:
|
|
dc.current_instantiation_epoch.cache_clear()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Gateway state machine (enter / exit / idempotency)
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
def _drain_runner():
|
|
runner, adapter = make_restart_runner()
|
|
runner._external_drain_active = False
|
|
# Bind the real methods under test.
|
|
runner._enter_external_drain = GatewayRunner._enter_external_drain.__get__(
|
|
runner, GatewayRunner
|
|
)
|
|
runner._exit_external_drain = GatewayRunner._exit_external_drain.__get__(
|
|
runner, GatewayRunner
|
|
)
|
|
return runner, adapter
|
|
|
|
|
|
class TestDrainStateMachine:
|
|
def test_enter_sets_flag_and_flips_state(self):
|
|
runner, _ = _drain_runner()
|
|
runner._enter_external_drain()
|
|
assert runner._external_drain_active is True
|
|
runner._update_runtime_status.assert_called_with("draining")
|
|
|
|
def test_enter_idempotent(self):
|
|
runner, _ = _drain_runner()
|
|
runner._enter_external_drain()
|
|
runner._update_runtime_status.reset_mock()
|
|
runner._enter_external_drain() # second call — no-op
|
|
runner._update_runtime_status.assert_not_called()
|
|
|
|
def test_exit_reverts_to_running(self):
|
|
runner, _ = _drain_runner()
|
|
runner._enter_external_drain()
|
|
runner._update_runtime_status.reset_mock()
|
|
runner._exit_external_drain()
|
|
assert runner._external_drain_active is False
|
|
runner._update_runtime_status.assert_called_with("running")
|
|
|
|
def test_exit_idempotent_when_not_draining(self):
|
|
runner, _ = _drain_runner()
|
|
runner._exit_external_drain() # never entered — no-op
|
|
runner._update_runtime_status.assert_not_called()
|
|
|
|
def test_exit_during_shutdown_does_not_revert_to_running(self):
|
|
runner, _ = _drain_runner()
|
|
runner._enter_external_drain()
|
|
runner._update_runtime_status.reset_mock()
|
|
# A shutdown drain is now in progress — exit must NOT resurrect running.
|
|
runner._draining = True
|
|
runner._exit_external_drain()
|
|
assert runner._external_drain_active is False
|
|
runner._update_runtime_status.assert_not_called()
|
|
|
|
def test_exit_when_loop_stopped_does_not_revert(self):
|
|
runner, _ = _drain_runner()
|
|
runner._enter_external_drain()
|
|
runner._update_runtime_status.reset_mock()
|
|
runner._running = False
|
|
runner._exit_external_drain()
|
|
runner._update_runtime_status.assert_not_called()
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# Watcher reconciliation
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestDrainWatcher:
|
|
@pytest.mark.asyncio
|
|
async def test_watcher_enters_then_exits_with_marker(self, home):
|
|
runner, _ = _drain_runner()
|
|
runner._drain_control_watcher = GatewayRunner._drain_control_watcher.__get__(
|
|
runner, GatewayRunner
|
|
)
|
|
# Drive a few ticks manually rather than spinning the loop.
|
|
dc.write_drain_request()
|
|
task = asyncio.create_task(runner._drain_control_watcher(interval=0.02))
|
|
await asyncio.sleep(0.06)
|
|
assert runner._external_drain_active is True
|
|
dc.clear_drain_request()
|
|
await asyncio.sleep(0.06)
|
|
assert runner._external_drain_active is False
|
|
runner._running = False
|
|
await asyncio.sleep(0.04)
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
# New-turn accept gate
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
|
class TestNewTurnGate:
|
|
@pytest.mark.asyncio
|
|
async def test_new_turn_refused_during_external_drain(self):
|
|
runner, _ = _drain_runner()
|
|
runner._external_drain_active = True
|
|
event = MessageEvent(
|
|
text="hello",
|
|
message_type=MessageType.TEXT,
|
|
source=make_restart_source(),
|
|
message_id="m1",
|
|
)
|
|
result = await runner._handle_message(event)
|
|
assert result is not None
|
|
assert "draining" in result.lower()
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_in_flight_turn_not_interrupted_by_drain(self):
|
|
# Entering drain must NOT touch the running-agents set.
|
|
runner, _ = _drain_runner()
|
|
sentinel = MagicMock()
|
|
runner._running_agents["k"] = sentinel
|
|
runner._enter_external_drain()
|
|
assert runner._running_agents.get("k") is sentinel
|
|
sentinel.interrupt.assert_not_called()
|