summaryrefslogtreecommitdiff
path: root/tests/proxy-test.c
blob: c09468d7cd70bf9bf88c39bd5bb55e8ee7195f25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
 * Copyright (c) 2019 Red Hat, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial
 * portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#include <assert.h>
#include <string.h>

#include "wayland-server.h"
#include "wayland-client.h"
#include "test-runner.h"

static struct {
	struct wl_display *display;
	struct wl_event_loop *loop;
	int sync_count;
} server;

static struct {
	struct wl_display *display;
	struct wl_callback *callback_a;
	struct wl_callback *callback_b;
	int callback_count;
} client;

static const char *tag_a = "tag";
static const char *tag_b = "tag";

static void
callback_done(void *data, struct wl_callback *cb, uint32_t time)
{
	const char * const *expected_tag;
	const char * const *tag;

	if (cb == client.callback_a)
		expected_tag = &tag_a;
	else if (cb == client.callback_b)
		expected_tag = &tag_b;
	else
		assert(!"unexpected callback");

	tag = wl_proxy_get_tag((struct wl_proxy *) cb);

	assert(tag == expected_tag);
	assert(strcmp(*tag, "tag") == 0);

	wl_callback_destroy(cb);

	client.callback_count++;
}

static const struct wl_callback_listener callback_listener = {
	callback_done,
};

static void
logger_func(void *user_data,
	    enum wl_protocol_logger_type type,
	    const struct wl_protocol_logger_message *message)
{
	if (type != WL_PROTOCOL_LOGGER_REQUEST)
		return;

	assert(strcmp(wl_resource_get_class(message->resource),
		      "wl_display") == 0);
	assert(strcmp(message->message->name, "sync") == 0);

	server.sync_count++;
}

TEST(proxy_tag)
{
	const char *socket;
	struct wl_protocol_logger *logger;

	assert(&tag_a != &tag_b);

	server.display = wl_display_create();
	assert(server.display);
	server.loop = wl_display_get_event_loop(server.display);
	assert(server.loop);
	socket = wl_display_add_socket_auto(server.display);
	assert(socket);
	logger = wl_display_add_protocol_logger(server.display,
						logger_func, NULL);
	assert(logger);

	client.display = wl_display_connect(socket);
	assert(client.display);

	client.callback_a = wl_display_sync(client.display);
	wl_callback_add_listener(client.callback_a, &callback_listener, NULL);
	wl_proxy_set_tag((struct wl_proxy *) client.callback_a,
			 &tag_a);

	client.callback_b = wl_display_sync(client.display);
	wl_callback_add_listener(client.callback_b, &callback_listener, NULL);
	wl_proxy_set_tag((struct wl_proxy *) client.callback_b,
			 &tag_b);

	wl_display_flush(client.display);

	while (server.sync_count < 2) {
		wl_event_loop_dispatch(server.loop, -1);
		wl_display_flush_clients(server.display);
	}

	wl_display_dispatch(client.display);

	assert(client.callback_count == 2);

	wl_protocol_logger_destroy(logger);
	wl_display_disconnect(client.display);
	wl_event_loop_dispatch(server.loop, 100);

	wl_display_destroy(server.display);
}