After DECNET_WEBHOOK_CIRCUIT_THRESHOLD (default 5) consecutive failed
deliveries, the worker calls trip_webhook_circuit(uuid, ts) which
flips enabled=False and stamps auto_disabled_at. The worker sets its
reload flag so the next dispatch epoch stops consuming events for the
tripped sub entirely — one dead receiver can't poison the shared
egress pool anymore.
Operator clears the trip via PATCH — setting enabled=True when the
sub was previously disabled clears auto_disabled_at, zeros
consecutive_failures, and clears last_error. Admin-pause → re-enable
hits the same path harmlessly.
Three observable states now distinguishable in the UI:
- Active enabled=True, auto_disabled_at=NULL
- Admin-paused enabled=False, auto_disabled_at=NULL
- Tripped enabled=False, auto_disabled_at=<ts>
UI surfaces a TRIPPED · <ts> chip on the row (red, alert-styled) and
a "N TRIPPED" count in the page header. Hover tooltip tells the
operator how to reset ("Re-enable via Edit").
record_webhook_failure now returns the new consecutive_failures count
so the worker can compare against the threshold without a second
roundtrip. trip_webhook_circuit is idempotent — re-tripping just
re-stamps auto_disabled_at.
Closes THREAT_MODEL WH-02 and DEBT-037 §1.
296 lines
9.9 KiB
Python
296 lines
9.9 KiB
Python
"""Webhook worker — bus consumer → HTTP egress integration test."""
|
|
from __future__ import annotations
|
|
|
|
import asyncio
|
|
import json
|
|
from datetime import datetime, timezone
|
|
from typing import Any
|
|
from unittest.mock import patch
|
|
|
|
import httpx
|
|
import pytest
|
|
|
|
from decnet.bus import topics as _topics
|
|
from decnet.webhook.worker import (
|
|
_patterns_for,
|
|
_union_patterns,
|
|
webhook_worker,
|
|
)
|
|
|
|
|
|
def _sub(
|
|
uuid: str,
|
|
name: str,
|
|
patterns: list[str],
|
|
*,
|
|
url: str = "https://w.example/x",
|
|
secret: str = "s" * 32,
|
|
enabled: bool = True,
|
|
) -> dict[str, Any]:
|
|
return {
|
|
"uuid": uuid,
|
|
"name": name,
|
|
"url": url,
|
|
"secret": secret,
|
|
"topic_patterns": json.dumps(patterns),
|
|
"enabled": enabled,
|
|
"consecutive_failures": 0,
|
|
"last_success_at": None,
|
|
"last_failure_at": None,
|
|
"last_error": None,
|
|
"created_at": datetime.now(timezone.utc),
|
|
"updated_at": datetime.now(timezone.utc),
|
|
}
|
|
|
|
|
|
class _FakeRepo:
|
|
def __init__(self, subs: list[dict[str, Any]]):
|
|
self.subs = subs
|
|
self.success_calls: list[str] = []
|
|
self.failure_calls: list[tuple[str, str]] = []
|
|
self.trip_calls: list[str] = []
|
|
self._failure_counts: dict[str, int] = {}
|
|
|
|
async def list_webhook_subscriptions(self, enabled_only: bool = False) -> list[dict[str, Any]]:
|
|
return [s for s in self.subs if s["enabled"]] if enabled_only else list(self.subs)
|
|
|
|
async def record_webhook_success(self, uuid: str, ts: datetime) -> None:
|
|
self.success_calls.append(uuid)
|
|
self._failure_counts[uuid] = 0
|
|
|
|
async def record_webhook_failure(self, uuid: str, ts: datetime, error: str) -> int:
|
|
self.failure_calls.append((uuid, error))
|
|
self._failure_counts[uuid] = self._failure_counts.get(uuid, 0) + 1
|
|
return self._failure_counts[uuid]
|
|
|
|
async def trip_webhook_circuit(self, uuid: str, ts: datetime) -> None:
|
|
self.trip_calls.append(uuid)
|
|
# Mirror the real DB effect: flip enabled=False so next reload
|
|
# skips this sub.
|
|
for s in self.subs:
|
|
if s["uuid"] == uuid:
|
|
s["enabled"] = False
|
|
s["auto_disabled_at"] = ts
|
|
|
|
|
|
def test_patterns_for_decodes_json():
|
|
assert _patterns_for(
|
|
{"topic_patterns": json.dumps(["attacker.>", "decky.*.state"])}
|
|
) == ["attacker.>", "decky.*.state"]
|
|
|
|
|
|
def test_patterns_for_bad_json_returns_empty():
|
|
assert _patterns_for({"topic_patterns": "not-json"}) == []
|
|
|
|
|
|
def test_union_patterns_dedupes_across_subs():
|
|
s1 = _sub("u1", "w1", ["attacker.>", "system.>"])
|
|
s2 = _sub("u2", "w2", ["system.>", "decky.*.state"])
|
|
assert _union_patterns([s1, s2]) == ["attacker.>", "system.>", "decky.*.state"]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_worker_dispatches_matching_event(fake_bus):
|
|
"""A bus event matching a sub's pattern should produce an HTTP POST."""
|
|
sub = _sub("u1", "w1", ["attacker.>"])
|
|
repo = _FakeRepo([sub])
|
|
captured: list[httpx.Request] = []
|
|
|
|
async def handler(request: httpx.Request) -> httpx.Response:
|
|
captured.append(request)
|
|
return httpx.Response(200)
|
|
|
|
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client:
|
|
with patch("decnet.webhook.worker.get_bus", return_value=fake_bus):
|
|
task = asyncio.create_task(
|
|
webhook_worker(repo, reload_interval=0.5, http_client=client)
|
|
)
|
|
# Give the worker a moment to subscribe.
|
|
await asyncio.sleep(0.2)
|
|
|
|
await fake_bus.publish(
|
|
"attacker.observed",
|
|
{"ip": "1.2.3.4"},
|
|
event_type="first_sighting",
|
|
)
|
|
# Poll briefly for delivery.
|
|
for _ in range(40):
|
|
if captured:
|
|
break
|
|
await asyncio.sleep(0.05)
|
|
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
assert len(captured) == 1
|
|
req = captured[0]
|
|
assert req.headers.get("X-DECNET-Signature", "").startswith("sha256=")
|
|
assert "attacker.observed" in req.headers.get("X-DECNET-Event-Topic", "")
|
|
assert repo.success_calls == ["u1"]
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_worker_ignores_non_matching_event(fake_bus):
|
|
"""An event outside the sub's pattern must not trigger a POST."""
|
|
sub = _sub("u1", "w1", ["attacker.>"])
|
|
repo = _FakeRepo([sub])
|
|
captured: list[httpx.Request] = []
|
|
|
|
async def handler(request: httpx.Request) -> httpx.Response:
|
|
captured.append(request)
|
|
return httpx.Response(200)
|
|
|
|
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client:
|
|
with patch("decnet.webhook.worker.get_bus", return_value=fake_bus):
|
|
task = asyncio.create_task(
|
|
webhook_worker(repo, reload_interval=0.5, http_client=client)
|
|
)
|
|
await asyncio.sleep(0.2)
|
|
# system.log is NOT in attacker.>
|
|
await fake_bus.publish(
|
|
"system.log",
|
|
{"m": "irrelevant"},
|
|
event_type="batch_committed",
|
|
)
|
|
await asyncio.sleep(0.3)
|
|
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
assert captured == []
|
|
assert repo.success_calls == []
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_worker_records_failure_on_5xx(fake_bus, monkeypatch):
|
|
sub = _sub("u1", "w1", ["attacker.>"])
|
|
repo = _FakeRepo([sub])
|
|
|
|
# Collapse the retry schedule to zero-delay so the test doesn't wait
|
|
# the real 1+2+4s backoff sequence.
|
|
monkeypatch.setattr(
|
|
"decnet.webhook.client._DEFAULT_RETRY_SCHEDULE", (0.0, 0.0, 0.0)
|
|
)
|
|
|
|
async def handler(request: httpx.Request) -> httpx.Response:
|
|
return httpx.Response(503)
|
|
|
|
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client:
|
|
with patch("decnet.webhook.worker.get_bus", return_value=fake_bus):
|
|
task = asyncio.create_task(
|
|
webhook_worker(repo, reload_interval=0.5, http_client=client)
|
|
)
|
|
await asyncio.sleep(0.2)
|
|
await fake_bus.publish(
|
|
"attacker.observed", {"ip": "1.2.3.4"}, event_type="x"
|
|
)
|
|
for _ in range(80):
|
|
if repo.failure_calls:
|
|
break
|
|
await asyncio.sleep(0.05)
|
|
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
assert repo.failure_calls
|
|
assert repo.failure_calls[0][0] == "u1"
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_worker_reloads_on_subscriptions_changed_signal(fake_bus):
|
|
"""A newly-enabled sub that arrives via the reload-signal path must
|
|
start receiving events without a worker restart."""
|
|
subs = [_sub("u1", "w1", ["attacker.>"])]
|
|
repo = _FakeRepo(subs)
|
|
captured: list[httpx.Request] = []
|
|
|
|
async def handler(request: httpx.Request) -> httpx.Response:
|
|
captured.append(request)
|
|
return httpx.Response(200)
|
|
|
|
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client:
|
|
with patch("decnet.webhook.worker.get_bus", return_value=fake_bus):
|
|
task = asyncio.create_task(
|
|
webhook_worker(repo, reload_interval=60.0, http_client=client)
|
|
)
|
|
await asyncio.sleep(0.2)
|
|
|
|
# Hot-add a sub that wants system.>
|
|
subs.append(_sub("u2", "w2", ["system.>"]))
|
|
await fake_bus.publish(
|
|
_topics.WEBHOOK_SUBSCRIPTIONS_CHANGED, {}, event_type="changed"
|
|
)
|
|
await asyncio.sleep(0.3) # let worker reload + resubscribe
|
|
|
|
await fake_bus.publish(
|
|
"system.log", {"m": "hi"}, event_type="batch_committed"
|
|
)
|
|
for _ in range(80):
|
|
if captured:
|
|
break
|
|
await asyncio.sleep(0.05)
|
|
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
|
|
# The new sub (u2) should have received the system.log event.
|
|
assert len(captured) == 1
|
|
assert "system.log" in captured[0].headers.get("X-DECNET-Event-Topic", "")
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_worker_trips_circuit_after_threshold(fake_bus, monkeypatch):
|
|
"""After N consecutive failures the worker auto-disables the sub."""
|
|
sub = _sub("u1", "w1", ["attacker.>"])
|
|
repo = _FakeRepo([sub])
|
|
|
|
# Tight threshold + zero-delay retry so the test finishes fast.
|
|
monkeypatch.setattr("decnet.webhook.worker._CIRCUIT_THRESHOLD", 2)
|
|
monkeypatch.setattr(
|
|
"decnet.webhook.client._DEFAULT_RETRY_SCHEDULE", (0.0, 0.0, 0.0)
|
|
)
|
|
|
|
async def handler(request: httpx.Request) -> httpx.Response:
|
|
return httpx.Response(503)
|
|
|
|
async with httpx.AsyncClient(transport=httpx.MockTransport(handler)) as client:
|
|
with patch("decnet.webhook.worker.get_bus", return_value=fake_bus):
|
|
task = asyncio.create_task(
|
|
webhook_worker(repo, reload_interval=0.5, http_client=client)
|
|
)
|
|
await asyncio.sleep(0.2)
|
|
# Publish two events — each fails N retries, each increments
|
|
# consecutive_failures by 1. Second trip should fire.
|
|
await fake_bus.publish("attacker.observed", {}, event_type="x")
|
|
await fake_bus.publish("attacker.observed", {}, event_type="x")
|
|
for _ in range(120):
|
|
if repo.trip_calls:
|
|
break
|
|
await asyncio.sleep(0.05)
|
|
|
|
task.cancel()
|
|
try:
|
|
await task
|
|
except asyncio.CancelledError:
|
|
pass
|
|
|
|
assert repo.trip_calls, "expected circuit to trip after threshold"
|
|
assert repo.trip_calls[0] == "u1"
|
|
# The sub was flipped to enabled=False by trip_webhook_circuit.
|
|
assert sub["enabled"] is False
|
|
assert sub["auto_disabled_at"] is not None
|
|
|