Files
hermes-webui/tests/test_session_events.py
T
nesquena-hermes 9b933e2c83 Release v0.51.266 — Release IH (stage-r16) (#3641)
## Release v0.51.266 — Release IH (stage-r16)

One agent-authored APPROVED fix + two un-held streaming/SSE fixes.

### Fixed
| Issue/PR | Author | Fix |
|----------|--------|-----|
| #3635 (#3637) | @nesquena-hermes (nesquena APPROVED) | Composer profile chip reads `S.activeProfile` again — a #3331 regression keyed it on the loaded session's profile, so opening a cross-profile session made the chip disagree with the dropdown checkmark and misrepresent where the next message routes. #3331's project/session-op scoping is unaffected. |
| #3587 (#3605) | @rodboev | Reasoning persists to the correct intermediate assistant message in multi-turn tool flows. The index only advanced in `on_interim_assistant` (suppressed for contentless tool-call messages) → post-tool reasoning was mis-attributed; it now also advances at the `on_tool` boundary, guarded against over-increment. **(un-held — finding resolved)** |
| #2660 (#3558) | @franksong2702 | Session-event SSE no longer wakes every tab across profiles and never drops a relevant refresh — profile attached when known, root/`default` aliases stay unscoped, and the `maxsize=1` queue falls back to unscoped refresh-all on a profile-mismatch coalesce. **(un-held — both findings resolved)** |

### Gate
- Full pytest suite: **7770 passed, 0 failed**
- ESLint: CLEAN · ruff: CLEAN · browser-smoke: CLEAN
- Codex (regression): **SAFE TO SHIP** — chip matches dropdown/routing (no #3331 scoping regression), reasoning-index advance composes with the agent's tool/interim callback ordering, session-events coalesce safely with no dropped refresh and no profile data leak (`/api/sessions` still server-side filtered).

Co-authored-by: nesquena <nesquena@users.noreply.github.com>
Co-authored-by: rodboev <rodboev@users.noreply.github.com>
Co-authored-by: franksong2702 <franksong2702@users.noreply.github.com>
2026-06-05 00:44:03 -07:00

172 lines
7.1 KiB
Python

import queue
from pathlib import Path
ROUTES = Path("api/routes.py").read_text(encoding="utf-8")
SESSION_EVENTS = Path("api/session_events.py").read_text(encoding="utf-8")
PROFILES = Path("api/profiles.py").read_text(encoding="utf-8")
def test_session_events_endpoint_and_bus_are_defined():
assert "_SESSION_EVENTS_SUBSCRIBERS" in SESSION_EVENTS
assert "def publish_session_list_changed" in SESSION_EVENTS
assert "def _handle_session_events_stream" in ROUTES
assert "parsed.path == '/api/sessions/events'" in ROUTES
assert "Content-Type', 'text/event-stream; charset=utf-8'" in ROUTES
def test_session_events_publish_for_minimal_sidebar_mutations():
for reason in (
"session_new",
"session_delete",
"session_duplicate",
"session_import",
"session_import_cli",
"session_archive",
"session_move",
"session_pin",
"session_rename",
"session_title_regenerate",
"session_branch",
):
if reason == "session_import_cli":
assert f'publish_session_list_changed(\n "{reason}",' in ROUTES, reason
elif reason == "session_import":
assert f'publish_session_list_changed("{reason}")' in ROUTES, reason
else:
assert f'publish_session_list_changed("{reason}",' in ROUTES, reason
assert 'if worktree_info:\n publish_session_list_changed("session_new", profile=getattr(s, "profile", None))' in ROUTES
assert "was_hidden_empty_session = _is_hidden_empty_session(s)" in ROUTES
assert 'if was_hidden_empty_session:\n publish_session_list_changed("session_new", profile=getattr(s, "profile", None))' in ROUTES
assert 'publish_session_list_changed("session_duplicate", profile=getattr(copied_session, "profile", None))' in ROUTES
assert 'publish_session_list_changed("session_rename", profile=getattr(s, "profile", None))' in ROUTES
assert 'publish_session_list_changed("session_title_regenerate", profile=getattr(s, "profile", None))' in ROUTES
assert 'event_profile = getattr(get_session(sid, metadata_only=True), "profile", None)' in ROUTES
assert "Failed to resolve profile for deleted session" in ROUTES
assert '_publish_session_list_changed("session_delete", profile=event_profile)' in ROUTES
assert 'publish_session_list_changed("session_branch", profile=getattr(branch, "profile", None))' in ROUTES
assert 'publish_session_list_changed("session_pin", profile=getattr(s, "profile", None))' in ROUTES
assert 'publish_session_list_changed("session_archive", profile=getattr(s, "profile", None))' in ROUTES
assert 'publish_session_list_changed("session_move", profile=getattr(s, "profile", None))' in ROUTES
assert 'profile=getattr(s, "profile", None)' in ROUTES
assert 'publish_session_list_changed("chat_start")' not in ROUTES
assert '_publish_session_list_changed("cron_complete",' in ROUTES
assert 'publish_session_list_changed("cron_complete",' in PROFILES
def test_session_event_queue_same_profile_is_bounded_and_latest_wins():
from api import session_events
q = session_events.subscribe_session_events()
try:
session_events.publish_session_list_changed("first", profile="profile-a")
session_events.publish_session_list_changed("second", profile="profile-a")
payload = q.get_nowait()
assert payload["type"] == "sessions_changed"
assert payload["reason"] == "second"
assert payload["profile"] == "profile-a"
assert q.empty()
finally:
session_events.unsubscribe_session_events(q)
def test_session_event_queue_profile_mismatch_coalesces_to_unscoped_refresh_all():
from api import session_events
q = session_events.subscribe_session_events()
try:
session_events.publish_session_list_changed("profile_a", profile="profile-a")
session_events.publish_session_list_changed("profile_b", profile="profile-b")
payload = q.get_nowait()
assert payload["type"] == "sessions_changed"
assert payload["reason"] == "profile_b"
assert "profile" not in payload
assert q.empty()
finally:
session_events.unsubscribe_session_events(q)
def test_session_event_queue_unscoped_pending_stays_unscoped_when_followed_by_scoped():
from api import session_events
q = session_events.subscribe_session_events()
try:
session_events.publish_session_list_changed("all_profiles")
session_events.publish_session_list_changed("profile_b", profile="profile-b")
payload = q.get_nowait()
assert payload["type"] == "sessions_changed"
assert payload["reason"] == "profile_b"
assert "profile" not in payload
assert q.empty()
finally:
session_events.unsubscribe_session_events(q)
def test_session_event_queue_drain_race_preserves_incoming_profile():
from api import session_events
class DrainedQueue:
def __init__(self):
self.payloads = []
self.put_attempts = 0
def put_nowait(self, payload):
self.put_attempts += 1
if self.put_attempts == 1:
raise queue.Full()
self.payloads.append(payload)
def get_nowait(self):
raise queue.Empty()
q = DrainedQueue()
with session_events._SESSION_EVENTS_LOCK:
session_events._SESSION_EVENTS_SUBSCRIBERS.add(q)
try:
session_events.publish_session_list_changed("profile_b", profile="profile-b")
assert len(q.payloads) == 1
payload = q.payloads[0]
assert payload["type"] == "sessions_changed"
assert payload["reason"] == "profile_b"
assert payload["profile"] == "profile-b"
finally:
with session_events._SESSION_EVENTS_LOCK:
session_events._SESSION_EVENTS_SUBSCRIBERS.discard(q)
def test_session_events_payload_tracks_profile_when_available():
from api import session_events
q = session_events.subscribe_session_events()
try:
session_events.publish_session_list_changed("no_profile")
payload = q.get_nowait()
assert payload["type"] == "sessions_changed"
assert payload["reason"] == "no_profile"
assert "profile" not in payload
session_events.publish_session_list_changed("with_profile", profile="profile-b")
payload = q.get_nowait()
assert payload["type"] == "sessions_changed"
assert payload["reason"] == "with_profile"
assert payload["profile"] == "profile-b"
finally:
session_events.unsubscribe_session_events(q)
def test_session_events_payload_omits_profile_for_default_root_alias(monkeypatch):
from api import session_events
monkeypatch.setattr(session_events, "_profile_is_root_alias", lambda profile: profile == "kinni")
q = session_events.subscribe_session_events()
try:
session_events.publish_session_list_changed("renamed_root", profile="kinni")
payload = q.get_nowait()
assert payload["type"] == "sessions_changed"
assert payload["reason"] == "renamed_root"
assert "profile" not in payload
finally:
session_events.unsubscribe_session_events(q)