test: add a unit test for the event loop post dispatch check
[profile/ivi/wayland.git] / tests / event-loop-test.c
1 /*
2  * Copyright © 2012 Intel Corporation
3  *
4  * Permission to use, copy, modify, distribute, and sell this software and its
5  * documentation for any purpose is hereby granted without fee, provided that
6  * the above copyright notice appear in all copies and that both that copyright
7  * notice and this permission notice appear in supporting documentation, and
8  * that the name of the copyright holders not be used in advertising or
9  * publicity pertaining to distribution of the software without specific,
10  * written prior permission.  The copyright holders make no representations
11  * about the suitability of this software for any purpose.  It is provided "as
12  * is" without express or implied warranty.
13  *
14  * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20  * OF THIS SOFTWARE.
21  */
22
23 #include <stdlib.h>
24 #include <assert.h>
25 #include "../src/wayland-server.h"
26 #include "test-runner.h"
27
28 static int
29 fd_dispatch(int fd, uint32_t mask, void *data)
30 {
31         int *p = data;
32
33         *p = 1;
34
35         return 0;
36 }
37
38 TEST(post_dispatch_check)
39 {
40         struct wl_event_loop *loop = wl_event_loop_create();
41         struct wl_event_source *source;
42         int dispatch_ran = 0;
43
44         source = wl_event_loop_add_fd(loop, 1, WL_EVENT_READABLE,
45                                       fd_dispatch, &dispatch_ran);
46         wl_event_source_check(source);
47
48         wl_event_loop_dispatch(loop, 0);
49         assert(dispatch_ran);
50
51         wl_event_source_remove(source);
52         wl_event_loop_destroy(loop);
53 }