1 /* Test Key event to Key message translation
3 * Copyright 2003 Rein Klazes
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.
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.
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
20 /* test whether the right type of messages:
21 * WM_KEYUP/DOWN vs WM_SYSKEYUP/DOWN are sent in case of combined
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 */
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 */
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
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
47 #define _WIN32_WINNT 0x401
48 #define _WIN32_IE 0x0500
57 #include "wine/test.h"
61 static LONG timetag
= 0x10000000;
66 LONG last_syskey_down
;
72 LONG last_hook_syskey_down
;
73 LONG last_hook_syskey_up
;
75 BOOL sendinput_broken
;
78 static UINT (WINAPI
*pSendInput
) (UINT
, INPUT
*, size_t);
79 static int (WINAPI
*pGetMouseMovePointsEx
) (UINT
, LPMOUSEMOVEPOINT
, LPMOUSEMOVEPOINT
, int, DWORD
);
81 #define MAXKEYEVENTS 12
82 #define MAXKEYMESSAGES MAXKEYEVENTS /* assuming a key event generates one
83 and only one message */
85 /* keyboard message names, sorted as their value */
86 static const char *MSGNAME
[]={"WM_KEYDOWN", "WM_KEYUP", "WM_CHAR","WM_DEADCHAR",
87 "WM_SYSKEYDOWN", "WM_SYSKEYUP", "WM_SYSCHAR", "WM_SYSDEADCHAR" ,"WM_KEYLAST"};
89 /* keyevents, add more as needed */
91 { ALTDOWN
= 1, ALTUP
, XDOWN
, XUP
, SHIFTDOWN
, SHIFTUP
, CTRLDOWN
, CTRLUP
} KEV
;
93 static const int GETVKEY
[]={0, VK_MENU
, VK_MENU
, 'X', 'X', VK_SHIFT
, VK_SHIFT
, VK_CONTROL
, VK_CONTROL
};
94 /* matching scan codes */
95 static const int GETSCAN
[]={0, 0x38, 0x38, 0x2D, 0x2D, 0x2A, 0x2A, 0x1D, 0x1D };
96 /* matching updown events */
97 static const int GETFLAGS
[]={0, 0, KEYEVENTF_KEYUP
, 0, KEYEVENTF_KEYUP
, 0, KEYEVENTF_KEYUP
, 0, KEYEVENTF_KEYUP
};
98 /* matching descriptions */
99 static const char *getdesc
[]={"", "+alt","-alt","+X","-X","+shift","-shift","+ctrl","-ctrl"};
101 /* The MSVC headers ignore our NONAMELESSUNION requests so we have to define our own type */
113 #define ADDTOINPUTS(kev) \
114 inputs[evtctr].type = INPUT_KEYBOARD; \
115 ((TEST_INPUT*)inputs)[evtctr].u.ki.wVk = GETVKEY[ kev]; \
116 ((TEST_INPUT*)inputs)[evtctr].u.ki.wScan = GETSCAN[ kev]; \
117 ((TEST_INPUT*)inputs)[evtctr].u.ki.dwFlags = GETFLAGS[ kev]; \
118 ((TEST_INPUT*)inputs)[evtctr].u.ki.dwExtraInfo = 0; \
119 ((TEST_INPUT*)inputs)[evtctr].u.ki.time = ++timetag; \
128 /*******************************************
129 * add new test sets here
130 * the software will make all combinations of the
131 * keyevent defined here
133 static const struct {
135 KEV keydwn
[MAXKEYEVENTS
];
136 KEV keyup
[MAXKEYEVENTS
];
138 { 2, { ALTDOWN
, XDOWN
}, { ALTUP
, XUP
}},
139 { 3, { ALTDOWN
, XDOWN
, SHIFTDOWN
}, { ALTUP
, XUP
, SHIFTUP
}},
140 { 3, { ALTDOWN
, XDOWN
, CTRLDOWN
}, { ALTUP
, XUP
, CTRLUP
}},
141 { 3, { SHIFTDOWN
, XDOWN
, CTRLDOWN
}, { SHIFTUP
, XUP
, CTRLUP
}},
142 { 0 } /* mark the end */
145 /**********************adapted from input.c **********************************/
147 static BYTE InputKeyStateTable
[256];
148 static BYTE AsyncKeyStateTable
[256];
149 static BYTE TrackSysKey
= 0; /* determine whether ALT key up will cause a WM_SYSKEYUP
150 or a WM_KEYUP message */
152 static void init_function_pointers(void)
154 HMODULE hdll
= GetModuleHandleA("user32");
156 #define GET_PROC(func) \
157 p ## func = (void*)GetProcAddress(hdll, #func); \
159 trace("GetProcAddress(%s) failed\n", #func);
162 GET_PROC(GetMouseMovePointsEx
)
167 static int KbdMessage( KEV kev
, WPARAM
*pwParam
, LPARAM
*plParam
)
170 int VKey
= GETVKEY
[kev
];
173 flags
= LOBYTE(GETSCAN
[kev
]);
174 if (GETFLAGS
[kev
] & KEYEVENTF_EXTENDEDKEY
) flags
|= KF_EXTENDED
;
176 if (GETFLAGS
[kev
] & KEYEVENTF_KEYUP
)
179 if( (InputKeyStateTable
[VK_MENU
] & 0x80) && (
180 (VKey
== VK_MENU
) || (VKey
== VK_CONTROL
) ||
181 !(InputKeyStateTable
[VK_CONTROL
] & 0x80))) {
182 if( TrackSysKey
== VK_MENU
|| /* <ALT>-down/<ALT>-up sequence */
183 (VKey
!= VK_MENU
)) /* <ALT>-down...<something else>-up */
184 message
= WM_SYSKEYUP
;
187 InputKeyStateTable
[VKey
] &= ~0x80;
188 flags
|= KF_REPEAT
| KF_UP
;
192 if (InputKeyStateTable
[VKey
] & 0x80) flags
|= KF_REPEAT
;
193 if (!(InputKeyStateTable
[VKey
] & 0x80)) InputKeyStateTable
[VKey
] ^= 0x01;
194 InputKeyStateTable
[VKey
] |= 0x80;
195 AsyncKeyStateTable
[VKey
] |= 0x80;
197 message
= WM_KEYDOWN
;
198 if( (InputKeyStateTable
[VK_MENU
] & 0x80) &&
199 !(InputKeyStateTable
[VK_CONTROL
] & 0x80)) {
200 message
= WM_SYSKEYDOWN
;
205 if (InputKeyStateTable
[VK_MENU
] & 0x80) flags
|= KF_ALTDOWN
;
207 if( plParam
) *plParam
= MAKELPARAM( 1, flags
);
208 if( pwParam
) *pwParam
= VKey
;
212 /****************************** end copy input.c ****************************/
215 * . prepare the keyevents for SendInputs
216 * . calculate the "expected" messages
217 * . Send the events to our window
218 * . retrieve the messages from the input queue
221 static BOOL
do_test( HWND hwnd
, int seqnr
, const KEV td
[] )
223 INPUT inputs
[MAXKEYEVENTS
];
224 KMSG expmsg
[MAXKEYEVENTS
];
231 TrackSysKey
=0; /* see input.c */
232 for( i
= 0; i
< MAXKEYEVENTS
; i
++) {
234 strcat(buf
, getdesc
[td
[i
]]);
236 expmsg
[i
].message
= KbdMessage(td
[i
], &(expmsg
[i
].wParam
), &(expmsg
[i
].lParam
));
238 expmsg
[i
].message
= 0;
240 for( kmctr
= 0; kmctr
< MAXKEYEVENTS
&& expmsg
[kmctr
].message
; kmctr
++)
242 ok( evtctr
<= MAXKEYEVENTS
, "evtctr is above MAXKEYEVENTS\n" );
243 if( evtctr
!= pSendInput(evtctr
, &inputs
[0], sizeof(INPUT
)))
244 ok (FALSE
, "SendInput failed to send some events\n");
246 if (winetest_debug
> 1)
247 trace("======== key stroke sequence #%d: %s =============\n",
249 while( PeekMessage(&msg
,hwnd
,WM_KEYFIRST
,WM_KEYLAST
,PM_REMOVE
) ) {
250 if (winetest_debug
> 1)
251 trace("message[%d] %-15s wParam %04lx lParam %08lx time %x\n", i
,
252 MSGNAME
[msg
.message
- WM_KEYFIRST
], msg
.wParam
, msg
.lParam
, msg
.time
);
254 ok( msg
.message
== expmsg
[i
].message
&&
255 msg
.wParam
== expmsg
[i
].wParam
&&
256 msg
.lParam
== expmsg
[i
].lParam
,
257 "%u/%u: wrong message %x/%08lx/%08lx expected %s/%08lx/%08lx\n",
258 seqnr
, i
, msg
.message
, msg
.wParam
, msg
.lParam
,
259 MSGNAME
[(expmsg
[i
]).message
- WM_KEYFIRST
], expmsg
[i
].wParam
, expmsg
[i
].lParam
);
263 if (winetest_debug
> 1)
264 trace("%d messages retrieved\n", i
);
267 skip( "simulated keyboard input doesn't work\n" );
270 ok( i
== kmctr
, "message count is wrong: got %d expected: %d\n", i
, kmctr
);
274 /* test all combinations of the specified key events */
275 static BOOL
TestASet( HWND hWnd
, int nrkev
, const KEV kevdwn
[], const KEV kevup
[] )
279 KEV kbuf
[MAXKEYEVENTS
];
280 assert( nrkev
==2 || nrkev
==3);
281 for(i
=0;i
<MAXKEYEVENTS
;i
++) kbuf
[i
]=0;
282 /* two keys involved gives 4 test cases */
284 for(i
=0;i
<nrkev
;i
++) {
285 for(j
=0;j
<nrkev
;j
++) {
287 kbuf
[1] = kevdwn
[1-i
];
289 kbuf
[3] = kevup
[1-j
];
290 if (!do_test( hWnd
, count
++, kbuf
)) return FALSE
;
294 /* three keys involved gives 36 test cases */
296 for(i
=0;i
<nrkev
;i
++){
297 for(j
=0;j
<nrkev
;j
++){
299 for(k
=0;k
<nrkev
;k
++){
300 if(k
==i
|| k
==j
) continue;
301 for(l
=0;l
<nrkev
;l
++){
302 for(m
=0;m
<nrkev
;m
++){
304 for(n
=0;n
<nrkev
;n
++){
305 if(n
==l
||n
==m
) continue;
312 if (!do_test( hWnd
, count
++, kbuf
)) return FALSE
;
323 /* test each set specified in the global testkeyset array */
324 static void TestSysKeys( HWND hWnd
)
327 for(i
=0; testkeyset
[i
].nrkev
;i
++)
328 if (!TestASet( hWnd
, testkeyset
[i
].nrkev
, testkeyset
[i
].keydwn
, testkeyset
[i
].keyup
)) break;
331 static LRESULT CALLBACK
WndProc( HWND hWnd
, UINT msg
, WPARAM wParam
,
334 return DefWindowProcA( hWnd
, msg
, wParam
, lParam
);
337 static void test_Input_whitebox(void)
341 HANDLE hInstance
= GetModuleHandleA( NULL
);
343 wclass
.lpszClassName
= "InputSysKeyTestClass";
344 wclass
.style
= CS_HREDRAW
| CS_VREDRAW
;
345 wclass
.lpfnWndProc
= WndProc
;
346 wclass
.hInstance
= hInstance
;
347 wclass
.hIcon
= LoadIconA( 0, IDI_APPLICATION
);
348 wclass
.hCursor
= LoadCursorA( NULL
, IDC_ARROW
);
349 wclass
.hbrBackground
= (HBRUSH
)( COLOR_WINDOW
+ 1 );
350 wclass
.lpszMenuName
= 0;
351 wclass
.cbClsExtra
= 0;
352 wclass
.cbWndExtra
= 0;
353 RegisterClassA( &wclass
);
354 /* create the test window that will receive the keystrokes */
355 hWndTest
= CreateWindowA( wclass
.lpszClassName
, "InputSysKeyTest",
356 WS_OVERLAPPEDWINDOW
, CW_USEDEFAULT
, 0, 100, 100,
357 NULL
, NULL
, hInstance
, NULL
);
359 ShowWindow( hWndTest
, SW_SHOW
);
360 SetWindowPos( hWndTest
, HWND_TOPMOST
, 0, 0, 0, 0, SWP_NOSIZE
|SWP_NOMOVE
);
361 SetForegroundWindow( hWndTest
);
362 UpdateWindow( hWndTest
);
364 /* flush pending messages */
365 while (PeekMessage( &msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageA( &msg
);
367 SetFocus( hWndTest
);
368 TestSysKeys( hWndTest
);
369 DestroyWindow(hWndTest
);
372 /* try to make sure pending X events have been processed before continuing */
373 static void empty_message_queue(void)
377 int min_timeout
= 50;
378 DWORD time
= GetTickCount() + diff
;
382 if (MsgWaitForMultipleObjects(0, NULL
, FALSE
, min_timeout
, QS_ALLINPUT
) == WAIT_TIMEOUT
) break;
383 while (PeekMessage(&msg
, 0, 0, 0, PM_REMOVE
))
385 TranslateMessage(&msg
);
386 DispatchMessage(&msg
);
388 diff
= time
- GetTickCount();
392 struct transition_s
{
412 UINT message
; /* the WM_* code */
413 msg_flags_t flags
; /* message props */
414 WPARAM wParam
; /* expected value of wParam */
415 LPARAM lParam
; /* expected value of lParam */
418 static const struct sendinput_test_s
{
422 struct transition_s expected_transitions
[MAXKEYEVENTS
+1];
423 struct message expected_messages
[MAXKEYMESSAGES
+1];
424 } sendinput_test
[] = {
427 {VK_LMENU
, 0, 0, {{VK_MENU
, 0x00}, {VK_LMENU
, 0x00}, {0}},
428 {{WM_SYSKEYDOWN
, hook
|wparam
, VK_LMENU
}, {WM_SYSKEYDOWN
}, {0}}},
429 {'F', 0, 0, {{'F', 0x00}, {0}},
430 {{WM_SYSKEYDOWN
, hook
}, {WM_SYSKEYDOWN
},
432 {WM_SYSCOMMAND
}, {0}}},
433 {'F', KEYEVENTF_KEYUP
, 0, {{'F', 0x80}, {0}},
434 {{WM_SYSKEYUP
, hook
}, {WM_SYSKEYUP
}, {0}}},
435 {VK_LMENU
, KEYEVENTF_KEYUP
, 0, {{VK_MENU
, 0x80}, {VK_LMENU
, 0x80}, {0}},
436 {{WM_KEYUP
, hook
}, {WM_KEYUP
}, {0}}},
440 {VK_LCONTROL
, 0, 0, {{VK_CONTROL
, 0x00}, {VK_LCONTROL
, 0x00}, {0}},
441 {{WM_KEYDOWN
, hook
}, {WM_KEYDOWN
}, {0}}},
442 {'O', 0, 0, {{'O', 0x00}, {0}},
443 {{WM_KEYDOWN
, hook
}, {WM_KEYDOWN
}, {WM_CHAR
}, {0}}},
444 {'O', KEYEVENTF_KEYUP
, 0, {{'O', 0x80}, {0}},
445 {{WM_KEYUP
, hook
}, {WM_KEYUP
}, {0}}},
446 {VK_LCONTROL
, KEYEVENTF_KEYUP
, 0, {{VK_CONTROL
, 0x80}, {VK_LCONTROL
, 0x80}, {0}},
447 {{WM_KEYUP
, hook
}, {WM_KEYUP
}, {0}}},
449 /* test ALT+CTRL+X */
451 {VK_LMENU
, 0, 0, {{VK_MENU
, 0x00}, {VK_LMENU
, 0x00}, {0}},
452 {{WM_SYSKEYDOWN
, hook
}, {WM_SYSKEYDOWN
}, {0}}},
453 {VK_LCONTROL
, 0, 0, {{VK_CONTROL
, 0x00}, {VK_LCONTROL
, 0x00}, {0}},
454 {{WM_KEYDOWN
, hook
}, {WM_KEYDOWN
}, {0}}},
455 {'X', 0, 0, {{'X', 0x00}, {0}},
456 {{WM_KEYDOWN
, hook
}, {WM_KEYDOWN
}, {0}}},
457 {'X', KEYEVENTF_KEYUP
, 0, {{'X', 0x80}, {0}},
458 {{WM_KEYUP
, hook
}, {WM_KEYUP
}, {0}}},
459 {VK_LCONTROL
, KEYEVENTF_KEYUP
, 0, {{VK_CONTROL
, 0x80}, {VK_LCONTROL
, 0x80}, {0}},
460 {{WM_SYSKEYUP
, hook
}, {WM_SYSKEYUP
}, {0}}},
461 {VK_LMENU
, KEYEVENTF_KEYUP
, 0, {{VK_MENU
, 0x80}, {VK_LMENU
, 0x80}, {0}},
462 {{WM_KEYUP
, hook
}, {WM_KEYUP
}, {0}}},
466 {VK_LSHIFT
, 0, 0, {{VK_SHIFT
, 0x00}, {VK_LSHIFT
, 0x00}, {0}},
467 {{WM_KEYDOWN
, hook
}, {WM_KEYDOWN
}, {0}}},
468 {'A', 0, 0, {{'A', 0x00}, {0}},
469 {{WM_KEYDOWN
, hook
}, {WM_KEYDOWN
}, {WM_CHAR
}, {0}}},
470 {'A', KEYEVENTF_KEYUP
, 0, {{'A', 0x80}, {0}},
471 {{WM_KEYUP
, hook
}, {WM_KEYUP
}, {0}}},
472 {VK_LSHIFT
, KEYEVENTF_KEYUP
, 0, {{VK_SHIFT
, 0x80}, {VK_LSHIFT
, 0x80}, {0}},
473 {{WM_KEYUP
, hook
}, {WM_KEYUP
}, {0}}},
474 /* test L-SHIFT & R-SHIFT: */
475 /* RSHIFT == LSHIFT */
478 /* recent windows versions (>= w2k3) correctly report an RSHIFT transition */
479 {{VK_SHIFT
, 0x00}, {VK_LSHIFT
, 0x00, TRUE
}, {VK_RSHIFT
, 0x00, TRUE
}, {0}},
480 {{WM_KEYDOWN
, hook
|wparam
, VK_RSHIFT
},
482 {VK_RSHIFT
, KEYEVENTF_KEYUP
, 0,
483 {{VK_SHIFT
, 0x80}, {VK_LSHIFT
, 0x80, TRUE
}, {VK_RSHIFT
, 0x80, TRUE
}, {0}},
484 {{WM_KEYUP
, hook
, hook
|wparam
, VK_RSHIFT
},
487 /* LSHIFT | KEYEVENTF_EXTENDEDKEY == RSHIFT */
489 {VK_LSHIFT
, KEYEVENTF_EXTENDEDKEY
, 0,
490 {{VK_SHIFT
, 0x00}, {VK_RSHIFT
, 0x00}, {0}},
491 {{WM_KEYDOWN
, hook
|wparam
|lparam
, VK_LSHIFT
, LLKHF_EXTENDED
},
492 {WM_KEYDOWN
, wparam
|lparam
, VK_SHIFT
, 0}, {0}}},
493 {VK_LSHIFT
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 0,
494 {{VK_SHIFT
, 0x80}, {VK_RSHIFT
, 0x80}, {0}},
495 {{WM_KEYUP
, hook
|wparam
|lparam
, VK_LSHIFT
, LLKHF_UP
|LLKHF_EXTENDED
},
496 {WM_KEYUP
, wparam
|lparam
, VK_SHIFT
, KF_UP
}, {0}}},
497 /* RSHIFT | KEYEVENTF_EXTENDEDKEY == RSHIFT */
499 {VK_RSHIFT
, KEYEVENTF_EXTENDEDKEY
, 0,
500 {{VK_SHIFT
, 0x00}, {VK_RSHIFT
, 0x00}, {0}},
501 {{WM_KEYDOWN
, hook
|wparam
|lparam
, VK_RSHIFT
, LLKHF_EXTENDED
},
502 {WM_KEYDOWN
, wparam
|lparam
, VK_SHIFT
, 0}, {0}}},
503 {VK_RSHIFT
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 0,
504 {{VK_SHIFT
, 0x80}, {VK_RSHIFT
, 0x80}, {0}},
505 {{WM_KEYUP
, hook
|wparam
|lparam
, VK_RSHIFT
, LLKHF_UP
|LLKHF_EXTENDED
},
506 {WM_KEYUP
, wparam
|lparam
, VK_SHIFT
, KF_UP
}, {0}}},
508 /* Note about wparam for hook with generic key (VK_SHIFT, VK_CONTROL, VK_MENU):
509 win2k - sends to hook whatever we generated here
510 winXP+ - Attempts to convert key to L/R key but not always correct
512 /* SHIFT == LSHIFT */
515 {{VK_SHIFT
, 0x00}, {VK_LSHIFT
, 0x00}, {0}},
516 {{WM_KEYDOWN
, hook
/* |wparam */|lparam
, VK_SHIFT
, 0},
517 {WM_KEYDOWN
, wparam
|lparam
, VK_SHIFT
, 0}, {0}}},
518 {VK_SHIFT
, KEYEVENTF_KEYUP
, 0,
519 {{VK_SHIFT
, 0x80}, {VK_LSHIFT
, 0x80}, {0}},
520 {{WM_KEYUP
, hook
/*|wparam*/|lparam
, VK_SHIFT
, LLKHF_UP
},
521 {WM_KEYUP
, wparam
|lparam
, VK_SHIFT
, KF_UP
}, {0}}},
522 /* SHIFT | KEYEVENTF_EXTENDEDKEY == RSHIFT */
524 {VK_SHIFT
, KEYEVENTF_EXTENDEDKEY
, 0,
525 {{VK_SHIFT
, 0x00}, {VK_RSHIFT
, 0x00}, {0}},
526 {{WM_KEYDOWN
, hook
/*|wparam*/|lparam
, VK_SHIFT
, LLKHF_EXTENDED
},
527 {WM_KEYDOWN
, wparam
|lparam
, VK_SHIFT
, 0}, {0}}},
528 {VK_SHIFT
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 0,
529 {{VK_SHIFT
, 0x80}, {VK_RSHIFT
, 0x80}, {0}},
530 {{WM_KEYUP
, hook
/*|wparam*/|lparam
, VK_SHIFT
, LLKHF_UP
|LLKHF_EXTENDED
},
531 {WM_KEYUP
, wparam
|lparam
, VK_SHIFT
, KF_UP
}, {0}}},
533 /* test L-CONTROL & R-CONTROL: */
534 /* RCONTROL == LCONTROL */
537 {{VK_CONTROL
, 0x00}, {VK_LCONTROL
, 0x00}, {0}},
538 {{WM_KEYDOWN
, hook
|wparam
, VK_RCONTROL
},
539 {WM_KEYDOWN
, wparam
|lparam
, VK_CONTROL
, 0}, {0}}},
540 {VK_RCONTROL
, KEYEVENTF_KEYUP
, 0,
541 {{VK_CONTROL
, 0x80}, {VK_LCONTROL
, 0x80}, {0}},
542 {{WM_KEYUP
, hook
|wparam
, VK_RCONTROL
},
543 {WM_KEYUP
, wparam
|lparam
, VK_CONTROL
, KF_UP
}, {0}}},
544 /* LCONTROL | KEYEVENTF_EXTENDEDKEY == RCONTROL */
546 {VK_LCONTROL
, KEYEVENTF_EXTENDEDKEY
, 0,
547 {{VK_CONTROL
, 0x00}, {VK_RCONTROL
, 0x00}, {0}},
548 {{WM_KEYDOWN
, hook
|wparam
|lparam
, VK_LCONTROL
, LLKHF_EXTENDED
},
549 {WM_KEYDOWN
, wparam
|lparam
, VK_CONTROL
, KF_EXTENDED
}, {0}}},
550 {VK_LCONTROL
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 0,
551 {{VK_CONTROL
, 0x80}, {VK_RCONTROL
, 0x80}, {0}},
552 {{WM_KEYUP
, hook
|wparam
|lparam
, VK_LCONTROL
, LLKHF_UP
|LLKHF_EXTENDED
},
553 {WM_KEYUP
, wparam
|lparam
, VK_CONTROL
, KF_UP
|KF_EXTENDED
}, {0}}},
554 /* RCONTROL | KEYEVENTF_EXTENDEDKEY == RCONTROL */
556 {VK_RCONTROL
, KEYEVENTF_EXTENDEDKEY
, 0,
557 {{VK_CONTROL
, 0x00}, {VK_RCONTROL
, 0x00}, {0}},
558 {{WM_KEYDOWN
, hook
|wparam
|lparam
, VK_RCONTROL
, LLKHF_EXTENDED
},
559 {WM_KEYDOWN
, wparam
|lparam
, VK_CONTROL
, KF_EXTENDED
}, {0}}},
560 {VK_RCONTROL
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 0,
561 {{VK_CONTROL
, 0x80}, {VK_RCONTROL
, 0x80}, {0}},
562 {{WM_KEYUP
, hook
|wparam
|lparam
, VK_RCONTROL
, LLKHF_UP
|LLKHF_EXTENDED
},
563 {WM_KEYUP
, wparam
|lparam
, VK_CONTROL
, KF_UP
|KF_EXTENDED
}, {0}}},
564 /* CONTROL == LCONTROL */
567 {{VK_CONTROL
, 0x00}, {VK_LCONTROL
, 0x00}, {0}},
568 {{WM_KEYDOWN
, hook
/*|wparam, VK_CONTROL*/},
569 {WM_KEYDOWN
, wparam
|lparam
, VK_CONTROL
, 0}, {0}}},
570 {VK_CONTROL
, KEYEVENTF_KEYUP
, 0,
571 {{VK_CONTROL
, 0x80}, {VK_LCONTROL
, 0x80}, {0}},
572 {{WM_KEYUP
, hook
/*|wparam, VK_CONTROL*/},
573 {WM_KEYUP
, wparam
|lparam
, VK_CONTROL
, KF_UP
}, {0}}},
574 /* CONTROL | KEYEVENTF_EXTENDEDKEY == RCONTROL */
576 {VK_CONTROL
, KEYEVENTF_EXTENDEDKEY
, 0,
577 {{VK_CONTROL
, 0x00}, {VK_RCONTROL
, 0x00}, {0}},
578 {{WM_KEYDOWN
, hook
/*|wparam*/|lparam
, VK_CONTROL
, LLKHF_EXTENDED
},
579 {WM_KEYDOWN
, wparam
|lparam
, VK_CONTROL
, KF_EXTENDED
}, {0}}},
580 {VK_CONTROL
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 0,
581 {{VK_CONTROL
, 0x80}, {VK_RCONTROL
, 0x80}, {0}},
582 {{WM_KEYUP
, hook
/*|wparam*/|lparam
, VK_CONTROL
, LLKHF_UP
|LLKHF_EXTENDED
},
583 {WM_KEYUP
, wparam
|lparam
, VK_CONTROL
, KF_UP
|KF_EXTENDED
}, {0}}},
585 /* test L-MENU & R-MENU: */
589 {{VK_MENU
, 0x00}, {VK_LMENU
, 0x00}, {VK_CONTROL
, 0x00, 1}, {VK_LCONTROL
, 0x01, 1}, {0}},
590 {{WM_SYSKEYDOWN
, hook
|wparam
|optional
, VK_LCONTROL
},
591 {WM_SYSKEYDOWN
, hook
|wparam
, VK_RMENU
},
592 {WM_KEYDOWN
, wparam
|lparam
|optional
, VK_CONTROL
, 0},
593 {WM_SYSKEYDOWN
, wparam
|lparam
, VK_MENU
, 0}, {0}}},
594 {VK_RMENU
, KEYEVENTF_KEYUP
, 1,
595 {{VK_MENU
, 0x80}, {VK_LMENU
, 0x80}, {VK_CONTROL
, 0x81, 1}, {VK_LCONTROL
, 0x80, 1}, {0}},
596 {{WM_KEYUP
, hook
|wparam
|optional
, VK_LCONTROL
},
597 {WM_KEYUP
, hook
|wparam
, VK_RMENU
},
598 {WM_SYSKEYUP
, wparam
|lparam
|optional
, VK_CONTROL
, KF_UP
},
599 {WM_SYSKEYUP
, wparam
|lparam
, VK_MENU
, KF_UP
},
600 {WM_SYSCOMMAND
, optional
}, {0}}},
601 /* LMENU | KEYEVENTF_EXTENDEDKEY == RMENU */
603 {VK_LMENU
, KEYEVENTF_EXTENDEDKEY
, 0,
604 {{VK_MENU
, 0x00}, {VK_RMENU
, 0x00}, {0}},
605 {{WM_SYSKEYDOWN
, hook
|wparam
|lparam
, VK_LMENU
, LLKHF_EXTENDED
},
606 {WM_SYSKEYDOWN
, wparam
|lparam
, VK_MENU
, KF_EXTENDED
}, {0}}},
607 {VK_LMENU
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 1,
608 {{VK_MENU
, 0x80}, {VK_RMENU
, 0x80}, {0}},
609 {{WM_KEYUP
, hook
|wparam
|lparam
, VK_LMENU
, LLKHF_UP
|LLKHF_EXTENDED
},
610 {WM_SYSKEYUP
, wparam
|lparam
, VK_MENU
, KF_UP
|KF_EXTENDED
},
611 {WM_SYSCOMMAND
}, {0}}},
612 /* RMENU | KEYEVENTF_EXTENDEDKEY == RMENU */
614 {VK_RMENU
, KEYEVENTF_EXTENDEDKEY
, 0,
615 {{VK_MENU
, 0x00}, {VK_RMENU
, 0x00}, {VK_CONTROL
, 0x00, 1}, {VK_LCONTROL
, 0x01, 1}, {0}},
616 {{WM_SYSKEYDOWN
, hook
|wparam
|lparam
|optional
, VK_LCONTROL
, 0},
617 {WM_SYSKEYDOWN
, hook
|wparam
|lparam
, VK_RMENU
, LLKHF_EXTENDED
},
618 {WM_KEYDOWN
, wparam
|lparam
|optional
, VK_CONTROL
, 0},
619 {WM_SYSKEYDOWN
, wparam
|lparam
, VK_MENU
, KF_EXTENDED
}, {0}}},
620 {VK_RMENU
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 1,
621 {{VK_MENU
, 0x80}, {VK_RMENU
, 0x80}, {VK_CONTROL
, 0x81, 1}, {VK_LCONTROL
, 0x80, 1}, {0}},
622 {{WM_KEYUP
, hook
|wparam
|lparam
|optional
, VK_LCONTROL
, LLKHF_UP
},
623 {WM_KEYUP
, hook
|wparam
|lparam
, VK_RMENU
, LLKHF_UP
|LLKHF_EXTENDED
},
624 {WM_SYSKEYUP
, wparam
|lparam
|optional
, VK_CONTROL
, KF_UP
},
625 {WM_SYSKEYUP
, wparam
|lparam
, VK_MENU
, KF_UP
|KF_EXTENDED
},
626 {WM_SYSCOMMAND
, optional
}, {0}}},
630 {{VK_MENU
, 0x00}, {VK_LMENU
, 0x00}, {0}},
631 {{WM_SYSKEYDOWN
, hook
/*|wparam, VK_MENU*/},
632 {WM_SYSKEYDOWN
, wparam
|lparam
, VK_MENU
, 0}, {0}}},
633 {VK_MENU
, KEYEVENTF_KEYUP
, 1,
634 {{VK_MENU
, 0x80}, {VK_LMENU
, 0x80}, {0}},
635 {{WM_KEYUP
, hook
/*|wparam, VK_MENU*/},
636 {WM_SYSKEYUP
, wparam
|lparam
, VK_MENU
, KF_UP
},
637 {WM_SYSCOMMAND
}, {0}}},
638 /* MENU | KEYEVENTF_EXTENDEDKEY == RMENU */
640 {VK_MENU
, KEYEVENTF_EXTENDEDKEY
, 0,
641 {{VK_MENU
, 0x00}, {VK_RMENU
, 0x00}, {VK_CONTROL
, 0x00, 1}, {VK_LCONTROL
, 0x01, 1}, {0}},
642 {{WM_SYSKEYDOWN
, hook
|wparam
|lparam
|optional
, VK_CONTROL
, 0},
643 {WM_SYSKEYDOWN
, hook
/*|wparam*/|lparam
, VK_MENU
, LLKHF_EXTENDED
},
644 {WM_SYSKEYDOWN
, wparam
|lparam
, VK_MENU
, KF_EXTENDED
}, {0}}},
645 {VK_MENU
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 1,
646 {{VK_MENU
, 0x80}, {VK_RMENU
, 0x80}, {VK_CONTROL
, 0x81, 1}, {VK_LCONTROL
, 0x80, 1}, {0}},
647 {{WM_KEYUP
, hook
|wparam
|lparam
|optional
, VK_CONTROL
, LLKHF_UP
},
648 {WM_KEYUP
, hook
/*|wparam*/|lparam
, VK_MENU
, LLKHF_UP
|LLKHF_EXTENDED
},
649 {WM_SYSKEYUP
, wparam
|lparam
, VK_MENU
, KF_UP
|KF_EXTENDED
},
650 {WM_SYSCOMMAND
}, {0}}},
652 /* test LSHIFT & RSHIFT */
655 {{VK_SHIFT
, 0x00}, {VK_LSHIFT
, 0x00}, {0}},
656 {{WM_KEYDOWN
, hook
|wparam
|lparam
, VK_LSHIFT
, 0},
657 {WM_KEYDOWN
, wparam
|lparam
, VK_SHIFT
, 0}, {0}}},
658 {VK_RSHIFT
, KEYEVENTF_EXTENDEDKEY
, 0,
659 {{VK_RSHIFT
, 0x00}, {0}},
660 {{WM_KEYDOWN
, hook
|wparam
|lparam
, VK_RSHIFT
, LLKHF_EXTENDED
},
661 {WM_KEYDOWN
, wparam
|lparam
, VK_SHIFT
, 0}, {0}}},
662 {VK_RSHIFT
, KEYEVENTF_KEYUP
| KEYEVENTF_EXTENDEDKEY
, 0,
663 {{VK_RSHIFT
, 0x80}, {0}},
664 {{WM_KEYUP
, hook
|wparam
|lparam
, VK_RSHIFT
, LLKHF_UP
|LLKHF_EXTENDED
},
665 {WM_KEYUP
, optional
}, {0}}},
666 {VK_LSHIFT
, KEYEVENTF_KEYUP
, 0,
667 {{VK_SHIFT
, 0x80}, {VK_LSHIFT
, 0x80}, {0}},
668 {{WM_KEYUP
, hook
|wparam
, VK_LSHIFT
},
669 {WM_KEYUP
, wparam
|lparam
, VK_SHIFT
, KF_UP
}, {0}}},
671 {0, 0, 0, {{0}}, {{0}}} /* end */
674 static struct message sent_messages
[MAXKEYMESSAGES
];
675 static UINT sent_messages_cnt
;
677 /* Verify that only specified key state transitions occur */
678 static void compare_and_check(int id
, BYTE
*ks1
, BYTE
*ks2
, const struct sendinput_test_s
*test
)
680 int i
, failcount
= 0;
681 const struct transition_s
*t
= test
->expected_transitions
;
683 const struct message
*expected
= test
->expected_messages
;
686 int matched
= ((ks1
[t
->wVk
]&0x80) == (t
->before_state
&0x80)
687 && (ks2
[t
->wVk
]&0x80) == (~t
->before_state
&0x80));
689 if (!matched
&& !t
->optional
&& test
->_todo_wine
)
693 ok(matched
, "%2d (%x/%x): %02x from %02x -> %02x "
694 "instead of %02x -> %02x\n", id
, test
->wVk
, test
->dwFlags
,
695 t
->wVk
, ks1
[t
->wVk
]&0x80, ks2
[t
->wVk
]&0x80, t
->before_state
,
696 ~t
->before_state
&0x80);
699 ok(matched
|| t
->optional
, "%2d (%x/%x): %02x from %02x -> %02x "
700 "instead of %02x -> %02x\n", id
, test
->wVk
, test
->dwFlags
,
701 t
->wVk
, ks1
[t
->wVk
]&0x80, ks2
[t
->wVk
]&0x80, t
->before_state
,
702 ~t
->before_state
&0x80);
704 ks2
[t
->wVk
] = ks1
[t
->wVk
]; /* clear the match */
707 for (i
= 0; i
< 256; i
++)
708 if (ks2
[i
] != ks1
[i
] && test
->_todo_wine
)
712 ok(FALSE
, "%2d (%x/%x): %02x from %02x -> %02x unexpected\n",
713 id
, test
->wVk
, test
->dwFlags
, i
, ks1
[i
], ks2
[i
]);
716 ok(ks2
[i
] == ks1
[i
], "%2d (%x/%x): %02x from %02x -> %02x unexpected\n",
717 id
, test
->wVk
, test
->dwFlags
, i
, ks1
[i
], ks2
[i
]);
719 while (expected
->message
&& actual_cnt
< sent_messages_cnt
)
721 const struct message
*actual
= &sent_messages
[actual_cnt
];
723 if (expected
->message
== actual
->message
)
725 if (expected
->flags
& wparam
)
727 if ((expected
->flags
& optional
) && (expected
->wParam
!= actual
->wParam
))
732 if (expected
->wParam
!= actual
->wParam
&& test
->_todo_wine
)
736 ok(FALSE
, "%2d (%x/%x): in msg 0x%04x expecting wParam 0x%lx got 0x%lx\n",
737 id
, test
->wVk
, test
->dwFlags
, expected
->message
, expected
->wParam
, actual
->wParam
);
740 ok(expected
->wParam
== actual
->wParam
,
741 "%2d (%x/%x): in msg 0x%04x expecting wParam 0x%lx got 0x%lx\n",
742 id
, test
->wVk
, test
->dwFlags
, expected
->message
, expected
->wParam
, actual
->wParam
);
744 if (expected
->flags
& lparam
)
746 if (expected
->lParam
!= actual
->lParam
&& test
->_todo_wine
)
750 ok(FALSE
, "%2d (%x/%x): in msg 0x%04x expecting lParam 0x%lx got 0x%lx\n",
751 id
, test
->wVk
, test
->dwFlags
, expected
->message
, expected
->lParam
, actual
->lParam
);
754 ok(expected
->lParam
== actual
->lParam
,
755 "%2d (%x/%x): in msg 0x%04x expecting lParam 0x%lx got 0x%lx\n",
756 id
, test
->wVk
, test
->dwFlags
, expected
->message
, expected
->lParam
, actual
->lParam
);
758 ok((expected
->flags
& hook
) == (actual
->flags
& hook
),
759 "%2d (%x/%x): the msg 0x%04x should have been sent by a hook\n",
760 id
, test
->wVk
, test
->dwFlags
, expected
->message
);
763 else if (expected
->flags
& optional
)
768 /* NT4 doesn't send SYSKEYDOWN/UP to hooks, only KEYDOWN/UP */
769 else if ((expected
->flags
& hook
) &&
770 (expected
->message
== WM_SYSKEYDOWN
|| expected
->message
== WM_SYSKEYUP
) &&
771 (actual
->message
== expected
->message
- 4))
773 ok((expected
->flags
& hook
) == (actual
->flags
& hook
),
774 "%2d (%x/%x): the msg 0x%04x should have been sent by a hook\n",
775 id
, test
->wVk
, test
->dwFlags
, expected
->message
);
777 /* For VK_RMENU, at least localized Win2k/XP sends KEYDOWN/UP
778 * instead of SYSKEYDOWN/UP to the WNDPROC */
779 else if (test
->wVk
== VK_RMENU
&& !(expected
->flags
& hook
) &&
780 (expected
->message
== WM_SYSKEYDOWN
|| expected
->message
== WM_SYSKEYUP
) &&
781 (actual
->message
== expected
->message
- 4))
783 ok(expected
->wParam
== actual
->wParam
&& expected
->lParam
== actual
->lParam
,
784 "%2d (%x/%x): the msg 0x%04x was expected, but got msg 0x%04x instead\n",
785 id
, test
->wVk
, test
->dwFlags
, expected
->message
, actual
->message
);
787 else if (test
->_todo_wine
)
792 "%2d (%x/%x): the msg 0x%04x was expected, but got msg 0x%04x instead\n",
793 id
, test
->wVk
, test
->dwFlags
, expected
->message
, actual
->message
);
797 "%2d (%x/%x): the msg 0x%04x was expected, but got msg 0x%04x instead\n",
798 id
, test
->wVk
, test
->dwFlags
, expected
->message
, actual
->message
);
803 /* skip all optional trailing messages */
804 while (expected
->message
&& (expected
->flags
& optional
))
808 if (expected
->message
|| actual_cnt
< sent_messages_cnt
)
810 if (test
->_todo_wine
)
814 ok(FALSE
, "%2d (%x/%x): the msg sequence is not complete: expected %04x - actual %04x\n",
815 id
, test
->wVk
, test
->dwFlags
, expected
->message
, sent_messages
[actual_cnt
].message
);
818 ok(FALSE
, "%2d (%x/%x): the msg sequence is not complete: expected %04x - actual %04x\n",
819 id
, test
->wVk
, test
->dwFlags
, expected
->message
, sent_messages
[actual_cnt
].message
);
822 if( test
->_todo_wine
&& !failcount
) /* succeeded yet marked todo */
824 ok(TRUE
, "%2d (%x/%x): marked \"todo_wine\" but succeeds\n", id
, test
->wVk
, test
->dwFlags
);
826 sent_messages_cnt
= 0;
829 /* WndProc2 checks that we get at least the messages specified */
830 static LRESULT CALLBACK
WndProc2(HWND hWnd
, UINT Msg
, WPARAM wParam
,
833 if (winetest_debug
> 1) trace("MSG: %8x W:%8lx L:%8lx\n", Msg
, wParam
, lParam
);
835 if (Msg
!= WM_PAINT
&&
837 Msg
!= WM_SYNCPAINT
&&
838 Msg
!= WM_ERASEBKGND
&&
839 Msg
!= WM_NCHITTEST
&&
842 Msg
!= WM_IME_SELECT
&&
843 Msg
!= WM_DEVICECHANGE
&&
844 Msg
!= WM_TIMECHANGE
)
846 ok(sent_messages_cnt
< MAXKEYMESSAGES
, "Too many messages\n");
847 if (sent_messages_cnt
< MAXKEYMESSAGES
)
849 sent_messages
[sent_messages_cnt
].message
= Msg
;
850 sent_messages
[sent_messages_cnt
].flags
= 0;
851 sent_messages
[sent_messages_cnt
].wParam
= wParam
;
852 sent_messages
[sent_messages_cnt
++].lParam
= HIWORD(lParam
) & (KF_UP
|KF_EXTENDED
);
855 return DefWindowProc(hWnd
, Msg
, wParam
, lParam
);
858 static LRESULT CALLBACK
hook_proc(int code
, WPARAM wparam
, LPARAM lparam
)
860 KBDLLHOOKSTRUCT
*hook_info
= (KBDLLHOOKSTRUCT
*)lparam
;
862 if (code
== HC_ACTION
)
864 ok(sent_messages_cnt
< MAXKEYMESSAGES
, "Too many messages\n");
865 if (sent_messages_cnt
< MAXKEYMESSAGES
)
867 sent_messages
[sent_messages_cnt
].message
= wparam
;
868 sent_messages
[sent_messages_cnt
].flags
= hook
;
869 sent_messages
[sent_messages_cnt
].wParam
= hook_info
->vkCode
;
870 sent_messages
[sent_messages_cnt
++].lParam
= hook_info
->flags
& (LLKHF_UP
|LLKHF_EXTENDED
);
873 if(0) /* For some reason not stable on Wine */
875 if (wparam
== WM_KEYDOWN
|| wparam
== WM_SYSKEYDOWN
)
876 ok(!(GetAsyncKeyState(hook_info
->vkCode
) & 0x8000), "key %x should be up\n", hook_info
->vkCode
);
877 else if (wparam
== WM_KEYUP
|| wparam
== WM_SYSKEYUP
)
878 ok(GetAsyncKeyState(hook_info
->vkCode
) & 0x8000, "key %x should be down\n", hook_info
->vkCode
);
881 if (winetest_debug
> 1)
882 trace("Hook: w=%lx vk:%8x sc:%8x fl:%8x %lx\n", wparam
,
883 hook_info
->vkCode
, hook_info
->scanCode
, hook_info
->flags
, hook_info
->dwExtraInfo
);
885 return CallNextHookEx( 0, code
, wparam
, lparam
);
887 static void test_Input_blackbox(void)
891 BYTE ks1
[256], ks2
[256];
892 LONG_PTR prevWndProc
;
896 if (GetKeyboardLayout(0) != (HKL
)(ULONG_PTR
)0x04090409)
898 skip("Skipping Input_blackbox test on non-US keyboard\n");
901 window
= CreateWindow("Static", NULL
, WS_POPUP
|WS_HSCROLL
|WS_VSCROLL
902 |WS_VISIBLE
, 0, 0, 200, 60, NULL
, NULL
,
904 ok(window
!= NULL
, "error: %d\n", (int) GetLastError());
905 SetWindowPos( window
, HWND_TOPMOST
, 0, 0, 0, 0, SWP_NOSIZE
|SWP_NOMOVE
);
906 SetForegroundWindow( window
);
908 if (!(hook
= SetWindowsHookExA(WH_KEYBOARD_LL
, hook_proc
, GetModuleHandleA( NULL
), 0)))
910 DestroyWindow(window
);
911 win_skip("WH_KEYBOARD_LL is not supported\n");
915 /* must process all initial messages, otherwise X11DRV_KeymapNotify unsets
916 * key state set by SendInput(). */
917 empty_message_queue();
919 prevWndProc
= SetWindowLongPtr(window
, GWLP_WNDPROC
, (LONG_PTR
) WndProc2
);
920 ok(prevWndProc
!= 0 || (prevWndProc
== 0 && GetLastError() == 0),
921 "error: %d\n", (int) GetLastError());
923 i
.type
= INPUT_KEYBOARD
;
925 i
.u
.ki
.dwExtraInfo
= 0;
927 for (ii
= 0; ii
< sizeof(sendinput_test
)/sizeof(struct sendinput_test_s
)-1;
929 GetKeyboardState(ks1
);
930 i
.u
.ki
.wScan
= ii
+1 /* useful for debugging */;
931 i
.u
.ki
.dwFlags
= sendinput_test
[ii
].dwFlags
;
932 i
.u
.ki
.wVk
= sendinput_test
[ii
].wVk
;
933 pSendInput(1, (INPUT
*)&i
, sizeof(TEST_INPUT
));
934 empty_message_queue();
935 GetKeyboardState(ks2
);
936 if (!ii
&& sent_messages_cnt
<= 1 && !memcmp( ks1
, ks2
, sizeof(ks1
) ))
938 win_skip( "window doesn't receive the queued input\n" );
939 /* release the key */
940 i
.u
.ki
.dwFlags
|= KEYEVENTF_KEYUP
;
941 pSendInput(1, (INPUT
*)&i
, sizeof(TEST_INPUT
));
944 compare_and_check(ii
, ks1
, ks2
, &sendinput_test
[ii
]);
947 empty_message_queue();
948 DestroyWindow(window
);
949 UnhookWindowsHookEx(hook
);
952 static void reset_key_status(void)
954 key_status
.last_key_down
= -1;
955 key_status
.last_key_up
= -1;
956 key_status
.last_syskey_down
= -1;
957 key_status
.last_syskey_up
= -1;
958 key_status
.last_char
= -1;
959 key_status
.last_syschar
= -1;
960 key_status
.last_hook_down
= -1;
961 key_status
.last_hook_up
= -1;
962 key_status
.last_hook_syskey_down
= -1;
963 key_status
.last_hook_syskey_up
= -1;
964 key_status
.expect_alt
= FALSE
;
965 key_status
.sendinput_broken
= FALSE
;
968 static void test_unicode_keys(HWND hwnd
, HHOOK hook
)
970 TEST_INPUT inputs
[2];
973 /* init input data that never changes */
974 inputs
[1].type
= inputs
[0].type
= INPUT_KEYBOARD
;
975 inputs
[1].u
.ki
.dwExtraInfo
= inputs
[0].u
.ki
.dwExtraInfo
= 0;
976 inputs
[1].u
.ki
.time
= inputs
[0].u
.ki
.time
= 0;
978 /* pressing & releasing a single unicode character */
979 inputs
[0].u
.ki
.wVk
= 0;
980 inputs
[0].u
.ki
.wScan
= 0x3c0;
981 inputs
[0].u
.ki
.dwFlags
= KEYEVENTF_UNICODE
;
984 pSendInput(1, (INPUT
*)inputs
, sizeof(INPUT
));
985 while(PeekMessageW(&msg
, hwnd
, 0, 0, PM_REMOVE
)){
986 if(msg
.message
== WM_KEYDOWN
&& msg
.wParam
== VK_PACKET
){
987 TranslateMessage(&msg
);
989 DispatchMessageW(&msg
);
991 if(!key_status
.sendinput_broken
){
992 ok(key_status
.last_key_down
== VK_PACKET
,
993 "Last keydown msg should have been VK_PACKET[0x%04x] (was: 0x%x)\n", VK_PACKET
, key_status
.last_key_down
);
994 ok(key_status
.last_char
== 0x3c0,
995 "Last char msg wparam should have been 0x3c0 (was: 0x%x)\n", key_status
.last_char
);
997 ok(key_status
.last_hook_down
== 0x3c0,
998 "Last hookdown msg should have been 0x3c0, was: 0x%x\n", key_status
.last_hook_down
);
1001 inputs
[1].u
.ki
.wVk
= 0;
1002 inputs
[1].u
.ki
.wScan
= 0x3c0;
1003 inputs
[1].u
.ki
.dwFlags
= KEYEVENTF_UNICODE
| KEYEVENTF_KEYUP
;
1006 pSendInput(1, (INPUT
*)(inputs
+1), sizeof(INPUT
));
1007 while(PeekMessageW(&msg
, hwnd
, 0, 0, PM_REMOVE
)){
1008 if(msg
.message
== WM_KEYDOWN
&& msg
.wParam
== VK_PACKET
){
1009 TranslateMessage(&msg
);
1011 DispatchMessageW(&msg
);
1013 if(!key_status
.sendinput_broken
){
1014 ok(key_status
.last_key_up
== VK_PACKET
,
1015 "Last keyup msg should have been VK_PACKET[0x%04x] (was: 0x%x)\n", VK_PACKET
, key_status
.last_key_up
);
1017 ok(key_status
.last_hook_up
== 0x3c0,
1018 "Last hookup msg should have been 0x3c0, was: 0x%x\n", key_status
.last_hook_up
);
1021 /* holding alt, pressing & releasing a unicode character, releasing alt */
1022 inputs
[0].u
.ki
.wVk
= VK_LMENU
;
1023 inputs
[0].u
.ki
.wScan
= 0;
1024 inputs
[0].u
.ki
.dwFlags
= 0;
1026 inputs
[1].u
.ki
.wVk
= 0;
1027 inputs
[1].u
.ki
.wScan
= 0x3041;
1028 inputs
[1].u
.ki
.dwFlags
= KEYEVENTF_UNICODE
;
1031 key_status
.expect_alt
= TRUE
;
1032 pSendInput(2, (INPUT
*)inputs
, sizeof(INPUT
));
1033 while(PeekMessageW(&msg
, hwnd
, 0, 0, PM_REMOVE
)){
1034 if(msg
.message
== WM_SYSKEYDOWN
&& msg
.wParam
== VK_PACKET
){
1035 TranslateMessage(&msg
);
1037 DispatchMessageW(&msg
);
1039 if(!key_status
.sendinput_broken
){
1040 ok(key_status
.last_syskey_down
== VK_PACKET
,
1041 "Last syskeydown msg should have been VK_PACKET[0x%04x] (was: 0x%x)\n", VK_PACKET
, key_status
.last_syskey_down
);
1042 ok(key_status
.last_syschar
== 0x3041,
1043 "Last syschar msg should have been 0x3041 (was: 0x%x)\n", key_status
.last_syschar
);
1045 ok(key_status
.last_hook_syskey_down
== 0x3041,
1046 "Last hooksysdown msg should have been 0x3041, was: 0x%x\n", key_status
.last_hook_syskey_down
);
1049 inputs
[1].u
.ki
.wVk
= 0;
1050 inputs
[1].u
.ki
.wScan
= 0x3041;
1051 inputs
[1].u
.ki
.dwFlags
= KEYEVENTF_UNICODE
| KEYEVENTF_KEYUP
;
1053 inputs
[0].u
.ki
.wVk
= VK_LMENU
;
1054 inputs
[0].u
.ki
.wScan
= 0;
1055 inputs
[0].u
.ki
.dwFlags
= KEYEVENTF_KEYUP
;
1058 key_status
.expect_alt
= TRUE
;
1059 pSendInput(2, (INPUT
*)inputs
, sizeof(INPUT
));
1060 while(PeekMessageW(&msg
, hwnd
, 0, 0, PM_REMOVE
)){
1061 if(msg
.message
== WM_SYSKEYDOWN
&& msg
.wParam
== VK_PACKET
){
1062 TranslateMessage(&msg
);
1064 DispatchMessageW(&msg
);
1066 if(!key_status
.sendinput_broken
){
1067 ok(key_status
.last_key_up
== VK_PACKET
,
1068 "Last keyup msg should have been VK_PACKET[0x%04x] (was: 0x%x)\n", VK_PACKET
, key_status
.last_key_up
);
1070 ok(key_status
.last_hook_up
== 0x3041,
1071 "Last hook up msg should have been 0x3041, was: 0x%x\n", key_status
.last_hook_up
);
1075 static LRESULT CALLBACK
unicode_wnd_proc( HWND hWnd
, UINT msg
, WPARAM wParam
,
1080 key_status
.last_key_down
= wParam
;
1083 key_status
.last_syskey_down
= wParam
;
1086 key_status
.last_key_up
= wParam
;
1089 key_status
.last_syskey_up
= wParam
;
1092 key_status
.last_char
= wParam
;
1095 key_status
.last_syschar
= wParam
;
1098 return DefWindowProcW(hWnd
, msg
, wParam
, lParam
);
1101 static LRESULT CALLBACK
llkbd_unicode_hook(int nCode
, WPARAM wParam
, LPARAM lParam
)
1103 if(nCode
== HC_ACTION
){
1104 LPKBDLLHOOKSTRUCT info
= (LPKBDLLHOOKSTRUCT
)lParam
;
1106 key_status
.sendinput_broken
= TRUE
;
1107 win_skip("SendInput doesn't support unicode on this platform\n");
1109 if(key_status
.expect_alt
){
1110 ok(info
->vkCode
== VK_LMENU
, "vkCode should have been VK_LMENU[0x%04x], was: 0x%x\n", VK_LMENU
, info
->vkCode
);
1111 key_status
.expect_alt
= FALSE
;
1113 ok(info
->vkCode
== VK_PACKET
, "vkCode should have been VK_PACKET[0x%04x], was: 0x%x\n", VK_PACKET
, info
->vkCode
);
1117 key_status
.last_hook_down
= info
->scanCode
;
1120 key_status
.last_hook_up
= info
->scanCode
;
1123 key_status
.last_hook_syskey_down
= info
->scanCode
;
1126 key_status
.last_hook_syskey_up
= info
->scanCode
;
1130 return CallNextHookEx(NULL
, nCode
, wParam
, lParam
);
1133 static void test_Input_unicode(void)
1135 WCHAR classNameW
[] = {'I','n','p','u','t','U','n','i','c','o','d','e',
1136 'K','e','y','T','e','s','t','C','l','a','s','s',0};
1137 WCHAR windowNameW
[] = {'I','n','p','u','t','U','n','i','c','o','d','e',
1138 'K','e','y','T','e','s','t',0};
1141 HANDLE hInstance
= GetModuleHandleW(NULL
);
1143 HMODULE hModuleImm32
;
1144 BOOL (WINAPI
*pImmDisableIME
)(DWORD
);
1146 wclass
.lpszClassName
= classNameW
;
1147 wclass
.style
= CS_HREDRAW
| CS_VREDRAW
;
1148 wclass
.lpfnWndProc
= unicode_wnd_proc
;
1149 wclass
.hInstance
= hInstance
;
1150 wclass
.hIcon
= LoadIcon(0, IDI_APPLICATION
);
1151 wclass
.hCursor
= LoadCursor( NULL
, IDC_ARROW
);
1152 wclass
.hbrBackground
= (HBRUSH
)(COLOR_WINDOW
+ 1);
1153 wclass
.lpszMenuName
= 0;
1154 wclass
.cbClsExtra
= 0;
1155 wclass
.cbWndExtra
= 0;
1156 if(!RegisterClassW(&wclass
)){
1157 win_skip("Unicode functions not supported\n");
1161 hModuleImm32
= LoadLibrary("imm32.dll");
1163 pImmDisableIME
= (void *)GetProcAddress(hModuleImm32
, "ImmDisableIME");
1167 pImmDisableIME
= NULL
;
1168 FreeLibrary(hModuleImm32
);
1170 /* create the test window that will receive the keystrokes */
1171 hWndTest
= CreateWindowW(wclass
.lpszClassName
, windowNameW
,
1172 WS_OVERLAPPEDWINDOW
, CW_USEDEFAULT
, 0, 100, 100,
1173 NULL
, NULL
, hInstance
, NULL
);
1176 assert(IsWindowUnicode(hWndTest
));
1178 hook
= SetWindowsHookExW(WH_KEYBOARD_LL
, llkbd_unicode_hook
, GetModuleHandleW(NULL
), 0);
1180 win_skip("unable to set WH_KEYBOARD_LL hook\n");
1182 ShowWindow(hWndTest
, SW_SHOW
);
1183 SetWindowPos(hWndTest
, HWND_TOPMOST
, 0, 0, 0, 0, SWP_NOSIZE
|SWP_NOMOVE
);
1184 SetForegroundWindow(hWndTest
);
1185 UpdateWindow(hWndTest
);
1187 /* flush pending messages */
1188 while (PeekMessageW(&msg
, 0, 0, 0, PM_REMOVE
)) DispatchMessageW(&msg
);
1192 test_unicode_keys(hWndTest
, hook
);
1195 UnhookWindowsHookEx(hook
);
1196 DestroyWindow(hWndTest
);
1199 static void test_keynames(void)
1204 for (i
= 0; i
< 512; i
++)
1206 strcpy(buff
, "----");
1207 len
= GetKeyNameTextA(i
<< 16, buff
, sizeof(buff
));
1208 ok(len
|| !buff
[0], "%d: Buffer is not zeroed\n", i
);
1212 static POINT pt_old
, pt_new
;
1213 static BOOL clipped
;
1216 static LRESULT CALLBACK
hook_proc1( int code
, WPARAM wparam
, LPARAM lparam
)
1218 MSLLHOOKSTRUCT
*hook
= (MSLLHOOKSTRUCT
*)lparam
;
1221 if (code
== HC_ACTION
)
1223 /* This is our new cursor position */
1225 /* Should return previous position */
1227 ok(pt
.x
== pt_old
.x
&& pt
.y
== pt_old
.y
, "GetCursorPos: (%d,%d)\n", pt
.x
, pt
.y
);
1229 /* Should set new position until hook chain is finished. */
1230 pt
.x
= pt_old
.x
+ STEP
;
1231 pt
.y
= pt_old
.y
+ STEP
;
1232 SetCursorPos(pt
.x
, pt
.y
);
1235 ok(pt1
.x
== pt_old
.x
&& pt1
.y
== pt_old
.y
, "Wrong set pos: (%d,%d)\n", pt1
.x
, pt1
.y
);
1237 ok(pt1
.x
== pt
.x
&& pt1
.y
== pt
.y
, "Wrong set pos: (%d,%d)\n", pt1
.x
, pt1
.y
);
1239 return CallNextHookEx( 0, code
, wparam
, lparam
);
1242 static LRESULT CALLBACK
hook_proc2( int code
, WPARAM wparam
, LPARAM lparam
)
1244 MSLLHOOKSTRUCT
*hook
= (MSLLHOOKSTRUCT
*)lparam
;
1247 if (code
== HC_ACTION
)
1249 ok(hook
->pt
.x
== pt_new
.x
&& hook
->pt
.y
== pt_new
.y
,
1250 "Wrong hook coords: (%d %d) != (%d,%d)\n", hook
->pt
.x
, hook
->pt
.y
, pt_new
.x
, pt_new
.y
);
1252 /* Should match position set above */
1255 ok(pt
.x
== pt_old
.x
&& pt
.y
== pt_old
.y
, "GetCursorPos: (%d,%d)\n", pt
.x
, pt
.y
);
1257 ok(pt
.x
== pt_old
.x
+STEP
&& pt
.y
== pt_old
.y
+STEP
, "GetCursorPos: (%d,%d)\n", pt
.x
, pt
.y
);
1259 return CallNextHookEx( 0, code
, wparam
, lparam
);
1262 static void test_mouse_ll_hook(void)
1269 GetCursorPos(&pt_org
);
1270 hwnd
= CreateWindow("static", "Title", WS_OVERLAPPEDWINDOW
| WS_VISIBLE
,
1271 10, 10, 200, 200, NULL
, NULL
, NULL
, NULL
);
1272 SetCursorPos(100, 100);
1274 if (!(hook2
= SetWindowsHookExA(WH_MOUSE_LL
, hook_proc2
, GetModuleHandleA(0), 0)))
1276 win_skip( "cannot set MOUSE_LL hook\n" );
1279 hook1
= SetWindowsHookExA(WH_MOUSE_LL
, hook_proc1
, GetModuleHandleA(0), 0);
1281 GetCursorPos(&pt_old
);
1282 mouse_event(MOUSEEVENTF_MOVE
, -STEP
, 0, 0, 0);
1283 GetCursorPos(&pt_old
);
1284 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
);
1285 mouse_event(MOUSEEVENTF_MOVE
, +STEP
, 0, 0, 0);
1286 GetCursorPos(&pt_old
);
1287 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
);
1288 mouse_event(MOUSEEVENTF_MOVE
, 0, -STEP
, 0, 0);
1289 GetCursorPos(&pt_old
);
1290 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
);
1291 mouse_event(MOUSEEVENTF_MOVE
, 0, +STEP
, 0, 0);
1292 GetCursorPos(&pt_old
);
1293 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
);
1295 SetRect(&rc
, 50, 50, 151, 151);
1299 SetCursorPos(40, 40);
1300 GetCursorPos(&pt_old
);
1301 ok(pt_old
.x
== 50 && pt_old
.y
== 50, "Wrong new pos: (%d,%d)\n", pt_new
.x
, pt_new
.y
);
1302 SetCursorPos(160, 160);
1303 GetCursorPos(&pt_old
);
1304 ok(pt_old
.x
== 150 && pt_old
.y
== 150, "Wrong new pos: (%d,%d)\n", pt_new
.x
, pt_new
.y
);
1305 mouse_event(MOUSEEVENTF_MOVE
, +STEP
, +STEP
, 0, 0);
1306 GetCursorPos(&pt_old
);
1307 ok(pt_old
.x
== 150 && pt_old
.y
== 150, "Wrong new pos: (%d,%d)\n", pt_new
.x
, pt_new
.y
);
1310 pt_new
.x
= pt_new
.y
= 150;
1312 UnhookWindowsHookEx(hook1
);
1314 /* Now check that mouse buttons do not change mouse position
1315 if we don't have MOUSEEVENTF_MOVE flag specified. */
1317 /* We reusing the same hook callback, so make it happy */
1318 pt_old
.x
= pt_new
.x
- STEP
;
1319 pt_old
.y
= pt_new
.y
- STEP
;
1320 mouse_event(MOUSEEVENTF_LEFTUP
, 123, 456, 0, 0);
1322 ok(pt
.x
== pt_new
.x
&& pt
.y
== pt_new
.y
, "Position changed: (%d,%d)\n", pt
.x
, pt
.y
);
1323 mouse_event(MOUSEEVENTF_RIGHTUP
, 456, 123, 0, 0);
1325 ok(pt
.x
== pt_new
.x
&& pt
.y
== pt_new
.y
, "Position changed: (%d,%d)\n", pt
.x
, pt
.y
);
1327 mouse_event(MOUSEEVENTF_LEFTUP
| MOUSEEVENTF_ABSOLUTE
, 123, 456, 0, 0);
1329 ok(pt
.x
== pt_new
.x
&& pt
.y
== pt_new
.y
, "Position changed: (%d,%d)\n", pt
.x
, pt
.y
);
1330 mouse_event(MOUSEEVENTF_RIGHTUP
| MOUSEEVENTF_ABSOLUTE
, 456, 123, 0, 0);
1332 ok(pt
.x
== pt_new
.x
&& pt
.y
== pt_new
.y
, "Position changed: (%d,%d)\n", pt
.x
, pt
.y
);
1334 UnhookWindowsHookEx(hook2
);
1336 DestroyWindow(hwnd
);
1337 SetCursorPos(pt_org
.x
, pt_org
.y
);
1340 static void test_GetMouseMovePointsEx(void)
1343 #define MYERROR 0xdeadbeef
1346 MOUSEMOVEPOINT out
[200];
1349 /* Get a valid content for the input struct */
1350 if(!GetCursorPos(&point
)) {
1351 skip("GetCursorPos() failed with error %u\n", GetLastError());
1354 memset(&in
, 0, sizeof(MOUSEMOVEPOINT
));
1358 /* test first parameter
1359 * everything different than sizeof(MOUSEMOVEPOINT)
1360 * is expected to fail with ERROR_INVALID_PARAMETER
1362 SetLastError(MYERROR
);
1363 retval
= pGetMouseMovePointsEx(0, &in
, out
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1364 if (retval
== ERROR_INVALID_PARAMETER
)
1366 win_skip( "GetMouseMovePointsEx broken on WinME\n" );
1369 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1370 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1371 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1373 SetLastError(MYERROR
);
1374 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
)-1, &in
, out
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1375 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1376 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1377 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1379 SetLastError(MYERROR
);
1380 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
)+1, &in
, out
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1381 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1382 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1383 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1385 /* test second and third parameter
1387 SetLastError(MYERROR
);
1388 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), NULL
, out
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1389 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1390 ok(GetLastError() == ERROR_NOACCESS
|| GetLastError() == MYERROR
,
1391 "expected error ERROR_NOACCESS, got %u\n", GetLastError());
1393 SetLastError(MYERROR
);
1394 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), &in
, NULL
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1395 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1396 ok(ERROR_NOACCESS
== GetLastError(),
1397 "expected error ERROR_NOACCESS, got %u\n", GetLastError());
1399 SetLastError(MYERROR
);
1400 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), NULL
, NULL
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1401 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1402 ok(ERROR_NOACCESS
== GetLastError(),
1403 "expected error ERROR_NOACCESS, got %u\n", GetLastError());
1405 SetLastError(MYERROR
);
1407 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), &in
, NULL
, count
, GMMP_USE_DISPLAY_POINTS
);
1409 ok(GetLastError() == ERROR_POINT_NOT_FOUND
, "unexpected error %u\n", GetLastError());
1411 ok(retval
== count
, "expected GetMouseMovePointsEx to succeed, got %d\n", retval
);
1413 /* test fourth parameter
1414 * a value higher than 64 is expected to fail with ERROR_INVALID_PARAMETER
1416 SetLastError(MYERROR
);
1418 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), &in
, out
, count
, GMMP_USE_DISPLAY_POINTS
);
1419 ok(retval
== count
, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1420 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1421 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1423 SetLastError(MYERROR
);
1425 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), &in
, out
, count
, GMMP_USE_DISPLAY_POINTS
);
1427 ok(GetLastError() == ERROR_POINT_NOT_FOUND
, "unexpected error %u\n", GetLastError());
1429 ok(retval
== count
, "expected GetMouseMovePointsEx to succeed, got %d\n", retval
);
1431 SetLastError(MYERROR
);
1433 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), &in
, out
, count
, GMMP_USE_DISPLAY_POINTS
);
1435 ok(GetLastError() == ERROR_POINT_NOT_FOUND
, "unexpected error %u\n", GetLastError());
1437 ok((0 <= retval
) && (retval
<= count
), "expected GetMouseMovePointsEx to succeed, got %d\n", retval
);
1439 SetLastError(MYERROR
);
1440 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), &in
, out
, BUFLIM
+1, GMMP_USE_DISPLAY_POINTS
);
1441 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1442 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1443 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1445 /* it was not possible to force an error with the fifth parameter on win2k */
1447 /* test combinations of wrong parameters to see which error wins */
1448 SetLastError(MYERROR
);
1449 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
)-1, NULL
, out
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1450 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1451 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1452 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1454 SetLastError(MYERROR
);
1455 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
)-1, &in
, NULL
, BUFLIM
, GMMP_USE_DISPLAY_POINTS
);
1456 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1457 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1458 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1460 SetLastError(MYERROR
);
1461 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), NULL
, out
, BUFLIM
+1, GMMP_USE_DISPLAY_POINTS
);
1462 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1463 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1464 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1466 SetLastError(MYERROR
);
1467 retval
= pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT
), &in
, NULL
, BUFLIM
+1, GMMP_USE_DISPLAY_POINTS
);
1468 ok(retval
== -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval
);
1469 ok(GetLastError() == ERROR_INVALID_PARAMETER
|| GetLastError() == MYERROR
,
1470 "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
1476 static void test_key_map(void)
1478 HKL kl
= GetKeyboardLayout(0);
1481 static const UINT numpad_collisions
[][2] = {
1482 { VK_NUMPAD0
, VK_INSERT
},
1483 { VK_NUMPAD1
, VK_END
},
1484 { VK_NUMPAD2
, VK_DOWN
},
1485 { VK_NUMPAD3
, VK_NEXT
},
1486 { VK_NUMPAD4
, VK_LEFT
},
1487 { VK_NUMPAD6
, VK_RIGHT
},
1488 { VK_NUMPAD7
, VK_HOME
},
1489 { VK_NUMPAD8
, VK_UP
},
1490 { VK_NUMPAD9
, VK_PRIOR
},
1493 s
= MapVirtualKeyEx(VK_SHIFT
, MAPVK_VK_TO_VSC
, kl
);
1494 ok(s
!= 0, "MapVirtualKeyEx(VK_SHIFT) should return non-zero\n");
1495 sL
= MapVirtualKeyEx(VK_LSHIFT
, MAPVK_VK_TO_VSC
, kl
);
1496 ok(s
== sL
|| broken(sL
== 0), /* win9x */
1497 "%x != %x\n", s
, sL
);
1499 kL
= MapVirtualKeyEx(0x2a, MAPVK_VSC_TO_VK
, kl
);
1500 ok(kL
== VK_SHIFT
, "Scan code -> vKey = %x (not VK_SHIFT)\n", kL
);
1501 kR
= MapVirtualKeyEx(0x36, MAPVK_VSC_TO_VK
, kl
);
1502 ok(kR
== VK_SHIFT
, "Scan code -> vKey = %x (not VK_SHIFT)\n", kR
);
1504 kL
= MapVirtualKeyEx(0x2a, MAPVK_VSC_TO_VK_EX
, kl
);
1505 ok(kL
== VK_LSHIFT
|| broken(kL
== 0), /* win9x */
1506 "Scan code -> vKey = %x (not VK_LSHIFT)\n", kL
);
1507 kR
= MapVirtualKeyEx(0x36, MAPVK_VSC_TO_VK_EX
, kl
);
1508 ok(kR
== VK_RSHIFT
|| broken(kR
== 0), /* win9x */
1509 "Scan code -> vKey = %x (not VK_RSHIFT)\n", kR
);
1511 /* test that MAPVK_VSC_TO_VK prefers the non-numpad vkey if there's ambiguity */
1512 for (i
= 0; i
< sizeof(numpad_collisions
)/sizeof(numpad_collisions
[0]); i
++)
1514 UINT numpad_scan
= MapVirtualKeyEx(numpad_collisions
[i
][0], MAPVK_VK_TO_VSC
, kl
);
1515 UINT other_scan
= MapVirtualKeyEx(numpad_collisions
[i
][1], MAPVK_VK_TO_VSC
, kl
);
1517 /* do they really collide for this layout? */
1518 if (numpad_scan
&& other_scan
== numpad_scan
)
1520 UINT vkey
= MapVirtualKeyEx(numpad_scan
, MAPVK_VSC_TO_VK
, kl
);
1521 ok(vkey
!= numpad_collisions
[i
][0],
1522 "Got numpad vKey %x for scan code %x when there was another choice\n",
1528 static void test_ToUnicode(void)
1532 const BYTE SC_RETURN
= 0x1c, SC_TAB
= 0x0f;
1533 const BYTE HIGHEST_BIT
= 0x80;
1535 for(i
=0; i
<256; i
++)
1538 SetLastError(0xdeadbeef);
1539 ret
= ToUnicode(VK_RETURN
, SC_RETURN
, state
, wStr
, 2, 0);
1540 if (!ret
&& GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
1542 win_skip("ToUnicode is not implemented\n");
1546 ok(ret
== 1, "ToUnicode for Return key didn't return 1 (was %i)\n", ret
);
1548 ok(wStr
[0]=='\r', "ToUnicode for CTRL + Return was %i (expected 13)\n", wStr
[0]);
1549 state
[VK_CONTROL
] |= HIGHEST_BIT
;
1550 state
[VK_LCONTROL
] |= HIGHEST_BIT
;
1552 ret
= ToUnicode(VK_TAB
, SC_TAB
, state
, wStr
, 2, 0);
1553 ok(ret
== 0, "ToUnicode for CTRL + Tab didn't return 0 (was %i)\n", ret
);
1555 ret
= ToUnicode(VK_RETURN
, SC_RETURN
, state
, wStr
, 2, 0);
1556 ok(ret
== 1, "ToUnicode for CTRL + Return didn't return 1 (was %i)\n", ret
);
1558 ok(wStr
[0]=='\n', "ToUnicode for CTRL + Return was %i (expected 10)\n", wStr
[0]);
1560 state
[VK_SHIFT
] |= HIGHEST_BIT
;
1561 state
[VK_LSHIFT
] |= HIGHEST_BIT
;
1562 ret
= ToUnicode(VK_TAB
, SC_TAB
, state
, wStr
, 2, 0);
1563 ok(ret
== 0, "ToUnicode for CTRL + SHIFT + Tab didn't return 0 (was %i)\n", ret
);
1564 ret
= ToUnicode(VK_RETURN
, SC_RETURN
, state
, wStr
, 2, 0);
1565 todo_wine
ok(ret
== 0, "ToUnicode for CTRL + SHIFT + Return didn't return 0 (was %i)\n", ret
);
1568 static void test_get_async_key_state(void)
1570 /* input value sanity checks */
1571 ok(0 == GetAsyncKeyState(1000000), "GetAsyncKeyState did not return 0\n");
1572 ok(0 == GetAsyncKeyState(-1000000), "GetAsyncKeyState did not return 0\n");
1575 static void test_keyboard_layout_name(void)
1578 char klid
[KL_NAMELENGTH
];
1580 if (GetKeyboardLayout(0) != (HKL
)(ULONG_PTR
)0x04090409) return;
1583 ret
= GetKeyboardLayoutNameA(klid
);
1584 ok(ret
, "GetKeyboardLayoutNameA failed %u\n", GetLastError());
1585 ok(!strcmp(klid
, "00000409"), "expected 00000409, got %s\n", klid
);
1590 init_function_pointers();
1594 test_Input_blackbox();
1595 test_Input_whitebox();
1596 test_Input_unicode();
1598 else win_skip("SendInput is not available\n");
1601 test_mouse_ll_hook();
1604 test_get_async_key_state();
1605 test_keyboard_layout_name();
1607 if(pGetMouseMovePointsEx
)
1608 test_GetMouseMovePointsEx();
1610 win_skip("GetMouseMovePointsEx is not available\n");