tui: replace debug/test-only crate features with debug_assertions

## Why

The remaining `vt100-tests` and `debug-logs` features in `codex-tui` were only selecting debug and test-only behavior. Those are exactly the cases where this repo already accepts `#[cfg(debug_assertions)]` as the Cargo-free substitute.

## What changed

- delete `vt100-tests` and `debug-logs` from `codex-tui`
- gate the VT100 integration tests with `debug_assertions` instead of a Cargo feature
- gate the textarea debug log site with `debug_assertions`
- shrink the manifest verifier allowlist again so only the remaining real feature exceptions stay permitted
This commit is contained in:
Michael Bolin
2026-04-01 12:09:22 -07:00
parent 9f0be146db
commit fa92b94d8a
6 changed files with 35 additions and 32 deletions

View File

@@ -32,8 +32,6 @@ MANIFEST_FEATURE_EXCEPTIONS = {
},
"codex-rs/tui/Cargo.toml": {
"default": ("voice-input",),
"vt100-tests": (),
"debug-logs": (),
"voice-input": ("dep:cpal",),
},
}

View File

@@ -19,10 +19,6 @@ path = "src/lib.rs"
[features]
default = ["voice-input"]
# Enable vt100-based tests (emulator) when running with `--features vt100-tests`.
vt100-tests = []
# Gate verbose debug logging inside the TUI implementation.
debug-logs = []
voice-input = ["dep:cpal"]
[lints]

View File

@@ -529,10 +529,7 @@ impl TextArea {
} => {
self.move_cursor_to_end_of_line(/*move_down_at_eol*/ true);
}
_o => {
#[cfg(feature = "debug-logs")]
tracing::debug!("Unhandled key event in TextArea: {:?}", _o);
}
_ => {}
}
}

View File

@@ -1,6 +1,5 @@
// Single integration test binary that aggregates all test modules.
// The submodules live in `tests/suite/`.
#[cfg(feature = "vt100-tests")]
mod test_backend;
#[allow(unused_imports)]

View File

@@ -1,4 +1,3 @@
#![cfg(feature = "vt100-tests")]
#![expect(clippy::expect_used)]
use crate::test_backend::VT100Backend;
@@ -44,8 +43,10 @@ impl TestScenario {
#[test]
fn basic_insertion_no_wrap() {
// Screen of 20x6; viewport is the last row (height=1 at y=5)
let area = Rect::new(0, 5, 20, 1);
let mut scenario = TestScenario::new(20, 6, area);
let area = Rect::new(
/*x*/ 0, /*y*/ 5, /*width*/ 20, /*height*/ 1,
);
let mut scenario = TestScenario::new(/*width*/ 20, /*height*/ 6, area);
let lines = vec!["first".into(), "second".into()];
scenario.run_insert(lines);
@@ -56,8 +57,10 @@ fn basic_insertion_no_wrap() {
#[test]
fn long_token_wraps() {
let area = Rect::new(0, 5, 20, 1);
let mut scenario = TestScenario::new(20, 6, area);
let area = Rect::new(
/*x*/ 0, /*y*/ 5, /*width*/ 20, /*height*/ 1,
);
let mut scenario = TestScenario::new(/*width*/ 20, /*height*/ 6, area);
let long = "A".repeat(45); // > 2 lines at width 20
let lines = vec![long.clone().into()];
@@ -86,8 +89,10 @@ fn long_token_wraps() {
#[test]
fn emoji_and_cjk() {
let area = Rect::new(0, 5, 20, 1);
let mut scenario = TestScenario::new(20, 6, area);
let area = Rect::new(
/*x*/ 0, /*y*/ 5, /*width*/ 20, /*height*/ 1,
);
let mut scenario = TestScenario::new(/*width*/ 20, /*height*/ 6, area);
let text = String::from("😀😀😀😀😀 你好世界");
let lines = vec![text.clone().into()];
@@ -103,8 +108,10 @@ fn emoji_and_cjk() {
#[test]
fn mixed_ansi_spans() {
let area = Rect::new(0, 5, 20, 1);
let mut scenario = TestScenario::new(20, 6, area);
let area = Rect::new(
/*x*/ 0, /*y*/ 5, /*width*/ 20, /*height*/ 1,
);
let mut scenario = TestScenario::new(/*width*/ 20, /*height*/ 6, area);
let line = vec!["red".red(), "+plain".into()].into();
scenario.run_insert(vec![line]);
@@ -114,8 +121,10 @@ fn mixed_ansi_spans() {
#[test]
fn cursor_restoration() {
let area = Rect::new(0, 5, 20, 1);
let mut scenario = TestScenario::new(20, 6, area);
let area = Rect::new(
/*x*/ 0, /*y*/ 5, /*width*/ 20, /*height*/ 1,
);
let mut scenario = TestScenario::new(/*width*/ 20, /*height*/ 6, area);
let lines = vec!["x".into()];
scenario.run_insert(lines);
@@ -125,8 +134,10 @@ fn cursor_restoration() {
#[test]
fn word_wrap_no_mid_word_split() {
// Screen of 40x10; viewport is the last row
let area = Rect::new(0, 9, 40, 1);
let mut scenario = TestScenario::new(40, 10, area);
let area = Rect::new(
/*x*/ 0, /*y*/ 9, /*width*/ 40, /*height*/ 1,
);
let mut scenario = TestScenario::new(/*width*/ 40, /*height*/ 10, area);
let sample = "Years passed, and Willowmere thrived in peace and friendship. Miras herb garden flourished with both ordinary and enchanted plants, and travelers spoke of the kindness of the woman who tended them.";
scenario.run_insert(vec![sample.into()]);
@@ -140,8 +151,10 @@ fn word_wrap_no_mid_word_split() {
#[test]
fn em_dash_and_space_word_wrap() {
// Repro from report: ensure we break before "inside", not mid-word.
let area = Rect::new(0, 9, 40, 1);
let mut scenario = TestScenario::new(40, 10, area);
let area = Rect::new(
/*x*/ 0, /*y*/ 9, /*width*/ 40, /*height*/ 1,
);
let mut scenario = TestScenario::new(/*width*/ 40, /*height*/ 10, area);
let sample = "Mara found an old key on the shore. Curious, she opened a tarnished box half-buried in sand—and inside lay a single, glowing seed.";
scenario.run_insert(vec![sample.into()]);

View File

@@ -1,21 +1,21 @@
#![cfg(feature = "vt100-tests")]
use crate::test_backend::VT100Backend;
use ratatui::layout::Rect;
use ratatui::text::Line;
#[test]
fn live_001_commit_on_overflow() {
let backend = VT100Backend::new(20, 6);
let backend = VT100Backend::new(/*width*/ 20, /*height*/ 6);
let mut term = match codex_tui::custom_terminal::Terminal::with_options(backend) {
Ok(t) => t,
Err(e) => panic!("failed to construct terminal: {e}"),
};
let area = Rect::new(0, 5, 20, 1);
let area = Rect::new(
/*x*/ 0, /*y*/ 5, /*width*/ 20, /*height*/ 1,
);
term.set_viewport_area(area);
// Build 5 explicit rows at width 20.
let mut rb = codex_tui::live_wrap::RowBuilder::new(20);
let mut rb = codex_tui::live_wrap::RowBuilder::new(/*target_width*/ 20);
rb.push_fragment("one\n");
rb.push_fragment("two\n");
rb.push_fragment("three\n");
@@ -23,7 +23,7 @@ fn live_001_commit_on_overflow() {
rb.push_fragment("five\n");
// Keep the last 3 in the live ring; commit the first 2.
let commit_rows = rb.drain_commit_ready(3);
let commit_rows = rb.drain_commit_ready(/*max_keep*/ 3);
let lines: Vec<Line<'static>> = commit_rows.into_iter().map(|r| r.text.into()).collect();
codex_tui::insert_history::insert_history_lines(&mut term, lines)