nousresearch--hermes-agent
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
26 行
1.2 KiB
Python
26 行
1.2 KiB
Python
import re
|
|
from pathlib import Path
|
|
|
|
CHAT_SIDEBAR = Path(__file__).resolve().parent.parent / "web/src/components/ChatSidebar.tsx"
|
|
|
|
|
|
def test_sidecar_session_create_requests_close_on_disconnect():
|
|
"""The sidecar must opt its session into close_on_disconnect so the gateway
|
|
reaps the slash_worker on WS disconnect (the #21370/#21467 leak)."""
|
|
source = CHAT_SIDEBAR.read_text(encoding="utf-8")
|
|
call = re.search(r'"session\.create",\s*\{(.*?)\}', source, re.DOTALL)
|
|
assert call, "sidecar session.create call not found"
|
|
assert re.search(r"close_on_disconnect:\s*true", call.group(1))
|
|
|
|
|
|
def test_sidecar_session_create_scopes_profile():
|
|
"""The sidecar must pass the dashboard's selected profile so model/credential
|
|
info matches the PTY child under profile-scoped chat."""
|
|
source = CHAT_SIDEBAR.read_text(encoding="utf-8")
|
|
call = re.search(r'"session\.create",\s*\{(.*?)\}\);', source, re.DOTALL)
|
|
assert call, "sidecar session.create call not found"
|
|
body = call.group(1)
|
|
assert re.search(r"close_on_disconnect:\s*true", body)
|
|
assert re.search(r'source:\s*"tool"', body)
|
|
assert re.search(r"\.\.\.\(profile\s*\?\s*\{\s*profile\s*\}\s*:\s*\{\}\)", body)
|