Keysyms: Update using latest xorgproto
[platform/upstream/libxkbcommon.git] / test / filecomp.c
1 /*
2  * Copyright © 2009 Dan Nicholson
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
28 static int
29 test_file(struct xkb_context *ctx, const char *path_rel)
30 {
31     struct xkb_keymap *keymap = test_compile_file(ctx, path_rel);
32
33     if (!keymap)
34         return 0;
35
36     xkb_keymap_unref(keymap);
37     return 1;
38 }
39
40 int
41 main(void)
42 {
43     struct xkb_context *ctx = test_get_context(0);
44
45     assert(test_file(ctx, "keymaps/basic.xkb"));
46     assert(test_file(ctx, "keymaps/comprehensive-plus-geom.xkb"));
47     assert(test_file(ctx, "keymaps/no-types.xkb"));
48     assert(test_file(ctx, "keymaps/quartz.xkb"));
49     assert(test_file(ctx, "keymaps/no-aliases.xkb"));
50     assert(test_file(ctx, "keymaps/modmap-none.xkb"));
51     assert(test_file(ctx, "keymaps/invalid-escape-sequence.xkb"));
52
53     assert(!test_file(ctx, "keymaps/divide-by-zero.xkb"));
54     assert(!test_file(ctx, "keymaps/bad.xkb"));
55     assert(!test_file(ctx, "keymaps/syntax-error.xkb"));
56     assert(!test_file(ctx, "keymaps/syntax-error2.xkb"));
57     assert(!test_file(ctx, "does not exist"));
58
59     /* Test response to invalid flags and formats. */
60     fclose(stdin);
61     assert(!xkb_keymap_new_from_file(ctx, NULL, XKB_KEYMAP_FORMAT_TEXT_V1, 0));
62     assert(!xkb_keymap_new_from_file(ctx, stdin, 0, 0));
63     assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_USE_ORIGINAL_FORMAT, 0));
64     assert(!xkb_keymap_new_from_file(ctx, stdin, 1234, 0));
65     assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_FORMAT_TEXT_V1, -1));
66     assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_FORMAT_TEXT_V1, 1234));
67
68     xkb_context_unref(ctx);
69
70     return 0;
71 }