mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
2cfe82a47e
- Simplify `assert_buffer_eq!` logic. - Deprecate `assert_buffer_eq!`. - Introduce `TestBackend::assert_buffer_lines`. Also simplify many tests involving buffer comparisons. For the deprecation, just use `assert_eq` instead of `assert_buffer_eq`: ```diff -assert_buffer_eq!(actual, expected); +assert_eq!(actual, expected); ``` --- I noticed `assert_buffer_eq!` creating no test coverage reports and looked into this macro. First I simplified it. Then I noticed a bunch of `assert_eq!(buffer, …)` and other indirect usages of this macro (like `TestBackend::assert_buffer`). The good thing here is that it's mainly used in tests so not many changes to the library code.
53 lines
1.4 KiB
Rust
53 lines
1.4 KiB
Rust
use ratatui::{
|
|
backend::TestBackend,
|
|
buffer::Buffer,
|
|
layout::Rect,
|
|
style::{Style, Stylize},
|
|
symbols,
|
|
widgets::Tabs,
|
|
Terminal,
|
|
};
|
|
|
|
#[test]
|
|
fn widgets_tabs_should_not_panic_on_narrow_areas() {
|
|
let backend = TestBackend::new(1, 1);
|
|
let mut terminal = Terminal::new(backend).unwrap();
|
|
terminal
|
|
.draw(|f| {
|
|
let tabs = Tabs::new(["Tab1", "Tab2"]);
|
|
f.render_widget(
|
|
tabs,
|
|
Rect {
|
|
x: 0,
|
|
y: 0,
|
|
width: 1,
|
|
height: 1,
|
|
},
|
|
);
|
|
})
|
|
.unwrap();
|
|
terminal.backend().assert_buffer_lines([" "]);
|
|
}
|
|
|
|
#[test]
|
|
fn widgets_tabs_should_truncate_the_last_item() {
|
|
let backend = TestBackend::new(10, 1);
|
|
let mut terminal = Terminal::new(backend).unwrap();
|
|
terminal
|
|
.draw(|f| {
|
|
let tabs = Tabs::new(["Tab1", "Tab2"]);
|
|
f.render_widget(
|
|
tabs,
|
|
Rect {
|
|
x: 0,
|
|
y: 0,
|
|
width: 9,
|
|
height: 1,
|
|
},
|
|
);
|
|
})
|
|
.unwrap();
|
|
let mut expected = Buffer::with_lines([format!(" Tab1 {} T ", symbols::line::VERTICAL)]);
|
|
expected.set_style(Rect::new(1, 0, 4, 1), Style::new().reversed());
|
|
terminal.backend().assert_buffer(&expected);
|
|
}
|