2 * Copyright © 2012 Ran Benita <ran234@gmail.com>
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
28 #include <linux/input.h>
29 #include <X11/keysym.h>
31 #include "xkbcommon/xkbcommon.h"
41 #define EVDEV_OFFSET 8
44 * Test a sequence of keysyms, resulting from a sequence of key presses,
45 * against the keysyms they're supposed to generate.
47 * - Each test runs with a clean state.
48 * - Each line in the test is made up of:
49 * + A keycode, given as a KEY_* from linux/input.h.
50 * + A direction - DOWN for press, UP for release, BOTH for
51 * immediate press + release.
52 * + A sequence of keysyms that should result from this keypress.
54 * The vararg format is:
55 * <KEY_*> <DOWN | UP | BOTH> <XK_* (zero or more)> <NEXT | FINISH>
57 * See below for examples.
60 test_key_seq(struct xkb_keymap *keymap, ...)
62 struct xkb_state *state;
65 xkb_keycode_t keycode;
69 const xkb_keysym_t *syms;
70 unsigned int nsyms, i;
73 state = xkb_state_new(keymap);
79 keycode = va_arg(ap, int) + EVDEV_OFFSET;
82 nsyms = xkb_key_get_syms(state, keycode, &syms);
83 fprintf(stderr, "got %d syms for key 0x%x: [", nsyms, keycode);
85 if (op == DOWN || op == BOTH)
86 xkb_state_update_key(state, keycode, XKB_KEY_DOWN);
87 if (op == UP || op == BOTH)
88 xkb_state_update_key(state, keycode, XKB_KEY_UP);
90 for (i = 0; i < nsyms; i++) {
91 keysym = va_arg(ap, int);
92 xkb_keysym_get_name(syms[i], ksbuf, sizeof(ksbuf));
93 fprintf(stderr, "%s%s", (i != 0) ? ", " : "", ksbuf);
95 if (keysym == FINISH || keysym == NEXT) {
96 xkb_keysym_get_name(syms[i], ksbuf, sizeof(ksbuf));
97 fprintf(stderr, "Did not expect keysym: %s.\n", ksbuf);
101 if (keysym != syms[i]) {
102 xkb_keysym_get_name(keysym, ksbuf, sizeof(ksbuf));
103 fprintf(stderr, "Expected keysym: %s. ", ksbuf);;
104 xkb_keysym_get_name(syms[i], ksbuf, sizeof(ksbuf));
105 fprintf(stderr, "Got keysym: %s.\n", ksbuf);;
110 fprintf(stderr, "]\n");
112 keysym = va_arg(ap, int);
115 if (keysym == FINISH)
118 xkb_keysym_get_name(keysym, ksbuf, sizeof(ksbuf));
119 fprintf(stderr, "Expected keysym: %s. Didn't get it.\n", ksbuf);
124 xkb_state_unref(state);
129 xkb_state_unref(state);
136 struct xkb_context *ctx;
137 struct xkb_keymap *keymap;
138 const struct xkb_rule_names names = {
143 .options = "grp:alt_shift_toggle,grp:menu_toggle",
146 ctx = xkb_context_new(0);
148 keymap = xkb_map_new_from_names(ctx, &names, 0);
151 assert(test_key_seq(keymap,
152 KEY_H, BOTH, XK_h, NEXT,
153 KEY_E, BOTH, XK_e, NEXT,
154 KEY_L, BOTH, XK_l, NEXT,
155 KEY_L, BOTH, XK_l, NEXT,
156 KEY_O, BOTH, XK_o, FINISH));
158 assert(test_key_seq(keymap,
159 KEY_H, BOTH, XK_h, NEXT,
160 KEY_LEFTSHIFT, DOWN, XK_Shift_L, NEXT,
161 KEY_E, BOTH, XK_E, NEXT,
162 KEY_L, BOTH, XK_L, NEXT,
163 KEY_LEFTSHIFT, UP, XK_Shift_L, NEXT,
164 KEY_L, BOTH, XK_l, NEXT,
165 KEY_O, BOTH, XK_o, FINISH));
167 /* Base modifier cleared on key release... */
168 assert(test_key_seq(keymap,
169 KEY_H, BOTH, XK_h, NEXT,
170 KEY_LEFTSHIFT, DOWN, XK_Shift_L, NEXT,
171 KEY_E, BOTH, XK_E, NEXT,
172 KEY_L, BOTH, XK_L, NEXT,
173 KEY_LEFTSHIFT, DOWN, XK_Shift_L, NEXT,
174 KEY_L, BOTH, XK_L, NEXT,
175 KEY_O, BOTH, XK_O, FINISH));
177 /* ... But only by the keycode that set it. */
178 assert(test_key_seq(keymap,
179 KEY_H, BOTH, XK_h, NEXT,
180 KEY_LEFTSHIFT, DOWN, XK_Shift_L, NEXT,
181 KEY_E, BOTH, XK_E, NEXT,
182 KEY_L, BOTH, XK_L, NEXT,
183 KEY_RIGHTSHIFT, UP, XK_Shift_R, NEXT,
184 KEY_L, BOTH, XK_L, NEXT,
185 KEY_O, BOTH, XK_O, FINISH));
188 * A base modifier should only be cleared when no other key affecting
189 * the modifier is down.
191 assert(test_key_seq(keymap,
192 KEY_H, BOTH, XK_h, NEXT,
193 KEY_LEFTSHIFT, DOWN, XK_Shift_L, NEXT,
194 KEY_E, BOTH, XK_E, NEXT,
195 KEY_RIGHTSHIFT, DOWN, XK_Shift_R, NEXT,
196 KEY_L, BOTH, XK_L, NEXT,
197 KEY_RIGHTSHIFT, UP, XK_Shift_R, NEXT,
198 KEY_L, BOTH, XK_L, NEXT,
199 KEY_LEFTSHIFT, UP, XK_Shift_L, NEXT,
200 KEY_O, BOTH, XK_o, FINISH));
202 /* Group switching / locking. */
203 assert(test_key_seq(keymap,
204 KEY_H, BOTH, XK_h, NEXT,
205 KEY_E, BOTH, XK_e, NEXT,
206 KEY_COMPOSE, BOTH, XK_ISO_Next_Group, NEXT,
207 KEY_K, BOTH, XK_hebrew_lamed, NEXT,
208 KEY_F, BOTH, XK_hebrew_kaph, NEXT,
209 KEY_COMPOSE, BOTH, XK_ISO_Next_Group, NEXT,
210 KEY_O, BOTH, XK_o, FINISH));
212 assert(test_key_seq(keymap,
213 KEY_LEFTSHIFT, DOWN, XK_Shift_L, NEXT,
214 KEY_LEFTALT, DOWN, XK_ISO_Next_Group, NEXT,
215 KEY_LEFTALT, UP, XK_ISO_Next_Group, NEXT,
216 KEY_LEFTSHIFT, UP, XK_Shift_L, FINISH));
218 assert(test_key_seq(keymap,
219 KEY_LEFTALT, DOWN, XK_Alt_L, NEXT,
220 KEY_LEFTSHIFT, DOWN, XK_ISO_Next_Group, NEXT,
221 KEY_LEFTSHIFT, UP, XK_ISO_Next_Group, NEXT,
222 KEY_LEFTALT, UP, XK_Alt_L, FINISH));
224 /* Locked modifiers. */
225 assert(test_key_seq(keymap,
226 KEY_CAPSLOCK, BOTH, XK_Caps_Lock, NEXT,
227 KEY_H, BOTH, XK_H, NEXT,
228 KEY_E, BOTH, XK_E, NEXT,
229 KEY_L, BOTH, XK_L, NEXT,
230 KEY_L, BOTH, XK_L, NEXT,
231 KEY_O, BOTH, XK_O, FINISH));
233 assert(test_key_seq(keymap,
234 KEY_H, BOTH, XK_h, NEXT,
235 KEY_E, BOTH, XK_e, NEXT,
236 KEY_CAPSLOCK, BOTH, XK_Caps_Lock, NEXT,
237 KEY_L, BOTH, XK_L, NEXT,
238 KEY_L, BOTH, XK_L, NEXT,
239 KEY_CAPSLOCK, BOTH, XK_Caps_Lock, NEXT,
240 KEY_O, BOTH, XK_o, FINISH));
242 assert(test_key_seq(keymap,
243 KEY_H, BOTH, XK_h, NEXT,
244 KEY_CAPSLOCK, DOWN, XK_Caps_Lock, NEXT,
245 KEY_E, BOTH, XK_E, NEXT,
246 KEY_L, BOTH, XK_L, NEXT,
247 KEY_L, BOTH, XK_L, NEXT,
248 KEY_CAPSLOCK, UP, XK_Caps_Lock, NEXT,
249 KEY_O, BOTH, XK_O, FINISH));
251 assert(test_key_seq(keymap,
252 KEY_H, BOTH, XK_h, NEXT,
253 KEY_E, BOTH, XK_e, NEXT,
254 KEY_CAPSLOCK, UP, XK_Caps_Lock, NEXT,
255 KEY_L, BOTH, XK_l, NEXT,
256 KEY_L, BOTH, XK_l, NEXT,
257 KEY_O, BOTH, XK_o, FINISH));
260 * A key release affecting a locked modifier should clear it
261 * regardless of the key press.
263 /* assert(test_key_seq(keymap, */
264 /* KEY_H, BOTH, XK_h, NEXT, */
265 /* KEY_CAPSLOCK, DOWN, XK_Caps_Lock, NEXT, */
266 /* KEY_E, BOTH, XK_E, NEXT, */
267 /* KEY_L, BOTH, XK_L, NEXT, */
268 /* KEY_CAPSLOCK, UP, XK_Caps_Lock, NEXT, */
269 /* KEY_L, BOTH, XK_L, NEXT, */
270 /* KEY_CAPSLOCK, UP, XK_Caps_Lock, NEXT, */
271 /* KEY_O, BOTH, XK_o, FINISH)); */
273 /* Simple Num Lock sanity check. */
274 assert(test_key_seq(keymap,
275 KEY_KP1, BOTH, XK_KP_End, NEXT,
276 KEY_NUMLOCK, BOTH, XK_Num_Lock, NEXT,
277 KEY_KP1, BOTH, XK_KP_1, NEXT,
278 KEY_KP2, BOTH, XK_KP_2, NEXT,
279 KEY_NUMLOCK, BOTH, XK_Num_Lock, NEXT,
280 KEY_KP2, BOTH, XK_KP_Down, FINISH));
282 xkb_map_unref(keymap);
283 xkb_context_unref(ctx);