d73ff9b0fb
Deploy Site / deploy-vercel (push) Has been cancelled
Deploy Site / deploy-docs (push) Has been cancelled
Docker / shell lint / Lint Dockerfile (hadolint) (push) Has been cancelled
Docker / shell lint / Lint docker/ shell scripts (shellcheck) (push) Has been cancelled
Docker Build and Publish / build-amd64 (push) Has been cancelled
Docker Build and Publish / build-arm64 (push) Has been cancelled
Lint (ruff + ty) / ruff + ty diff (push) Has been cancelled
Lint (ruff + ty) / ruff enforcement (blocking) (push) Has been cancelled
Lint (ruff + ty) / Windows footguns (blocking) (push) Has been cancelled
Nix Lockfile Fix / auto-fix-main (push) Has been cancelled
Nix Lockfile Fix / fix (push) Has been cancelled
Nix / nix (macos-latest) (push) Has been cancelled
Nix / nix (ubuntu-latest) (push) Has been cancelled
OSV-Scanner / Scan lockfiles (push) Has been cancelled
Build Skills Index / build-index (push) Has been cancelled
Tests / test (1) (push) Has been cancelled
Tests / test (2) (push) Has been cancelled
Tests / test (3) (push) Has been cancelled
Tests / test (4) (push) Has been cancelled
Tests / test (5) (push) Has been cancelled
Tests / test (6) (push) Has been cancelled
Tests / e2e (push) Has been cancelled
uv.lock check / uv lock --check (push) Has been cancelled
Docker Build and Publish / merge (push) Has been cancelled
Build Skills Index / trigger-deploy (push) Has been cancelled
Tests / save-durations (push) Has been cancelled
50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
"""Regression tests for terminal navigation/focus escape sequences.
|
|
|
|
Ghostty/macOS window and tab navigation can deliver terminal focus reports
|
|
(CSI I / CSI O) to the running TUI. These must be consumed by the input parser,
|
|
not inserted into the prompt buffer and cleaned up later.
|
|
"""
|
|
|
|
from prompt_toolkit.input.vt100_parser import Vt100Parser
|
|
from prompt_toolkit.keys import Keys
|
|
|
|
from hermes_cli.pt_input_extras import install_ignored_terminal_sequences
|
|
|
|
|
|
def _parse_keys(data: str):
|
|
events = []
|
|
parser = Vt100Parser(events.append)
|
|
parser.feed_and_flush(data)
|
|
return [(event.key, event.data) for event in events]
|
|
|
|
|
|
def test_focus_events_are_parser_level_ignored_before_prompt_buffer():
|
|
install_ignored_terminal_sequences()
|
|
|
|
assert _parse_keys("\x1b[O\x1b[Ihello") == [
|
|
(Keys.Ignore, "\x1b[O"),
|
|
(Keys.Ignore, "\x1b[I"),
|
|
("h", "h"),
|
|
("e", "e"),
|
|
("l", "l"),
|
|
("l", "l"),
|
|
("o", "o"),
|
|
]
|
|
|
|
|
|
def test_regular_escape_shortcuts_still_parse_normally():
|
|
install_ignored_terminal_sequences()
|
|
|
|
assert _parse_keys("\x1bg") == [(Keys.Escape, "\x1b"), ("g", "g")]
|
|
|
|
|
|
def test_install_is_idempotent_and_setdefault_safe():
|
|
"""Second call should return 0 (no new mappings); existing user
|
|
registrations must not be overwritten."""
|
|
first = install_ignored_terminal_sequences()
|
|
second = install_ignored_terminal_sequences()
|
|
# At most first should be 2 (both CSI I + CSI O), second always 0
|
|
# since the entries are now present.
|
|
assert second == 0
|
|
assert first in (0, 1, 2) # 0 if a prior test in same process already installed
|