mirror of
https://github.com/nesquena/hermes-webui.git
synced 2026-05-24 18:50:15 +00:00
25 lines
1.1 KiB
Python
25 lines
1.1 KiB
Python
"""Regression tests for session id rotation URL sync."""
|
|
from pathlib import Path
|
|
|
|
REPO_ROOT = Path(__file__).parent.parent.resolve()
|
|
MESSAGES_JS = (REPO_ROOT / "static" / "messages.js").read_text(encoding="utf-8")
|
|
|
|
|
|
def test_stream_completion_syncs_rotated_session_id_to_tab_state():
|
|
"""When compact/restore returns a new session id, the tab anchor follows it."""
|
|
completion_marker = "S.session=d.session;S.messages=d.session.messages||[]"
|
|
settled_marker = "S.session=session;S.messages=(session.messages||[]).filter(m=>m&&m.role);"
|
|
|
|
completion_pos = MESSAGES_JS.find(completion_marker)
|
|
settled_pos = MESSAGES_JS.find(settled_marker)
|
|
assert completion_pos != -1
|
|
assert settled_pos != -1
|
|
|
|
completion_block = MESSAGES_JS[completion_pos : completion_pos + 500]
|
|
settled_block = MESSAGES_JS[settled_pos : settled_pos + 500]
|
|
|
|
for block in (completion_block, settled_block):
|
|
assert "localStorage.setItem('hermes-webui-session',S.session.session_id);" in block
|
|
assert "_setActiveSessionUrl(S.session.session_id)" in block
|
|
assert "typeof _setActiveSessionUrl==='function'" in block
|