Linux Kernel Selftest development
 help / color / mirror / Atom feed
* [PATCH v2] selftests/input: add tests for the EVIOCSABS ioctl
@ 2023-06-25 12:30 Dana Elfassy
  2023-06-28  8:21 ` Enric Balletbo Serra
  0 siblings, 1 reply; 2+ messages in thread
From: Dana Elfassy @ 2023-06-25 12:30 UTC (permalink / raw)
  To: shuah, eballetbo, linux-kselftest, linux-kernel; +Cc: Dana Elfassy

This patch introduces two tests for the EVIOCSABS ioctl. The first one
checks that the ioctl fails when the EV_ABS bit was not set, and the
second one just checks that the normal workflow for this ioctl
succeeds.

Signed-off-by: Dana Elfassy <dangel101@gmail.com>
---
This patch depends on '[v3] selftests/input: Introduce basic tests for evdev ioctls' [1] sent to the ML.
[1] https://patchwork.kernel.org/project/linux-input/patch/20230607153214.15933-1-eballetbo@kernel.org/

 tools/testing/selftests/input/evioc-test.c | 23 ++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/tools/testing/selftests/input/evioc-test.c b/tools/testing/selftests/input/evioc-test.c
index 4c0c8ebed378..7afd537f0b24 100644
--- a/tools/testing/selftests/input/evioc-test.c
+++ b/tools/testing/selftests/input/evioc-test.c
@@ -279,4 +279,27 @@ TEST(eviocgrep_get_repeat_settings)
 	selftest_uinput_destroy(uidev);
 }
 
+TEST(eviocsabs_set_abs_value_limits)
+{
+	struct selftest_uinput *uidev;
+	struct input_absinfo absinfo;
+	int rc;
+
+	// fail test on dev->absinfo
+	rc = selftest_uinput_create_device(&uidev), -1;
+	ASSERT_EQ(0, rc);
+	ASSERT_NE(NULL, uidev);
+	rc = ioctl(uidev->evdev_fd, EVIOCSABS(0), &absinfo);
+	ASSERT_EQ(-1, rc);
+	selftest_uinput_destroy(uidev);
+
+	// ioctl normal flow
+	rc = selftest_uinput_create_device(&uidev, EV_ABS, -1);
+	ASSERT_EQ(0, rc);
+	ASSERT_NE(NULL, uidev);
+	rc = ioctl(uidev->evdev_fd, EVIOCSABS(0), &absinfo);
+	ASSERT_EQ(0, rc);
+	selftest_uinput_destroy(uidev);
+}
+
 TEST_HARNESS_MAIN
-- 
2.41.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v2] selftests/input: add tests for the EVIOCSABS ioctl
  2023-06-25 12:30 [PATCH v2] selftests/input: add tests for the EVIOCSABS ioctl Dana Elfassy
@ 2023-06-28  8:21 ` Enric Balletbo Serra
  0 siblings, 0 replies; 2+ messages in thread
From: Enric Balletbo Serra @ 2023-06-28  8:21 UTC (permalink / raw)
  To: Dana Elfassy
  Cc: shuah, eballetbo, linux-kselftest, linux-kernel, Dana Elfassy

Hi Dana,

Thank you for the patch.

Missatge de Dana Elfassy <delfassy@redhat.com> del dia dg., 25 de juny
2023 a les 14:31:
>
> This patch introduces two tests for the EVIOCSABS ioctl. The first one
> checks that the ioctl fails when the EV_ABS bit was not set, and the
> second one just checks that the normal workflow for this ioctl
> succeeds.
>
> Signed-off-by: Dana Elfassy <dangel101@gmail.com>

Using gcov i see that this covers the code path when an EVIOCSABS
ioctl is called, so

Reviewed-by: Enric Balletbo i Serra <eballetbo@kernel.org>


> ---
> This patch depends on '[v3] selftests/input: Introduce basic tests for evdev ioctls' [1] sent to the ML.
> [1] https://patchwork.kernel.org/project/linux-input/patch/20230607153214.15933-1-eballetbo@kernel.org/
>
>  tools/testing/selftests/input/evioc-test.c | 23 ++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
>
> diff --git a/tools/testing/selftests/input/evioc-test.c b/tools/testing/selftests/input/evioc-test.c
> index 4c0c8ebed378..7afd537f0b24 100644
> --- a/tools/testing/selftests/input/evioc-test.c
> +++ b/tools/testing/selftests/input/evioc-test.c
> @@ -279,4 +279,27 @@ TEST(eviocgrep_get_repeat_settings)
>         selftest_uinput_destroy(uidev);
>  }
>
> +TEST(eviocsabs_set_abs_value_limits)
> +{
> +       struct selftest_uinput *uidev;
> +       struct input_absinfo absinfo;
> +       int rc;
> +
> +       // fail test on dev->absinfo
> +       rc = selftest_uinput_create_device(&uidev), -1;
> +       ASSERT_EQ(0, rc);
> +       ASSERT_NE(NULL, uidev);
> +       rc = ioctl(uidev->evdev_fd, EVIOCSABS(0), &absinfo);
> +       ASSERT_EQ(-1, rc);
> +       selftest_uinput_destroy(uidev);
> +
> +       // ioctl normal flow
> +       rc = selftest_uinput_create_device(&uidev, EV_ABS, -1);
> +       ASSERT_EQ(0, rc);
> +       ASSERT_NE(NULL, uidev);
> +       rc = ioctl(uidev->evdev_fd, EVIOCSABS(0), &absinfo);
> +       ASSERT_EQ(0, rc);
> +       selftest_uinput_destroy(uidev);
> +}
> +
>  TEST_HARNESS_MAIN
> --
> 2.41.0
>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-06-28  8:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-25 12:30 [PATCH v2] selftests/input: add tests for the EVIOCSABS ioctl Dana Elfassy
2023-06-28  8:21 ` Enric Balletbo Serra

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox