1 /*
2 * Copyright © 2017 Collabora, Ltd.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining
5 * a copy of this software and associated documentation files (the
6 * "Software"), to deal in the Software without restriction, including
7 * without limitation the rights to use, copy, modify, merge, publish,
8 * distribute, sublicense, and/or sell copies of the Software, and to
9 * permit persons to whom the Software is furnished to do so, subject to
10 * the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the
13 * next paragraph) shall be included in all copies or substantial
14 * portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 * SOFTWARE.
24 */
25
26 #include "config.h"
27
28 #include <time.h>
29
30 #include "input-timestamps-helper.h"
31 #include "shared/timespec-util.h"
32 #include "weston-test-client-helper.h"
33 #include "wayland-server-protocol.h"
34 #include "weston-test-fixture-compositor.h"
35
36 static enum test_result_code
fixture_setup(struct weston_test_harness * harness)37 fixture_setup(struct weston_test_harness *harness)
38 {
39 struct compositor_setup setup;
40
41 compositor_setup_defaults(&setup);
42
43 return weston_test_harness_execute_as_client(harness, &setup);
44 }
45 DECLARE_FIXTURE_SETUP(fixture_setup);
46
47 static const struct timespec t1 = { .tv_sec = 1, .tv_nsec = 1000001 };
48 static const struct timespec t2 = { .tv_sec = 2, .tv_nsec = 2000001 };
49 static const struct timespec t3 = { .tv_sec = 3, .tv_nsec = 3000001 };
50 static const struct timespec t_other = { .tv_sec = 123, .tv_nsec = 456 };
51
52 static struct client *
create_touch_test_client(void)53 create_touch_test_client(void)
54 {
55 struct client *cl = create_client_and_test_surface(0, 0, 100, 100);
56 assert(cl);
57 return cl;
58 }
59
60 static void
send_touch(struct client * client,const struct timespec * time,uint32_t touch_type)61 send_touch(struct client *client, const struct timespec *time,
62 uint32_t touch_type)
63 {
64 uint32_t tv_sec_hi, tv_sec_lo, tv_nsec;
65
66 timespec_to_proto(time, &tv_sec_hi, &tv_sec_lo, &tv_nsec);
67 weston_test_send_touch(client->test->weston_test, tv_sec_hi, tv_sec_lo,
68 tv_nsec, 1, 1, 1, touch_type);
69 client_roundtrip(client);
70 }
71
TEST(touch_events)72 TEST(touch_events)
73 {
74 struct client *client = create_touch_test_client();
75 struct touch *touch = client->input->touch;
76 struct input_timestamps *input_ts =
77 input_timestamps_create_for_touch(client);
78
79 send_touch(client, &t1, WL_TOUCH_DOWN);
80 assert(touch->down_time_msec == timespec_to_msec(&t1));
81 assert(timespec_eq(&touch->down_time_timespec, &t1));
82
83 send_touch(client, &t2, WL_TOUCH_MOTION);
84 assert(touch->motion_time_msec == timespec_to_msec(&t2));
85 assert(timespec_eq(&touch->motion_time_timespec, &t2));
86
87 send_touch(client, &t3, WL_TOUCH_UP);
88 assert(touch->up_time_msec == timespec_to_msec(&t3));
89 assert(timespec_eq(&touch->up_time_timespec, &t3));
90
91 input_timestamps_destroy(input_ts);
92 }
93
TEST(touch_timestamps_stop_after_input_timestamps_object_is_destroyed)94 TEST(touch_timestamps_stop_after_input_timestamps_object_is_destroyed)
95 {
96 struct client *client = create_touch_test_client();
97 struct touch *touch = client->input->touch;
98 struct input_timestamps *input_ts =
99 input_timestamps_create_for_touch(client);
100
101 send_touch(client, &t1, WL_TOUCH_DOWN);
102 assert(touch->down_time_msec == timespec_to_msec(&t1));
103 assert(timespec_eq(&touch->down_time_timespec, &t1));
104
105 input_timestamps_destroy(input_ts);
106
107 send_touch(client, &t2, WL_TOUCH_UP);
108 assert(touch->up_time_msec == timespec_to_msec(&t2));
109 assert(timespec_is_zero(&touch->up_time_timespec));
110 }
111
TEST(touch_timestamps_stop_after_client_releases_wl_touch)112 TEST(touch_timestamps_stop_after_client_releases_wl_touch)
113 {
114 struct client *client = create_touch_test_client();
115 struct touch *touch = client->input->touch;
116 struct input_timestamps *input_ts =
117 input_timestamps_create_for_touch(client);
118
119 send_touch(client, &t1, WL_TOUCH_DOWN);
120 assert(touch->down_time_msec == timespec_to_msec(&t1));
121 assert(timespec_eq(&touch->down_time_timespec, &t1));
122
123 wl_touch_release(client->input->touch->wl_touch);
124
125 /* Set input_timestamp to an arbitrary value (different from t1, t2
126 * and 0) and check that it is not changed by sending the event.
127 * This is preferred over just checking for 0, since 0 is used
128 * internally for resetting the timestamp after handling an input
129 * event and checking for it here may lead to false negatives. */
130 touch->input_timestamp = t_other;
131 send_touch(client, &t2, WL_TOUCH_UP);
132 assert(timespec_eq(&touch->input_timestamp, &t_other));
133
134 input_timestamps_destroy(input_ts);
135 }
136