mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-01-01 00:00:09 +01:00
test: add test cases for 2/3 finger movement after drag-lock
Same as after a tap, just with a short drag between tap and 2/3 finger movement. Also fixes a finger coord typo in one of the previously added test cases. Signed-off-by: satrmb <10471-satrmb@users.noreply.gitlab.freedesktop.org>
This commit is contained in:
parent
115a8ff141
commit
dc936707a9
1 changed files with 194 additions and 1 deletions
|
|
@ -1745,7 +1745,7 @@ START_TEST(touchpad_tap_n_drag_2fg_scroll)
|
|||
litest_touch_down(dev, 0, 50, 50);
|
||||
litest_touch_down(dev, 1, 70, 50);
|
||||
libinput_dispatch(li);
|
||||
litest_touch_move_two_touches(dev, 50, 50, 70, 40, 0, 20, 10);
|
||||
litest_touch_move_two_touches(dev, 50, 50, 70, 50, 0, 20, 10);
|
||||
libinput_dispatch(li);
|
||||
litest_touch_up(dev, 0);
|
||||
litest_touch_up(dev, 1);
|
||||
|
|
@ -1762,6 +1762,96 @@ START_TEST(touchpad_tap_n_drag_2fg_scroll)
|
|||
}
|
||||
END_TEST
|
||||
|
||||
START_TEST(touchpad_tap_n_drag_draglock_2fg_scroll)
|
||||
{
|
||||
/* Test: tap with 1-3 fingers, trigger drag-lock,
|
||||
* then immediate 2fg scroll.
|
||||
* We expect this to be a tap-and-drag followed by a scroll.
|
||||
*/
|
||||
struct litest_device *dev = litest_current_device();
|
||||
struct libinput *li = dev->libinput;
|
||||
int nfingers = _i; /* ranged test */
|
||||
unsigned int button = 0;
|
||||
|
||||
if (nfingers > litest_slot_count(dev))
|
||||
return;
|
||||
|
||||
litest_enable_2fg_scroll(dev);
|
||||
litest_enable_tap(dev->libinput_device);
|
||||
litest_enable_drag_lock(dev->libinput_device);
|
||||
|
||||
switch (nfingers) {
|
||||
case 1:
|
||||
button = BTN_LEFT;
|
||||
break;
|
||||
case 2:
|
||||
button = BTN_RIGHT;
|
||||
break;
|
||||
case 3:
|
||||
button = BTN_MIDDLE;
|
||||
break;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
||||
litest_drain_events(li);
|
||||
|
||||
switch (nfingers) {
|
||||
case 3:
|
||||
litest_touch_down(dev, 2, 60, 30);
|
||||
/* fallthrough */
|
||||
case 2:
|
||||
litest_touch_down(dev, 1, 50, 30);
|
||||
/* fallthrough */
|
||||
case 1:
|
||||
litest_touch_down(dev, 0, 40, 30);
|
||||
/* fallthrough */
|
||||
break;
|
||||
}
|
||||
switch (nfingers) {
|
||||
case 3:
|
||||
litest_touch_up(dev, 2);
|
||||
/* fallthrough */
|
||||
case 2:
|
||||
litest_touch_up(dev, 1);
|
||||
/* fallthrough */
|
||||
case 1:
|
||||
litest_touch_up(dev, 0);
|
||||
/* fallthrough */
|
||||
break;
|
||||
}
|
||||
|
||||
/* Drag with one finger */
|
||||
litest_touch_down(dev, 0, 50, 50);
|
||||
litest_touch_move_to(dev, 0, 50, 50, 50, 70, 10);
|
||||
|
||||
litest_assert_button_event(li, button,
|
||||
LIBINPUT_BUTTON_STATE_PRESSED);
|
||||
litest_assert_only_typed_events(li, LIBINPUT_EVENT_POINTER_MOTION);
|
||||
|
||||
/* Release finger to trigger drag-lock */
|
||||
litest_touch_up(dev, 0);
|
||||
|
||||
/* Two fingers down + move to trigger scrolling */
|
||||
libinput_dispatch(li);
|
||||
litest_touch_down(dev, 0, 50, 50);
|
||||
litest_touch_down(dev, 1, 70, 50);
|
||||
libinput_dispatch(li);
|
||||
litest_touch_move_two_touches(dev, 50, 50, 70, 50, 0, 20, 10);
|
||||
libinput_dispatch(li);
|
||||
litest_touch_up(dev, 0);
|
||||
litest_touch_up(dev, 1);
|
||||
libinput_dispatch(li);
|
||||
|
||||
litest_assert_button_event(li, button,
|
||||
LIBINPUT_BUTTON_STATE_RELEASED);
|
||||
|
||||
litest_assert_only_typed_events(li, LIBINPUT_EVENT_POINTER_AXIS);
|
||||
|
||||
litest_assert_empty_queue(li);
|
||||
}
|
||||
END_TEST
|
||||
|
||||
START_TEST(touchpad_tap_n_drag_3fg_btntool)
|
||||
{
|
||||
struct litest_device *dev = litest_current_device();
|
||||
|
|
@ -2037,6 +2127,107 @@ START_TEST(touchpad_tap_n_drag_3fg_swipe)
|
|||
}
|
||||
END_TEST
|
||||
|
||||
START_TEST(touchpad_tap_n_drag_draglock_3fg_swipe)
|
||||
{
|
||||
/* Test: tap with 1-3 fingers, trigger drag-lock,
|
||||
* then immediate 3fg swipe.
|
||||
* We expect this to be a tap-and-drag followed by a swipe.
|
||||
*/
|
||||
struct litest_device *dev = litest_current_device();
|
||||
struct libinput *li = dev->libinput;
|
||||
int nfingers = _i; /* ranged test */
|
||||
unsigned int button = 0;
|
||||
|
||||
if (litest_slot_count(dev) < 3)
|
||||
return;
|
||||
|
||||
litest_enable_tap(dev->libinput_device);
|
||||
litest_enable_drag_lock(dev->libinput_device);
|
||||
|
||||
switch (nfingers) {
|
||||
case 1:
|
||||
button = BTN_LEFT;
|
||||
break;
|
||||
case 2:
|
||||
button = BTN_RIGHT;
|
||||
break;
|
||||
case 3:
|
||||
button = BTN_MIDDLE;
|
||||
break;
|
||||
default:
|
||||
abort();
|
||||
}
|
||||
|
||||
litest_drain_events(li);
|
||||
|
||||
switch (nfingers) {
|
||||
case 3:
|
||||
litest_touch_down(dev, 2, 60, 30);
|
||||
/* fallthrough */
|
||||
case 2:
|
||||
litest_touch_down(dev, 1, 50, 30);
|
||||
/* fallthrough */
|
||||
case 1:
|
||||
litest_touch_down(dev, 0, 40, 30);
|
||||
/* fallthrough */
|
||||
break;
|
||||
}
|
||||
switch (nfingers) {
|
||||
case 3:
|
||||
litest_touch_up(dev, 2);
|
||||
/* fallthrough */
|
||||
case 2:
|
||||
litest_touch_up(dev, 1);
|
||||
/* fallthrough */
|
||||
case 1:
|
||||
litest_touch_up(dev, 0);
|
||||
/* fallthrough */
|
||||
break;
|
||||
}
|
||||
|
||||
/* Drag with one finger */
|
||||
litest_touch_down(dev, 0, 50, 50);
|
||||
litest_touch_move_to(dev, 0, 50, 50, 50, 70, 10);
|
||||
|
||||
litest_assert_button_event(li, button,
|
||||
LIBINPUT_BUTTON_STATE_PRESSED);
|
||||
litest_assert_only_typed_events(li, LIBINPUT_EVENT_POINTER_MOTION);
|
||||
|
||||
/* Release finger to trigger drag-lock */
|
||||
litest_touch_up(dev, 0);
|
||||
|
||||
litest_touch_down(dev, 0, 30, 50);
|
||||
litest_touch_down(dev, 1, 50, 50);
|
||||
litest_touch_down(dev, 2, 80, 50);
|
||||
libinput_dispatch(li);
|
||||
litest_touch_move_three_touches(dev,
|
||||
30, 50,
|
||||
50, 50,
|
||||
80, 50,
|
||||
0, 20,
|
||||
10);
|
||||
libinput_dispatch(li);
|
||||
|
||||
litest_assert_button_event(li, button,
|
||||
LIBINPUT_BUTTON_STATE_RELEASED);
|
||||
|
||||
litest_assert_gesture_event(li,
|
||||
LIBINPUT_EVENT_GESTURE_SWIPE_BEGIN,
|
||||
3);
|
||||
litest_assert_only_typed_events(li,
|
||||
LIBINPUT_EVENT_GESTURE_SWIPE_UPDATE);
|
||||
|
||||
litest_touch_up(dev, 2);
|
||||
litest_touch_up(dev, 1);
|
||||
litest_touch_up(dev, 0);
|
||||
litest_assert_gesture_event(li,
|
||||
LIBINPUT_EVENT_GESTURE_SWIPE_END,
|
||||
3);
|
||||
|
||||
litest_assert_empty_queue(li);
|
||||
}
|
||||
END_TEST
|
||||
|
||||
START_TEST(touchpad_2fg_tap)
|
||||
{
|
||||
struct litest_device *dev = litest_current_device();
|
||||
|
|
@ -5476,9 +5667,11 @@ TEST_COLLECTION(touchpad_tap)
|
|||
litest_add_ranged(touchpad_tap_n_drag, LITEST_TOUCHPAD, LITEST_ANY, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_2fg, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_2fg_scroll, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_draglock_2fg_scroll, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_3fg_btntool, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH|LITEST_APPLE_CLICKPAD, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_3fg, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_3fg_swipe, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_draglock_3fg_swipe, LITEST_TOUCHPAD, LITEST_SINGLE_TOUCH, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_draglock, LITEST_TOUCHPAD, LITEST_ANY, &range_multifinger_tap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_draglock_tap, LITEST_TOUCHPAD, LITEST_ANY, &range_multifinger_doubletap);
|
||||
litest_add_ranged(touchpad_tap_n_drag_draglock_timeout, LITEST_TOUCHPAD, LITEST_ANY, &range_multifinger_tap);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue