xref: /aosp_15_r20/external/wayland/tests/message-test.c (revision 84e872a0dc482bffdb63672969dd03a827d67c73)
1*84e872a0SLloyd Pique /*
2*84e872a0SLloyd Pique  * Copyright © 2014 Jonas Ådahl
3*84e872a0SLloyd Pique  *
4*84e872a0SLloyd Pique  * Permission is hereby granted, free of charge, to any person obtaining
5*84e872a0SLloyd Pique  * a copy of this software and associated documentation files (the
6*84e872a0SLloyd Pique  * "Software"), to deal in the Software without restriction, including
7*84e872a0SLloyd Pique  * without limitation the rights to use, copy, modify, merge, publish,
8*84e872a0SLloyd Pique  * distribute, sublicense, and/or sell copies of the Software, and to
9*84e872a0SLloyd Pique  * permit persons to whom the Software is furnished to do so, subject to
10*84e872a0SLloyd Pique  * the following conditions:
11*84e872a0SLloyd Pique  *
12*84e872a0SLloyd Pique  * The above copyright notice and this permission notice (including the
13*84e872a0SLloyd Pique  * next paragraph) shall be included in all copies or substantial
14*84e872a0SLloyd Pique  * portions of the Software.
15*84e872a0SLloyd Pique  *
16*84e872a0SLloyd Pique  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17*84e872a0SLloyd Pique  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18*84e872a0SLloyd Pique  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19*84e872a0SLloyd Pique  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20*84e872a0SLloyd Pique  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21*84e872a0SLloyd Pique  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22*84e872a0SLloyd Pique  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23*84e872a0SLloyd Pique  * SOFTWARE.
24*84e872a0SLloyd Pique  */
25*84e872a0SLloyd Pique 
26*84e872a0SLloyd Pique #include <assert.h>
27*84e872a0SLloyd Pique 
28*84e872a0SLloyd Pique #include "wayland-client.h"
29*84e872a0SLloyd Pique #include "wayland-private.h"
30*84e872a0SLloyd Pique #include "wayland-server.h"
31*84e872a0SLloyd Pique #include "test-runner.h"
32*84e872a0SLloyd Pique 
TEST(message_version)33*84e872a0SLloyd Pique TEST(message_version)
34*84e872a0SLloyd Pique {
35*84e872a0SLloyd Pique 	unsigned int i;
36*84e872a0SLloyd Pique 	const struct {
37*84e872a0SLloyd Pique 		const struct wl_message *message;
38*84e872a0SLloyd Pique 		int expected_version;
39*84e872a0SLloyd Pique 	} messages[] = {
40*84e872a0SLloyd Pique 		{ &wl_pointer_interface.events[WL_POINTER_ENTER], 1 },
41*84e872a0SLloyd Pique 		{ &wl_surface_interface.events[WL_SURFACE_ENTER], 1 },
42*84e872a0SLloyd Pique 		{ &wl_pointer_interface.methods[WL_POINTER_SET_CURSOR], 1 },
43*84e872a0SLloyd Pique 		{ &wl_pointer_interface.methods[WL_POINTER_RELEASE], 3 },
44*84e872a0SLloyd Pique 		{ &wl_surface_interface.methods[WL_SURFACE_DESTROY], 1 },
45*84e872a0SLloyd Pique 		{ &wl_surface_interface.methods[WL_SURFACE_SET_BUFFER_TRANSFORM], 2 },
46*84e872a0SLloyd Pique 		{ &wl_surface_interface.methods[WL_SURFACE_SET_BUFFER_SCALE], 3 },
47*84e872a0SLloyd Pique 	};
48*84e872a0SLloyd Pique 
49*84e872a0SLloyd Pique 	for (i = 0; i < ARRAY_LENGTH(messages); ++i) {
50*84e872a0SLloyd Pique 		assert(wl_message_get_since(messages[i].message) ==
51*84e872a0SLloyd Pique 		       messages[i].expected_version);
52*84e872a0SLloyd Pique 	}
53*84e872a0SLloyd Pique }
54*84e872a0SLloyd Pique 
TEST(message_count_arrays)55*84e872a0SLloyd Pique TEST(message_count_arrays)
56*84e872a0SLloyd Pique {
57*84e872a0SLloyd Pique 	unsigned int i;
58*84e872a0SLloyd Pique 	struct wl_message fake_messages[] = {
59*84e872a0SLloyd Pique 		{ "empty", "", NULL },
60*84e872a0SLloyd Pique 		{ "non_present", "iufsonh", NULL },
61*84e872a0SLloyd Pique 		{ "leading", "aiufsonh", NULL},
62*84e872a0SLloyd Pique 		{ "trailing", "iufsonha", NULL },
63*84e872a0SLloyd Pique 		{ "middle", "iufasonh", NULL },
64*84e872a0SLloyd Pique 		{ "multiple", "aaiufaasonhaa", NULL },
65*84e872a0SLloyd Pique 		{ "leading_version", "2aaiufaasonhaa", NULL },
66*84e872a0SLloyd Pique 		{ "among_nullables", "iufsa?oa?sah", NULL },
67*84e872a0SLloyd Pique 		{ "all_mixed", "2aiufas?oa?sa", NULL },
68*84e872a0SLloyd Pique 	};
69*84e872a0SLloyd Pique 	const struct {
70*84e872a0SLloyd Pique 		const struct wl_message *message;
71*84e872a0SLloyd Pique 		int expected_array_count;
72*84e872a0SLloyd Pique 	} messages[] = {
73*84e872a0SLloyd Pique 		{ &wl_pointer_interface.events[WL_POINTER_ENTER], 0 },
74*84e872a0SLloyd Pique 		{ &wl_keyboard_interface.events[WL_KEYBOARD_ENTER], 1 },
75*84e872a0SLloyd Pique 		{ &fake_messages[0], 0 },
76*84e872a0SLloyd Pique 		{ &fake_messages[1], 0 },
77*84e872a0SLloyd Pique 		{ &fake_messages[2], 1 },
78*84e872a0SLloyd Pique 		{ &fake_messages[3], 1 },
79*84e872a0SLloyd Pique 		{ &fake_messages[4], 1 },
80*84e872a0SLloyd Pique 		{ &fake_messages[5], 6 },
81*84e872a0SLloyd Pique 		{ &fake_messages[6], 6 },
82*84e872a0SLloyd Pique 		{ &fake_messages[7], 3 },
83*84e872a0SLloyd Pique 		{ &fake_messages[8], 4 },
84*84e872a0SLloyd Pique 	};
85*84e872a0SLloyd Pique 
86*84e872a0SLloyd Pique 	for (i = 0; i < ARRAY_LENGTH(messages); ++i) {
87*84e872a0SLloyd Pique 		assert(wl_message_count_arrays(messages[i].message) ==
88*84e872a0SLloyd Pique 		       messages[i].expected_array_count);
89*84e872a0SLloyd Pique 	}
90*84e872a0SLloyd Pique }
91