1
0
зеркало из https://github.com/glebtv/tui-textarea.git synced 2026-08-28 11:36:17 +03:00
Files
tui-textarea/tests/measure.rs
srothgan f20df6b965 feat: set lines measure cache (#16)
* feat(textarea): add bulk replace API and transparent measure() caching

- add TextArea::set_lines(lines, cursor) for direct whole-buffer replacement
- preserve widget configuration while resetting history, selection, highlights, viewport scroll, and cached measurement state
- cache measure(width_cols) results by outer width and reuse them until dependencies change
- invalidate cached measurement on content edits, undo/redo, and measure-affecting setters
- add focused tests for set_lines behavior and cache correctness

* chore(release): bump to v0.10.2 and refresh docs

- prepare the v0.10.2 release with updated crate version and changelog entry
- refresh README coverage for fork-added APIs including wrapping, measurement, bulk replace, and custom highlights
2026-03-13 20:58:29 +10:00

225 строки
6.6 KiB
Rust

use ratatui::layout::Alignment;
use ratatui::style::Style;
use ratatui::widgets::{Block, Borders};
use tui_textarea::{TextArea, TextAreaMeasure, WrapMode};
#[test]
fn measure_without_wrap_uses_logical_line_count() {
let mut textarea = TextArea::from(["hello", "world"]);
let have = textarea.measure(20);
let want = TextAreaMeasure {
content_rows: 2,
preferred_rows: 2,
min_rows: 1,
max_rows: u16::MAX,
};
assert_eq!(have, want);
}
#[test]
fn measure_with_wrap_counts_visual_rows() {
let mut textarea = TextArea::from(["abcdef"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
let have = textarea.measure(5);
assert_eq!(have.content_rows, 2);
assert_eq!(have.preferred_rows, 2);
assert_eq!(have.min_rows, 1);
}
#[test]
fn measure_accounts_for_line_number_width_when_wrapping() {
let mut textarea = TextArea::from(["abcdefg"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
assert_eq!(textarea.measure(8).content_rows, 1);
textarea.set_line_number_style(Style::default());
assert_eq!(textarea.measure(8).content_rows, 2);
}
#[test]
fn measure_adds_block_chrome_rows_to_preferred_and_min() {
let mut textarea = TextArea::from(["line"]);
textarea.set_block(Block::default().borders(Borders::ALL));
let have = textarea.measure(12);
assert_eq!(have.content_rows, 1);
assert_eq!(have.preferred_rows, 3);
assert_eq!(have.min_rows, 3);
assert_eq!(have.max_rows, u16::MAX);
}
#[test]
fn measure_wraps_even_at_zero_width() {
let mut textarea = TextArea::from(["ab"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
let have = textarea.measure(0);
assert_eq!(have.content_rows, 2);
assert_eq!(have.preferred_rows, 2);
}
#[test]
fn measure_respects_configured_min_rows() {
let mut textarea = TextArea::from(["line"]);
textarea.set_min_rows(4);
let have = textarea.measure(12);
assert_eq!(have.content_rows, 1);
assert_eq!(have.preferred_rows, 4);
assert_eq!(have.min_rows, 4);
assert_eq!(have.max_rows, u16::MAX);
}
#[test]
fn measure_respects_configured_max_rows() {
let mut textarea: TextArea<'_> = (0..10).map(|n| n.to_string()).collect();
textarea.set_max_rows(3);
let have = textarea.measure(12);
assert_eq!(have.content_rows, 10);
assert_eq!(have.preferred_rows, 3);
assert_eq!(have.min_rows, 1);
assert_eq!(have.max_rows, 3);
}
#[test]
fn min_max_rows_setters_normalize_and_keep_order() {
let mut textarea = TextArea::default();
textarea.set_max_rows(0);
assert_eq!(textarea.max_rows(), 1);
textarea.set_min_rows(5);
assert_eq!(textarea.min_rows(), 5);
assert_eq!(textarea.max_rows(), 5);
}
#[test]
fn block_intrinsic_min_rows_overrides_configured_bounds() {
let mut textarea = TextArea::from(["line"]);
textarea.set_block(Block::default().borders(Borders::ALL));
textarea.set_min_rows(1);
textarea.set_max_rows(2);
let have = textarea.measure(12);
assert_eq!(have.preferred_rows, 3);
assert_eq!(have.min_rows, 3);
assert_eq!(have.max_rows, 3);
}
#[test]
fn repeated_measure_at_same_width_returns_same_result() {
let mut textarea = TextArea::from(["abcdef"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
let first = textarea.measure(4);
let second = textarea.measure(4);
assert_eq!(first, second);
}
#[test]
fn measuring_at_a_different_width_recomputes() {
let mut textarea = TextArea::from(["abcdef"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
assert_eq!(textarea.measure(4).content_rows, 2);
assert_eq!(textarea.measure(8).content_rows, 1);
}
#[test]
fn content_insertion_invalidates_measure_cache() {
let mut textarea = TextArea::from([""]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
assert_eq!(textarea.measure(4).content_rows, 1);
assert!(textarea.insert_str("abcdef"));
assert_eq!(textarea.measure(4).content_rows, 2);
}
#[test]
fn undo_and_redo_invalidate_measure_cache() {
let mut textarea = TextArea::from([""]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
textarea.measure(4);
assert!(textarea.insert_str("abcdef"));
assert_eq!(textarea.measure(4).content_rows, 2);
assert!(textarea.undo());
assert_eq!(textarea.measure(4).content_rows, 1);
assert!(textarea.redo());
assert_eq!(textarea.measure(4).content_rows, 2);
}
#[test]
fn set_wrap_mode_invalidates_measure_cache() {
let mut textarea = TextArea::from(["abcdef"]);
assert_eq!(textarea.measure(4).content_rows, 1);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
assert_eq!(textarea.measure(4).content_rows, 2);
}
#[test]
fn set_line_number_style_invalidates_measure_cache() {
let mut textarea = TextArea::from(["abcdefg"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
assert_eq!(textarea.measure(8).content_rows, 1);
textarea.set_line_number_style(Style::default());
assert_eq!(textarea.measure(8).content_rows, 2);
}
#[test]
fn set_block_and_remove_block_invalidate_measure_cache() {
let mut textarea = TextArea::from(["line"]);
assert_eq!(textarea.measure(12).preferred_rows, 1);
textarea.set_block(Block::default().borders(Borders::ALL));
assert_eq!(textarea.measure(12).preferred_rows, 3);
textarea.remove_block();
assert_eq!(textarea.measure(12).preferred_rows, 1);
}
#[test]
fn min_and_max_row_setters_invalidate_measure_cache() {
let mut textarea = TextArea::from(["line"]);
assert_eq!(textarea.measure(12).preferred_rows, 1);
textarea.set_min_rows(4);
let min_measured = textarea.measure(12);
assert_eq!(min_measured.preferred_rows, 4);
assert_eq!(min_measured.min_rows, 4);
let mut textarea: TextArea<'_> = (0..10).map(|n| n.to_string()).collect();
textarea.measure(12);
textarea.set_max_rows(2);
let max_measured = textarea.measure(12);
assert_eq!(max_measured.preferred_rows, 2);
assert_eq!(max_measured.max_rows, 2);
}
#[test]
fn set_alignment_invalidates_when_it_disables_line_numbers() {
let mut textarea = TextArea::from(["abcdefg"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
textarea.set_line_number_style(Style::default());
assert_eq!(textarea.measure(8).content_rows, 2);
textarea.set_alignment(Alignment::Right);
assert_eq!(textarea.measure(8).content_rows, 1);
}
#[test]
fn set_lines_updates_measurement_immediately() {
let mut textarea = TextArea::from(["line"]);
textarea.set_wrap_mode(WrapMode::WordOrGlyph);
assert_eq!(textarea.measure(4).content_rows, 1);
textarea.set_lines(vec!["abcdef".to_string()], (0, 6));
assert_eq!(textarea.measure(4).content_rows, 2);
}