Files
wehub-resource-sync 4b6817381b
Benchmark image — build + push to ECR (any adapter) / build + push (push) Waiting to run
CI / quality (ubuntu-latest) (push) Waiting to run
CI / test (tools-runtime) (push) Waiting to run
CI / test (e2e-general) (push) Waiting to run
CI / test (cli-runtime) (push) Waiting to run
CI / test (e2e-provider-and-openclaw) (push) Waiting to run
CI / test (integrations-and-misc) (push) Waiting to run
CI / coverage-report (push) Blocked by required conditions
CI / test-kubernetes (push) Waiting to run
CI / should-run-thorough (push) Waiting to run
CI / test-thorough (cloudwatch-demo) (push) Blocked by required conditions
CI / test-thorough (flink-ecs) (push) Blocked by required conditions
CI / test-thorough (upstream-lambda) (push) Blocked by required conditions
CI / test-thorough (prefect-ecs-fargate) (push) Blocked by required conditions
CodeQL / Analyze (python) (push) Waiting to run
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Blocked by required conditions
Release / publish-release (push) Blocked by required conditions
Release / publish-main-release (push) Blocked by required conditions
Release / prepare (push) Waiting to run
Release / verify (push) Blocked by required conditions
Release / build-python-dist (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Blocked by required conditions
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Blocked by required conditions
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Waiting to run
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Waiting to run
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:10:45 +08:00

111 lines
3.7 KiB
Python

"""Shell-session invariants: the ``Session`` subclass and its terminal/alerts facets.
Pins that the shell ``Session`` composes ``SessionCore`` plus the ``terminal`` and
``alerts`` facets, that each relocated field cluster lives on its facet, and that the
facet delegation (analytics staging, incoming-alert cap) behaves. Core-only invariants
live in ``tests/core/agent_harness/session/test_session_characterization.py``.
"""
from __future__ import annotations
import dataclasses
from core.agent_harness.session.persistence.memory import InMemorySessionStorage
from core.agent_harness.session.session_core import SessionCore
from core.domain.alerts.inbox import IncomingAlert
from surfaces.interactive_shell.session.session import Session
# Core fields are inherited from SessionCore; the shell adds these two facets.
_CORE_FIELD_COUNT = 19
_FACET_FIELDS = ("alerts", "terminal")
def _session() -> Session:
return Session(storage=InMemorySessionStorage())
def test_session_is_a_session_core_with_two_facets() -> None:
assert issubclass(Session, SessionCore)
field_names = {f.name for f in dataclasses.fields(Session)}
assert "terminal" in field_names
assert "alerts" in field_names
assert len(field_names) == _CORE_FIELD_COUNT + len(_FACET_FIELDS)
def test_alert_inbox_facet_holds_the_relocated_alert_state() -> None:
inbox = _session().alerts
assert hasattr(inbox, "entries") # was Session.incoming_alerts
assert hasattr(inbox, "_max") # was Session._INCOMING_ALERTS_MAX
def test_terminal_facet_holds_the_theme_cluster() -> None:
terminal = _session().terminal
for f in ("active_theme_name", "pending_theme_refresh", "trust_mode"):
assert hasattr(terminal, f)
def test_terminal_facet_holds_the_prompt_toolkit_cluster() -> None:
terminal = _session().terminal
for f in (
"prompt_history_backend",
"prompt_app",
"main_loop",
"prompt_refresh_fn",
"fleet_sampler_starter",
):
assert hasattr(terminal, f)
def test_terminal_facet_holds_the_pending_prompt_cluster() -> None:
terminal = _session().terminal
for f in (
"pending_prompt_default",
"pending_prompt_autosubmit",
"exclusive_stdin_active",
"agent_turn_executed_slashes",
):
assert hasattr(terminal, f)
def test_terminal_facet_holds_the_background_cluster() -> None:
terminal = _session().terminal
for f in (
"background_mode_enabled",
"background_investigations",
"background_notification_preferences",
"background_notices",
"_background_notices_lock",
):
assert hasattr(terminal, f)
def test_terminal_facet_holds_the_metrics_cluster() -> None:
terminal = _session().terminal
for f in ("metrics", "history_generation"):
assert hasattr(terminal, f)
def test_terminal_facet_holds_the_analytics_staging_cluster() -> None:
terminal = _session().terminal
for f in ("_turn_outcome_hint", "_pending_turn_llm", "_pending_turn_error"):
assert hasattr(terminal, f)
def test_analytics_staging_pop_methods_consume_exactly_once() -> None:
terminal = _session().terminal
terminal.set_turn_outcome_hint("handled")
assert terminal.pop_turn_outcome_hint() == "handled"
assert terminal.pop_turn_outcome_hint() is None
terminal.set_turn_outcome_hint(" ")
assert terminal.pop_turn_outcome_hint() is None
def test_incoming_alerts_are_capped_and_drop_oldest_first() -> None:
session = _session()
cap = session.alerts._max
for i in range(cap + 5):
session.record_incoming_alert(IncomingAlert(text=f"alert-{i}"))
assert len(session.alerts.entries) == cap
assert session.alerts.entries[0].text == "alert-5"
assert session.alerts.entries[-1].text == f"alert-{cap + 4}"