blob: c2b563c9bc98f17ee74cc1d1a51af9738420b5e8 [file] [log] [blame]
Alexandros Frantzisc20b5802017-12-13 13:27:58 +02001/*
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
Alexandros Frantzisd7157842018-02-20 14:07:03 +020030#include "input-timestamps-helper.h"
Alexandros Frantzisc20b5802017-12-13 13:27:58 +020031#include "shared/timespec-util.h"
32#include "weston-test-client-helper.h"
33#include "wayland-server-protocol.h"
Pekka Paalanen701676d2019-11-13 15:45:10 +020034#include "weston-test-fixture-compositor.h"
35
36static enum test_result_code
37fixture_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}
45DECLARE_FIXTURE_SETUP(fixture_setup);
Alexandros Frantzisc20b5802017-12-13 13:27:58 +020046
47static const struct timespec t1 = { .tv_sec = 1, .tv_nsec = 1000001 };
48static const struct timespec t2 = { .tv_sec = 2, .tv_nsec = 2000001 };
49static const struct timespec t3 = { .tv_sec = 3, .tv_nsec = 3000001 };
Alexandros Frantzisd7157842018-02-20 14:07:03 +020050static const struct timespec t_other = { .tv_sec = 123, .tv_nsec = 456 };
Alexandros Frantzisc20b5802017-12-13 13:27:58 +020051
52static struct client *
53create_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
60static void
61send_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
72TEST(touch_events)
73{
74 struct client *client = create_touch_test_client();
75 struct touch *touch = client->input->touch;
Alexandros Frantzisd7157842018-02-20 14:07:03 +020076 struct input_timestamps *input_ts =
77 input_timestamps_create_for_touch(client);
Alexandros Frantzisc20b5802017-12-13 13:27:58 +020078
79 send_touch(client, &t1, WL_TOUCH_DOWN);
80 assert(touch->down_time_msec == timespec_to_msec(&t1));
Alexandros Frantzisd7157842018-02-20 14:07:03 +020081 assert(timespec_eq(&touch->down_time_timespec, &t1));
Alexandros Frantzisc20b5802017-12-13 13:27:58 +020082
83 send_touch(client, &t2, WL_TOUCH_MOTION);
84 assert(touch->motion_time_msec == timespec_to_msec(&t2));
Alexandros Frantzisd7157842018-02-20 14:07:03 +020085 assert(timespec_eq(&touch->motion_time_timespec, &t2));
Alexandros Frantzisc20b5802017-12-13 13:27:58 +020086
87 send_touch(client, &t3, WL_TOUCH_UP);
88 assert(touch->up_time_msec == timespec_to_msec(&t3));
Alexandros Frantzisd7157842018-02-20 14:07:03 +020089 assert(timespec_eq(&touch->up_time_timespec, &t3));
90
91 input_timestamps_destroy(input_ts);
Pekka Paalanena01299a2021-06-18 13:09:55 +030092
93 client_destroy(client);
Alexandros Frantzisd7157842018-02-20 14:07:03 +020094}
95
96TEST(touch_timestamps_stop_after_input_timestamps_object_is_destroyed)
97{
98 struct client *client = create_touch_test_client();
99 struct touch *touch = client->input->touch;
100 struct input_timestamps *input_ts =
101 input_timestamps_create_for_touch(client);
102
103 send_touch(client, &t1, WL_TOUCH_DOWN);
104 assert(touch->down_time_msec == timespec_to_msec(&t1));
105 assert(timespec_eq(&touch->down_time_timespec, &t1));
106
107 input_timestamps_destroy(input_ts);
108
109 send_touch(client, &t2, WL_TOUCH_UP);
110 assert(touch->up_time_msec == timespec_to_msec(&t2));
111 assert(timespec_is_zero(&touch->up_time_timespec));
Pekka Paalanena01299a2021-06-18 13:09:55 +0300112
113 client_destroy(client);
Alexandros Frantzisd7157842018-02-20 14:07:03 +0200114}
115
116TEST(touch_timestamps_stop_after_client_releases_wl_touch)
117{
118 struct client *client = create_touch_test_client();
119 struct touch *touch = client->input->touch;
120 struct input_timestamps *input_ts =
121 input_timestamps_create_for_touch(client);
122
123 send_touch(client, &t1, WL_TOUCH_DOWN);
124 assert(touch->down_time_msec == timespec_to_msec(&t1));
125 assert(timespec_eq(&touch->down_time_timespec, &t1));
126
127 wl_touch_release(client->input->touch->wl_touch);
128
129 /* Set input_timestamp to an arbitrary value (different from t1, t2
130 * and 0) and check that it is not changed by sending the event.
131 * This is preferred over just checking for 0, since 0 is used
132 * internally for resetting the timestamp after handling an input
133 * event and checking for it here may lead to false negatives. */
134 touch->input_timestamp = t_other;
135 send_touch(client, &t2, WL_TOUCH_UP);
136 assert(timespec_eq(&touch->input_timestamp, &t_other));
137
138 input_timestamps_destroy(input_ts);
Pekka Paalanena01299a2021-06-18 13:09:55 +0300139
140 free(client->input->touch);
141 client->input->touch = NULL;
142 client_destroy(client);
Alexandros Frantzisc20b5802017-12-13 13:27:58 +0200143}