summaryrefslogtreecommitdiff
path: root/tests/text-test.c
blob: 9b0f88c220df7adc2825cda5b80faf10320e1bbc (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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/*
 * Copyright © 2012 Intel Corporation
 *
 * Permission to use, copy, modify, distribute, and sell this software and
 * its documentation for any purpose is hereby granted without fee, provided
 * that the above copyright notice appear in all copies and that both that
 * copyright notice and this permission notice appear in supporting
 * documentation, and that the name of the copyright holders not be used in
 * advertising or publicity pertaining to distribution of the software
 * without specific, written prior permission.  The copyright holders make
 * no representations about the suitability of this software for any
 * purpose.  It is provided "as is" without express or implied warranty.
 *
 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <stdlib.h>
#include <stdio.h>
#include <sys/socket.h>
#include <assert.h>
#include <unistd.h>

#include <string.h>

#include "test-runner.h"

struct text_test_data {
	struct weston_layer *layer;

	unsigned int expected_activated_count;
	unsigned int expected_deactivated_count;

	const char *next_command;
	void (*next_handle)(struct test_client *client);
};

static void
pre_assert_state(struct test_client *client,
		 unsigned int expected_activated_count,
		 unsigned int expected_deactivated_count)
{
	unsigned int activated_count, deactivated_count;

	assert(sscanf(client->buf, "activated %u deactivated %u", &activated_count, &deactivated_count) == 2);
	fprintf(stderr, "Text model activations: %u deactivations: %u\n", activated_count, deactivated_count);
	assert(activated_count == expected_activated_count);
	assert(deactivated_count == expected_deactivated_count);
}

static void
handle_assert_state(struct test_client *client)
{
	struct text_test_data *data = client->data;

	pre_assert_state(client, data->expected_activated_count, data->expected_deactivated_count);

	test_client_send(client, data->next_command);
	client->handle = data->next_handle;
}

static void
post_assert_state(struct test_client *client,
		  unsigned int expected_activated_count,
		  unsigned int expected_deactivated_count,
		  const char *next_command,
		  void (*next_handle)(struct test_client *client))
{
	struct text_test_data *data = client->data;

	data->expected_activated_count = expected_activated_count;
	data->expected_deactivated_count = expected_deactivated_count;

	data->next_command = next_command;
	data->next_handle = next_handle;

	test_client_send(client, "assert-state\n");
	client->handle = handle_assert_state;
}

static struct weston_seat*
get_seat(struct test_client *client)
{
	struct wl_list *seat_list;
	struct weston_seat *seat;

	seat_list = &client->compositor->seat_list;
	assert(wl_list_length(seat_list) == 1);
	seat = container_of(seat_list->next, struct weston_seat, link);

	return seat;
}

static void
handle_surface_unfocus(struct test_client *client)
{
	struct weston_seat *seat;

	seat = get_seat(client);

	pre_assert_state(client, 2, 1);

	/* Unfocus the surface */
	wl_keyboard_set_focus(&seat->keyboard, NULL);

	post_assert_state(client, 2, 2, "bye\n", NULL);
}

static void
handle_reactivate_text_model(struct test_client *client)
{
	pre_assert_state(client, 1, 1);

	/* text_model is activated */

	post_assert_state(client, 2, 1,
			  "assert-state\n", handle_surface_unfocus);
}

static void
handle_deactivate_text_model(struct test_client *client)
{
	pre_assert_state(client, 1, 0);

	/* text_model is deactivated */

	post_assert_state(client, 1, 1,
			  "activate-text-model\n", handle_reactivate_text_model);
}

static void
handle_activate_text_model(struct test_client *client)
{
	pre_assert_state(client, 0, 0);

	/* text_model is activated */

	post_assert_state(client, 1, 0,
			  "deactivate-text-model\n", handle_deactivate_text_model);
}

static void
handle_text_model(struct test_client *client)
{
	uint32_t id;
	struct wl_resource *resource;

	assert(sscanf(client->buf, "text_model %u", &id) == 1);
	fprintf(stderr, "got text_model id %u\n", id);
	resource = wl_client_get_object(client->client, id);
	assert(resource);
	assert(strcmp(resource->object.interface->name, "text_model") == 0);

	test_client_send(client, "activate-text-model\n");
	client->handle = handle_activate_text_model;
}

static void
handle_surface(struct test_client *client)
{
	uint32_t id;
	struct wl_resource *resource;
	struct weston_surface *surface;
	struct text_test_data *data = client->data;
	struct weston_seat *seat;

	assert(sscanf(client->buf, "surface %u", &id) == 1);
	fprintf(stderr, "got surface id %u\n", id);
	resource = wl_client_get_object(client->client, id);
	assert(resource);
	assert(strcmp(resource->object.interface->name, "wl_surface") == 0);

	surface = (struct weston_surface *) resource;

	weston_surface_configure(surface, 100, 100, 200, 200);
	weston_surface_assign_output(surface);
	weston_surface_set_color(surface, 0.0, 0.0, 0.0, 1.0);

	data->layer = malloc(sizeof *data->layer);
	weston_layer_init(data->layer, &client->compositor->cursor_layer.link);
	wl_list_insert(&data->layer->surface_list, &surface->layer_link);
	weston_surface_damage(surface);

	seat = get_seat(client);
	client->compositor->focus = 1; /* Make it work even if pointer is
					* outside X window. */
	wl_keyboard_set_focus(&seat->keyboard, &surface->surface);

	test_client_send(client, "create-text-model\n");
	client->handle = handle_text_model;
}

TEST(text_test)
{
	struct test_client *client;
	struct text_test_data *data;

	client = test_client_launch(compositor, "test-text-client");
	client->terminate = 1;

	test_client_send(client, "create-surface\n");
	client->handle = handle_surface;

	data = malloc(sizeof *data);
	assert(data);
	client->data = data;

}