2014-08-09 13:14:34 -06:00
|
|
|
/*
|
|
|
|
* Copyright © 2014 Ran Benita <ran234@gmail.com>
|
|
|
|
*
|
|
|
|
* 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 (including the next
|
|
|
|
* paragraph) 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 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.
|
|
|
|
*/
|
|
|
|
|
2019-12-27 04:03:20 -07:00
|
|
|
#include "config.h"
|
|
|
|
|
2014-08-09 13:14:34 -06:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <spawn.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#include "test.h"
|
2023-09-18 05:17:30 -06:00
|
|
|
#include "xvfb-wrapper.h"
|
2014-08-09 13:14:34 -06:00
|
|
|
#include "xkbcommon/xkbcommon-x11.h"
|
|
|
|
|
2023-09-18 05:17:30 -06:00
|
|
|
X11_TEST(test_basic)
|
2014-08-09 13:14:34 -06:00
|
|
|
{
|
|
|
|
struct xkb_keymap *keymap;
|
|
|
|
xcb_connection_t *conn;
|
|
|
|
int32_t device_id;
|
|
|
|
int ret, status;
|
2015-08-23 13:22:11 -06:00
|
|
|
char *xkb_path;
|
2014-08-09 13:14:34 -06:00
|
|
|
char *original, *dump;
|
|
|
|
char *envp[] = { NULL };
|
2017-07-29 14:31:19 -06:00
|
|
|
char *xkbcomp_argv[] = {
|
|
|
|
(char *) "xkbcomp", (char *) "-I", NULL /* xkb_path */, display, NULL
|
|
|
|
};
|
2014-08-09 13:14:34 -06:00
|
|
|
pid_t xkbcomp_pid;
|
|
|
|
|
|
|
|
conn = xcb_connect(display, NULL);
|
2014-08-18 10:47:10 -06:00
|
|
|
if (xcb_connection_has_error(conn)) {
|
2014-08-09 13:14:34 -06:00
|
|
|
ret = SKIP_TEST;
|
2023-09-18 05:17:30 -06:00
|
|
|
goto err_conn;
|
2014-08-09 13:14:34 -06:00
|
|
|
}
|
|
|
|
ret = xkb_x11_setup_xkb_extension(conn,
|
|
|
|
XKB_X11_MIN_MAJOR_XKB_VERSION,
|
|
|
|
XKB_X11_MIN_MINOR_XKB_VERSION,
|
|
|
|
XKB_X11_SETUP_XKB_EXTENSION_NO_FLAGS,
|
|
|
|
NULL, NULL, NULL, NULL);
|
|
|
|
if (!ret) {
|
|
|
|
ret = SKIP_TEST;
|
|
|
|
goto err_xcb;
|
|
|
|
}
|
|
|
|
device_id = xkb_x11_get_core_keyboard_device_id(conn);
|
|
|
|
assert(device_id != -1);
|
|
|
|
|
|
|
|
xkb_path = test_get_path("keymaps/host.xkb");
|
|
|
|
assert(ret >= 0);
|
2015-08-23 13:22:11 -06:00
|
|
|
xkbcomp_argv[2] = xkb_path;
|
2014-08-09 13:14:34 -06:00
|
|
|
ret = posix_spawnp(&xkbcomp_pid, "xkbcomp", NULL, NULL, xkbcomp_argv, envp);
|
|
|
|
free(xkb_path);
|
|
|
|
if (ret != 0) {
|
|
|
|
ret = SKIP_TEST;
|
|
|
|
goto err_xcb;
|
|
|
|
}
|
|
|
|
ret = waitpid(xkbcomp_pid, &status, 0);
|
|
|
|
if (ret < 0 || !WIFEXITED(status) || WEXITSTATUS(status) != 0) {
|
|
|
|
ret = SKIP_TEST;
|
|
|
|
goto err_xcb;
|
|
|
|
}
|
|
|
|
|
2023-09-18 05:17:30 -06:00
|
|
|
struct xkb_context *ctx = test_get_context(0);
|
2014-08-09 13:14:34 -06:00
|
|
|
keymap = xkb_x11_keymap_new_from_device(ctx, conn, device_id,
|
|
|
|
XKB_KEYMAP_COMPILE_NO_FLAGS);
|
|
|
|
assert(keymap);
|
|
|
|
|
|
|
|
original = test_read_file("keymaps/host.xkb");
|
|
|
|
assert(original);
|
|
|
|
|
|
|
|
dump = xkb_keymap_get_as_string(keymap, XKB_KEYMAP_USE_ORIGINAL_FORMAT);
|
|
|
|
assert(dump);
|
|
|
|
|
2015-08-23 13:22:11 -06:00
|
|
|
if (!streq(original, dump)) {
|
2014-08-09 13:14:34 -06:00
|
|
|
fprintf(stderr,
|
|
|
|
"round-trip test failed: dumped map differs from original\n");
|
|
|
|
fprintf(stderr, "length: dumped %lu, original %lu\n",
|
|
|
|
(unsigned long) strlen(dump),
|
|
|
|
(unsigned long) strlen(original));
|
|
|
|
fprintf(stderr, "dumped map:\n");
|
|
|
|
fprintf(stderr, "%s\n", dump);
|
|
|
|
ret = 1;
|
|
|
|
goto err_dump;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
err_dump:
|
|
|
|
free(original);
|
|
|
|
free(dump);
|
|
|
|
xkb_keymap_unref(keymap);
|
2023-09-18 05:17:30 -06:00
|
|
|
xkb_context_unref(ctx);
|
2014-08-09 13:14:34 -06:00
|
|
|
err_xcb:
|
|
|
|
xcb_disconnect(conn);
|
2023-09-18 05:17:30 -06:00
|
|
|
err_conn:
|
2014-08-09 13:14:34 -06:00
|
|
|
return ret;
|
|
|
|
}
|
2023-09-18 05:17:30 -06:00
|
|
|
|
|
|
|
int main(void) {
|
|
|
|
return x11_tests_run();
|
|
|
|
}
|