Files
codex/codex-rs/tui/tests/suite/status_indicator.rs
Ahmed Ibrahim 112bc1c39f model
2026-01-08 12:16:25 -08:00

40 lines
1.2 KiB
Rust
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//! Regression test: ensure that `StatusIndicatorWidget` sanitises ANSI escape
//! sequences so that no raw `\x1b` bytes are written into the backing
//! buffer. Rendering logic is tricky to unittest endtoend, therefore we
//! verify the *public* contract of `ansi_escape_line()` which the widget now
//! relies on.
use codex_ansi_escape::ansi_escape_line;
use codex_tui::test_support::entertainment_header_from_arc;
use pretty_assertions::assert_eq;
#[test]
fn ansi_escape_line_strips_escape_sequences() {
let text_in_ansi_red = "\x1b[31mRED\x1b[0m";
// The returned line must contain three printable glyphs and **no** raw
// escape bytes.
let line = ansi_escape_line(text_in_ansi_red);
let combined: String = line
.spans
.iter()
.map(|span| span.content.to_string())
.collect();
assert_eq!(combined, "RED");
}
#[test]
fn entertainment_arc_replaces_default_header() {
let header = entertainment_header_from_arc(vec![
"Starting deploy",
"Feeling optimistic",
"Waiting for logs",
"Still waiting",
"Ok still waiting",
]);
assert_eq!(header, "Starting deploy");
}