summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-08-17 01:25:24 +0200
committerPeter Hutterer <peter.hutterer@who-t.net>2017-08-23 14:56:51 +1000
commit00272cfbb1e34c9179539fb4f874acfa4faf5ad6 (patch)
treea128b1abb469183216f608c950b62570ec296a2f /test
parentdddcc1f9597a2f36fe16859bc27dd017e93a4558 (diff)
downloadlibinput-00272cfbb1e34c9179539fb4f874acfa4faf5ad6.tar.gz
Add support for LIBINPUT_IGNORE_DEVICE
The recommended way to have libinput ignore specific devices so far was to remove the ID_INPUT* properties from the device. That may also affect other pieces of the stack that need access to this device. For the niche case of a device that should only be ignored by libinput but otherwise be treated normally by the system, we now support the LIBINPUT_IGNORE_DEVICE property. If the property is set to "0", it's equivalent to being unset. This gets around some technical limitations in udev where unsetting a property is impossible via a hwdb entry. https://bugs.freedesktop.org/show_bug.cgi?id=102229 Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test')
-rw-r--r--test/litest-device-ignored-mouse.c73
-rw-r--r--test/litest.c8
-rw-r--r--test/litest.h2
-rw-r--r--test/test-path.c22
-rw-r--r--test/test-udev.c47
5 files changed, 152 insertions, 0 deletions
diff --git a/test/litest-device-ignored-mouse.c b/test/litest-device-ignored-mouse.c
new file mode 100644
index 00000000..8fde32c7
--- /dev/null
+++ b/test/litest-device-ignored-mouse.c
@@ -0,0 +1,73 @@
+/*
+ * Copyright © 2017 Red Hat, Inc.
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ * DEALINGS IN THE SOFTWARE.
+ */
+
+#include "config.h"
+
+#include "litest.h"
+#include "litest-int.h"
+
+static void litest_mouse_setup(void)
+{
+ struct litest_device *d = litest_create_device(LITEST_IGNORED_MOUSE);
+ litest_set_current_device(d);
+}
+
+static struct input_id input_id = {
+ .bustype = 0x3,
+ .vendor = 0x17ef,
+ .product = 0x6019,
+};
+
+static int events[] = {
+ EV_KEY, BTN_LEFT,
+ EV_KEY, BTN_RIGHT,
+ EV_KEY, BTN_MIDDLE,
+ EV_REL, REL_X,
+ EV_REL, REL_Y,
+ EV_REL, REL_WHEEL,
+ -1 , -1,
+};
+
+static const char udev_rule[] =
+"ACTION==\"remove\", GOTO=\"mouse_end\"\n"
+"KERNEL!=\"event*\", GOTO=\"mouse_end\"\n"
+"ENV{ID_INPUT_MOUSE}==\"\", GOTO=\"mouse_end\"\n"
+"\n"
+"ATTRS{name}==\"litest Ignored Mouse*\",\\\n"
+" ENV{LIBINPUT_IGNORE_DEVICE}=\"1\"\n"
+"\n"
+"LABEL=\"mouse_end\"";
+
+struct litest_test_device litest_ignored_mouse_device = {
+ .type = LITEST_IGNORED_MOUSE,
+ .features = LITEST_IGNORED | LITEST_BUTTON | LITEST_RELATIVE,
+ .shortname = "ignored-mouse",
+ .setup = litest_mouse_setup,
+ .interface = NULL,
+
+ .name = "Ignored Mouse",
+ .id = &input_id,
+ .absinfo = NULL,
+ .events = events,
+ .udev_rule = udev_rule,
+};
diff --git a/test/litest.c b/test/litest.c
index 12045c64..cbc0c511 100644
--- a/test/litest.c
+++ b/test/litest.c
@@ -415,6 +415,7 @@ extern struct litest_test_device litest_lid_switch_device;
extern struct litest_test_device litest_lid_switch_surface3_device;
extern struct litest_test_device litest_appletouch_device;
extern struct litest_test_device litest_gpio_keys_device;
+extern struct litest_test_device litest_ignored_mouse_device;
struct litest_test_device* devices[] = {
&litest_synaptics_clickpad_device,
@@ -481,6 +482,7 @@ struct litest_test_device* devices[] = {
&litest_lid_switch_surface3_device,
&litest_appletouch_device,
&litest_gpio_keys_device,
+ &litest_ignored_mouse_device,
NULL,
};
@@ -610,6 +612,9 @@ litest_add_tcase(const char *suite_name,
added = true;
} else if (required != LITEST_ANY || excluded != LITEST_ANY) {
for (; *dev; dev++) {
+ if ((*dev)->features & LITEST_IGNORED)
+ continue;
+
if (filter_device &&
fnmatch(filter_device, (*dev)->shortname, 0) != 0)
continue;
@@ -626,6 +631,9 @@ litest_add_tcase(const char *suite_name,
}
} else {
for (; *dev; dev++) {
+ if ((*dev)->features & LITEST_IGNORED)
+ continue;
+
if (filter_device &&
fnmatch(filter_device, (*dev)->shortname, 0) != 0)
continue;
diff --git a/test/litest.h b/test/litest.h
index 5e0621ce..150381ec 100644
--- a/test/litest.h
+++ b/test/litest.h
@@ -235,6 +235,7 @@ enum litest_device_type {
LITEST_LID_SWITCH_SURFACE3,
LITEST_APPLETOUCH,
LITEST_GPIO_KEYS,
+ LITEST_IGNORED_MOUSE,
};
enum litest_device_feature {
@@ -267,6 +268,7 @@ enum litest_device_feature {
LITEST_TRACKBALL = 1 << 24,
LITEST_LEDS = 1 << 25,
LITEST_SWITCH = 1 << 26,
+ LITEST_IGNORED = 1 << 27,
};
/* this is a semi-mt device, so we keep track of the touches that the tests
diff --git a/test/test-path.c b/test/test-path.c
index 801166ea..c28c6e38 100644
--- a/test/test-path.c
+++ b/test/test-path.c
@@ -961,6 +961,26 @@ START_TEST(path_udev_assign_seat)
}
END_TEST
+START_TEST(path_ignore_device)
+{
+ struct litest_device *dev;
+ struct libinput *li;
+ struct libinput_device *device;
+ const char *path;
+
+ dev = litest_create(LITEST_IGNORED_MOUSE, NULL, NULL, NULL, NULL);
+ path = libevdev_uinput_get_devnode(dev->uinput);
+ ck_assert_notnull(path);
+
+ li = litest_create_context();
+ device = libinput_path_add_device(li, path);
+ ck_assert(device == NULL);
+
+ libinput_unref(li);
+ litest_delete_device(dev);
+}
+END_TEST
+
void
litest_setup_tests_path(void)
{
@@ -987,4 +1007,6 @@ litest_setup_tests_path(void)
litest_add_for_device("path:device events", path_double_remove_device, LITEST_SYNAPTICS_CLICKPAD_X220);
litest_add_no_device("path:seat", path_seat_recycle);
litest_add_for_device("path:udev", path_udev_assign_seat, LITEST_SYNAPTICS_CLICKPAD_X220);
+
+ litest_add_no_device("path:ignore", path_ignore_device);
}
diff --git a/test/test-udev.c b/test/test-udev.c
index 18627663..9eaff0bf 100644
--- a/test/test-udev.c
+++ b/test/test-udev.c
@@ -560,6 +560,51 @@ START_TEST(udev_path_remove_device)
}
END_TEST
+START_TEST(udev_ignore_device)
+{
+ struct udev *udev;
+ struct libinput *li;
+ struct libinput_device *device;
+ struct libinput_event *event;
+ struct litest_device *dev;
+ const char *devname;
+
+ dev = litest_create(LITEST_IGNORED_MOUSE, NULL, NULL, NULL, NULL);
+ devname = libevdev_get_name(dev->evdev);
+
+ udev = udev_new();
+ ck_assert(udev != NULL);
+
+ li = libinput_udev_create_context(&simple_interface, NULL, udev);
+ ck_assert(li != NULL);
+ litest_restore_log_handler(li);
+
+ ck_assert_int_eq(libinput_udev_assign_seat(li, "seat0"), 0);
+ libinput_dispatch(li);
+
+ event = libinput_get_event(li);
+ ck_assert(event != NULL);
+ while (event) {
+ if (libinput_event_get_type(event) ==
+ LIBINPUT_EVENT_DEVICE_ADDED) {
+ const char *name;
+
+ device = libinput_event_get_device(event);
+ name = libinput_device_get_name(device);
+ ck_assert_str_ne(devname, name);
+ }
+ libinput_event_destroy(event);
+ libinput_dispatch(li);
+ event = libinput_get_event(li);
+ }
+
+ libinput_unref(li);
+ udev_unref(udev);
+
+ litest_delete_device(dev);
+}
+END_TEST
+
void
litest_setup_tests_udev(void)
{
@@ -579,4 +624,6 @@ litest_setup_tests_udev(void)
litest_add_no_device("udev:path", udev_path_add_device);
litest_add_for_device("udev:path", udev_path_remove_device, LITEST_SYNAPTICS_CLICKPAD_X220);
+
+ litest_add_no_device("udev:ignore", udev_ignore_device);
}