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
39 lines
1.1 KiB
Python
39 lines
1.1 KiB
Python
"""Behavior contracts for /journey output routing.
|
|
|
|
The interactive CLI captures Rich output and re-renders it through
|
|
prompt_toolkit, so it needs forced ANSI (``--force-color``); chat surfaces
|
|
render plain text, so the default captured path must stay escape-free.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import argparse
|
|
import contextlib
|
|
import io
|
|
|
|
|
|
def _capture(argv: list[str], *, force: bool) -> str:
|
|
from hermes_cli.journey import register_cli
|
|
|
|
parser = argparse.ArgumentParser(add_help=False)
|
|
register_cli(parser)
|
|
args = parser.parse_args(argv)
|
|
if force:
|
|
args.force_color = True
|
|
|
|
buf = io.StringIO()
|
|
with contextlib.redirect_stdout(buf):
|
|
args.func(args)
|
|
return buf.getvalue()
|
|
|
|
|
|
def test_force_color_emits_ansi_for_reemission():
|
|
assert "\x1b[" in _capture([], force=True)
|
|
assert "\x1b[" in _capture(["list"], force=True)
|
|
|
|
|
|
def test_default_capture_is_plain_for_chat_bubbles():
|
|
# Rich auto-detects the StringIO as non-tty → no color, no raw escapes.
|
|
assert "\x1b[" not in _capture([], force=False)
|
|
assert "\x1b[" not in _capture(["list"], force=False)
|