1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-26 16:34:23 +03:00

finish test

This commit is contained in:
Thomas Linford 2023-01-24 15:38:12 +01:00 committed by Wez Furlong
parent ad8c393fbb
commit aadc8224e9

View File

@ -2033,13 +2033,28 @@ mod test {
}
#[test]
fn mouse_event() {
fn mouse_horizontal_scroll() {
let mut p = InputParser::new();
let input = b"\x1b[<67;41;12M";
let mut inputs = vec![];
p.parse(input, |e| inputs.push(e), false);
let input = b"\x1b[<66;42;12M\x1b[<67;42;12M";
let res = p.parse_as_vec(input);
println!("{:?}", inputs);
assert_eq!(
vec![
InputEvent::Mouse(MouseEvent {
x: 42,
y: 12,
mouse_buttons: MouseButtons::HORZ_WHEEL | MouseButtons::WHEEL_POSITIVE,
modifiers: Modifiers::NONE,
}),
InputEvent::Mouse(MouseEvent {
x: 42,
y: 12,
mouse_buttons: MouseButtons::HORZ_WHEEL,
modifiers: Modifiers::NONE,
})
],
res
);
}
}