xref: /aosp_15_r20/external/libxkbcommon/test/buffercomp.c (revision 2b949d0487e80d67f1fda82db69e101e761f8064)
1*2b949d04SAndroid Build Coastguard Worker /*
2*2b949d04SAndroid Build Coastguard Worker  * Copyright © 2009 Dan Nicholson
3*2b949d04SAndroid Build Coastguard Worker  *
4*2b949d04SAndroid Build Coastguard Worker  * Permission is hereby granted, free of charge, to any person obtaining a
5*2b949d04SAndroid Build Coastguard Worker  * copy of this software and associated documentation files (the "Software"),
6*2b949d04SAndroid Build Coastguard Worker  * to deal in the Software without restriction, including without limitation
7*2b949d04SAndroid Build Coastguard Worker  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8*2b949d04SAndroid Build Coastguard Worker  * and/or sell copies of the Software, and to permit persons to whom the
9*2b949d04SAndroid Build Coastguard Worker  * Software is furnished to do so, subject to the following conditions:
10*2b949d04SAndroid Build Coastguard Worker  *
11*2b949d04SAndroid Build Coastguard Worker  * The above copyright notice and this permission notice (including the next
12*2b949d04SAndroid Build Coastguard Worker  * paragraph) shall be included in all copies or substantial portions of the
13*2b949d04SAndroid Build Coastguard Worker  * Software.
14*2b949d04SAndroid Build Coastguard Worker  *
15*2b949d04SAndroid Build Coastguard Worker  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16*2b949d04SAndroid Build Coastguard Worker  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17*2b949d04SAndroid Build Coastguard Worker  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18*2b949d04SAndroid Build Coastguard Worker  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19*2b949d04SAndroid Build Coastguard Worker  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20*2b949d04SAndroid Build Coastguard Worker  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21*2b949d04SAndroid Build Coastguard Worker  * DEALINGS IN THE SOFTWARE.
22*2b949d04SAndroid Build Coastguard Worker  */
23*2b949d04SAndroid Build Coastguard Worker 
24*2b949d04SAndroid Build Coastguard Worker #include "config.h"
25*2b949d04SAndroid Build Coastguard Worker 
26*2b949d04SAndroid Build Coastguard Worker #include <assert.h>
27*2b949d04SAndroid Build Coastguard Worker #include <stdio.h>
28*2b949d04SAndroid Build Coastguard Worker #include <stdlib.h>
29*2b949d04SAndroid Build Coastguard Worker 
30*2b949d04SAndroid Build Coastguard Worker #include "test.h"
31*2b949d04SAndroid Build Coastguard Worker 
32*2b949d04SAndroid Build Coastguard Worker #define DATA_PATH "keymaps/stringcomp.data"
33*2b949d04SAndroid Build Coastguard Worker 
34*2b949d04SAndroid Build Coastguard Worker int
main(int argc,char * argv[])35*2b949d04SAndroid Build Coastguard Worker main(int argc, char *argv[])
36*2b949d04SAndroid Build Coastguard Worker {
37*2b949d04SAndroid Build Coastguard Worker     struct xkb_context *ctx = test_get_context(0);
38*2b949d04SAndroid Build Coastguard Worker     struct xkb_keymap *keymap;
39*2b949d04SAndroid Build Coastguard Worker     char *original, *dump;
40*2b949d04SAndroid Build Coastguard Worker 
41*2b949d04SAndroid Build Coastguard Worker     assert(ctx);
42*2b949d04SAndroid Build Coastguard Worker 
43*2b949d04SAndroid Build Coastguard Worker     /* Load in a prebuilt keymap, make sure we can compile it from memory,
44*2b949d04SAndroid Build Coastguard Worker      * then compare it to make sure we get the same result when dumping it
45*2b949d04SAndroid Build Coastguard Worker      * to a string. */
46*2b949d04SAndroid Build Coastguard Worker     original = test_read_file(DATA_PATH);
47*2b949d04SAndroid Build Coastguard Worker     assert(original);
48*2b949d04SAndroid Build Coastguard Worker 
49*2b949d04SAndroid Build Coastguard Worker     keymap = test_compile_buffer(ctx, original, strlen(original));
50*2b949d04SAndroid Build Coastguard Worker     assert(keymap);
51*2b949d04SAndroid Build Coastguard Worker 
52*2b949d04SAndroid Build Coastguard Worker     dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
53*2b949d04SAndroid Build Coastguard Worker     assert(dump);
54*2b949d04SAndroid Build Coastguard Worker 
55*2b949d04SAndroid Build Coastguard Worker     if (!streq(original, dump)) {
56*2b949d04SAndroid Build Coastguard Worker         fprintf(stderr,
57*2b949d04SAndroid Build Coastguard Worker                 "round-trip test failed: dumped map differs from original\n");
58*2b949d04SAndroid Build Coastguard Worker         fprintf(stderr, "path to original file: %s\n",
59*2b949d04SAndroid Build Coastguard Worker                 test_get_path(DATA_PATH));
60*2b949d04SAndroid Build Coastguard Worker         fprintf(stderr, "length: dumped %lu, original %lu\n",
61*2b949d04SAndroid Build Coastguard Worker                 (unsigned long) strlen(dump),
62*2b949d04SAndroid Build Coastguard Worker                 (unsigned long) strlen(original));
63*2b949d04SAndroid Build Coastguard Worker         fprintf(stderr, "dumped map:\n");
64*2b949d04SAndroid Build Coastguard Worker         fprintf(stderr, "%s\n", dump);
65*2b949d04SAndroid Build Coastguard Worker         fflush(stderr);
66*2b949d04SAndroid Build Coastguard Worker         assert(0);
67*2b949d04SAndroid Build Coastguard Worker     }
68*2b949d04SAndroid Build Coastguard Worker 
69*2b949d04SAndroid Build Coastguard Worker     free(original);
70*2b949d04SAndroid Build Coastguard Worker     free(dump);
71*2b949d04SAndroid Build Coastguard Worker     xkb_keymap_unref(keymap);
72*2b949d04SAndroid Build Coastguard Worker 
73*2b949d04SAndroid Build Coastguard Worker     /* Make sure we can't (falsely claim to) compile an empty string. */
74*2b949d04SAndroid Build Coastguard Worker     keymap = test_compile_buffer(ctx, "", 0);
75*2b949d04SAndroid Build Coastguard Worker     assert(!keymap);
76*2b949d04SAndroid Build Coastguard Worker 
77*2b949d04SAndroid Build Coastguard Worker     /* Make sure we can recompile our output for a normal keymap from rules. */
78*2b949d04SAndroid Build Coastguard Worker     keymap = test_compile_rules(ctx, NULL, NULL,
79*2b949d04SAndroid Build Coastguard Worker                                 "ru,ca,de,us", ",multix,neo,intl", NULL);
80*2b949d04SAndroid Build Coastguard Worker     assert(keymap);
81*2b949d04SAndroid Build Coastguard Worker     dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
82*2b949d04SAndroid Build Coastguard Worker     assert(dump);
83*2b949d04SAndroid Build Coastguard Worker     xkb_keymap_unref(keymap);
84*2b949d04SAndroid Build Coastguard Worker     keymap = test_compile_buffer(ctx, dump, strlen(dump));
85*2b949d04SAndroid Build Coastguard Worker     assert(keymap);
86*2b949d04SAndroid Build Coastguard Worker     xkb_keymap_unref(keymap);
87*2b949d04SAndroid Build Coastguard Worker     free(dump);
88*2b949d04SAndroid Build Coastguard Worker 
89*2b949d04SAndroid Build Coastguard Worker     xkb_context_unref(ctx);
90*2b949d04SAndroid Build Coastguard Worker 
91*2b949d04SAndroid Build Coastguard Worker     return 0;
92*2b949d04SAndroid Build Coastguard Worker }
93