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 "test.h"
25
26 static int
test_file(struct xkb_context * ctx,const char * path_rel)27 test_file(struct xkb_context *ctx, const char *path_rel)
28 {
29 struct xkb_keymap *keymap = test_compile_file(ctx, path_rel);
30
31 if (!keymap)
32 return 0;
33
34 xkb_keymap_unref(keymap);
35 return 1;
36 }
37
38 int
main(void)39 main(void)
40 {
41 struct xkb_context *ctx = test_get_context(0);
42
43 assert(test_file(ctx, "keymaps/basic.xkb"));
44 assert(test_file(ctx, "keymaps/comprehensive-plus-geom.xkb"));
45 assert(test_file(ctx, "keymaps/no-types.xkb"));
46 assert(test_file(ctx, "keymaps/quartz.xkb"));
47 assert(test_file(ctx, "keymaps/no-aliases.xkb"));
48
49 assert(!test_file(ctx, "keymaps/divide-by-zero.xkb"));
50 assert(!test_file(ctx, "keymaps/bad.xkb"));
51 assert(!test_file(ctx, "keymaps/syntax-error.xkb"));
52 assert(!test_file(ctx, "keymaps/syntax-error2.xkb"));
53 assert(!test_file(ctx, "does not exist"));
54
55 /* Test response to invalid flags and formats. */
56 fclose(stdin);
57 assert(!xkb_keymap_new_from_file(ctx, NULL, XKB_KEYMAP_FORMAT_TEXT_V1, 0));
58 assert(!xkb_keymap_new_from_file(ctx, stdin, 0, 0));
59 assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_USE_ORIGINAL_FORMAT, 0));
60 assert(!xkb_keymap_new_from_file(ctx, stdin, 1234, 0));
61 assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_FORMAT_TEXT_V1, -1));
62 assert(!xkb_keymap_new_from_file(ctx, stdin, XKB_KEYMAP_FORMAT_TEXT_V1, 1234));
63
64 xkb_context_unref(ctx);
65
66 return 0;
67 }
68