use tui_textarea::{Input, Key, TextArea};
#[test]
fn test_input_all_combinations_sanity() {
use Key::*;
fn push_all_modifiers_combination(inputs: &mut Vec<Input>, key: Key) {
for ctrl in [true, false] {
for alt in [true, false] {
for shift in [true, false] {
inputs.push(Input {
key,
ctrl,
alt,
shift,
});
}
}
}
}
let mut inputs = vec![];
for c in ' '..='~' {
push_all_modifiers_combination(&mut inputs, Char(c));
}
for i in 0..=15 {
push_all_modifiers_combination(&mut inputs, F(i));
}
for k in [
Null,
Char('ใ'),
Char('๐ถ'),
Backspace,
Enter,
Left,
Right,
Up,
Down,
Tab,
Delete,
Home,
End,
PageUp,
PageDown,
Esc,
MouseScrollDown,
MouseScrollUp,
Copy,
Cut,
Paste,
] {
push_all_modifiers_combination(&mut inputs, k);
}
let mut t = TextArea::from(["abc", "def", "ghi", "jkl", "mno", "pqr"]);
for input in inputs {
t.input(input.clone());
t.undo();
t.redo();
t.input_without_shortcuts(input);
t.undo();
t.redo();
}
}
#[test]
fn test_insert_multi_code_unit_emoji() {
let mut t = TextArea::default();
for c in "๐จโ๐ฉโ๐งโ๐ฆ".chars() {
let input = Input {
key: Key::Char(c),
ctrl: false,
alt: false,
shift: false,
};
assert!(t.input(input), "{c:?}");
}
assert_eq!(t.lines(), ["๐จโ๐ฉโ๐งโ๐ฆ"]);
}