| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964 |
- /*
- * Copyright © 2009 Dan Nicholson <dbn.lists@gmail.com>
- * Copyright © 2012 Intel Corporation
- * Copyright © 2012 Ran Benita <ran234@gmail.com>
- * SPDX-License-Identifier: MIT-open-group
- *
- * Author: Dan Nicholson <dbn.lists@gmail.com>
- * Daniel Stone <daniel@fooishbar.org>
- * Ran Benita <ran234@gmail.com>
- */
- #include "config.h"
- #include "test-config.h"
- #include <stdlib.h>
- #include <limits.h>
- #include <locale.h>
- #include <fcntl.h>
- #include <stdio.h>
- #include <string.h>
- #include <sys/types.h>
- #include <sys/stat.h>
- #include "xkbcommon/xkbcommon.h"
- #include "darray.h"
- #include "keymap.h"
- #include "test.h"
- #include "utils.h"
- #include "utils-paths.h"
- #include "src/keysym.h"
- #include "src/xkbcomp/rules.h"
- #include "src/utils-numbers.h"
- #include "tools/tools-common.h"
- /* Setup test */
- void
- test_init(void)
- {
- /* Make stdout always unbuffered, to ensure we always get it entirely */
- setvbuf(stdout, NULL, _IONBF, BUFSIZ);
- /* Enable using another locale than C or en_US, so we can catch
- * locale-specific bugs */
- setlocale(LC_ALL, "");
- }
- void
- print_detailed_state(struct xkb_state *state)
- {
- fprintf(stderr,
- " Layout: base: %"PRId32", latched: %"PRId32", locked: %"PRId32", "
- "effective: %"PRIu32"\n",
- xkb_state_serialize_layout(state, XKB_STATE_LAYOUT_DEPRESSED),
- xkb_state_serialize_layout(state, XKB_STATE_LAYOUT_LATCHED),
- xkb_state_serialize_layout(state, XKB_STATE_LAYOUT_LOCKED),
- xkb_state_serialize_layout(state, XKB_STATE_LAYOUT_EFFECTIVE));
- fprintf(stderr,
- " Modifiers: base: %#"PRIx32", latched: %#"PRIx32", "
- "locked: %#"PRIx32", effective: %#"PRIx32"\n",
- xkb_state_serialize_mods(state, XKB_STATE_MODS_DEPRESSED),
- xkb_state_serialize_mods(state, XKB_STATE_MODS_LATCHED),
- xkb_state_serialize_mods(state, XKB_STATE_MODS_LOCKED),
- xkb_state_serialize_mods(state, XKB_STATE_MODS_EFFECTIVE));
- /* There is currently no xkb_state_serialize_leds */
- struct xkb_keymap *keymap = xkb_state_get_keymap(state);
- xkb_led_mask_t leds = 0;
- for (xkb_led_index_t led = 0; led < xkb_keymap_num_leds(keymap); led++) {
- if (xkb_state_led_index_is_active(state, led) > 0)
- leds |= UINT32_C(1) << led;
- }
- fprintf(stderr, " LEDs: 0x%"PRIx32"\n", leds);
- }
- enum events_consume_flags {
- ALL_EVENTS = 0,
- UNTIL_KEY_EVENT = (1 << 0)
- };
- static bool
- consume_events(struct xkb_machine *sm,
- struct xkb_events *events,
- struct xkb_state *state,
- enum events_consume_flags flags,
- xkb_keycode_t *kc)
- {
- const struct xkb_event *event;
- while ((event = xkb_events_next(events))) {
- switch (xkb_event_get_type(event)) {
- case XKB_EVENT_TYPE_KEY_DOWN:
- case XKB_EVENT_TYPE_KEY_REPEATED:
- case XKB_EVENT_TYPE_KEY_UP:
- *kc = xkb_event_get_keycode(event);
- if (flags & UNTIL_KEY_EVENT) {
- /* Stop on key event */
- return true;
- }
- break;
- case XKB_EVENT_TYPE_COMPONENTS_CHANGE:
- xkb_state_update_event(state, event);
- break;
- default:
- {} /* Label followed by declaration requires C23 */
- static_assert(XKB_EVENT_TYPE_COMPONENTS_CHANGE == 4 &&
- XKB_EVENT_TYPE_COMPONENTS_CHANGE ==
- (enum xkb_event_type) _LAST_XKB_EVENT_TYPE,
- "Missing state event type");
- /* ignore */
- }
- }
- return true;
- }
- /*
- * Test a sequence of keysyms, resulting from a sequence of key presses,
- * against the keysyms they're supposed to generate.
- *
- * - Each test runs with a clean state.
- * - Each line in the test is made up of:
- * + A keycode, given as a KEY_* from linux/input.h.
- * + A direction - DOWN for press, UP for release, BOTH for
- * immediate press + release, REPEAT to just get the syms.
- * + A sequence of keysyms that should result from this keypress.
- *
- * The vararg format is:
- * <KEY_*> <DOWN | UP | BOTH> <XKB_KEY_* (zero or more)> <NEXT | FINISH>
- *
- * See below for examples.
- */
- int
- test_key_seq_va(struct xkb_keymap *keymap, struct xkb_machine *sm,
- struct xkb_events *events, va_list ap)
- {
- assert(!(!sm ^ !events));
- fprintf(stderr, "----\n");
- struct xkb_state * const state = xkb_state_new(keymap);
- assert(state);
- unsigned int count = 0;
- char ksbuf[XKB_KEYSYM_NAME_MAX_SIZE];
- for (;;) {
- const xkb_keycode_t kc = va_arg(ap, int) + EVDEV_OFFSET;
- const int op = va_arg(ap, int);
- const char *opstr = NULL;
- switch (op) {
- case DOWN: opstr = "DOWN"; break;
- case REPEAT: opstr = "REPEAT"; break;
- case UP: opstr = "UP"; break;
- case BOTH: opstr = "BOTH"; break;
- case NEXT: opstr = "NEXT"; break;
- case FINISH: opstr = "FINISH"; break;
- default:
- fprintf(stderr, "ERROR: Unsupported operation: %d\n", op);
- goto fail;
- }
- /*
- * WARNING: the following assumes there is always exactly 1 key event in
- * the events queue.
- */
- xkb_keycode_t kc_new = kc;
- if (events) {
- /* xkb_machine API: consume until the first key event */
- if (op == DOWN || op == REPEAT || op == BOTH) {
- assert(!xkb_machine_process_key(
- sm, kc, (op == REPEAT ? XKB_KEY_REPEATED : XKB_KEY_DOWN), events
- ));
- assert(consume_events(sm, events, state, UNTIL_KEY_EVENT, &kc_new));
- }
- if (op == UP || op == BOTH) {
- if (op == BOTH) {
- /* Consume pending events */
- assert(consume_events(sm, events, state, ALL_EVENTS, &kc_new));
- }
- assert(xkb_machine_process_key(sm, kc, XKB_KEY_UP, events)
- == 0);
- assert(consume_events(sm, events, state, UNTIL_KEY_EVENT, &kc_new));
- }
- }
- const xkb_keysym_t *syms;
- const int nsyms = xkb_state_key_get_syms(state, kc_new, &syms);
- if (events) {
- /* xkb_machine API: consume the rest of events */
- assert(consume_events(sm, events, state, ALL_EVENTS, &kc_new));
- } else {
- /* Legacy state API */
- if (op == DOWN || op == REPEAT || op == BOTH)
- xkb_state_update_key(
- state, kc, (op == REPEAT ? XKB_KEY_REPEATED : XKB_KEY_DOWN)
- );
- if (op == UP || op == BOTH)
- xkb_state_update_key(state, kc, XKB_KEY_UP);
- }
- #if HAVE_TOOLS
- const enum xkb_key_direction direction
- = (op == DOWN)
- ? XKB_KEY_DOWN
- : (op == REPEAT)
- ? XKB_KEY_REPEATED
- : XKB_KEY_UP;
- tools_print_keycode_state("", state, NULL, kc, direction,
- XKB_CONSUMED_MODE_XKB,
- PRINT_ALL_FIELDS | PRINT_UNILINE);
- #endif
- fprintf(stderr, "#%02u op %-6s got %d syms for keycode %3"PRIu32,
- ++count, opstr, nsyms, kc);
- if (kc_new != kc) {
- fprintf(stderr, " (redirected to %3"PRIu32")", kc_new);
- }
- fprintf(stderr, ": [");
- xkb_keysym_t keysym;
- for (int i = 0; i < nsyms; i++) {
- keysym = va_arg(ap, int);
- xkb_keysym_get_name(syms[i], ksbuf, sizeof(ksbuf));
- fprintf(stderr, "%s%s", (i != 0) ? ", " : "", ksbuf);
- if (keysym == FINISH || keysym == NEXT) {
- xkb_keysym_get_name(syms[i], ksbuf, sizeof(ksbuf));
- fprintf(stderr, "\nERROR: Did not expect keysym: %s.\n", ksbuf);
- goto fail;
- }
- if (keysym != syms[i]) {
- xkb_keysym_get_name(keysym, ksbuf, sizeof(ksbuf));
- fprintf(stderr, "\nERROR: Expected keysym: %s. ", ksbuf);;
- xkb_keysym_get_name(syms[i], ksbuf, sizeof(ksbuf));
- fprintf(stderr, " Got keysym: %s.\n", ksbuf);;
- goto fail;
- }
- }
- if (nsyms == 0) {
- keysym = va_arg(ap, int);
- if (keysym != XKB_KEY_NoSymbol) {
- xkb_keysym_get_name(keysym, ksbuf, sizeof(ksbuf));
- fprintf(stderr, "\nERROR: Expected %s, but got no keysyms.\n", ksbuf);
- goto fail;
- }
- }
- fprintf(stderr, "]\n");
- keysym = va_arg(ap, int);
- if (keysym == NEXT)
- continue;
- if (keysym == FINISH)
- break;
- xkb_keysym_get_name(keysym, ksbuf, sizeof(ksbuf));
- fprintf(stderr, "\nERROR: Expected keysym: %s. Didn't get it.\n", ksbuf);
- goto fail;
- }
- xkb_state_unref(state);
- return 1;
- fail:
- fprintf(stderr, "Current state:\n");
- print_detailed_state(state);
- xkb_state_unref(state);
- return 0;
- }
- int
- test_key_seq(struct xkb_keymap *keymap, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, keymap);
- ret = test_key_seq_va(keymap, NULL, NULL, ap);
- va_end(ap);
- return ret;
- }
- int
- test_key_seq2(struct xkb_keymap *keymap, struct xkb_machine *sm,
- struct xkb_events *events, ...)
- {
- va_list ap;
- int ret;
- va_start(ap, events);
- ret = test_key_seq_va(keymap, sm, events, ap);
- va_end(ap);
- return ret;
- }
- char *
- test_makedir(const char *parent, const char *path)
- {
- char *dirname;
- int err;
- dirname = asprintf_safe("%s/%s", parent, path);
- assert(dirname);
- #ifdef _WIN32
- err = _mkdir(dirname);
- #else
- err = mkdir(dirname, 0777);
- #endif
- assert(err == 0);
- return dirname;
- }
- char *
- test_maketempdir(const char *template)
- {
- #ifdef _WIN32
- const char *basetmp = getenv("TMP");
- if (basetmp == NULL) {
- basetmp = getenv("TEMP");
- }
- if (basetmp == NULL) {
- basetmp = getenv("top_builddir");
- }
- assert(basetmp != NULL);
- char *tmpdir = asprintf_safe("%s/%s", basetmp, template);
- assert(tmpdir != NULL);
- char *tmp = _mktemp(tmpdir);
- assert(tmp == tmpdir);
- int ret = _mkdir(tmp);
- assert(ret == 0);
- return tmpdir;
- #else
- char *tmpdir = asprintf_safe("/tmp/%s", template);
- assert(tmpdir != NULL);
- char *tmp = mkdtemp(tmpdir);
- assert(tmp == tmpdir);
- return tmpdir;
- #endif
- }
- char *
- test_get_path(const char *path_rel)
- {
- char *path;
- const char *srcdir;
- srcdir = getenv("top_srcdir");
- if (!srcdir)
- srcdir = ".";
- if (is_absolute_path(path_rel))
- return strdup(path_rel);
- path = asprintf_safe("%s/test/data%s%s", srcdir,
- path_rel[0] ? "/" : "", path_rel);
- if (!path) {
- fprintf(stderr, "Failed to allocate path for %s\n", path_rel);
- return NULL;
- }
- return path;
- }
- char *
- read_file(const char *path, FILE *file)
- {
- enum { MAX_FILE_SIZE = 1u << 20 }; /* 1 MiB */
- if (!file)
- return NULL;
- errno = 0;
- const int fd = fileno(file);
- if (fd < 0) {
- fprintf(stderr, "Error getting file descriptor for %s: %s\n",
- path, strerror(errno));
- return NULL;
- }
- errno = 0;
- struct stat info;
- if (fstat(fd, &info) != 0) {
- fprintf(stderr, "Error getting file stats for %s: %s\n",
- path, strerror(errno));
- return NULL;
- }
- const size_t size = (size_t)info.st_size;
- if (size > MAX_FILE_SIZE) {
- fprintf(stderr, "Error: file %s exceeds maximum size\n", path);
- return NULL;
- }
- char *ret = malloc(size + 1);
- if (!ret)
- return NULL;
- /*
- * Null-terminated string.
- * Write here to avoid clang-tidy warning about tainted index due to fread.
- */
- ret[size] = '\0';
- errno = 0;
- const size_t count = fread(ret, sizeof(*ret), size, file);
- if (count != size) {
- if (!feof(file))
- printf("Error reading file %s: unexpected end of file\n", path);
- else if (ferror(file))
- fprintf(stderr, "Error reading file %s: %s\n", path, strerror(errno));
- free(ret);
- return NULL;
- }
- return ret;
- }
- char *
- test_read_file(const char *path_rel)
- {
- char *path = test_get_path(path_rel);
- if (!path)
- return NULL;
- FILE* file = fopen(path, "rb");
- char *ret = NULL;
- if (!file)
- goto out;
- ret = read_file(path, file);
- fclose(file);
- out:
- free(path);
- return ret;
- }
- struct xkb_context *
- test_get_context(enum test_context_flags test_flags)
- {
- enum xkb_context_flags ctx_flags = XKB_CONTEXT_NO_DEFAULT_INCLUDES;
- if (test_flags & CONTEXT_ALLOW_ENVIRONMENT_NAMES) {
- unsetenv("XKB_DEFAULT_RULES");
- unsetenv("XKB_DEFAULT_MODEL");
- unsetenv("XKB_DEFAULT_LAYOUT");
- unsetenv("XKB_DEFAULT_VARIANT");
- unsetenv("XKB_DEFAULT_OPTIONS");
- }
- else {
- ctx_flags |= XKB_CONTEXT_NO_ENVIRONMENT_NAMES;
- }
- struct xkb_context * const ctx = xkb_context_new(ctx_flags);
- if (!ctx)
- return NULL;
- char * const path = test_get_path("");
- if (!path) {
- xkb_context_unref(ctx);
- return NULL;
- }
- xkb_context_include_path_append(ctx, path);
- free(path);
- return ctx;
- }
- struct xkb_keymap *
- test_compile_file(struct xkb_context *context, enum xkb_keymap_format format,
- const char *path_rel)
- {
- struct xkb_keymap *keymap;
- FILE *file;
- char *path;
- path = test_get_path(path_rel);
- if (!path)
- return NULL;
- file = fopen(path, "rb");
- if (!file) {
- fprintf(stderr, "Failed to open path: %s\n", path);
- free(path);
- return NULL;
- }
- assert(file != NULL);
- keymap = xkb_keymap_new_from_file(context, file, format,
- TEST_KEYMAP_COMPILE_FLAGS);
- fclose(file);
- if (!keymap) {
- fprintf(stderr, "Failed to compile path: %s\n", path);
- free(path);
- return NULL;
- }
- fprintf(stderr, "Successfully compiled path: %s\n", path);
- free(path);
- return keymap;
- }
- struct xkb_keymap *
- test_compile_string(struct xkb_context *context, enum xkb_keymap_format format,
- const char *string)
- {
- struct xkb_keymap *keymap;
- keymap = xkb_keymap_new_from_string(context, string, format,
- TEST_KEYMAP_COMPILE_FLAGS);
- if (!keymap) {
- fprintf(stderr, "Failed to compile string\n");
- return NULL;
- }
- return keymap;
- }
- struct xkb_keymap *
- test_compile_buffer(struct xkb_context *context, enum xkb_keymap_format format,
- const char *buf, size_t len)
- {
- return test_compile_buffer2(context, format, TEST_KEYMAP_COMPILE_FLAGS,
- buf, len);
- }
- struct xkb_keymap *
- test_compile_buffer2(struct xkb_context *context, enum xkb_keymap_format format,
- enum xkb_keymap_compile_flags flags,
- const char *buf, size_t len)
- {
- struct xkb_keymap *keymap;
- keymap = xkb_keymap_new_from_buffer(context, buf, len, format, flags);
- if (!keymap) {
- fprintf(stderr, "Failed to compile keymap from memory buffer\n");
- return NULL;
- }
- return keymap;
- }
- struct xkb_keymap *
- test_compile_rules(struct xkb_context *context, enum xkb_keymap_format format,
- const char *rules, const char *model, const char *layout,
- const char *variant, const char *options)
- {
- struct xkb_keymap *keymap;
- struct xkb_rule_names rmlvo = {
- .rules = isempty(rules) ? NULL : rules,
- .model = isempty(model) ? NULL : model,
- .layout = isempty(layout) ? NULL : layout,
- .variant = isempty(variant) ? NULL : variant,
- .options = isempty(options) ? NULL : options
- };
- if (!rules && !model && !layout && !variant && !options)
- keymap = xkb_keymap_new_from_names2(context, NULL, format,
- TEST_KEYMAP_COMPILE_FLAGS);
- else
- keymap = xkb_keymap_new_from_names2(context, &rmlvo, format,
- TEST_KEYMAP_COMPILE_FLAGS);
- if (!keymap) {
- fprintf(stderr,
- "Failed to compile RMLVO: '%s', '%s', '%s', '%s', '%s'\n",
- rules, model, layout, variant, options);
- return NULL;
- }
- return keymap;
- }
- static struct xkb_rmlvo_builder *
- xkb_rules_names_to_rmlvo_builder(struct xkb_context *context,
- const struct xkb_rule_names *names)
- {
- struct xkb_rmlvo_builder *rmlvo =
- xkb_rmlvo_builder_new(context, names->rules, names->model,
- XKB_RMLVO_BUILDER_NO_FLAGS);
- if (!rmlvo) {
- fprintf(stderr, "ERROR: xkb_rmlvo_builder_new() failed\n");
- return NULL;
- }
- char buf[1024] = { 0 };
- /* First parse options, and gather the layout-specific ones and
- * append the others to the builder */
- darray(darray_string) loptions = darray_new();
- if (!isempty(names->options)) {
- const char *o = names->options;
- while (*o != '\0') {
- /* Get option name */
- const char *option = o;
- while (*o != '\0' && *o != ',' &&
- *o != OPTIONS_GROUP_SPECIFIER_PREFIX) {
- o++;
- };
- const size_t len = o - option;
- if (len >= sizeof(buf))
- goto error;
- memcpy(buf, option, len);
- buf[len] = '\0';
- /* Check if layout-specific option */
- xkb_layout_index_t layout = XKB_LAYOUT_INVALID;
- if (*o == OPTIONS_GROUP_SPECIFIER_PREFIX) {
- o++;
- int count = parse_dec_to_uint32_t(o, SIZE_MAX, &layout);
- if (count > 0 && layout > 0 && layout <= XKB_MAX_GROUPS) {
- o += count;
- layout--;
- } else {
- layout = XKB_LAYOUT_INVALID;
- }
- const char* const layout_index_end = o;
- while (*o != '\0' && *o != ',') { o++; }
- if (count <= 0 || layout_index_end != o)
- layout = XKB_LAYOUT_INVALID;
- }
- if (layout != XKB_LAYOUT_INVALID) {
- /* Save as layout-specific option, to be added with layout */
- char *opt = strdup(buf);
- if (!opt)
- goto error;
- darray_resize0(loptions, layout + 1);
- darray_append(darray_item(loptions, layout), opt);
- } else {
- /* Append layout-agnostic option */
- if (!xkb_rmlvo_builder_append_option(rmlvo, buf))
- goto error;
- }
- if (*o == ',')
- o++;
- }
- }
- if (!isempty(names->layout)) {
- /* Process layout & variant together.
- * Ignore variants without corresponding layout. */
- const char *l = names->layout;
- const char *v = names->variant;
- if (!names->variant)
- v = "";
- xkb_layout_index_t layout_count = 0;
- while (*l != '\0') {
- const char *layout = l;
- const char *variant = v;
- char *start = buf;
- size_t buf_size = sizeof(buf);
- while (*l != '\0' && *l != ',') { l++; };
- while (*v != '\0' && *v != ',') { v++; };
- size_t len = l - layout;
- if (len >= buf_size)
- goto error;
- memcpy(start, layout, len);
- start[len] = '\0';
- start += len;
- buf_size -= len + 1;
- len = v - variant;
- if (len >= buf_size)
- goto error;
- ++start;
- memcpy(start, variant, len);
- start[len] = '\0';
- /* Get layout-specific options */
- char **opts = NULL;
- size_t opts_count = 0;
- if (layout_count < darray_size(loptions)) {
- opts = darray_items(darray_item(loptions, layout_count));
- opts_count = darray_size(darray_item(loptions, layout_count));
- }
- if (!xkb_rmlvo_builder_append_layout(rmlvo, buf, start,
- (const char* *) opts,
- opts_count))
- goto error;
- if (*l == ',')
- l++;
- if (*v == ',')
- v++;
- layout_count += 1;
- }
- }
- exit:
- {
- darray_string *opts;
- darray_foreach(opts, loptions) {
- char **opt;
- darray_foreach(opt, *opts)
- free(*opt);
- darray_free(*opts);
- }
- darray_free(loptions);
- }
- return rmlvo;
- error:
- fprintf(stderr, "ERROR: %s\n", __func__);
- xkb_rmlvo_builder_unref(rmlvo);
- rmlvo = NULL;
- goto exit;
- }
- struct xkb_keymap *
- test_compile_rmlvo(struct xkb_context *context, enum xkb_keymap_format format,
- const char *rules, const char *model, const char *layout,
- const char *variant, const char *options)
- {
- struct xkb_keymap *keymap = NULL;
- const struct xkb_rule_names names = {
- .rules = rules,
- .model = model,
- .layout = layout,
- .variant = variant,
- .options = options
- };
- struct xkb_rmlvo_builder *rmlvo = xkb_rules_names_to_rmlvo_builder(context,
- &names);
- if (!rmlvo) {
- fprintf(stderr,
- "Failed to create RMLVO builder: "
- "'%s', '%s', '%s', '%s', '%s'\n",
- rules, model, layout, variant, options);
- return NULL;
- }
- /* Invalid flags */
- assert(!xkb_keymap_new_from_rmlvo(rmlvo, format, -1));
- assert(!xkb_keymap_new_from_rmlvo(rmlvo, format, 0xffff));
- keymap = xkb_keymap_new_from_rmlvo(rmlvo, format,
- TEST_KEYMAP_COMPILE_FLAGS);
- xkb_rmlvo_builder_unref(rmlvo);
- if (!keymap) {
- fprintf(stderr,
- "Failed to compile RMLVO from builder: "
- "'%s', '%s', '%s', '%s', '%s'\n",
- rules, model, layout, variant, options);
- }
- return keymap;
- }
- bool
- test_compile_output(struct xkb_context *ctx, enum xkb_keymap_format input_format,
- enum xkb_keymap_format output_format,
- test_compile_buffer_t compile_buffer,
- void *compile_buffer_private, const char *test_title,
- const char *keymap_str, size_t keymap_len,
- const char *rel_path, bool update_output_files)
- {
- return test_compile_output2(ctx, input_format, output_format,
- TEST_KEYMAP_SERIALIZE_FLAGS,
- compile_buffer, compile_buffer_private,
- test_title, keymap_str, keymap_len, rel_path,
- update_output_files);
- }
- bool
- test_compile_output2(struct xkb_context *ctx,
- enum xkb_keymap_format input_format,
- enum xkb_keymap_format output_format,
- enum xkb_keymap_serialize_flags serialize_flags,
- test_compile_buffer_t compile_buffer,
- void *compile_buffer_private, const char *test_title,
- const char *keymap_str, size_t keymap_len,
- const char *rel_path, bool update_output_files)
- {
- int success = true;
- if (test_title)
- fprintf(stderr, "*** %s ***\n", test_title);
- struct xkb_keymap *keymap = compile_buffer(
- ctx, input_format, keymap_str, keymap_len, compile_buffer_private
- );
- if (!rel_path) {
- /* No path given: expect compilation failure */
- if (keymap) {
- char *got = xkb_keymap_get_as_string2(keymap, output_format,
- serialize_flags);
- xkb_keymap_unref(keymap);
- assert(got);
- fprintf(stderr,
- "Unexpected keymap compilation success:\n%s\n", got);
- free(got);
- }
- return !keymap;
- }
- if (!keymap) {
- fprintf(stderr, "Unexpected keymap compilation failure\n");
- return false;
- }
- char *got = xkb_keymap_get_as_string2(keymap, output_format,
- serialize_flags);
- if (!got) {
- fprintf(stderr, "Unexpected keymap serialization failure\n");
- return false;
- }
- xkb_keymap_unref(keymap);
- char* const path = test_get_path(rel_path);
- assert(path);
- if (update_output_files) {
- fprintf(stderr, "Writing golden test output to: %s\n", path);
- FILE *file = fopen(path, "wb");
- assert(file);
- fwrite(got, 1, strlen(got), file);
- fclose(file);
- } else {
- fprintf(stderr, "Reading golden test output: %s\n", path);
- char* const expected = test_read_file(rel_path);
- assert(expected);
- static const char *label[2] = {"Golden test", "Roundtrip"};
- bool test_round_trip =
- (output_format == input_format ||
- output_format == XKB_KEYMAP_USE_ORIGINAL_FORMAT);
- for (unsigned int k = 0; k < ARRAY_SIZE(label) && success; k++) {
- if (streq(expected, got)) {
- fprintf(stderr, "%s succeeded.\n", label[k]);
- if (!test_round_trip)
- break;
- /* Test round trip */
- keymap = compile_buffer(ctx, input_format,
- expected, strlen(expected),
- compile_buffer_private);
- if (!keymap) {
- fprintf(stderr,
- "Unexpected keymap roundtrip compilation failure\n");
- success = false;
- break;
- }
- free(got);
- got = xkb_keymap_get_as_string2(keymap, output_format,
- serialize_flags);
- if (!got) {
- fprintf(stderr,
- "Unexpected keymap roundtrip serialization failure\n");
- success = false;
- }
- xkb_keymap_unref(keymap);
- test_round_trip = false;
- } else {
- fprintf(stderr,
- "%s failed: dumped map differs from expected.\n",
- label[k]);
- fprintf(stderr, "Path to expected file: %s\n", path);
- fprintf(stderr, "Length: expected %zu, got: %zu\n",
- strlen(expected), strlen(got));
- fprintf(stderr, "Dumped map:\n");
- fprintf(stderr, "%s\n", got);
- success = false;
- }
- }
- free(expected);
- }
- free(got);
- free(path);
- return success;
- }
- bool
- test_third_pary_compile_output(test_third_party_compile_buffer_t compile_buffer,
- void *compile_buffer_private,
- const char *test_title,
- const char *keymap_in, size_t keymap_in_size,
- const char *rel_path, bool update_output_files)
- {
- int success = true;
- fprintf(stderr, "*** %s ***\n", test_title);
- char* got = NULL;
- size_t got_size = 0;
- int ret = compile_buffer(keymap_in, keymap_in_size, compile_buffer_private,
- &got, &got_size);
- if (!rel_path) {
- /* No path given: expect compilation failure */
- if (ret == EXIT_SUCCESS) {
- fprintf(stderr,
- "Unexpected keymap compilation success:\nstdout:\n%s\n",
- got);
- }
- free(got);
- return (ret != EXIT_SUCCESS);
- }
- if (ret != EXIT_SUCCESS || isempty(got)) {
- fprintf(stderr, "Unexpected keymap compilation failure.\nstdout:\n%s\n",
- got);
- free(got);
- return false;
- }
- char *path = test_get_path(rel_path);
- assert(path);
- if (update_output_files) {
- fprintf(stderr, "Writing golden test output to: %s\n", path);
- FILE *file = fopen(path, "wb");
- assert(file);
- fwrite(got, 1, got_size, file);
- fclose(file);
- } else {
- fprintf(stderr, "Reading golden test output: %s\n", path);
- char *expected = test_read_file(rel_path);
- assert(expected);
- const char *label[2] = {"Golden test", "Roundtrip"};
- for (unsigned int k = 0; k < ARRAY_SIZE(label) && success; k++) {
- if (streq(expected, got)) {
- fprintf(stderr, "%s succeeded.\n", label[k]);
- if (k > 0)
- continue;
- /* Test round trip */
- // TODO
- break;
- }else {
- fprintf(stderr,
- "%s failed: dumped map differs from expected.\n",
- label[k]);
- fprintf(stderr, "Path to expected file: %s\n", path);
- fprintf(stderr, "Length: expected %zu, got: %zu\n",
- strlen(expected), strlen(got));
- fprintf(stderr, "Dumped map:\n");
- fprintf(stderr, "%s\n", got);
- success = false;
- }
- }
- free(expected);
- }
- free(got);
- free(path);
- return success;
- }
|