test/rmlvo-to-keymap.c: fix compilation on Darwin (#101)
[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 "test.h"
25 #include "xkbcommon/xkbcommon-x11.h"
26
27 int
28 main(void)
29 {
30     struct xkb_context *ctx = test_get_context(0);
31     xcb_connection_t *conn;
32     int ret;
33     int32_t device_id;
34     struct xkb_keymap *keymap;
35     struct xkb_state *state;
36     char *dump;
37     int exit_code = 0;
38
39     /*
40     * The next two steps depend on a running X server with XKB support.
41     * If it fails, it's not necessarily an actual problem with the code.
42     * So we don't want a FAIL here.
43     */
44     conn = xcb_connect(NULL, NULL);
45     if (!conn || xcb_connection_has_error(conn)) {
46         exit_code = SKIP_TEST;
47         goto err_conn;
48     }
49
50     ret = xkb_x11_setup_xkb_extension(conn,
51                                       XKB_X11_MIN_MAJOR_XKB_VERSION,
52                                       XKB_X11_MIN_MINOR_XKB_VERSION,
53                                       XKB_X11_SETUP_XKB_EXTENSION_NO_FLAGS,
54                                       NULL, NULL, NULL, NULL);
55     if (!ret) {
56         exit_code = SKIP_TEST;
57         goto err_conn;
58     }
59
60     device_id = xkb_x11_get_core_keyboard_device_id(conn);
61     assert(device_id != -1);
62
63     keymap = xkb_x11_keymap_new_from_device(ctx, conn, device_id,
64                                             XKB_KEYMAP_COMPILE_NO_FLAGS);
65     assert(keymap);
66
67     state = xkb_x11_state_new_from_device(keymap, conn, device_id);
68     assert(state);
69
70     dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
71     assert(dump);
72     fputs(dump, stdout);
73
74     /* TODO: Write some X11-specific tests. */
75
76     free(dump);
77     xkb_state_unref(state);
78     xkb_keymap_unref(keymap);
79 err_conn:
80     xcb_disconnect(conn);
81     xkb_context_unref(ctx);
82
83     return exit_code;
84 }