2013-06-29 17:57:31 +10:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2013 Red Hat, Inc.
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2020-02-14 10:13:18 +10:00
|
|
|
#include "config.h"
|
2013-06-29 17:57:31 +10:00
|
|
|
#include <libevdev/libevdev.h>
|
2018-06-15 14:51:19 +10:00
|
|
|
#include <stdbool.h>
|
2020-02-11 20:44:25 +10:00
|
|
|
#include <stdio.h>
|
2013-06-29 17:57:31 +10:00
|
|
|
|
|
|
|
|
#include <check.h>
|
|
|
|
|
|
|
|
|
|
#ifndef _TEST_COMMON_H_
|
|
|
|
|
#define _TEST_COMMON_H_
|
|
|
|
|
|
2018-06-15 14:36:37 +10:00
|
|
|
struct libevdev_test {
|
|
|
|
|
const char *name;
|
|
|
|
|
Suite* (*setup)(void);
|
2018-06-15 14:51:19 +10:00
|
|
|
bool needs_root_privileges;
|
2018-06-15 14:36:37 +10:00
|
|
|
} __attribute__((aligned(16)));
|
|
|
|
|
|
2018-06-15 14:51:19 +10:00
|
|
|
#define _TEST_SUITE(name, root_privs) \
|
2018-06-15 14:36:37 +10:00
|
|
|
static Suite* (name##_setup)(void); \
|
|
|
|
|
static const struct libevdev_test _test \
|
|
|
|
|
__attribute__((used)) \
|
|
|
|
|
__attribute__((section ("test_section"))) = { \
|
2018-06-15 14:51:19 +10:00
|
|
|
#name, name##_setup, root_privs \
|
2018-06-15 14:36:37 +10:00
|
|
|
}; \
|
|
|
|
|
static Suite* (name##_setup)(void)
|
|
|
|
|
|
2018-06-15 14:51:19 +10:00
|
|
|
#define TEST_SUITE(name) \
|
|
|
|
|
_TEST_SUITE(name, false)
|
|
|
|
|
|
|
|
|
|
#define TEST_SUITE_ROOT_PRIVILEGES(name) \
|
|
|
|
|
_TEST_SUITE(name, true)
|
|
|
|
|
|
2013-07-05 09:08:04 +10:00
|
|
|
#define TEST_DEVICE_NAME "libevdev test device"
|
|
|
|
|
|
2020-02-11 20:37:01 +10:00
|
|
|
#define add_test(suite, func) do { \
|
|
|
|
|
TCase *tc = tcase_create(#func); \
|
|
|
|
|
tcase_add_test(tc, func); \
|
|
|
|
|
suite_add_tcase(suite, tc); \
|
|
|
|
|
} while(0)
|
|
|
|
|
|
2013-06-29 17:57:31 +10:00
|
|
|
#include "test-common-uinput.h"
|
|
|
|
|
|
2020-02-10 19:10:05 +10:00
|
|
|
#define assert_event(e_, t, c, v) \
|
|
|
|
|
do { \
|
|
|
|
|
const struct input_event *e = (e_); \
|
|
|
|
|
ck_assert_int_eq(e->type, (t)); \
|
|
|
|
|
ck_assert_int_eq(e->code, (c)); \
|
|
|
|
|
ck_assert_int_eq(e->value, (v)); \
|
|
|
|
|
} while(0)
|
|
|
|
|
|
2016-03-04 07:10:33 +10:00
|
|
|
void test_create_device(struct uinput_device **uidev,
|
|
|
|
|
struct libevdev **dev,
|
|
|
|
|
...);
|
|
|
|
|
void test_create_abs_device(struct uinput_device **uidev,
|
|
|
|
|
struct libevdev **dev,
|
|
|
|
|
int nabs,
|
|
|
|
|
const struct input_absinfo *abs,
|
|
|
|
|
...);
|
2013-06-29 18:09:28 +10:00
|
|
|
|
2014-01-17 10:21:48 +10:00
|
|
|
void test_logfunc_abort_on_error(enum libevdev_log_priority priority,
|
|
|
|
|
void *data,
|
|
|
|
|
const char *file, int line,
|
|
|
|
|
const char *func,
|
|
|
|
|
const char *format, va_list args);
|
|
|
|
|
void test_logfunc_ignore_error(enum libevdev_log_priority priority,
|
|
|
|
|
void *data,
|
|
|
|
|
const char *file, int line,
|
|
|
|
|
const char *func,
|
|
|
|
|
const char *format, va_list args);
|
2020-02-11 20:44:25 +10:00
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
print_event(const struct input_event *ev)
|
|
|
|
|
{
|
|
|
|
|
if (ev->type == EV_SYN)
|
|
|
|
|
printf("Event: time %ld.%06ld, ++++++++++++++++++++ %s +++++++++++++++\n",
|
|
|
|
|
ev->input_event_sec,
|
|
|
|
|
ev->input_event_usec,
|
|
|
|
|
libevdev_event_type_get_name(ev->type));
|
|
|
|
|
else
|
|
|
|
|
printf("Event: time %ld.%06ld, type %d (%s), code %d (%s), value %d\n",
|
|
|
|
|
ev->input_event_sec,
|
|
|
|
|
ev->input_event_usec,
|
|
|
|
|
ev->type,
|
|
|
|
|
libevdev_event_type_get_name(ev->type),
|
|
|
|
|
ev->code,
|
|
|
|
|
libevdev_event_code_get_name(ev->type, ev->code),
|
|
|
|
|
ev->value);
|
|
|
|
|
}
|
2013-06-29 17:57:31 +10:00
|
|
|
#endif /* _TEST_COMMON_H_ */
|