merge 37282 from amd64-branch:
[reactos.git] / rostests / winetests / user32 / input.c
1 /* Test Key event to Key message translation
2 *
3 * Copyright 2003 Rein Klazes
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18 */
19
20 /* test whether the right type of messages:
21 * WM_KEYUP/DOWN vs WM_SYSKEYUP/DOWN are sent in case of combined
22 * keystrokes.
23 *
24 * For instance <ALT>-X can be accomplished by
25 * the sequence ALT-KEY-DOWN, X-KEY-DOWN, ALT-KEY-UP, X-KEY-UP
26 * but also X-KEY-DOWN, ALT-KEY-DOWN, X-KEY-UP, ALT-KEY-UP
27 * Whether a KEY or a SYSKEY message is sent is not always clear, it is
28 * also not the same in WINNT as in WIN9X */
29
30 /* NOTE that there will be test failures under WIN9X
31 * No applications are known to me that rely on this
32 * so I don't fix it */
33
34 /* TODO:
35 * 1. extend it to the wm_command and wm_syscommand notifications
36 * 2. add some more tests with special cases like dead keys or right (alt) key
37 * 3. there is some adapted code from input.c in here. Should really
38 * make that code exactly the same.
39 * 4. resolve the win9x case when there is a need or the testing frame work
40 * offers a nice way.
41 * 5. The test app creates a window, the user should not take the focus
42 * away during its short existence. I could do something to prevent that
43 * if it is a problem.
44 *
45 */
46
47 #define _WIN32_WINNT 0x401
48 #define _WIN32_IE 0x0500
49
50 #include <stdarg.h>
51 #include <assert.h>
52
53 #include "windef.h"
54 #include "winbase.h"
55 #include "winuser.h"
56
57 #include "wine/test.h"
58
59 /* globals */
60 static HWND hWndTest;
61 static long timetag = 0x10000000;
62
63 static UINT (WINAPI *pSendInput) (UINT, INPUT*, size_t);
64 static int (WINAPI *pGetMouseMovePointsEx) (UINT, LPMOUSEMOVEPOINT, LPMOUSEMOVEPOINT, int, DWORD);
65
66 #define MAXKEYEVENTS 10
67 #define MAXKEYMESSAGES MAXKEYEVENTS /* assuming a key event generates one
68 and only one message */
69
70 /* keyboard message names, sorted as their value */
71 static const char *MSGNAME[]={"WM_KEYDOWN", "WM_KEYUP", "WM_CHAR","WM_DEADCHAR",
72 "WM_SYSKEYDOWN", "WM_SYSKEYUP", "WM_SYSCHAR", "WM_SYSDEADCHAR" ,"WM_KEYLAST"};
73
74 /* keyevents, add more as needed */
75 typedef enum KEVtag
76 { ALTDOWN = 1, ALTUP, XDOWN, XUP, SHIFTDOWN, SHIFTUP, CTRLDOWN, CTRLUP } KEV;
77 /* matching VK's */
78 static const int GETVKEY[]={0, VK_MENU, VK_MENU, 'X', 'X', VK_SHIFT, VK_SHIFT, VK_CONTROL, VK_CONTROL};
79 /* matching scan codes */
80 static const int GETSCAN[]={0, 0x38, 0x38, 0x2D, 0x2D, 0x2A, 0x2A, 0x1D, 0x1D };
81 /* matching updown events */
82 static const int GETFLAGS[]={0, 0, KEYEVENTF_KEYUP, 0, KEYEVENTF_KEYUP, 0, KEYEVENTF_KEYUP, 0, KEYEVENTF_KEYUP};
83 /* matching descriptions */
84 static const char *getdesc[]={"", "+alt","-alt","+X","-X","+shift","-shift","+ctrl","-ctrl"};
85
86 /* The MSVC headers ignore our NONAMELESSUNION requests so we have to define our own type */
87 typedef struct
88 {
89 DWORD type;
90 union
91 {
92 MOUSEINPUT mi;
93 KEYBDINPUT ki;
94 HARDWAREINPUT hi;
95 } u;
96 } TEST_INPUT;
97
98 #define ADDTOINPUTS(kev) \
99 inputs[evtctr].type = INPUT_KEYBOARD; \
100 ((TEST_INPUT*)inputs)[evtctr].u.ki.wVk = GETVKEY[ kev]; \
101 ((TEST_INPUT*)inputs)[evtctr].u.ki.wScan = GETSCAN[ kev]; \
102 ((TEST_INPUT*)inputs)[evtctr].u.ki.dwFlags = GETFLAGS[ kev]; \
103 ((TEST_INPUT*)inputs)[evtctr].u.ki.dwExtraInfo = 0; \
104 ((TEST_INPUT*)inputs)[evtctr].u.ki.time = ++timetag; \
105 if( kev) evtctr++;
106
107 typedef struct {
108 UINT message;
109 WPARAM wParam;
110 LPARAM lParam;
111 } KMSG;
112
113 /*******************************************
114 * add new test sets here
115 * the software will make all combinations of the
116 * keyevent defined here
117 */
118 static const struct {
119 int nrkev;
120 KEV keydwn[MAXKEYEVENTS];
121 KEV keyup[MAXKEYEVENTS];
122 } testkeyset[]= {
123 { 2, { ALTDOWN, XDOWN }, { ALTUP, XUP}},
124 { 3, { ALTDOWN, XDOWN , SHIFTDOWN}, { ALTUP, XUP, SHIFTUP}},
125 { 3, { ALTDOWN, XDOWN , CTRLDOWN}, { ALTUP, XUP, CTRLUP}},
126 { 3, { SHIFTDOWN, XDOWN , CTRLDOWN}, { SHIFTUP, XUP, CTRLUP}},
127 { 0 } /* mark the end */
128 };
129
130 /**********************adapted from input.c **********************************/
131
132 static BYTE InputKeyStateTable[256];
133 static BYTE AsyncKeyStateTable[256];
134 static BYTE TrackSysKey = 0; /* determine whether ALT key up will cause a WM_SYSKEYUP
135 or a WM_KEYUP message */
136
137 static void init_function_pointers(void)
138 {
139 HMODULE hdll = GetModuleHandleA("user32");
140
141 #define GET_PROC(func) \
142 p ## func = (void*)GetProcAddress(hdll, #func); \
143 if(!p ## func) \
144 trace("GetProcAddress(%s) failed\n", #func);
145
146 GET_PROC(SendInput)
147 GET_PROC(GetMouseMovePointsEx)
148
149 #undef GET_PROC
150 }
151
152 static int KbdMessage( KEV kev, WPARAM *pwParam, LPARAM *plParam )
153 {
154 UINT message;
155 int VKey = GETVKEY[kev];
156 WORD flags;
157
158 flags = LOBYTE(GETSCAN[kev]);
159 if (GETFLAGS[kev] & KEYEVENTF_EXTENDEDKEY) flags |= KF_EXTENDED;
160
161 if (GETFLAGS[kev] & KEYEVENTF_KEYUP )
162 {
163 message = WM_KEYUP;
164 if( (InputKeyStateTable[VK_MENU] & 0x80) && (
165 (VKey == VK_MENU) || (VKey == VK_CONTROL) ||
166 !(InputKeyStateTable[VK_CONTROL] & 0x80))) {
167 if( TrackSysKey == VK_MENU || /* <ALT>-down/<ALT>-up sequence */
168 (VKey != VK_MENU)) /* <ALT>-down...<something else>-up */
169 message = WM_SYSKEYUP;
170 TrackSysKey = 0;
171 }
172 InputKeyStateTable[VKey] &= ~0x80;
173 flags |= KF_REPEAT | KF_UP;
174 }
175 else
176 {
177 if (InputKeyStateTable[VKey] & 0x80) flags |= KF_REPEAT;
178 if (!(InputKeyStateTable[VKey] & 0x80)) InputKeyStateTable[VKey] ^= 0x01;
179 InputKeyStateTable[VKey] |= 0x80;
180 AsyncKeyStateTable[VKey] |= 0x80;
181
182 message = WM_KEYDOWN;
183 if( (InputKeyStateTable[VK_MENU] & 0x80) &&
184 !(InputKeyStateTable[VK_CONTROL] & 0x80)) {
185 message = WM_SYSKEYDOWN;
186 TrackSysKey = VKey;
187 }
188 }
189
190 if (InputKeyStateTable[VK_MENU] & 0x80) flags |= KF_ALTDOWN;
191
192 if( plParam) *plParam = MAKELPARAM( 1, flags );
193 if( pwParam) *pwParam = VKey;
194 return message;
195 }
196
197 /****************************** end copy input.c ****************************/
198
199 /*
200 * . prepare the keyevents for SendInputs
201 * . calculate the "expected" messages
202 * . Send the events to our window
203 * . retrieve the messages from the input queue
204 * . verify
205 */
206 static BOOL do_test( HWND hwnd, int seqnr, const KEV td[] )
207 {
208 INPUT inputs[MAXKEYEVENTS];
209 KMSG expmsg[MAXKEYEVENTS];
210 MSG msg;
211 char buf[100];
212 UINT evtctr=0;
213 int kmctr, i;
214
215 buf[0]='\0';
216 TrackSysKey=0; /* see input.c */
217 for( i = 0; i < MAXKEYEVENTS; i++) {
218 ADDTOINPUTS(td[i])
219 strcat(buf, getdesc[td[i]]);
220 if(td[i])
221 expmsg[i].message = KbdMessage(td[i], &(expmsg[i].wParam), &(expmsg[i].lParam)); /* see queue_kbd_event() */
222 else
223 expmsg[i].message = 0;
224 }
225 for( kmctr = 0; kmctr < MAXKEYEVENTS && expmsg[kmctr].message; kmctr++)
226 ;
227 assert( evtctr <= MAXKEYEVENTS );
228 assert( evtctr == pSendInput(evtctr, &inputs[0], sizeof(INPUT)));
229 i = 0;
230 if (winetest_debug > 1)
231 trace("======== key stroke sequence #%d: %s =============\n",
232 seqnr + 1, buf);
233 while( PeekMessage(&msg,hwnd,WM_KEYFIRST,WM_KEYLAST,PM_REMOVE) ) {
234 if (winetest_debug > 1)
235 trace("message[%d] %-15s wParam %04lx lParam %08lx time %x\n", i,
236 MSGNAME[msg.message - WM_KEYFIRST], msg.wParam, msg.lParam, msg.time);
237 if( i < kmctr ) {
238 ok( msg.message == expmsg[i].message &&
239 msg.wParam == expmsg[i].wParam &&
240 msg.lParam == expmsg[i].lParam,
241 "%u/%u: wrong message %x/%08lx/%08lx expected %s/%08lx/%08lx\n",
242 seqnr, i, msg.message, msg.wParam, msg.lParam,
243 MSGNAME[(expmsg[i]).message - WM_KEYFIRST], expmsg[i].wParam, expmsg[i].lParam );
244 }
245 i++;
246 }
247 if (winetest_debug > 1)
248 trace("%d messages retrieved\n", i);
249 if (!i && kmctr)
250 {
251 skip( "simulated keyboard input doesn't work\n" );
252 return FALSE;
253 }
254 ok( i == kmctr, "message count is wrong: got %d expected: %d\n", i, kmctr);
255 return TRUE;
256 }
257
258 /* test all combinations of the specified key events */
259 static BOOL TestASet( HWND hWnd, int nrkev, const KEV kevdwn[], const KEV kevup[] )
260 {
261 int i,j,k,l,m,n;
262 static int count=0;
263 KEV kbuf[MAXKEYEVENTS];
264 assert( nrkev==2 || nrkev==3);
265 for(i=0;i<MAXKEYEVENTS;i++) kbuf[i]=0;
266 /* two keys involved gives 4 test cases */
267 if(nrkev==2) {
268 for(i=0;i<nrkev;i++) {
269 for(j=0;j<nrkev;j++) {
270 kbuf[0] = kevdwn[i];
271 kbuf[1] = kevdwn[1-i];
272 kbuf[2] = kevup[j];
273 kbuf[3] = kevup[1-j];
274 if (!do_test( hWnd, count++, kbuf)) return FALSE;
275 }
276 }
277 }
278 /* three keys involved gives 36 test cases */
279 if(nrkev==3){
280 for(i=0;i<nrkev;i++){
281 for(j=0;j<nrkev;j++){
282 if(j==i) continue;
283 for(k=0;k<nrkev;k++){
284 if(k==i || k==j) continue;
285 for(l=0;l<nrkev;l++){
286 for(m=0;m<nrkev;m++){
287 if(m==l) continue;
288 for(n=0;n<nrkev;n++){
289 if(n==l ||n==m) continue;
290 kbuf[0] = kevdwn[i];
291 kbuf[1] = kevdwn[j];
292 kbuf[2] = kevdwn[k];
293 kbuf[3] = kevup[l];
294 kbuf[4] = kevup[m];
295 kbuf[5] = kevup[n];
296 if (!do_test( hWnd, count++, kbuf)) return FALSE;
297 }
298 }
299 }
300 }
301 }
302 }
303 }
304 return TRUE;
305 }
306
307 /* test each set specified in the global testkeyset array */
308 static void TestSysKeys( HWND hWnd)
309 {
310 int i;
311 for(i=0; testkeyset[i].nrkev;i++)
312 if (!TestASet( hWnd, testkeyset[i].nrkev, testkeyset[i].keydwn, testkeyset[i].keyup)) break;
313 }
314
315 static LRESULT CALLBACK WndProc( HWND hWnd, UINT msg, WPARAM wParam,
316 LPARAM lParam )
317 {
318 return DefWindowProcA( hWnd, msg, wParam, lParam );
319 }
320
321 static void test_Input_whitebox(void)
322 {
323 MSG msg;
324 WNDCLASSA wclass;
325 HANDLE hInstance = GetModuleHandleA( NULL );
326
327 wclass.lpszClassName = "InputSysKeyTestClass";
328 wclass.style = CS_HREDRAW | CS_VREDRAW;
329 wclass.lpfnWndProc = WndProc;
330 wclass.hInstance = hInstance;
331 wclass.hIcon = LoadIconA( 0, IDI_APPLICATION );
332 wclass.hCursor = LoadCursorA( NULL, IDC_ARROW );
333 wclass.hbrBackground = (HBRUSH)( COLOR_WINDOW + 1 );
334 wclass.lpszMenuName = 0;
335 wclass.cbClsExtra = 0;
336 wclass.cbWndExtra = 0;
337 RegisterClassA( &wclass );
338 /* create the test window that will receive the keystrokes */
339 hWndTest = CreateWindowA( wclass.lpszClassName, "InputSysKeyTest",
340 WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, 100, 100,
341 NULL, NULL, hInstance, NULL);
342 assert( hWndTest );
343 ShowWindow( hWndTest, SW_SHOW);
344 SetWindowPos( hWndTest, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
345 SetForegroundWindow( hWndTest );
346 UpdateWindow( hWndTest);
347
348 /* flush pending messages */
349 while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessageA( &msg );
350
351 SetFocus( hWndTest );
352 TestSysKeys( hWndTest );
353 DestroyWindow(hWndTest);
354 }
355
356 /* try to make sure pending X events have been processed before continuing */
357 static void empty_message_queue(void)
358 {
359 MSG msg;
360 int diff = 200;
361 int min_timeout = 50;
362 DWORD time = GetTickCount() + diff;
363
364 while (diff > 0)
365 {
366 if (MsgWaitForMultipleObjects(0, NULL, FALSE, min_timeout, QS_ALLINPUT) == WAIT_TIMEOUT) break;
367 while (PeekMessage(&msg, 0, 0, 0, PM_REMOVE))
368 {
369 TranslateMessage(&msg);
370 DispatchMessage(&msg);
371 }
372 diff = time - GetTickCount();
373 }
374 }
375
376 struct transition_s {
377 WORD wVk;
378 BYTE before_state;
379 BYTE optional;
380 };
381
382 typedef enum {
383 sent=0x1,
384 posted=0x2,
385 parent=0x4,
386 wparam=0x8,
387 lparam=0x10,
388 defwinproc=0x20,
389 beginpaint=0x40,
390 optional=0x80,
391 hook=0x100,
392 winevent_hook=0x200
393 } msg_flags_t;
394
395 struct message {
396 UINT message; /* the WM_* code */
397 msg_flags_t flags; /* message props */
398 WPARAM wParam; /* expected value of wParam */
399 LPARAM lParam; /* expected value of lParam */
400 };
401
402 struct sendinput_test_s {
403 WORD wVk;
404 DWORD dwFlags;
405 BOOL _todo_wine;
406 struct transition_s expected_transitions[MAXKEYEVENTS+1];
407 struct message expected_messages[MAXKEYMESSAGES+1];
408 } sendinput_test[] = {
409 /* test ALT+F */
410 /* 0 */
411 {VK_LMENU, 0, 0, {{VK_MENU, 0x00}, {VK_LMENU, 0x00}, {0}},
412 {{WM_SYSKEYDOWN, hook|wparam, VK_LMENU}, {WM_SYSKEYDOWN}, {0}}},
413 {'F', 0, 0, {{'F', 0x00}, {0}},
414 {{WM_SYSKEYDOWN, hook}, {WM_SYSKEYDOWN},
415 {WM_SYSCHAR},
416 {WM_SYSCOMMAND}, {0}}},
417 {'F', KEYEVENTF_KEYUP, 0, {{'F', 0x80}, {0}},
418 {{WM_SYSKEYUP, hook}, {WM_SYSKEYUP}, {0}}},
419 {VK_LMENU, KEYEVENTF_KEYUP, 0, {{VK_MENU, 0x80}, {VK_LMENU, 0x80}, {0}},
420 {{WM_KEYUP, hook}, {WM_KEYUP}, {0}}},
421
422 /* test CTRL+O */
423 /* 4 */
424 {VK_LCONTROL, 0, 0, {{VK_CONTROL, 0x00}, {VK_LCONTROL, 0x00}, {0}},
425 {{WM_KEYDOWN, hook}, {WM_KEYDOWN}, {0}}},
426 {'O', 0, 0, {{'O', 0x00}, {0}},
427 {{WM_KEYDOWN, hook}, {WM_KEYDOWN}, {WM_CHAR}, {0}}},
428 {'O', KEYEVENTF_KEYUP, 0, {{'O', 0x80}, {0}},
429 {{WM_KEYUP, hook}, {WM_KEYUP}, {0}}},
430 {VK_LCONTROL, KEYEVENTF_KEYUP, 0, {{VK_CONTROL, 0x80}, {VK_LCONTROL, 0x80}, {0}},
431 {{WM_KEYUP, hook}, {WM_KEYUP}, {0}}},
432
433 /* test ALT+CTRL+X */
434 /* 8 */
435 {VK_LMENU, 0, 0, {{VK_MENU, 0x00}, {VK_LMENU, 0x00}, {0}},
436 {{WM_SYSKEYDOWN, hook}, {WM_SYSKEYDOWN}, {0}}},
437 {VK_LCONTROL, 0, 0, {{VK_CONTROL, 0x00}, {VK_LCONTROL, 0x00}, {0}},
438 {{WM_KEYDOWN, hook}, {WM_KEYDOWN}, {0}}},
439 {'X', 0, 0, {{'X', 0x00}, {0}},
440 {{WM_KEYDOWN, hook}, {WM_KEYDOWN}, {0}}},
441 {'X', KEYEVENTF_KEYUP, 0, {{'X', 0x80}, {0}},
442 {{WM_KEYUP, hook}, {WM_KEYUP}, {0}}},
443 {VK_LCONTROL, KEYEVENTF_KEYUP, 0, {{VK_CONTROL, 0x80}, {VK_LCONTROL, 0x80}, {0}},
444 {{WM_SYSKEYUP, hook}, {WM_SYSKEYUP}, {0}}},
445 {VK_LMENU, KEYEVENTF_KEYUP, 0, {{VK_MENU, 0x80}, {VK_LMENU, 0x80}, {0}},
446 {{WM_KEYUP, hook}, {WM_KEYUP}, {0}}},
447
448 /* test SHIFT+A */
449 /* 14 */
450 {VK_LSHIFT, 0, 0, {{VK_SHIFT, 0x00}, {VK_LSHIFT, 0x00}, {0}},
451 {{WM_KEYDOWN, hook}, {WM_KEYDOWN}, {0}}},
452 {'A', 0, 0, {{'A', 0x00}, {0}},
453 {{WM_KEYDOWN, hook}, {WM_KEYDOWN}, {WM_CHAR}, {0}}},
454 {'A', KEYEVENTF_KEYUP, 0, {{'A', 0x80}, {0}},
455 {{WM_KEYUP, hook}, {WM_KEYUP}, {0}}},
456 {VK_LSHIFT, KEYEVENTF_KEYUP, 0, {{VK_SHIFT, 0x80}, {VK_LSHIFT, 0x80}, {0}},
457 {{WM_KEYUP, hook}, {WM_KEYUP}, {0}}},
458 /* test L-SHIFT & R-SHIFT: */
459 /* RSHIFT == LSHIFT */
460 /* 18 */
461 {VK_RSHIFT, 0, 0,
462 /* recent windows versions (>= w2k3) correctly report an RSHIFT transition */
463 {{VK_SHIFT, 0x00}, {VK_LSHIFT, 0x00, TRUE}, {VK_RSHIFT, 0x00, TRUE}, {0}},
464 {{WM_KEYDOWN, hook|wparam, VK_RSHIFT},
465 {WM_KEYDOWN}, {0}}},
466 {VK_RSHIFT, KEYEVENTF_KEYUP, 0,
467 {{VK_SHIFT, 0x80}, {VK_LSHIFT, 0x80, TRUE}, {VK_RSHIFT, 0x80, TRUE}, {0}},
468 {{WM_KEYUP, hook, hook|wparam, VK_RSHIFT},
469 {WM_KEYUP}, {0}}},
470
471 /* LSHIFT | KEYEVENTF_EXTENDEDKEY == RSHIFT */
472 /* 20 */
473 {VK_LSHIFT, KEYEVENTF_EXTENDEDKEY, 0,
474 {{VK_SHIFT, 0x00}, {VK_RSHIFT, 0x00}, {0}},
475 {{WM_KEYDOWN, hook|wparam|lparam, VK_LSHIFT, LLKHF_EXTENDED},
476 {WM_KEYDOWN, wparam|lparam, VK_SHIFT, 0}, {0}}},
477 {VK_LSHIFT, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 0,
478 {{VK_SHIFT, 0x80}, {VK_RSHIFT, 0x80}, {0}},
479 {{WM_KEYUP, hook|wparam|lparam, VK_LSHIFT, LLKHF_UP|LLKHF_EXTENDED},
480 {WM_KEYUP, wparam|lparam, VK_SHIFT, KF_UP}, {0}}},
481 /* RSHIFT | KEYEVENTF_EXTENDEDKEY == RSHIFT */
482 /* 22 */
483 {VK_RSHIFT, KEYEVENTF_EXTENDEDKEY, 0,
484 {{VK_SHIFT, 0x00}, {VK_RSHIFT, 0x00}, {0}},
485 {{WM_KEYDOWN, hook|wparam|lparam, VK_RSHIFT, LLKHF_EXTENDED},
486 {WM_KEYDOWN, wparam|lparam, VK_SHIFT, 0}, {0}}},
487 {VK_RSHIFT, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 0,
488 {{VK_SHIFT, 0x80}, {VK_RSHIFT, 0x80}, {0}},
489 {{WM_KEYUP, hook|wparam|lparam, VK_RSHIFT, LLKHF_UP|LLKHF_EXTENDED},
490 {WM_KEYUP, wparam|lparam, VK_SHIFT, KF_UP}, {0}}},
491
492 /* Note about wparam for hook with generic key (VK_SHIFT, VK_CONTROL, VK_MENU):
493 win2k - sends to hook whatever we generated here
494 winXP+ - Attempts to convert key to L/R key but not always correct
495 */
496 /* SHIFT == LSHIFT */
497 /* 24 */
498 {VK_SHIFT, 0, 0,
499 {{VK_SHIFT, 0x00}, {VK_LSHIFT, 0x00}, {0}},
500 {{WM_KEYDOWN, hook/* |wparam */|lparam, VK_SHIFT, 0},
501 {WM_KEYDOWN, wparam|lparam, VK_SHIFT, 0}, {0}}},
502 {VK_SHIFT, KEYEVENTF_KEYUP, 0,
503 {{VK_SHIFT, 0x80}, {VK_LSHIFT, 0x80}, {0}},
504 {{WM_KEYUP, hook/*|wparam*/|lparam, VK_SHIFT, LLKHF_UP},
505 {WM_KEYUP, wparam|lparam, VK_SHIFT, KF_UP}, {0}}},
506 /* SHIFT | KEYEVENTF_EXTENDEDKEY == RSHIFT */
507 /* 26 */
508 {VK_SHIFT, KEYEVENTF_EXTENDEDKEY, 0,
509 {{VK_SHIFT, 0x00}, {VK_RSHIFT, 0x00}, {0}},
510 {{WM_KEYDOWN, hook/*|wparam*/|lparam, VK_SHIFT, LLKHF_EXTENDED},
511 {WM_KEYDOWN, wparam|lparam, VK_SHIFT, 0}, {0}}},
512 {VK_SHIFT, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 0,
513 {{VK_SHIFT, 0x80}, {VK_RSHIFT, 0x80}, {0}},
514 {{WM_KEYUP, hook/*|wparam*/|lparam, VK_SHIFT, LLKHF_UP|LLKHF_EXTENDED},
515 {WM_KEYUP, wparam|lparam, VK_SHIFT, KF_UP}, {0}}},
516
517 /* test L-CONTROL & R-CONTROL: */
518 /* RCONTROL == LCONTROL */
519 /* 28 */
520 {VK_RCONTROL, 0, 0,
521 {{VK_CONTROL, 0x00}, {VK_LCONTROL, 0x00}, {0}},
522 {{WM_KEYDOWN, hook|wparam, VK_RCONTROL},
523 {WM_KEYDOWN, wparam|lparam, VK_CONTROL, 0}, {0}}},
524 {VK_RCONTROL, KEYEVENTF_KEYUP, 0,
525 {{VK_CONTROL, 0x80}, {VK_LCONTROL, 0x80}, {0}},
526 {{WM_KEYUP, hook|wparam, VK_RCONTROL},
527 {WM_KEYUP, wparam|lparam, VK_CONTROL, KF_UP}, {0}}},
528 /* LCONTROL | KEYEVENTF_EXTENDEDKEY == RCONTROL */
529 /* 30 */
530 {VK_LCONTROL, KEYEVENTF_EXTENDEDKEY, 0,
531 {{VK_CONTROL, 0x00}, {VK_RCONTROL, 0x00}, {0}},
532 {{WM_KEYDOWN, hook|wparam|lparam, VK_LCONTROL, LLKHF_EXTENDED},
533 {WM_KEYDOWN, wparam|lparam, VK_CONTROL, KF_EXTENDED}, {0}}},
534 {VK_LCONTROL, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 0,
535 {{VK_CONTROL, 0x80}, {VK_RCONTROL, 0x80}, {0}},
536 {{WM_KEYUP, hook|wparam|lparam, VK_LCONTROL, LLKHF_UP|LLKHF_EXTENDED},
537 {WM_KEYUP, wparam|lparam, VK_CONTROL, KF_UP|KF_EXTENDED}, {0}}},
538 /* RCONTROL | KEYEVENTF_EXTENDEDKEY == RCONTROL */
539 /* 32 */
540 {VK_RCONTROL, KEYEVENTF_EXTENDEDKEY, 0,
541 {{VK_CONTROL, 0x00}, {VK_RCONTROL, 0x00}, {0}},
542 {{WM_KEYDOWN, hook|wparam|lparam, VK_RCONTROL, LLKHF_EXTENDED},
543 {WM_KEYDOWN, wparam|lparam, VK_CONTROL, KF_EXTENDED}, {0}}},
544 {VK_RCONTROL, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 0,
545 {{VK_CONTROL, 0x80}, {VK_RCONTROL, 0x80}, {0}},
546 {{WM_KEYUP, hook|wparam|lparam, VK_RCONTROL, LLKHF_UP|LLKHF_EXTENDED},
547 {WM_KEYUP, wparam|lparam, VK_CONTROL, KF_UP|KF_EXTENDED}, {0}}},
548 /* CONTROL == LCONTROL */
549 /* 34 */
550 {VK_CONTROL, 0, 0,
551 {{VK_CONTROL, 0x00}, {VK_LCONTROL, 0x00}, {0}},
552 {{WM_KEYDOWN, hook/*|wparam, VK_CONTROL*/},
553 {WM_KEYDOWN, wparam|lparam, VK_CONTROL, 0}, {0}}},
554 {VK_CONTROL, KEYEVENTF_KEYUP, 0,
555 {{VK_CONTROL, 0x80}, {VK_LCONTROL, 0x80}, {0}},
556 {{WM_KEYUP, hook/*|wparam, VK_CONTROL*/},
557 {WM_KEYUP, wparam|lparam, VK_CONTROL, KF_UP}, {0}}},
558 /* CONTROL | KEYEVENTF_EXTENDEDKEY == RCONTROL */
559 /* 36 */
560 {VK_CONTROL, KEYEVENTF_EXTENDEDKEY, 0,
561 {{VK_CONTROL, 0x00}, {VK_RCONTROL, 0x00}, {0}},
562 {{WM_KEYDOWN, hook/*|wparam*/|lparam, VK_CONTROL, LLKHF_EXTENDED},
563 {WM_KEYDOWN, wparam|lparam, VK_CONTROL, KF_EXTENDED}, {0}}},
564 {VK_CONTROL, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 0,
565 {{VK_CONTROL, 0x80}, {VK_RCONTROL, 0x80}, {0}},
566 {{WM_KEYUP, hook/*|wparam*/|lparam, VK_CONTROL, LLKHF_UP|LLKHF_EXTENDED},
567 {WM_KEYUP, wparam|lparam, VK_CONTROL, KF_UP|KF_EXTENDED}, {0}}},
568
569 /* test L-MENU & R-MENU: */
570 /* RMENU == LMENU */
571 /* 38 */
572 {VK_RMENU, 0, 0,
573 {{VK_MENU, 0x00}, {VK_LMENU, 0x00}, {VK_CONTROL, 0x00, 1}, {VK_LCONTROL, 0x01, 1}, {0}},
574 {{WM_SYSKEYDOWN, hook|wparam|optional, VK_LCONTROL},
575 {WM_SYSKEYDOWN, hook|wparam, VK_RMENU},
576 {WM_SYSKEYDOWN, wparam|lparam, VK_MENU, 0}, {0}}},
577 {VK_RMENU, KEYEVENTF_KEYUP, 1,
578 {{VK_MENU, 0x80}, {VK_LMENU, 0x80}, {VK_CONTROL, 0x81, 1}, {VK_LCONTROL, 0x80, 1}, {0}},
579 {{WM_KEYUP, hook|wparam|optional, VK_LCONTROL},
580 {WM_KEYUP, hook|wparam, VK_RMENU},
581 {WM_SYSKEYUP, wparam|lparam|optional, VK_CONTROL, KF_UP},
582 {WM_SYSKEYUP, wparam|lparam, VK_MENU, KF_UP},
583 {WM_SYSCOMMAND}, {0}}},
584 /* LMENU | KEYEVENTF_EXTENDEDKEY == RMENU */
585 /* 40 */
586 {VK_LMENU, KEYEVENTF_EXTENDEDKEY, 0,
587 {{VK_MENU, 0x00}, {VK_RMENU, 0x00}, {0}},
588 {{WM_SYSKEYDOWN, hook|wparam|lparam, VK_LMENU, LLKHF_EXTENDED},
589 {WM_SYSKEYDOWN, wparam|lparam, VK_MENU, KF_EXTENDED}, {0}}},
590 {VK_LMENU, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 1,
591 {{VK_MENU, 0x80}, {VK_RMENU, 0x80}, {0}},
592 {{WM_KEYUP, hook|wparam|lparam, VK_LMENU, LLKHF_UP|LLKHF_EXTENDED},
593 {WM_SYSKEYUP, wparam|lparam, VK_MENU, KF_UP|KF_EXTENDED},
594 {WM_SYSCOMMAND}, {0}}},
595 /* RMENU | KEYEVENTF_EXTENDEDKEY == RMENU */
596 /* 42 */
597 {VK_RMENU, KEYEVENTF_EXTENDEDKEY, 0,
598 {{VK_MENU, 0x00}, {VK_RMENU, 0x00}, {VK_CONTROL, 0x00, 1}, {VK_LCONTROL, 0x01, 1}, {0}},
599 {{WM_SYSKEYDOWN, hook|wparam|lparam|optional, VK_LCONTROL, 0},
600 {WM_SYSKEYDOWN, hook|wparam|lparam, VK_RMENU, LLKHF_EXTENDED},
601 {WM_SYSKEYDOWN, wparam|lparam, VK_MENU, KF_EXTENDED}, {0}}},
602 {VK_RMENU, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 1,
603 {{VK_MENU, 0x80}, {VK_RMENU, 0x80}, {VK_CONTROL, 0x81, 1}, {VK_LCONTROL, 0x80, 1}, {0}},
604 {{WM_KEYUP, hook|wparam|lparam|optional, VK_LCONTROL, LLKHF_UP},
605 {WM_KEYUP, hook|wparam|lparam, VK_RMENU, LLKHF_UP|LLKHF_EXTENDED},
606 {WM_SYSKEYUP, wparam|lparam|optional, VK_CONTROL, KF_UP},
607 {WM_SYSKEYUP, wparam|lparam, VK_MENU, KF_UP|KF_EXTENDED},
608 {WM_SYSCOMMAND}, {0}}},
609 /* MENU == LMENU */
610 /* 44 */
611 {VK_MENU, 0, 0,
612 {{VK_MENU, 0x00}, {VK_LMENU, 0x00}, {0}},
613 {{WM_SYSKEYDOWN, hook/*|wparam, VK_MENU*/},
614 {WM_SYSKEYDOWN, wparam|lparam, VK_MENU, 0}, {0}}},
615 {VK_MENU, KEYEVENTF_KEYUP, 1,
616 {{VK_MENU, 0x80}, {VK_LMENU, 0x80}, {0}},
617 {{WM_KEYUP, hook/*|wparam, VK_MENU*/},
618 {WM_SYSKEYUP, wparam|lparam, VK_MENU, KF_UP},
619 {WM_SYSCOMMAND}, {0}}},
620 /* MENU | KEYEVENTF_EXTENDEDKEY == RMENU */
621 /* 46 */
622 {VK_MENU, KEYEVENTF_EXTENDEDKEY, 0,
623 {{VK_MENU, 0x00}, {VK_RMENU, 0x00}, {VK_CONTROL, 0x00, 1}, {VK_LCONTROL, 0x01, 1}, {0}},
624 {{WM_SYSKEYDOWN, hook|wparam|lparam|optional, VK_CONTROL, 0},
625 {WM_SYSKEYDOWN, hook/*|wparam*/|lparam, VK_MENU, LLKHF_EXTENDED},
626 {WM_SYSKEYDOWN, wparam|lparam, VK_MENU, KF_EXTENDED}, {0}}},
627 {VK_MENU, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 1,
628 {{VK_MENU, 0x80}, {VK_RMENU, 0x80}, {VK_CONTROL, 0x81, 1}, {VK_LCONTROL, 0x80, 1}, {0}},
629 {{WM_KEYUP, hook|wparam|lparam|optional, VK_CONTROL, LLKHF_UP},
630 {WM_KEYUP, hook/*|wparam*/|lparam, VK_MENU, LLKHF_UP|LLKHF_EXTENDED},
631 {WM_SYSKEYUP, wparam|lparam, VK_MENU, KF_UP|KF_EXTENDED},
632 {WM_SYSCOMMAND}, {0}}},
633
634 /* test LSHIFT & RSHIFT */
635 /* 48 */
636 {VK_LSHIFT, 0, 0,
637 {{VK_SHIFT, 0x00}, {VK_LSHIFT, 0x00}, {0}},
638 {{WM_KEYDOWN, hook|wparam|lparam, VK_LSHIFT, 0},
639 {WM_KEYDOWN, wparam|lparam, VK_SHIFT, 0}, {0}}},
640 {VK_RSHIFT, KEYEVENTF_EXTENDEDKEY, 0,
641 {{VK_RSHIFT, 0x00}, {0}},
642 {{WM_KEYDOWN, hook|wparam|lparam, VK_RSHIFT, LLKHF_EXTENDED},
643 {WM_KEYDOWN, wparam|lparam, VK_SHIFT, 0}, {0}}},
644 {VK_RSHIFT, KEYEVENTF_KEYUP | KEYEVENTF_EXTENDEDKEY, 0,
645 {{VK_RSHIFT, 0x80}, {0}},
646 {{WM_KEYUP, hook|wparam|lparam, VK_RSHIFT, LLKHF_UP|LLKHF_EXTENDED},
647 {WM_KEYUP, optional}, {0}}},
648 {VK_LSHIFT, KEYEVENTF_KEYUP, 0,
649 {{VK_SHIFT, 0x80}, {VK_LSHIFT, 0x80}, {0}},
650 {{WM_KEYUP, hook|wparam, VK_LSHIFT},
651 {WM_KEYUP, wparam|lparam, VK_SHIFT, KF_UP}, {0}}},
652
653 {0, 0, 0, {{0}}, {{0}}} /* end */
654 };
655
656 static struct message sent_messages[MAXKEYMESSAGES];
657 static UINT sent_messages_cnt;
658
659 /* Verify that only specified key state transitions occur */
660 static void compare_and_check(int id, BYTE *ks1, BYTE *ks2, struct sendinput_test_s *test)
661 {
662 int i, failcount = 0;
663 struct transition_s *t = test->expected_transitions;
664 UINT actual_cnt = 0;
665 const struct message *expected = test->expected_messages;
666
667 while (t->wVk) {
668 int matched = ((ks1[t->wVk]&0x80) == (t->before_state&0x80)
669 && (ks2[t->wVk]&0x80) == (~t->before_state&0x80));
670
671 if (!matched && !t->optional && test->_todo_wine)
672 {
673 failcount++;
674 todo_wine {
675 ok(matched, "%2d (%x/%x): %02x from %02x -> %02x "
676 "instead of %02x -> %02x\n", id, test->wVk, test->dwFlags,
677 t->wVk, ks1[t->wVk]&0x80, ks2[t->wVk]&0x80, t->before_state,
678 ~t->before_state&0x80);
679 }
680 } else {
681 ok(matched || t->optional, "%2d (%x/%x): %02x from %02x -> %02x "
682 "instead of %02x -> %02x\n", id, test->wVk, test->dwFlags,
683 t->wVk, ks1[t->wVk]&0x80, ks2[t->wVk]&0x80, t->before_state,
684 ~t->before_state&0x80);
685 }
686 ks2[t->wVk] = ks1[t->wVk]; /* clear the match */
687 t++;
688 }
689 for (i = 0; i < 256; i++)
690 if (ks2[i] != ks1[i] && test->_todo_wine)
691 {
692 failcount++;
693 todo_wine
694 ok(FALSE, "%2d (%x/%x): %02x from %02x -> %02x unexpected\n",
695 id, test->wVk, test->dwFlags, i, ks1[i], ks2[i]);
696 }
697 else
698 ok(ks2[i] == ks1[i], "%2d (%x/%x): %02x from %02x -> %02x unexpected\n",
699 id, test->wVk, test->dwFlags, i, ks1[i], ks2[i]);
700
701 while (expected->message && actual_cnt < sent_messages_cnt)
702 {
703 const struct message *actual = &sent_messages[actual_cnt];
704
705 if (expected->message == actual->message)
706 {
707 if (expected->flags & wparam)
708 {
709 if ((expected->flags & optional) && (expected->wParam != actual->wParam))
710 {
711 expected++;
712 continue;
713 }
714 if (expected->wParam != actual->wParam && test->_todo_wine)
715 {
716 failcount++;
717 todo_wine
718 ok(FALSE, "%2d (%x/%x): in msg 0x%04x expecting wParam 0x%lx got 0x%lx\n",
719 id, test->wVk, test->dwFlags, expected->message, expected->wParam, actual->wParam);
720 }
721 else
722 ok(expected->wParam == actual->wParam,
723 "%2d (%x/%x): in msg 0x%04x expecting wParam 0x%lx got 0x%lx\n",
724 id, test->wVk, test->dwFlags, expected->message, expected->wParam, actual->wParam);
725 }
726 if (expected->flags & lparam)
727 {
728 if (expected->lParam != actual->lParam && test->_todo_wine)
729 {
730 failcount++;
731 todo_wine
732 ok(FALSE, "%2d (%x/%x): in msg 0x%04x expecting lParam 0x%lx got 0x%lx\n",
733 id, test->wVk, test->dwFlags, expected->message, expected->lParam, actual->lParam);
734 }
735 else
736 ok(expected->lParam == actual->lParam,
737 "%2d (%x/%x): in msg 0x%04x expecting lParam 0x%lx got 0x%lx\n",
738 id, test->wVk, test->dwFlags, expected->message, expected->lParam, actual->lParam);
739 }
740 ok((expected->flags & hook) == (actual->flags & hook),
741 "%2d (%x/%x): the msg 0x%04x should have been sent by a hook\n",
742 id, test->wVk, test->dwFlags, expected->message);
743
744 }
745 else if (expected->flags & optional)
746 {
747 expected++;
748 continue;
749 }
750 else if (test->_todo_wine)
751 {
752 failcount++;
753 todo_wine
754 ok(FALSE,
755 "%2d (%x/%x): the msg 0x%04x was expected, but got msg 0x%04x instead\n",
756 id, test->wVk, test->dwFlags, expected->message, actual->message);
757 }
758 else
759 ok(FALSE,
760 "%2d (%x/%x): the msg 0x%04x was expected, but got msg 0x%04x instead\n",
761 id, test->wVk, test->dwFlags, expected->message, actual->message);
762
763 actual_cnt++;
764 expected++;
765 }
766 /* skip all optional trailing messages */
767 while (expected->message && (expected->flags & optional))
768 expected++;
769
770
771 if (expected->message || actual_cnt < sent_messages_cnt)
772 {
773 if (test->_todo_wine)
774 {
775 failcount++;
776 todo_wine
777 ok(FALSE, "%2d (%x/%x): the msg sequence is not complete: expected %04x - actual %04x\n",
778 id, test->wVk, test->dwFlags, expected->message, sent_messages[actual_cnt].message);
779 }
780 else
781 ok(FALSE, "%2d (%x/%x): the msg sequence is not complete: expected %04x - actual %04x\n",
782 id, test->wVk, test->dwFlags, expected->message, sent_messages[actual_cnt].message);
783 }
784
785 if( test->_todo_wine && !failcount) /* succeeded yet marked todo */
786 todo_wine
787 ok(TRUE, "%2d (%x/%x): marked \"todo_wine\" but succeeds\n", id, test->wVk, test->dwFlags);
788
789 sent_messages_cnt = 0;
790 }
791
792 /* WndProc2 checks that we get at least the messages specified */
793 static LRESULT CALLBACK WndProc2(HWND hWnd, UINT Msg, WPARAM wParam,
794 LPARAM lParam)
795 {
796 if (winetest_debug > 1) trace("MSG: %8x W:%8lx L:%8lx\n", Msg, wParam, lParam);
797
798 if (Msg != WM_PAINT &&
799 Msg != WM_NCPAINT &&
800 Msg != WM_SYNCPAINT &&
801 Msg != WM_ERASEBKGND &&
802 Msg != WM_NCHITTEST &&
803 Msg != WM_GETTEXT &&
804 Msg != WM_GETICON &&
805 Msg != WM_IME_SELECT &&
806 Msg != WM_DEVICECHANGE)
807 {
808 ok(sent_messages_cnt < MAXKEYMESSAGES, "Too many messages\n");
809 if (sent_messages_cnt < MAXKEYMESSAGES)
810 {
811 sent_messages[sent_messages_cnt].message = Msg;
812 sent_messages[sent_messages_cnt].flags = 0;
813 sent_messages[sent_messages_cnt].wParam = wParam;
814 sent_messages[sent_messages_cnt++].lParam = HIWORD(lParam) & (KF_UP|KF_EXTENDED);
815 }
816 }
817 return DefWindowProc(hWnd, Msg, wParam, lParam);
818 }
819
820 static LRESULT CALLBACK hook_proc(int code, WPARAM wparam, LPARAM lparam)
821 {
822 KBDLLHOOKSTRUCT *hook_info = (KBDLLHOOKSTRUCT *)lparam;
823
824 if (code == HC_ACTION)
825 {
826 ok(sent_messages_cnt < MAXKEYMESSAGES, "Too many messages\n");
827 if (sent_messages_cnt < MAXKEYMESSAGES)
828 {
829 sent_messages[sent_messages_cnt].message = wparam;
830 sent_messages[sent_messages_cnt].flags = hook;
831 sent_messages[sent_messages_cnt].wParam = hook_info->vkCode;
832 sent_messages[sent_messages_cnt++].lParam = hook_info->flags & (LLKHF_UP|LLKHF_EXTENDED);
833 }
834
835 if(0) /* For some reason not stable on Wine */
836 {
837 if (wparam == WM_KEYDOWN || wparam == WM_SYSKEYDOWN)
838 ok(!(GetAsyncKeyState(hook_info->vkCode) & 0x8000), "key %x should be up\n", hook_info->vkCode);
839 else if (wparam == WM_KEYUP || wparam == WM_SYSKEYUP)
840 ok(GetAsyncKeyState(hook_info->vkCode) & 0x8000, "key %x should be down\n", hook_info->vkCode);
841 }
842
843 if (winetest_debug > 1)
844 trace("Hook: w=%lx vk:%8x sc:%8x fl:%8x %lx\n", wparam,
845 hook_info->vkCode, hook_info->scanCode, hook_info->flags, hook_info->dwExtraInfo);
846 }
847 return CallNextHookEx( 0, code, wparam, lparam );
848 }
849 static void test_Input_blackbox(void)
850 {
851 TEST_INPUT i;
852 int ii;
853 BYTE ks1[256], ks2[256];
854 LONG_PTR prevWndProc;
855 HWND window;
856 HHOOK hook;
857
858 window = CreateWindow("Static", NULL, WS_POPUP|WS_HSCROLL|WS_VSCROLL
859 |WS_VISIBLE, 0, 0, 200, 60, NULL, NULL,
860 NULL, NULL);
861 ok(window != NULL, "error: %d\n", (int) GetLastError());
862 SetWindowPos( window, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE|SWP_NOMOVE );
863 SetForegroundWindow( window );
864
865 hook = SetWindowsHookExA(WH_KEYBOARD_LL, hook_proc, GetModuleHandleA( NULL ), 0);
866
867 /* must process all initial messages, otherwise X11DRV_KeymapNotify unsets
868 * key state set by SendInput(). */
869 empty_message_queue();
870
871 prevWndProc = SetWindowLongPtr(window, GWLP_WNDPROC, (LONG_PTR) WndProc2);
872 ok(prevWndProc != 0 || (prevWndProc == 0 && GetLastError() == 0),
873 "error: %d\n", (int) GetLastError());
874
875 i.type = INPUT_KEYBOARD;
876 i.u.ki.time = 0;
877 i.u.ki.dwExtraInfo = 0;
878
879 for (ii = 0; ii < sizeof(sendinput_test)/sizeof(struct sendinput_test_s)-1;
880 ii++) {
881 GetKeyboardState(ks1);
882 i.u.ki.wScan = ii+1 /* useful for debugging */;
883 i.u.ki.dwFlags = sendinput_test[ii].dwFlags;
884 i.u.ki.wVk = sendinput_test[ii].wVk;
885 pSendInput(1, (INPUT*)&i, sizeof(TEST_INPUT));
886 empty_message_queue();
887 GetKeyboardState(ks2);
888 if (!ii && !sent_messages_cnt && !memcmp( ks1, ks2, sizeof(ks1) ))
889 {
890 win_skip( "window doesn't receive the queued input\n" );
891 break;
892 }
893 compare_and_check(ii, ks1, ks2, &sendinput_test[ii]);
894 }
895
896 empty_message_queue();
897 DestroyWindow(window);
898 UnhookWindowsHookEx(hook);
899 }
900
901 static void test_keynames(void)
902 {
903 int i, len;
904 char buff[256];
905
906 for (i = 0; i < 512; i++)
907 {
908 strcpy(buff, "----");
909 len = GetKeyNameTextA(i << 16, buff, sizeof(buff));
910 ok(len || !buff[0], "%d: Buffer is not zeroed\n", i);
911 }
912 }
913
914 static POINT pt_old, pt_new;
915 static BOOL clipped;
916 #define STEP 20
917
918 static LRESULT CALLBACK hook_proc1( int code, WPARAM wparam, LPARAM lparam )
919 {
920 MSLLHOOKSTRUCT *hook = (MSLLHOOKSTRUCT *)lparam;
921 POINT pt, pt1;
922
923 if (code == HC_ACTION)
924 {
925 /* This is our new cursor position */
926 pt_new = hook->pt;
927 /* Should return previous position */
928 GetCursorPos(&pt);
929 ok(pt.x == pt_old.x && pt.y == pt_old.y, "GetCursorPos: (%d,%d)\n", pt.x, pt.y);
930
931 /* Should set new position until hook chain is finished. */
932 pt.x = pt_old.x + STEP;
933 pt.y = pt_old.y + STEP;
934 SetCursorPos(pt.x, pt.y);
935 GetCursorPos(&pt1);
936 if (clipped)
937 ok(pt1.x == pt_old.x && pt1.y == pt_old.y, "Wrong set pos: (%d,%d)\n", pt1.x, pt1.y);
938 else
939 ok(pt1.x == pt.x && pt1.y == pt.y, "Wrong set pos: (%d,%d)\n", pt1.x, pt1.y);
940 }
941 return CallNextHookEx( 0, code, wparam, lparam );
942 }
943
944 static LRESULT CALLBACK hook_proc2( int code, WPARAM wparam, LPARAM lparam )
945 {
946 MSLLHOOKSTRUCT *hook = (MSLLHOOKSTRUCT *)lparam;
947 POINT pt;
948
949 if (code == HC_ACTION)
950 {
951 ok(hook->pt.x == pt_new.x && hook->pt.y == pt_new.y,
952 "Wrong hook coords: (%d %d) != (%d,%d)\n", hook->pt.x, hook->pt.y, pt_new.x, pt_new.y);
953
954 /* Should match position set above */
955 GetCursorPos(&pt);
956 if (clipped)
957 ok(pt.x == pt_old.x && pt.y == pt_old.y, "GetCursorPos: (%d,%d)\n", pt.x, pt.y);
958 else
959 ok(pt.x == pt_old.x +STEP && pt.y == pt_old.y +STEP, "GetCursorPos: (%d,%d)\n", pt.x, pt.y);
960 }
961 return CallNextHookEx( 0, code, wparam, lparam );
962 }
963
964 static void test_mouse_ll_hook(void)
965 {
966 HWND hwnd;
967 HHOOK hook1, hook2;
968 POINT pt_org, pt;
969 RECT rc;
970
971 GetCursorPos(&pt_org);
972 hwnd = CreateWindow("static", "Title", WS_OVERLAPPEDWINDOW | WS_VISIBLE,
973 10, 10, 200, 200, NULL, NULL, NULL, NULL);
974 SetCursorPos(100, 100);
975
976 hook2 = SetWindowsHookExA(WH_MOUSE_LL, hook_proc2, GetModuleHandleA(0), 0);
977 hook1 = SetWindowsHookExA(WH_MOUSE_LL, hook_proc1, GetModuleHandleA(0), 0);
978
979 GetCursorPos(&pt_old);
980 mouse_event(MOUSEEVENTF_MOVE, -STEP, 0, 0, 0);
981 GetCursorPos(&pt_old);
982 ok(pt_old.x == pt_new.x && pt_old.y == pt_new.y, "Wrong new pos: (%d,%d)\n", pt_old.x, pt_old.y);
983 mouse_event(MOUSEEVENTF_MOVE, +STEP, 0, 0, 0);
984 GetCursorPos(&pt_old);
985 ok(pt_old.x == pt_new.x && pt_old.y == pt_new.y, "Wrong new pos: (%d,%d)\n", pt_old.x, pt_old.y);
986 mouse_event(MOUSEEVENTF_MOVE, 0, -STEP, 0, 0);
987 GetCursorPos(&pt_old);
988 ok(pt_old.x == pt_new.x && pt_old.y == pt_new.y, "Wrong new pos: (%d,%d)\n", pt_old.x, pt_old.y);
989 mouse_event(MOUSEEVENTF_MOVE, 0, +STEP, 0, 0);
990 GetCursorPos(&pt_old);
991 ok(pt_old.x == pt_new.x && pt_old.y == pt_new.y, "Wrong new pos: (%d,%d)\n", pt_old.x, pt_old.y);
992
993 SetRect(&rc, 50, 50, 151, 151);
994 ClipCursor(&rc);
995 clipped = TRUE;
996
997 SetCursorPos(40, 40);
998 GetCursorPos(&pt_old);
999 ok(pt_old.x == 50 && pt_old.y == 50, "Wrong new pos: (%d,%d)\n", pt_new.x, pt_new.y);
1000 SetCursorPos(160, 160);
1001 GetCursorPos(&pt_old);
1002 ok(pt_old.x == 150 && pt_old.y == 150, "Wrong new pos: (%d,%d)\n", pt_new.x, pt_new.y);
1003 mouse_event(MOUSEEVENTF_MOVE, +STEP, +STEP, 0, 0);
1004 GetCursorPos(&pt_old);
1005 ok(pt_old.x == 150 && pt_old.y == 150, "Wrong new pos: (%d,%d)\n", pt_new.x, pt_new.y);
1006
1007 clipped = FALSE;
1008 pt_new.x = pt_new.y = 150;
1009 ClipCursor(NULL);
1010 UnhookWindowsHookEx(hook1);
1011
1012 /* Now check that mouse buttons do not change mouse position
1013 if we don't have MOUSEEVENTF_MOVE flag specified. */
1014
1015 /* We reusing the same hook callback, so make it happy */
1016 pt_old.x = pt_new.x - STEP;
1017 pt_old.y = pt_new.y - STEP;
1018 mouse_event(MOUSEEVENTF_LEFTUP, 123, 456, 0, 0);
1019 GetCursorPos(&pt);
1020 ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
1021 mouse_event(MOUSEEVENTF_RIGHTUP, 456, 123, 0, 0);
1022 GetCursorPos(&pt);
1023 ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
1024
1025 mouse_event(MOUSEEVENTF_LEFTUP | MOUSEEVENTF_ABSOLUTE, 123, 456, 0, 0);
1026 GetCursorPos(&pt);
1027 ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
1028 mouse_event(MOUSEEVENTF_RIGHTUP | MOUSEEVENTF_ABSOLUTE, 456, 123, 0, 0);
1029 GetCursorPos(&pt);
1030 ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
1031
1032 UnhookWindowsHookEx(hook2);
1033 DestroyWindow(hwnd);
1034 SetCursorPos(pt_org.x, pt_org.y);
1035 }
1036
1037 static void test_GetMouseMovePointsEx(void)
1038 {
1039 #define BUFLIM 64
1040 #define MYERROR 0xdeadbeef
1041 int count, retval;
1042 MOUSEMOVEPOINT in;
1043 MOUSEMOVEPOINT out[200];
1044 POINT point;
1045
1046 /* Get a valid content for the input struct */
1047 if(!GetCursorPos(&point)) {
1048 skip("GetCursorPos() failed with error %u\n", GetLastError());
1049 return;
1050 }
1051 memset(&in, 0, sizeof(MOUSEMOVEPOINT));
1052 in.x = point.x;
1053 in.y = point.y;
1054
1055 /* test first parameter
1056 * everything different than sizeof(MOUSEMOVEPOINT)
1057 * is expected to fail with ERROR_INVALID_PARAMETER
1058 */
1059 SetLastError(MYERROR);
1060 retval = pGetMouseMovePointsEx(0, &in, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1061 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1062 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1063 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1064
1065 SetLastError(MYERROR);
1066 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)-1, &in, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1067 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1068 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1069 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1070
1071 SetLastError(MYERROR);
1072 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)+1, &in, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1073 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1074 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1075 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1076
1077 /* test second and third parameter
1078 */
1079 SetLastError(MYERROR);
1080 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), NULL, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1081 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1082 ok(GetLastError() == ERROR_NOACCESS || GetLastError() == MYERROR,
1083 "expected error ERROR_NOACCESS, got %u\n", GetLastError());
1084
1085 SetLastError(MYERROR);
1086 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, NULL, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1087 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1088 ok(ERROR_NOACCESS == GetLastError(),
1089 "expected error ERROR_NOACCESS, got %u\n", GetLastError());
1090
1091 SetLastError(MYERROR);
1092 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), NULL, NULL, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1093 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1094 ok(ERROR_NOACCESS == GetLastError(),
1095 "expected error ERROR_NOACCESS, got %u\n", GetLastError());
1096
1097 SetLastError(MYERROR);
1098 count = 0;
1099 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, NULL, count, GMMP_USE_DISPLAY_POINTS);
1100 todo_wine {
1101 ok(retval == count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
1102 ok(MYERROR == GetLastError(),
1103 "expected error %d, got %u\n", MYERROR, GetLastError());
1104 }
1105
1106 /* test fourth parameter
1107 * a value higher than 64 is expected to fail with ERROR_INVALID_PARAMETER
1108 */
1109 SetLastError(MYERROR);
1110 count = -1;
1111 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
1112 ok(retval == count, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1113 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1114 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1115
1116 SetLastError(MYERROR);
1117 count = 0;
1118 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
1119 todo_wine {
1120 ok(retval == count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
1121 ok(MYERROR == GetLastError(),
1122 "expected error %d, got %u\n", MYERROR, GetLastError());
1123 }
1124
1125 SetLastError(MYERROR);
1126 count = BUFLIM;
1127 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
1128 todo_wine {
1129 ok((0 <= retval) && (retval <= count), "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
1130 ok(MYERROR == GetLastError(),
1131 "expected error %d, got %u\n", MYERROR, GetLastError());
1132 }
1133
1134 SetLastError(MYERROR);
1135 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, BUFLIM+1, GMMP_USE_DISPLAY_POINTS);
1136 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1137 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1138 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1139
1140 /* it was not possible to force an error with the fifth parameter on win2k */
1141
1142 /* test combinations of wrong parameters to see which error wins */
1143 SetLastError(MYERROR);
1144 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)-1, NULL, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1145 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1146 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1147 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1148
1149 SetLastError(MYERROR);
1150 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)-1, &in, NULL, BUFLIM, GMMP_USE_DISPLAY_POINTS);
1151 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1152 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1153 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1154
1155 SetLastError(MYERROR);
1156 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), NULL, out, BUFLIM+1, GMMP_USE_DISPLAY_POINTS);
1157 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1158 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1159 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1160
1161 SetLastError(MYERROR);
1162 retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, NULL, BUFLIM+1, GMMP_USE_DISPLAY_POINTS);
1163 ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
1164 ok(GetLastError() == ERROR_INVALID_PARAMETER || GetLastError() == MYERROR,
1165 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1166
1167 #undef BUFLIM
1168 #undef MYERROR
1169 }
1170
1171 static void test_key_map(void)
1172 {
1173 HKL kl = GetKeyboardLayout(0);
1174 UINT kL, kR, s, sL;
1175 int i;
1176 static const UINT numpad_collisions[][2] = {
1177 { VK_NUMPAD0, VK_INSERT },
1178 { VK_NUMPAD1, VK_END },
1179 { VK_NUMPAD2, VK_DOWN },
1180 { VK_NUMPAD3, VK_NEXT },
1181 { VK_NUMPAD4, VK_LEFT },
1182 { VK_NUMPAD6, VK_RIGHT },
1183 { VK_NUMPAD7, VK_HOME },
1184 { VK_NUMPAD8, VK_UP },
1185 { VK_NUMPAD9, VK_PRIOR },
1186 };
1187
1188 s = MapVirtualKeyEx(VK_SHIFT, MAPVK_VK_TO_VSC, kl);
1189 ok(s != 0, "MapVirtualKeyEx(VK_SHIFT) should return non-zero\n");
1190 sL = MapVirtualKeyEx(VK_LSHIFT, MAPVK_VK_TO_VSC, kl);
1191 ok(s == sL || broken(sL == 0), /* win9x */
1192 "%x != %x\n", s, sL);
1193
1194 kL = MapVirtualKeyEx(0x2a, MAPVK_VSC_TO_VK, kl);
1195 ok(kL == VK_SHIFT, "Scan code -> vKey = %x (not VK_SHIFT)\n", kL);
1196 kR = MapVirtualKeyEx(0x36, MAPVK_VSC_TO_VK, kl);
1197 ok(kR == VK_SHIFT, "Scan code -> vKey = %x (not VK_SHIFT)\n", kR);
1198
1199 kL = MapVirtualKeyEx(0x2a, MAPVK_VSC_TO_VK_EX, kl);
1200 ok(kL == VK_LSHIFT || broken(kL == 0), /* win9x */
1201 "Scan code -> vKey = %x (not VK_LSHIFT)\n", kL);
1202 kR = MapVirtualKeyEx(0x36, MAPVK_VSC_TO_VK_EX, kl);
1203 ok(kR == VK_RSHIFT || broken(kR == 0), /* win9x */
1204 "Scan code -> vKey = %x (not VK_RSHIFT)\n", kR);
1205
1206 /* test that MAPVK_VSC_TO_VK prefers the non-numpad vkey if there's ambiguity */
1207 for (i = 0; i < sizeof(numpad_collisions)/sizeof(numpad_collisions[0]); i++)
1208 {
1209 UINT numpad_scan = MapVirtualKeyEx(numpad_collisions[i][0], MAPVK_VK_TO_VSC, kl);
1210 UINT other_scan = MapVirtualKeyEx(numpad_collisions[i][1], MAPVK_VK_TO_VSC, kl);
1211
1212 /* do they really collide for this layout? */
1213 if (numpad_scan && other_scan == numpad_scan)
1214 {
1215 UINT vkey = MapVirtualKeyEx(numpad_scan, MAPVK_VSC_TO_VK, kl);
1216 ok(vkey != numpad_collisions[i][0],
1217 "Got numpad vKey %x for scan code %x when there was another choice\n",
1218 vkey, numpad_scan);
1219 }
1220 }
1221 }
1222
1223 static void test_ToUnicode(void)
1224 {
1225 WCHAR wStr[2];
1226 BYTE state[256];
1227 const BYTE SC_RETURN = 0x1c, SC_TAB = 0x0f;
1228 const BYTE HIGHEST_BIT = 0x80;
1229 int i, ret;
1230 for(i=0; i<256; i++)
1231 state[i]=0;
1232
1233 SetLastError(0xdeadbeef);
1234 ret = ToUnicode(VK_RETURN, SC_RETURN, state, wStr, 2, 0);
1235 if (!ret && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1236 {
1237 win_skip("ToUnicode is not implemented\n");
1238 return;
1239 }
1240
1241 ok(ret == 1, "ToUnicode for Return key didn't return 1 (was %i)\n", ret);
1242 if(ret == 1)
1243 ok(wStr[0]=='\r', "ToUnicode for CTRL + Return was %i (expected 13)\n", wStr[0]);
1244 state[VK_CONTROL] |= HIGHEST_BIT;
1245 state[VK_LCONTROL] |= HIGHEST_BIT;
1246
1247 ret = ToUnicode(VK_TAB, SC_TAB, state, wStr, 2, 0);
1248 todo_wine ok(ret == 0, "ToUnicode for CTRL + Tab didn't return 0 (was %i)\n", ret);
1249
1250 ret = ToUnicode(VK_RETURN, SC_RETURN, state, wStr, 2, 0);
1251 ok(ret == 1, "ToUnicode for CTRL + Return didn't return 1 (was %i)\n", ret);
1252 if(ret == 1)
1253 ok(wStr[0]=='\n', "ToUnicode for CTRL + Return was %i (expected 10)\n", wStr[0]);
1254
1255 state[VK_SHIFT] |= HIGHEST_BIT;
1256 state[VK_LSHIFT] |= HIGHEST_BIT;
1257 ret = ToUnicode(VK_RETURN, SC_RETURN, state, wStr, 2, 0);
1258 todo_wine ok(ret == 0, "ToUnicode for CTRL + SHIFT + Return didn't return 0 (was %i)\n", ret);
1259 }
1260
1261 static void test_get_async_key_state(void)
1262 {
1263 /* input value sanity checks */
1264 ok(0 == GetAsyncKeyState(1000000), "GetAsyncKeyState did not return 0\n");
1265 ok(0 == GetAsyncKeyState(-1000000), "GetAsyncKeyState did not return 0\n");
1266 }
1267
1268 START_TEST(input)
1269 {
1270 init_function_pointers();
1271
1272 if (pSendInput)
1273 {
1274 test_Input_blackbox();
1275 test_Input_whitebox();
1276 }
1277 else win_skip("SendInput is not available\n");
1278
1279 test_keynames();
1280 test_mouse_ll_hook();
1281 test_key_map();
1282 test_ToUnicode();
1283 test_get_async_key_state();
1284
1285 if(pGetMouseMovePointsEx)
1286 test_GetMouseMovePointsEx();
1287 else
1288 win_skip("GetMouseMovePointsEx is not available\n");
1289 }