2012-08-02 20:01:21 -06:00
|
|
|
/*
|
2012-09-12 09:54:07 -06:00
|
|
|
* Copyright © 2009 Dan Nicholson
|
2012-07-17 03:20:15 -06:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
2012-09-12 09:54:07 -06:00
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
2012-07-17 03:20:15 -06:00
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
2012-09-12 09:54:07 -06:00
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
* DEALINGS IN THE SOFTWARE.
|
2012-07-17 03:20:15 -06:00
|
|
|
*/
|
2012-05-29 08:08:35 -06:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2012-07-12 07:15:08 -06:00
|
|
|
#include "test.h"
|
2012-05-29 08:08:35 -06:00
|
|
|
|
2012-08-02 20:01:21 -06:00
|
|
|
#define DATA_PATH "keymaps/stringcomp.data"
|
|
|
|
|
2012-07-12 07:15:08 -06:00
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
2012-05-29 08:08:35 -06:00
|
|
|
{
|
2012-07-12 07:15:08 -06:00
|
|
|
struct xkb_context *ctx = test_get_context();
|
2012-05-29 08:08:35 -06:00
|
|
|
struct xkb_keymap *keymap;
|
2012-08-02 20:01:21 -06:00
|
|
|
char *original, *dump;
|
2012-05-29 08:08:35 -06:00
|
|
|
|
|
|
|
assert(ctx);
|
|
|
|
|
2012-08-02 20:01:21 -06:00
|
|
|
/* Load in a prebuilt keymap, make sure we can compile it from a string,
|
|
|
|
* then compare it to make sure we get the same result when dumping it
|
|
|
|
* to a string. */
|
|
|
|
original = test_read_file(DATA_PATH);
|
|
|
|
assert(original);
|
2012-05-29 08:08:35 -06:00
|
|
|
|
2012-08-02 20:01:21 -06:00
|
|
|
keymap = test_compile_string(ctx, original);
|
2012-05-29 08:08:35 -06:00
|
|
|
assert(keymap);
|
2012-08-02 20:01:21 -06:00
|
|
|
|
2012-09-23 09:52:51 -06:00
|
|
|
dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
|
2012-08-02 20:01:21 -06:00
|
|
|
assert(dump);
|
|
|
|
|
|
|
|
if (!streq(original, dump)) {
|
|
|
|
fprintf(stderr,
|
|
|
|
"round-trip test failed: dumped map differs from original\n");
|
|
|
|
fprintf(stderr, "path to original file: %s\n",
|
|
|
|
test_get_path(DATA_PATH));
|
2012-09-30 06:17:08 -06:00
|
|
|
fprintf(stderr, "length: dumped %lu, original %lu\n",
|
|
|
|
(unsigned long) strlen(dump),
|
|
|
|
(unsigned long) strlen(original));
|
2012-08-02 20:01:21 -06:00
|
|
|
fprintf(stderr, "dumped map:\n");
|
|
|
|
fprintf(stderr, "%s\n", dump);
|
|
|
|
fflush(stderr);
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(original);
|
|
|
|
free(dump);
|
2012-09-21 05:44:17 -06:00
|
|
|
xkb_keymap_unref(keymap);
|
2012-07-12 07:15:08 -06:00
|
|
|
|
2012-08-02 20:01:21 -06:00
|
|
|
/* Make sure we can't (falsely claim to) compile an empty string. */
|
2012-07-12 07:15:08 -06:00
|
|
|
keymap = test_compile_string(ctx, "");
|
|
|
|
assert(!keymap);
|
|
|
|
|
2012-05-29 08:08:35 -06:00
|
|
|
xkb_context_unref(ctx);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|