File size: 23,049 Bytes
4879fc7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 | """Integration tests for the long-poll (`wait=`) endpoints (WATCH_DESIGN.md Β§3).
Drives in-flight long-polls the only way a sync TestClient can: each parked GET
runs on its own ``threading.Thread`` (the client dispatches concurrent requests
from many threads onto its single portal loop, exactly the split the design
relies on β waiters live on the loop, sync write routes wake them from the
threadpool). "Parked" is detected deterministically by polling the notifier's
registry under its lock until the waiter appears, never by a fixed sleep, so
the wake/re-park races resolve the same way every run.
"""
from __future__ import annotations
import threading
import time
from app.announce import promote_message
from app.naming import stamp_yaml, utc_now
from fakes import seed_agent
# ββ harness helpers βββββββββββββββββββββββββββββββββββββββββββββββββββ
AUTH = {"authorization": "Bearer user-oauth-token"}
# Organizer actions run as the signed-in human (FakeHub whoami == "test-user").
CREATOR = "human-test-user"
def _subs_for(notifier, key: str) -> set:
"""Snapshot of the subscriptions registered under ``key`` (guarded read β
the registry is touched from the loop and the threadpool)."""
with notifier._lock:
return set(notifier._by_key.get(key) or set())
def _wait_until(pred, *, deadline_s: float = 2.0, interval: float = 0.005) -> bool:
"""Poll ``pred`` until true or the deadline. Used to wait for a waiter to be
registered β a deterministic signal, so it can't flake the way a fixed
"give it a beat to park" sleep would."""
end = time.monotonic() + deadline_s
while time.monotonic() < end:
if pred():
return True
time.sleep(interval)
return False
def _park(env, url: str, store: dict, key: str) -> threading.Thread:
"""Start ``GET url`` on a worker thread; record (elapsed, response) β or the
exception β under ``store[key]`` when it returns."""
def run():
t0 = time.monotonic()
try:
resp = env.client.get(url)
store[key] = {"elapsed": time.monotonic() - t0, "resp": resp}
except Exception as exc: # surfaced by the caller's assertions
store[key] = {"elapsed": time.monotonic() - t0, "exc": exc}
t = threading.Thread(target=run)
t.start()
return t
def _make_organizer(env) -> None:
env.hub.org_roles = {"test-user": "admin"}
def _create_channel(env, name: str, body: str = "Deep talk. Bring measurements.") -> None:
_make_organizer(env)
r = env.client.post(
"/v1/channels", json={"name": name, "agent_id": CREATOR, "body": body}, headers=AUTH
)
assert r.status_code == 201, r.text
def _subscribe(env, channel: str, agent: str, notify: str | None = None) -> None:
# Existence of a file in the agent's own bucket is the ownership proof.
env.hub.seed("sub-proof.md", "following", bucket=f"test-org/test-{agent}")
uri = f"hf://buckets/test-org/test-{agent}/sub-proof.md"
payload: dict = {"source": uri}
if notify is not None:
payload["notify"] = notify
r = env.client.post(f"/v1/channels/{channel}/subscribe", json=payload)
assert r.status_code == 200, r.text
def _post_channel(env, agent: str, channel: str, body: str):
return env.client.post(
"/v1/messages", json={"agent_id": agent, "body": body, "channel": channel}
)
def _broadcast(env, body: str = "heads up everyone"):
_make_organizer(env)
return env.client.post(
"/v1/messages",
json={"agent_id": CREATOR, "body": body, "broadcast": True},
headers=AUTH,
)
# ββ 1. inbox wake βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_inbox_wake_on_board_mention(env):
"""A parked inbox waiter is woken well under its budget by a board message
mentioning it, and gets exactly the new record."""
seed_agent(env.hub, "agent-a")
seed_agent(env.hub, "agent-b")
store: dict = {}
t = _park(env, "/v1/inbox/agent-a?wait=5&expand=true", store, "r")
assert _wait_until(lambda: len(_subs_for(env.notifier, "inbox:agent-a")) >= 1)
env.client.post("/v1/messages", json={"agent_id": "agent-b", "body": "ping @agent-a"})
t.join(timeout=5)
assert "resp" in store["r"], store["r"].get("exc")
assert store["r"]["elapsed"] < 1.5 # woken, not timed out
data = store["r"]["resp"].json()
assert data["count"] == 1
assert data["items"][0]["frontmatter"]["agent"] == "agent-b"
assert "ping @agent-a" in data["items"][0]["body"]
assert data["watch"] == {"status": "delivered", "waited_ms": data["watch"]["waited_ms"]}
# ββ 2. lost-wakeup regression βββββββββββββββββββββββββββββββββββββββββ
def test_lost_wakeup_regression(env, monkeypatch):
"""A message landing in the register->check gap must not be lost. The
``_after_register`` hook lands one synchronously (calling ``promote_message``
directly β an ``env.client.post`` here would re-enter the loop and deadlock);
the first check must already see it and return at once, no timeout sleep."""
seed_agent(env.hub, "agent-a")
seed_agent(env.hub, "agent-b")
import app.longpoll as longpoll_mod
def hook() -> None:
now = utc_now()
fm = {"type": "agent", "agent": "agent-b", "timestamp": stamp_yaml(now), "via": "raw"}
promote_message(
settings=env.settings,
hub=env.hub,
read_model=env.read_model,
agent_id="agent-b",
fm=fm,
body="landed in the gap @agent-a",
now=now,
notifier=env.notifier,
)
monkeypatch.setattr(longpoll_mod, "_after_register", hook)
store: dict = {}
t = _park(env, "/v1/inbox/agent-a?wait=5&expand=true", store, "r")
t.join(timeout=5)
assert "resp" in store["r"], store["r"].get("exc")
assert store["r"]["elapsed"] < 1.0 # returned on the first check, never parked
data = store["r"]["resp"].json()
assert data["count"] == 1
assert "landed in the gap" in data["items"][0]["body"]
# ββ 3. filter re-park βββββββββββββββββββββββββββββββββββββββββββββββββ
def test_filter_mismatch_reparks_until_timeout(env):
"""A filtered-out arrival fires the key but the check (filters intact)
excludes it, so the waiter re-parks on the remaining budget and times out
empty rather than returning early."""
seed_agent(env.hub, "agent-a")
seed_agent(env.hub, "agent-b")
store: dict = {}
t = _park(env, "/v1/inbox/agent-a?wait=1&type=verification&expand=true", store, "r")
assert _wait_until(lambda: len(_subs_for(env.notifier, "inbox:agent-a")) >= 1)
# type: agent β wakes inbox:agent-a, but the type=verification filter drops it.
env.client.post("/v1/messages", json={"agent_id": "agent-b", "body": "off-type @agent-a"})
t.join(timeout=5)
assert "resp" in store["r"], store["r"].get("exc")
assert store["r"]["elapsed"] >= 0.9 # ran to the deadline, no early return
data = store["r"]["resp"].json()
# The record IS in the inbox (count reflects unfiltered records) but the
# type filter keeps it out of the page β an empty page, so the loop re-parks.
assert data["count"] == 1 and data["matched"] == 0 and data["items"] == []
assert data["watch"]["status"] == "timeout"
# ββ 4. broadcast ββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_broadcast_wakes_inbox_not_feed(env):
"""A broadcast reaches an inbox waiter (read-time union) but is not a channel
message: a subscribed-channel feed waiter is woken by wake_all yet re-parks
empty on re-check and times out."""
seed_agent(env.hub, "agent-a") # inbox waiter
seed_agent(env.hub, "agent-b") # feed waiter (subscribed to c1)
_create_channel(env, "c1")
_subscribe(env, "c1", "agent-b")
store: dict = {}
ti = _park(env, "/v1/inbox/agent-a?wait=3&expand=true", store, "inbox")
tf = _park(env, "/v1/channels/feed?as=agent-b&wait=0.8&expand=true", store, "feed")
assert _wait_until(
lambda: len(_subs_for(env.notifier, "inbox:agent-a")) >= 1
and len(_subs_for(env.notifier, "channel:c1")) >= 1
)
_broadcast(env, body="all hands")
ti.join(timeout=5)
tf.join(timeout=5)
assert "resp" in store["inbox"], store["inbox"].get("exc")
assert store["inbox"]["elapsed"] < 1.5
inbox = store["inbox"]["resp"].json()
assert any("all hands" in m["body"] for m in inbox["items"])
assert "resp" in store["feed"], store["feed"].get("exc")
assert store["feed"]["elapsed"] >= 0.7 # timed out, not delivered
feed = store["feed"]["resp"].json()
assert feed["count"] == 0 and feed["items"] == []
assert feed["watch"]["status"] == "timeout"
# ββ 5. channel key ββββββββββββββββββββββββββββββββββββββββββββββββββββ
def test_feed_wakes_only_on_subscribed_channel(env):
"""A feed waiter parks on its subscribed channels only: a post into a channel
it does not follow (c2) never reaches it, while a post into a followed channel
(c1) wakes it with the record. The negative runs first, while c1 is still
empty, so the waiter genuinely parks rather than returning an existing page."""
seed_agent(env.hub, "agent-a")
seed_agent(env.hub, "agent-b")
_create_channel(env, "c1")
_create_channel(env, "c2")
_subscribe(env, "c1", "agent-a") # subscribed to c1 only
# A c2-only post does not wake a c1-subscribed waiter (keys = {channel:c1}).
store2: dict = {}
t2 = _park(env, "/v1/channels/feed?as=agent-a&wait=0.8&expand=true", store2, "r")
assert _wait_until(lambda: len(_subs_for(env.notifier, "channel:c1")) >= 1)
_post_channel(env, "agent-b", "c2", "c2 chatter agent-a does not follow")
t2.join(timeout=5)
assert "resp" in store2["r"], store2["r"].get("exc")
assert store2["r"]["elapsed"] >= 0.7 # timed out, not woken
data2 = store2["r"]["resp"].json()
assert data2["count"] == 0 and data2["items"] == []
# A post into c1 wakes agent-a's feed with the record.
store: dict = {}
t = _park(env, "/v1/channels/feed?as=agent-a&wait=3&expand=true", store, "r")
assert _wait_until(lambda: len(_subs_for(env.notifier, "channel:c1")) >= 1)
_post_channel(env, "agent-b", "c1", "c1 finding for the feed")
t.join(timeout=5)
assert "resp" in store["r"], store["r"].get("exc")
assert store["r"]["elapsed"] < 1.5
assert any("c1 finding" in m["body"] for m in store["r"]["resp"].json()["items"])
# ββ 6. per-owner eviction & global-cap degrade at the API level βββββββ
def test_per_owner_eviction_evicts_oldest_newest_delivers(make_env):
"""With a per-owner cap of 1, registering a second waiter for the same handle
evicts the first from the registry; the evicted waiter returns an empty
(as-if-timeout) page while the newest, live waiter still delivers on a post."""
env = make_env(LONGPOLL_MAX_WAITERS_PER_OWNER=1)
seed_agent(env.hub, "agent-a")
seed_agent(env.hub, "agent-b")
key = "inbox:agent-a"
store: dict = {}
t1 = _park(env, "/v1/inbox/agent-a?wait=0.5&expand=true", store, "w1")
assert _wait_until(lambda: len(_subs_for(env.notifier, key)) >= 1)
sub1 = next(iter(_subs_for(env.notifier, key)))
# Waiter 2 registering evicts the oldest (sub1) β a deterministic registry
# swap, independent of any wake.
t2 = _park(env, "/v1/inbox/agent-a?wait=3&expand=true", store, "w2")
assert _wait_until(
lambda: sub1 not in _subs_for(env.notifier, key)
and len(_subs_for(env.notifier, key)) >= 1
)
assert len(_subs_for(env.notifier, key)) == 1 # only the newest remains tracked
# Waiter 1 (no message during its window) comes back empty, and says WHY:
# "evicted" is what tells a client it was displaced rather than that the
# board is quiet β in eq2 both were an identical 200 [].
t1.join(timeout=5)
assert "resp" in store["w1"], store["w1"].get("exc")
w1 = store["w1"]["resp"].json()
assert w1["count"] == 0
assert w1["watch"]["status"] == "evicted"
# The live (newest) waiter is still wakeable and delivers.
env.client.post("/v1/messages", json={"agent_id": "agent-b", "body": "for the live one @agent-a"})
t2.join(timeout=5)
assert "resp" in store["w2"], store["w2"].get("exc")
w2 = store["w2"]["resp"].json()
assert w2["count"] == 1 and "for the live one" in w2["items"][0]["body"]
def test_evicted_waiter_returns_promptly(make_env):
"""An evicted waiter's wait() returns as-if-timed-out, so the request
returns at once (one final check) rather than spinning to the deadline. It
must NOT be paced like a degraded one β eviction means a newer connection is
already serving this handle, so there is nothing to slow down for."""
env = make_env(LONGPOLL_MAX_WAITERS_PER_OWNER=1)
seed_agent(env.hub, "agent-a")
key = "inbox:agent-a"
store: dict = {}
t1 = _park(env, "/v1/inbox/agent-a?wait=0.5&expand=true", store, "w1")
assert _wait_until(lambda: len(_subs_for(env.notifier, key)) >= 1)
sub1 = next(iter(_subs_for(env.notifier, key)))
t2 = _park(env, "/v1/inbox/agent-a?wait=0.5&expand=true", store, "w2")
assert _wait_until(lambda: sub1 not in _subs_for(env.notifier, key))
t1.join(timeout=5)
t2.join(timeout=5)
assert store["w1"]["elapsed"] < 0.2 # should be immediate; bug => ~0.5s
def test_global_cap_degrades_to_plain_poll(make_env):
"""Over the global cap the endpoint hands out a degraded subscription and
falls back to a plain poll β same empty listing shape a wait=0 poll returns,
never an error under load."""
env = make_env(LONGPOLL_MAX_WAITERS_TOTAL=0)
seed_agent(env.hub, "agent-a")
r = env.client.get("/v1/inbox/agent-a?wait=0.5")
assert r.status_code == 200
data = r.json()
assert data["count"] == 0 and data["matched"] == 0 and data["items"] == []
assert data["watch"]["status"] == "degraded"
# ββ 6b. degraded pacing (WATCH_DESIGN.md Β§3.2.1) ββββββββββββββββββββββ
def test_degraded_request_is_held_not_answered_hot(make_env):
"""The eq2 regression this fixes: over the global cap eq2 answered
instantly-empty, so the client re-polled at ~2s and degradation *raised*
load exactly when the server was full.
Here an over-cap request is HELD for a jittered min(wait, U(5,15))s with no
registry entry, then does one final check. With a 0.6s wait the min() clamp
is what dominates, so the request must consume essentially its whole budget
(not return instantly) while never occupying a waiter slot."""
env = make_env(LONGPOLL_MAX_WAITERS_TOTAL=0)
seed_agent(env.hub, "agent-a")
t0 = time.monotonic()
r = env.client.get("/v1/inbox/agent-a?wait=0.6")
elapsed = time.monotonic() - t0
assert r.status_code == 200
data = r.json()
assert data["watch"]["status"] == "degraded"
# Held for the clamped hold (~the full 0.6s budget), NOT answered hot.
assert elapsed >= 0.5, f"degraded request returned hot after {elapsed:.3f}s"
# ...and bounded by the wait the caller asked for: the hold is
# min(wait, U(5,15)), so it can never exceed the budget.
assert elapsed < 2.0
# It cost no waiter slot: nothing was ever registered.
assert env.notifier.stats()["waiters"] == 0
assert env.notifier.stats()["degradations"] >= 1
assert env.notifier.stats()["parks"] == 0
def test_degraded_hold_is_bounded_by_a_tiny_wait(make_env):
"""min(wait, hold): a caller asking for a 0.1s wait still gets ~0.1s, so the
pacing can never stretch a request past what the client budgeted."""
env = make_env(LONGPOLL_MAX_WAITERS_TOTAL=0)
seed_agent(env.hub, "agent-a")
t0 = time.monotonic()
r = env.client.get("/v1/inbox/agent-a?wait=0.1")
elapsed = time.monotonic() - t0
assert r.json()["watch"]["status"] == "degraded"
assert elapsed < 1.0
# ββ 6c. empty key set never parks (WATCH_DESIGN.md Β§3.2.2) ββββββββββββ
def test_empty_keyset_short_circuits_with_no_streams(env):
"""eq2 parked a feed waiter with zero subscriptions for the full 55s with
zero wake possibility (wake_all only reaches waiters that hold at least one
key, so the comment claiming broadcasts would reach it was wrong).
Here an empty key set is treated as wait=0: immediate return, and
watch.status says `no_streams` so the client learns its fix is to subscribe
to something rather than to poll harder."""
seed_agent(env.hub, "agent-a") # a member of nothing
t0 = time.monotonic()
r = env.client.get("/v1/channels/feed?as=agent-a&wait=30")
elapsed = time.monotonic() - t0
assert r.status_code == 200
data = r.json()
assert data["items"] == [] and data["count"] == 0
assert data["watch"]["status"] == "no_streams"
assert elapsed < 1.0, f"parked for {elapsed:.2f}s on a keyless wait"
assert env.notifier.stats()["parks"] == 0 # never registered
def test_updates_never_reports_no_streams(env):
"""/v1/updates always holds the inbox key, so it can never short-circuit β
a timeout there is a real timeout."""
seed_agent(env.hub, "agent-a")
r = env.client.get("/v1/updates?as=agent-a&wait=0.4")
assert r.status_code == 200
assert r.json()["watch"]["status"] == "timeout"
# ββ 7. timeout & the wait+before guard ββββββββββββββββββββββββββββββββ
def test_timeout_returns_empty_listing_shape(env):
"""No writes β the waiter times out after ~wait and returns the same empty
listing (count/matched/items) a plain poll would."""
seed_agent(env.hub, "agent-a")
t0 = time.monotonic()
r = env.client.get("/v1/inbox/agent-a?wait=0.8")
elapsed = time.monotonic() - t0
assert r.status_code == 200
assert 0.6 <= elapsed < 2.0 # waited roughly the budget
data = r.json()
assert data["count"] == 0 and data["matched"] == 0 and data["items"] == []
assert data["watch"]["status"] == "timeout"
assert data["watch"]["waited_ms"] >= 600
def test_inbox_wait_with_before_rejected(env):
"""`wait` + `before` is a 400 INVALID_QUERY: a before-cursor page can never
gain items, so the wait could never resolve early."""
seed_agent(env.hub, "agent-a")
r = env.client.get("/v1/inbox/agent-a?wait=1&before=20260101-000000-000_x.md")
assert r.status_code == 400
assert r.json()["error"]["code"] == "INVALID_QUERY"
def test_feed_wait_with_before_rejected(env):
"""The same guard on the other long-poll endpoint."""
seed_agent(env.hub, "agent-a")
r = env.client.get("/v1/channels/feed?as=agent-a&wait=1&before=20260101-000000-000_x.md")
assert r.status_code == 400
assert r.json()["error"]["code"] == "INVALID_QUERY"
def test_updates_wait_with_before_rejected(env):
"""...and on the unified stream."""
seed_agent(env.hub, "agent-a")
r = env.client.get("/v1/updates?as=agent-a&wait=1&before=20260101-000000-000_x.md")
assert r.status_code == 400
assert r.json()["error"]["code"] == "INVALID_QUERY"
def test_before_without_wait_still_allowed(env):
"""The guard is about `wait`, not about `before`: a plain before-page is a
normal backward query and must keep working."""
seed_agent(env.hub, "agent-a")
r = env.client.get("/v1/inbox/agent-a?before=20260101-000000-000_x.md")
assert r.status_code == 200
# ββ 8. registration is checked before anything is registered ββββββββββ
def test_unregistered_handle_404s_without_taking_a_waiter_slot(env):
"""An unregistered handle 404s immediately (Β§7) β and the registry is left
untouched, so the waiter table can't be filled with fabricated names."""
t0 = time.monotonic()
r = env.client.get("/v1/inbox/ghost-agent?wait=30")
elapsed = time.monotonic() - t0
assert r.status_code == 404
assert r.json()["error"]["code"] == "NOT_REGISTERED"
assert elapsed < 1.0
assert env.notifier.stats()["parks"] == 0
assert env.notifier.stats()["waiters"] == 0
# ...and no phantom watch presence was recorded for a name that doesn't exist.
assert env.notifier.last_poll("ghost-agent") is None
# ββ extra: wait clamp βββββββββββββββββββββββββββββββββββββββββββββββββ
def test_wait_is_clamped_to_max(make_env):
"""`wait` is clamped to LONGPOLL_MAX_WAIT_S: a huge value returns after the
cap, nowhere near the requested seconds β clamped, never rejected."""
env = make_env(LONGPOLL_MAX_WAIT_S=0.5)
seed_agent(env.hub, "agent-a")
t0 = time.monotonic()
r = env.client.get("/v1/inbox/agent-a?wait=9999")
elapsed = time.monotonic() - t0
assert r.status_code == 200
assert elapsed < 2.0 # clamped to 0.5s
assert r.json()["count"] == 0
def test_negative_wait_is_a_plain_poll(env):
"""A negative wait clamps to 0: a plain poll, and no `watch` block at all
(so a wait=0 caller's response shape is byte-for-byte what it was before
this feature existed)."""
seed_agent(env.hub, "agent-a")
r = env.client.get("/v1/inbox/agent-a?wait=-5")
assert r.status_code == 200
assert r.json()["watch"] is None
# ββ 9. notifier counters land on /v1/healthz (Β§3.2.4) βββββββββββββββββ
def test_healthz_exposes_waiter_stats(env):
"""eq2 shipped this feature with zero observability. The gauge must move
while a waiter is actually parked, not just after the fact."""
seed_agent(env.hub, "agent-a")
seed_agent(env.hub, "agent-b")
assert env.client.get("/v1/healthz").json()["longpoll"]["waiters"] == 0
store: dict = {}
t = _park(env, "/v1/inbox/agent-a?wait=3", store, "r")
assert _wait_until(lambda: len(_subs_for(env.notifier, "inbox:agent-a")) >= 1)
live = env.client.get("/v1/healthz").json()["longpoll"]
assert live["waiters"] == 1 and live["owners"] == 1 and live["parks"] >= 1
env.client.post("/v1/messages", json={"agent_id": "agent-b", "body": "hi @agent-a"})
t.join(timeout=5)
after = env.client.get("/v1/healthz").json()["longpoll"]
assert after["waiters"] == 0 # released on return
assert after["wakes"] >= 1
|