Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 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 | |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 30 | #include "input-timestamps-helper.h" |
Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 31 | #include "shared/timespec-util.h" |
| 32 | #include "weston-test-client-helper.h" |
| 33 | #include "wayland-server-protocol.h" |
Pekka Paalanen | 701676d | 2019-11-13 15:45:10 +0200 | [diff] [blame] | 34 | #include "weston-test-fixture-compositor.h" |
| 35 | |
| 36 | static enum test_result_code |
| 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); |
Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 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 }; |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 50 | static const struct timespec t_other = { .tv_sec = 123, .tv_nsec = 456 }; |
Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 51 | |
| 52 | static struct client * |
| 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 |
| 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 | |
| 72 | TEST(touch_events) |
| 73 | { |
| 74 | struct client *client = create_touch_test_client(); |
| 75 | struct touch *touch = client->input->touch; |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 76 | struct input_timestamps *input_ts = |
| 77 | input_timestamps_create_for_touch(client); |
Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 78 | |
| 79 | send_touch(client, &t1, WL_TOUCH_DOWN); |
| 80 | assert(touch->down_time_msec == timespec_to_msec(&t1)); |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 81 | assert(timespec_eq(&touch->down_time_timespec, &t1)); |
Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 82 | |
| 83 | send_touch(client, &t2, WL_TOUCH_MOTION); |
| 84 | assert(touch->motion_time_msec == timespec_to_msec(&t2)); |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 85 | assert(timespec_eq(&touch->motion_time_timespec, &t2)); |
Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 86 | |
| 87 | send_touch(client, &t3, WL_TOUCH_UP); |
| 88 | assert(touch->up_time_msec == timespec_to_msec(&t3)); |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 89 | assert(timespec_eq(&touch->up_time_timespec, &t3)); |
| 90 | |
| 91 | input_timestamps_destroy(input_ts); |
Pekka Paalanen | a01299a | 2021-06-18 13:09:55 +0300 | [diff] [blame] | 92 | |
| 93 | client_destroy(client); |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | TEST(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 Paalanen | a01299a | 2021-06-18 13:09:55 +0300 | [diff] [blame] | 112 | |
| 113 | client_destroy(client); |
Alexandros Frantzis | d715784 | 2018-02-20 14:07:03 +0200 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | TEST(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 Paalanen | a01299a | 2021-06-18 13:09:55 +0300 | [diff] [blame] | 139 | |
| 140 | free(client->input->touch); |
| 141 | client->input->touch = NULL; |
| 142 | client_destroy(client); |
Alexandros Frantzis | c20b580 | 2017-12-13 13:27:58 +0200 | [diff] [blame] | 143 | } |