You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
mulit-agent/mulit_agent/tests/test_controller_session.py

76 lines
2.9 KiB

import pytest
from mulit_agent_app.config import AgentConfig
from mulit_agent_app.infrastructure.controller_session import ControllerSession
def test_https_address_is_converted_to_wss():
assert ControllerSession._websocket_url("https://192.168.1.10:8443") == "wss://192.168.1.10:8443"
def test_insecure_address_is_rejected():
with pytest.raises(ValueError):
ControllerSession._websocket_url("http://192.168.1.10:8443")
def test_current_socket_close_schedules_a_reconnect(tmp_path):
config = AgentConfig(
tmp_path,
tmp_path / "settings.json",
tmp_path / "agent.sqlite3",
tmp_path / "agent.log",
controller_url="wss://10.0.0.9:8443",
agent_id="agent-id",
certificate_fingerprint="fingerprint",
)
session = ControllerSession(config, object()) # type: ignore[arg-type]
socket = object()
scheduled: list[bool] = []
session._socket = socket # type: ignore[assignment]
session._schedule_reconnect = lambda: scheduled.append(True) # type: ignore[method-assign]
session._on_close(socket, None, None) # type: ignore[arg-type]
assert scheduled == [True]
def test_replaced_socket_close_does_not_schedule_an_extra_reconnect(tmp_path):
config = AgentConfig(tmp_path, tmp_path / "settings.json", tmp_path / "agent.sqlite3", tmp_path / "agent.log")
session = ControllerSession(config, object()) # type: ignore[arg-type]
scheduled: list[bool] = []
session._socket = object() # type: ignore[assignment]
session._schedule_reconnect = lambda: scheduled.append(True) # type: ignore[method-assign]
session._on_close(object(), None, None) # type: ignore[arg-type]
assert scheduled == []
def test_conversation_history_is_validated_and_kept_in_order():
history = ControllerSession._validated_history(
[
{"role": "user", "content": "下载到 D:\\demo"},
{"role": "assistant", "content": "已下载到 D:\\demo\\a.zip"},
{"role": "system", "content": "不该被接受"},
{"role": "assistant", "content": " "},
"not-a-mapping",
]
)
assert history == (("user", "下载到 D:\\demo"), ("assistant", "已下载到 D:\\demo\\a.zip"))
def test_conversation_history_is_bounded_by_budget_and_drops_the_oldest_turns():
entries = [{"role": "user", "content": "x" * 4_000}, {"role": "assistant", "content": "y" * 4_000}] * 10
history = ControllerSession._validated_history(entries)
assert history, "至少应保留最近的一轮"
assert len(history) * 4_000 <= 60_000
assert history[-1][1].startswith("y"), "保留的应是最新的轮次"
def test_malformed_history_never_raises():
assert ControllerSession._validated_history(None) == ()
assert ControllerSession._validated_history({"role": "user"}) == ()
assert ControllerSession._validated_history([{"role": "user", "content": 42}]) == ()