agent-zero/plugins/_a0_acp/tests/test_session.py
Alessandro add781d3b3
Some checks failed
Build And Publish Docker Images / plan (push) Has been cancelled
Build And Publish Docker Images / build (push) Has been cancelled
Bundle Agent Zero ACP
Ship the built-in ACP session bridge with an editor-hosted A0 CLI transport and a startup migration that removes retired a0_acp installations and scoped overrides.
2026-08-16 19:25:05 +02:00

19 lines
565 B
Python

from datetime import datetime, timezone
from plugins._a0_acp.api.session import _session_payload
class _Context:
id = "ctx-acp"
name = "ACP"
created_at = datetime(2026, 8, 16, tzinfo=timezone.utc)
last_message = datetime(2026, 8, 16, 12, 34, tzinfo=timezone.utc)
def get_data(self, key: str):
return {"acp_cwd": "/workspace", "acp_mode": "default"}.get(key)
def test_session_payload_serializes_datetime_metadata() -> None:
payload = _session_payload(_Context())
assert payload["updated_at"] == "2026-08-16T12:34:00+00:00"