mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-15 14:22:43 +00:00
152 lines
5.5 KiB
Python
152 lines
5.5 KiB
Python
"""Async SessionStore boundary for gateway event-loop safety."""
|
|
|
|
import ast
|
|
import asyncio
|
|
import threading
|
|
from pathlib import Path
|
|
|
|
import pytest
|
|
|
|
from gateway.session import AsyncSessionStore
|
|
|
|
|
|
class _SpyStore:
|
|
def __init__(self) -> None:
|
|
self.calls: list[tuple[str, int]] = []
|
|
self.label = "store"
|
|
|
|
def read(self, value: str) -> str:
|
|
self.calls.append((value, threading.get_ident()))
|
|
return value
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_async_session_store_offloads_calls() -> None:
|
|
store = _SpyStore()
|
|
facade = AsyncSessionStore(store) # type: ignore[arg-type]
|
|
loop_thread = threading.get_ident()
|
|
|
|
assert await facade.read("ok") == "ok"
|
|
assert store.calls == [("ok", store.calls[0][1])]
|
|
assert store.calls[0][1] != loop_thread
|
|
assert facade.label == "store"
|
|
assert facade._store is store
|
|
|
|
|
|
def _nearest_function(node: ast.AST, parents: dict[ast.AST, ast.AST]):
|
|
current = node
|
|
while current in parents:
|
|
current = parents[current]
|
|
if isinstance(current, (ast.FunctionDef, ast.AsyncFunctionDef)):
|
|
return current
|
|
return None
|
|
|
|
|
|
def _is_awaited(node: ast.AST, parents: dict[ast.AST, ast.AST]) -> bool:
|
|
current = node
|
|
while current in parents:
|
|
current = parents[current]
|
|
if isinstance(current, ast.Await):
|
|
return True
|
|
if isinstance(current, (ast.FunctionDef, ast.AsyncFunctionDef)):
|
|
return False
|
|
return False
|
|
|
|
|
|
def test_gateway_async_code_uses_one_awaited_session_store_boundary() -> None:
|
|
"""Loop-side store calls must use the facade; raw store remains sync-only."""
|
|
root = Path(__file__).resolve().parents[2]
|
|
violations: list[str] = []
|
|
for rel in ("gateway/run.py", "gateway/slash_commands.py"):
|
|
tree = ast.parse((root / rel).read_text(encoding="utf-8"))
|
|
parents = {
|
|
child: parent
|
|
for parent in ast.walk(tree)
|
|
for child in ast.iter_child_nodes(parent)
|
|
}
|
|
for owner in (node for node in ast.walk(tree) if isinstance(node, ast.AsyncFunctionDef)):
|
|
raw_aliases = {
|
|
target.id
|
|
for node in ast.walk(owner)
|
|
if isinstance(node, ast.Assign)
|
|
and isinstance(node.value, ast.Attribute)
|
|
and isinstance(node.value.value, ast.Name)
|
|
and node.value.value.id in {"self", "_self"}
|
|
and node.value.attr == "session_store"
|
|
for target in node.targets
|
|
if isinstance(target, ast.Name)
|
|
}
|
|
for node in ast.walk(owner):
|
|
if not isinstance(node, ast.Call) or not isinstance(node.func, ast.Attribute):
|
|
continue
|
|
if _nearest_function(node, parents) is not owner:
|
|
# A nested sync helper (for example run_sync) executes off-loop.
|
|
continue
|
|
receiver = node.func.value
|
|
if isinstance(receiver, ast.Name) and receiver.id in raw_aliases:
|
|
violations.append(
|
|
f"{rel}:{node.lineno} raw alias {receiver.id}.{node.func.attr}() in async {owner.name}"
|
|
)
|
|
continue
|
|
if not (
|
|
isinstance(receiver, ast.Attribute)
|
|
and isinstance(receiver.value, ast.Name)
|
|
and receiver.value.id in {"self", "_self"}
|
|
):
|
|
continue
|
|
if receiver.attr == "session_store":
|
|
violations.append(
|
|
f"{rel}:{node.lineno} raw session_store.{node.func.attr}() in async {owner.name}"
|
|
)
|
|
elif receiver.attr == "async_session_store" and not _is_awaited(
|
|
node, parents
|
|
):
|
|
violations.append(
|
|
f"{rel}:{node.lineno} unawaited async_session_store.{node.func.attr}()"
|
|
)
|
|
assert not violations, "\n".join(violations)
|
|
|
|
|
|
def test_every_async_compression_check_is_awaited() -> None:
|
|
root = Path(__file__).resolve().parents[2]
|
|
tree = ast.parse((root / "gateway/run.py").read_text(encoding="utf-8"))
|
|
parents = {
|
|
child: parent
|
|
for parent in ast.walk(tree)
|
|
for child in ast.iter_child_nodes(parent)
|
|
}
|
|
violations = []
|
|
for node in ast.walk(tree):
|
|
if (
|
|
isinstance(node, ast.Call)
|
|
and isinstance(node.func, ast.Attribute)
|
|
and node.func.attr == "_session_has_compression_in_flight"
|
|
and not _is_awaited(node, parents)
|
|
):
|
|
violations.append(node.lineno)
|
|
assert not violations, f"compression check must be awaited at lines {violations}"
|
|
|
|
|
|
def test_gateway_initializes_async_session_store_facade() -> None:
|
|
source = (Path(__file__).resolve().parents[2] / "gateway/run.py").read_text(
|
|
encoding="utf-8"
|
|
)
|
|
tree = ast.parse(source)
|
|
assignments = [
|
|
node
|
|
for node in ast.walk(tree)
|
|
if isinstance(node, ast.Assign)
|
|
and any(
|
|
isinstance(target, ast.Attribute)
|
|
and isinstance(target.value, ast.Name)
|
|
and target.value.id == "self"
|
|
and target.attr == "_async_session_store"
|
|
for target in node.targets
|
|
)
|
|
]
|
|
assert assignments, "GatewayRunner must initialize one AsyncSessionStore facade"
|
|
|
|
|
|
def test_no_repository_local_claude_permissions_file() -> None:
|
|
root = Path(__file__).resolve().parents[2]
|
|
assert not (root / ".claude" / "settings.json").exists()
|