2 * Copyright © 2009 Dan Nicholson
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:
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
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.
30 #define DATA_PATH "keymaps/stringcomp.data"
33 main(int argc, char *argv[])
35 struct xkb_context *ctx = test_get_context(0);
36 struct xkb_keymap *keymap;
37 char *original, *dump;
41 /* Load in a prebuilt keymap, make sure we can compile it from memory,
42 * then compare it to make sure we get the same result when dumping it
44 original = test_read_file(DATA_PATH);
47 keymap = test_compile_buffer(ctx, original, strlen(original));
50 dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
53 if (!streq(original, dump)) {
55 "round-trip test failed: dumped map differs from original\n");
56 fprintf(stderr, "path to original file: %s\n",
57 test_get_path(DATA_PATH));
58 fprintf(stderr, "length: dumped %lu, original %lu\n",
59 (unsigned long) strlen(dump),
60 (unsigned long) strlen(original));
61 fprintf(stderr, "dumped map:\n");
62 fprintf(stderr, "%s\n", dump);
69 xkb_keymap_unref(keymap);
71 /* Make sure we can't (falsely claim to) compile an empty string. */
72 keymap = test_compile_buffer(ctx, "", 0);
75 /* Make sure we can recompile our output for a normal keymap from rules. */
76 keymap = test_compile_rules(ctx, NULL, NULL,
77 "ru,ca,de,us", ",multix,neo,intl", NULL);
79 dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
81 xkb_keymap_unref(keymap);
82 keymap = test_compile_buffer(ctx, dump, strlen(dump));
84 xkb_keymap_unref(keymap);
87 xkb_context_unref(ctx);