Copyright updates
[platform/upstream/libxkbcommon.git] / test / stringcomp.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 <assert.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27
28 #include "xkbcommon/xkbcommon.h"
29 #include "test.h"
30
31 #define DATA_PATH "keymaps/stringcomp.data"
32
33 int
34 main(int argc, char *argv[])
35 {
36     struct xkb_context *ctx = test_get_context();
37     struct xkb_keymap *keymap;
38     char *original, *dump;
39
40     assert(ctx);
41
42     /* Load in a prebuilt keymap, make sure we can compile it from a string,
43      * then compare it to make sure we get the same result when dumping it
44      * to a string. */
45     original = test_read_file(DATA_PATH);
46     assert(original);
47
48     keymap = test_compile_string(ctx, original);
49     assert(keymap);
50
51     dump = xkb_map_get_as_string(keymap);
52     assert(dump);
53
54     if (!streq(original, dump)) {
55         fprintf(stderr,
56                 "round-trip test failed: dumped map differs from original\n");
57         fprintf(stderr, "path to original file: %s\n",
58                 test_get_path(DATA_PATH));
59         fprintf(stderr, "length: dumped %zu, original %zu\n",
60                 strlen(dump), strlen(original));
61         fprintf(stderr, "dumped map:\n");
62         fprintf(stderr, "%s\n", dump);
63         fflush(stderr);
64         assert(0);
65     }
66
67     free(original);
68     free(dump);
69     xkb_map_unref(keymap);
70
71     /* Make sure we can't (falsely claim to) compile an empty string. */
72     keymap = test_compile_string(ctx, "");
73     assert(!keymap);
74
75     xkb_context_unref(ctx);
76
77     return 0;
78 }