fix: integration test for #9011 (#9166)

Adds an integration test for the new behavior introduced in
https://github.com/openai/codex/pull/9011. The work to create the test
setup was substantial enough that I thought it merited a separate PR.

This integration test spawns `codex` in TUI mode, which requires
spawning a PTY to run successfully, so I had to introduce quite a bit of
scaffolding in `run_codex_cli()`. I was surprised to discover that we
have not done this in our codebase before, so perhaps this should get
moved to a common location so it can be reused.

The test itself verifies that a malformed `rules` in `$CODEX_HOME`
prints a human-readable error message and exits nonzero.
This commit is contained in:
Michael Bolin
2026-01-13 15:39:34 -08:00
committed by GitHub
parent 2cd1a0a45e
commit 4c673086bc
12 changed files with 265 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
// Aggregates all former standalone integration tests as modules.
mod no_panic_on_startup;
mod status_indicator;
mod vt100_history;
mod vt100_live_commit;