2 * Copyright © 2012 Intel Corporation
4 * Permission to use, copy, modify, distribute, and sell this software and
5 * its documentation for any purpose is hereby granted without fee, provided
6 * that the above copyright notice appear in all copies and that both that
7 * copyright notice and this permission notice appear in supporting
8 * documentation, and that the name of the copyright holders not be used in
9 * advertising or publicity pertaining to distribution of the software
10 * without specific, written prior permission. The copyright holders make
11 * no representations about the suitability of this software for any
12 * purpose. It is provided "as is" without express or implied warranty.
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
15 * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
16 * FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY
17 * SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
18 * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
19 * CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
20 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
25 #include <sys/socket.h>
31 #include "test-runner.h"
34 handle_surface(struct test_client *client)
37 struct wl_resource *resource;
38 struct weston_surface *surface;
39 struct weston_layer *layer = client->data;
40 struct wl_list *seat_list;
41 struct weston_seat *seat;
43 assert(sscanf(client->buf, "surface %u", &id) == 1);
44 fprintf(stderr, "got surface id %u\n", id);
45 resource = wl_client_get_object(client->client, id);
47 assert(strcmp(resource->object.interface->name, "wl_surface") == 0);
49 surface = (struct weston_surface *) resource;
51 weston_surface_configure(surface, 100, 100, 200, 200);
52 weston_surface_assign_output(surface);
53 weston_surface_set_color(surface, 0.0, 0.0, 0.0, 1.0);
54 wl_list_insert(&layer->surface_list, &surface->layer_link);
55 weston_surface_damage(surface);
57 seat_list = &client->compositor->seat_list;
58 assert(wl_list_length(seat_list) == 1);
59 seat = container_of(seat_list->next, struct weston_seat, link);
60 client->compositor->focus = 1; /* Make it work even if pointer is
61 * outside X window. */
62 notify_motion(seat, 100,
63 wl_fixed_from_int(150), wl_fixed_from_int(150));
65 test_client_send(client, "bye\n");
70 struct test_client *client;
71 struct weston_layer *layer;
73 client = test_client_launch(compositor);
74 client->terminate = 1;
76 test_client_send(client, "create-surface\n");
77 client->handle = handle_surface;
79 layer = malloc(sizeof *layer);
81 weston_layer_init(layer, &compositor->cursor_layer.link);