packaging: make a option to select enable/disable tools
[platform/upstream/libxkbcommon.git] / test / x11.c
1 /*
2  * Copyright © 2013 Ran Benita <ran234@gmail.com>
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the "Software"),
6  * to deal in the Software without restriction, including without limitation
7  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8  * and/or sell copies of the Software, and to permit persons to whom the
9  * Software is furnished to do so, subject to the following conditions:
10  *
11  * The above copyright notice and this permission notice (including the next
12  * paragraph) shall be included in all copies or substantial portions of the
13  * Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21  * DEALINGS IN THE SOFTWARE.
22  */
23
24 #include "config.h"
25
26 #include "test.h"
27 #include "xvfb-wrapper.h"
28 #include "xkbcommon/xkbcommon-x11.h"
29
30 X11_TEST(test_basic)
31 {
32     struct xkb_context *ctx = test_get_context(0);
33     xcb_connection_t *conn;
34     int ret;
35     int32_t device_id;
36     struct xkb_keymap *keymap;
37     struct xkb_state *state;
38     char *dump;
39     int exit_code = 0;
40
41     /*
42     * The next two steps depend on a running X server with XKB support.
43     * If it fails, it's not necessarily an actual problem with the code.
44     * So we don't want a FAIL here.
45     */
46     conn = xcb_connect(display, NULL);
47     if (!conn || xcb_connection_has_error(conn)) {
48         exit_code = SKIP_TEST;
49         goto err_conn;
50     }
51
52     ret = xkb_x11_setup_xkb_extension(conn,
53                                       XKB_X11_MIN_MAJOR_XKB_VERSION,
54                                       XKB_X11_MIN_MINOR_XKB_VERSION,
55                                       XKB_X11_SETUP_XKB_EXTENSION_NO_FLAGS,
56                                       NULL, NULL, NULL, NULL);
57     if (!ret) {
58         exit_code = SKIP_TEST;
59         goto err_conn;
60     }
61
62     device_id = xkb_x11_get_core_keyboard_device_id(conn);
63     assert(device_id != -1);
64
65     keymap = xkb_x11_keymap_new_from_device(ctx, conn, device_id,
66                                             XKB_KEYMAP_COMPILE_NO_FLAGS);
67     assert(keymap);
68
69     state = xkb_x11_state_new_from_device(keymap, conn, device_id);
70     assert(state);
71
72     dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
73     assert(dump);
74     fputs(dump, stdout);
75
76     /* TODO: Write some X11-specific tests. */
77
78     free(dump);
79     xkb_state_unref(state);
80     xkb_keymap_unref(keymap);
81 err_conn:
82     xcb_disconnect(conn);
83     xkb_context_unref(ctx);
84
85     return exit_code;
86 }
87
88 int main(void) {
89     return x11_tests_run();
90 }