2 * Copyright 2009 Dan Nicholson
3 * Copyright © 2012 Daniel Stone
4 * Copyright © 2012 Ran Benita
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 * Except as contained in this notice, the names of the authors or their
24 * institutions shall not be used in advertising or otherwise to promote the
25 * sale, use or other dealings in this Software without prior written
26 * authorization from the authors.
36 #include <sys/types.h>
39 #include "xkbcommon/xkbcommon.h"
43 test_get_path(const char *path_rel)
45 static char path[PATH_MAX];
46 const char *srcdir = getenv("srcdir");
48 snprintf(path, PATH_MAX - 1,
49 "%s/test/data/%s", srcdir ? srcdir : ".",
50 path_rel ? path_rel : "");
56 test_read_file(const char *path_rel)
60 int fd, count, remaining;
62 fd = open(test_get_path(path_rel), O_RDONLY);
66 if (fstat(fd, &info) != 0) {
71 ret = malloc(info.st_size + 1);
77 remaining = info.st_size;
79 while ((count = read(fd, tmp, remaining))) {
83 ret[info.st_size] = '\0';
95 test_get_context(void)
97 struct xkb_context *ctx = xkb_context_new(XKB_CONTEXT_NO_DEFAULT_INCLUDES);
102 xkb_context_include_path_append(ctx, test_get_path(""));
108 test_compile_file(struct xkb_context *context, const char *path_rel)
110 struct xkb_keymap *keymap;
112 const char *path = test_get_path(path_rel);
114 file = fopen(path, "r");
116 fprintf(stderr, "Failed to open path: %s\n", path);
119 assert(file != NULL);
121 keymap = xkb_map_new_from_file(context, file,
122 XKB_KEYMAP_FORMAT_TEXT_V1, 0);
126 fprintf(stderr, "Failed to compile path: %s\n", path);
130 fprintf(stderr, "Successfully compiled path: %s\n", path);
136 test_compile_string(struct xkb_context *context, const char *string)
138 struct xkb_keymap *keymap;
140 keymap = xkb_map_new_from_string(context, string,
141 XKB_KEYMAP_FORMAT_TEXT_V1, 0);
143 fprintf(stderr, "Failed to compile string\n");
151 test_compile_rules(struct xkb_context *context, const char *rules,
152 const char *model, const char *layout,
153 const char *variant, const char *options)
155 struct xkb_keymap *keymap;
156 struct xkb_rule_names rmlvo = {
164 keymap = xkb_map_new_from_names(context, &rmlvo, 0);
167 "Failed to compile RMLVO: '%s', '%s', '%s', '%s', '%s'\n",
168 rules, model, layout, variant, options);