2012-08-02 20:01:21 -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:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS 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.
|
|
|
|
*
|
|
|
|
* Except as contained in this notice, the names of the authors or their
|
|
|
|
* institutions shall not be used in advertising or otherwise to promote the
|
|
|
|
* sale, use or other dealings in this Software without prior written
|
|
|
|
* authorization from the authors.
|
|
|
|
*/
|
2012-05-29 08:08:35 -06:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "xkbcommon/xkbcommon.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
|
|
|
|
|
|
|
dump = xkb_map_get_as_string(keymap);
|
|
|
|
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));
|
|
|
|
fprintf(stderr, "length: dumped %zu, original %zu\n",
|
|
|
|
strlen(dump), strlen(original));
|
|
|
|
fprintf(stderr, "dumped map:\n");
|
|
|
|
fprintf(stderr, "%s\n", dump);
|
|
|
|
fflush(stderr);
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
free(original);
|
|
|
|
free(dump);
|
2012-05-29 08:08:35 -06:00
|
|
|
xkb_map_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;
|
|
|
|
}
|