user32/tests: Skip checks if pre-condition does not match.
[wine] / dlls / user32 / tests / 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 accompished 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
49 #include <stdarg.h>
50 #include <assert.h>
51
52 #include "windef.h"
53 #include "winbase.h"
54 #include "winuser.h"
55
56 #include "wine/test.h"
57
58 /* globals */
59 static HWND hWndTest;
60 static long timetag = 0x10000000;
61
62 static UINT (WINAPI *pSendInput) (UINT, INPUT*, size_t);
63 static int (WINAPI *pGetMouseMovePointsEx) (UINT, LPMOUSEMOVEPOINT, LPMOUSEMOVEPOINT, int, DWORD);
64
65 #define MAXKEYEVENTS 6
66 #define MAXKEYMESSAGES MAXKEYEVENTS /* assuming a key event generates one
67                                        and only one message */
68
69 /* keyboard message names, sorted as their value */
70 static const char *MSGNAME[]={"WM_KEYDOWN", "WM_KEYUP", "WM_CHAR","WM_DEADCHAR",
71     "WM_SYSKEYDOWN", "WM_SYSKEYUP", "WM_SYSCHAR", "WM_SYSDEADCHAR" ,"WM_KEYLAST"};
72
73 /* keyevents, add more as needed */
74 typedef enum KEVtag
75 {  ALTDOWN = 1, ALTUP, XDOWN, XUP, SHIFTDOWN, SHIFTUP, CTRLDOWN, CTRLUP } KEV;
76 /* matching VK's */
77 static const int GETVKEY[]={0, VK_MENU, VK_MENU, 'X', 'X', VK_SHIFT, VK_SHIFT, VK_CONTROL, VK_CONTROL};
78 /* matching scan codes */
79 static const int GETSCAN[]={0, 0x38, 0x38, 0x2D, 0x2D, 0x2A, 0x2A, 0x1D, 0x1D };
80 /* matching updown events */
81 static const int GETUPDOWN[]={0, 0, KEYEVENTF_KEYUP, 0, KEYEVENTF_KEYUP, 0, KEYEVENTF_KEYUP, 0, KEYEVENTF_KEYUP};
82 /* matching descripts */
83 static const char *getdesc[]={"", "+alt","-alt","+X","-X","+shift","-shift","+ctrl","-ctrl"};
84
85 /* The MSVC headers ignore our NONAMELESSUNION requests so we have to define our own type */
86 typedef struct
87 {
88     DWORD type;
89     union
90     {
91         MOUSEINPUT      mi;
92         KEYBDINPUT      ki;
93         HARDWAREINPUT   hi;
94     } u;
95 } TEST_INPUT;
96
97 #define ADDTOINPUTS(kev) \
98 inputs[evtctr].type = INPUT_KEYBOARD; \
99     ((TEST_INPUT*)inputs)[evtctr].u.ki.wVk = GETVKEY[ kev]; \
100     ((TEST_INPUT*)inputs)[evtctr].u.ki.wScan = GETSCAN[ kev]; \
101     ((TEST_INPUT*)inputs)[evtctr].u.ki.dwFlags = GETUPDOWN[ kev]; \
102     ((TEST_INPUT*)inputs)[evtctr].u.ki.dwExtraInfo = 0; \
103     ((TEST_INPUT*)inputs)[evtctr].u.ki.time = ++timetag; \
104     if( kev) evtctr++;
105
106 typedef struct {
107     UINT    message;
108     WPARAM  wParam;
109     LPARAM  lParam;
110 } KMSG;
111
112 /*******************************************
113  * add new test sets here
114  * the software will make all combinations of the
115  * keyevent defined here
116  */
117 static const struct {
118     int nrkev;
119     KEV keydwn[MAXKEYEVENTS];
120     KEV keyup[MAXKEYEVENTS];
121 } testkeyset[]= {
122     { 2, { ALTDOWN, XDOWN }, { ALTUP, XUP}},
123     { 3, { ALTDOWN, XDOWN , SHIFTDOWN}, { ALTUP, XUP, SHIFTUP}},
124     { 3, { ALTDOWN, XDOWN , CTRLDOWN}, { ALTUP, XUP, CTRLUP}},
125     { 3, { SHIFTDOWN, XDOWN , CTRLDOWN}, { SHIFTUP, XUP, CTRLUP}},
126     { 0 } /* mark the end */
127 };
128
129 /**********************adapted from input.c **********************************/
130
131 static BYTE InputKeyStateTable[256];
132 static BYTE AsyncKeyStateTable[256];
133 static BYTE TrackSysKey = 0; /* determine whether ALT key up will cause a WM_SYSKEYUP
134                          or a WM_KEYUP message */
135 typedef union
136 {
137     struct
138     {
139         unsigned long count : 16;
140         unsigned long code : 8;
141         unsigned long extended : 1;
142         unsigned long unused : 2;
143         unsigned long win_internal : 2;
144         unsigned long context : 1;
145         unsigned long previous : 1;
146         unsigned long transition : 1;
147     } lp1;
148     unsigned long lp2;
149 } KEYLP;
150
151 static void init_function_pointers(void)
152 {
153     HMODULE hdll = GetModuleHandleA("user32");
154
155 #define GET_PROC(func) \
156     p ## func = (void*)GetProcAddress(hdll, #func); \
157     if(!p ## func) \
158       trace("GetProcAddress(%s) failed\n", #func);
159
160     GET_PROC(SendInput)
161     GET_PROC(GetMouseMovePointsEx)
162
163 #undef GET_PROC
164 }
165
166 static int KbdMessage( KEV kev, WPARAM *pwParam, LPARAM *plParam )
167 {
168     UINT message;
169     int VKey = GETVKEY[kev];
170     KEYLP keylp;
171
172     keylp.lp2 = 0;
173
174     keylp.lp1.count = 1;
175     keylp.lp1.code = GETSCAN[kev];
176     keylp.lp1.extended = 0 ;/*  FIXME (ki->dwFlags & KEYEVENTF_EXTENDEDKEY) != 0; */
177     keylp.lp1.win_internal = 0;
178
179     if (GETUPDOWN[kev] & KEYEVENTF_KEYUP )
180     {
181         message = WM_KEYUP;
182         if( (InputKeyStateTable[VK_MENU] & 0x80) && (
183                 (VKey == VK_MENU) || (VKey == VK_CONTROL) ||
184                  !(InputKeyStateTable[VK_CONTROL] & 0x80))) {
185             if(  TrackSysKey == VK_MENU || /* <ALT>-down/<ALT>-up sequence */
186                     (VKey != VK_MENU)) /* <ALT>-down...<something else>-up */
187                 message = WM_SYSKEYUP;
188                 TrackSysKey = 0;
189         }
190         InputKeyStateTable[VKey] &= ~0x80;
191         keylp.lp1.previous = 1;
192         keylp.lp1.transition = 1;
193     }
194     else
195     {
196         keylp.lp1.previous = (InputKeyStateTable[VKey] & 0x80) != 0;
197         keylp.lp1.transition = 0;
198         if (!(InputKeyStateTable[VKey] & 0x80)) InputKeyStateTable[VKey] ^= 0x01;
199         InputKeyStateTable[VKey] |= 0x80;
200         AsyncKeyStateTable[VKey] |= 0x80;
201
202         message = WM_KEYDOWN;
203         if( (InputKeyStateTable[VK_MENU] & 0x80) &&
204                 !(InputKeyStateTable[VK_CONTROL] & 0x80)) {
205             message = WM_SYSKEYDOWN;
206             TrackSysKey = VKey;
207         }
208     }
209
210     keylp.lp1.context = (InputKeyStateTable[VK_MENU] & 0x80) != 0; /* 1 if alt */
211
212     if( plParam) *plParam = keylp.lp2;
213     if( pwParam) *pwParam = VKey;
214     return message;
215 }
216
217 /****************************** end copy input.c ****************************/
218
219 /*
220  * . prepare the keyevents for SendInputs
221  * . calculate the "expected" messages
222  * . Send the events to our window
223  * . retrieve the messages from the input queue
224  * . verify
225  */
226 static void do_test( HWND hwnd, int seqnr, const KEV td[] )
227 {
228     INPUT inputs[MAXKEYEVENTS];
229     KMSG expmsg[MAXKEYEVENTS];
230     MSG msg;
231     char buf[100];
232     UINT evtctr=0;
233     int kmctr, i;
234
235     buf[0]='\0';
236     TrackSysKey=0; /* see input.c */
237     for( i = 0; i < MAXKEYEVENTS; i++) {
238         ADDTOINPUTS(td[i])
239         strcat(buf, getdesc[td[i]]);
240         if(td[i])
241             expmsg[i].message = KbdMessage(td[i], &(expmsg[i].wParam), &(expmsg[i].lParam)); /* see queue_kbd_event() */
242         else
243             expmsg[i].message = 0;
244     }
245     for( kmctr = 0; kmctr < MAXKEYEVENTS && expmsg[kmctr].message; kmctr++)
246         ;
247     assert( evtctr <= MAXKEYEVENTS );
248     assert( evtctr == pSendInput(evtctr, &inputs[0], sizeof(INPUT)));
249     i = 0;
250     if (winetest_debug > 1)
251         trace("======== key stroke sequence #%d: %s =============\n",
252             seqnr + 1, buf);
253     while( PeekMessage(&msg,hwnd,WM_KEYFIRST,WM_KEYLAST,PM_REMOVE) ) {
254         if (winetest_debug > 1)
255             trace("message[%d] %-15s wParam %04lx lParam %08lx time %x\n", i,
256                   MSGNAME[msg.message - WM_KEYFIRST], msg.wParam, msg.lParam, msg.time);
257         if( i < kmctr ) {
258             ok( msg.message == expmsg[i].message &&
259                     msg.wParam == expmsg[i].wParam &&
260                     msg.lParam == expmsg[i].lParam,
261                     "wrong message! expected:\n"
262                     "message[%d] %-15s wParam %04lx lParam %08lx\n",i,
263                     MSGNAME[(expmsg[i]).message - WM_KEYFIRST],
264                     expmsg[i].wParam, expmsg[i].lParam );
265         }
266         i++;
267     }
268     if (winetest_debug > 1)
269         trace("%d messages retrieved\n", i);
270     ok( i == kmctr, "message count is wrong: got %d expected: %d\n", i, kmctr);
271 }
272
273 /* test all combinations of the specified key events */
274 static void TestASet( HWND hWnd, int nrkev, const KEV kevdwn[], const KEV kevup[] )
275 {
276     int i,j,k,l,m,n;
277     static int count=0;
278     KEV kbuf[MAXKEYEVENTS];
279     assert( nrkev==2 || nrkev==3);
280     for(i=0;i<MAXKEYEVENTS;i++) kbuf[i]=0;
281     /* two keys involved gives 4 test cases */
282     if(nrkev==2) {
283         for(i=0;i<nrkev;i++) {
284             for(j=0;j<nrkev;j++) {
285                 kbuf[0] = kevdwn[i];
286                 kbuf[1] = kevdwn[1-i];
287                 kbuf[2] = kevup[j];
288                 kbuf[3] = kevup[1-j];
289                 do_test( hWnd, count++, kbuf);
290             }
291         }
292     }
293     /* three keys involved gives 36 test cases */
294     if(nrkev==3){
295         for(i=0;i<nrkev;i++){
296             for(j=0;j<nrkev;j++){
297                 if(j==i) continue;
298                 for(k=0;k<nrkev;k++){
299                     if(k==i || k==j) continue;
300                     for(l=0;l<nrkev;l++){
301                         for(m=0;m<nrkev;m++){
302                             if(m==l) continue;
303                             for(n=0;n<nrkev;n++){
304                                 if(n==l ||n==m) continue;
305                                 kbuf[0] = kevdwn[i];
306                                 kbuf[1] = kevdwn[j];
307                                 kbuf[2] = kevdwn[k];
308                                 kbuf[3] = kevup[l];
309                                 kbuf[4] = kevup[m];
310                                 kbuf[5] = kevup[n];
311                                 do_test( hWnd, count++, kbuf);
312                             }
313                         }
314                     }
315                 }
316             }
317         }
318     }
319 }
320
321 /* test each set specified in the global testkeyset array */
322 static void TestSysKeys( HWND hWnd)
323 {
324     int i;
325     for(i=0; testkeyset[i].nrkev;i++)
326         TestASet( hWnd, testkeyset[i].nrkev, testkeyset[i].keydwn,
327                 testkeyset[i].keyup);
328 }
329
330 static LRESULT CALLBACK WndProc( HWND hWnd, UINT msg, WPARAM wParam,
331         LPARAM lParam )
332 {
333     switch (msg) {
334         case WM_USER:
335             SetFocus(hWnd);
336             /* window has focus, now do the test */
337             if( hWnd == hWndTest) TestSysKeys( hWnd);
338             /* finished :-) */
339             break;
340
341         case WM_DESTROY:
342             PostQuitMessage( 0 );
343             break;
344
345         default:
346             return( DefWindowProcA( hWnd, msg, wParam, lParam ) );
347     }
348
349     return 0;
350 }
351
352 static void test_Input_whitebox(void)
353 {
354     MSG msg;
355     WNDCLASSA  wclass;
356     HANDLE hInstance = GetModuleHandleA( NULL );
357
358     wclass.lpszClassName = "InputSysKeyTestClass";
359     wclass.style         = CS_HREDRAW | CS_VREDRAW;
360     wclass.lpfnWndProc   = WndProc;
361     wclass.hInstance     = hInstance;
362     wclass.hIcon         = LoadIconA( 0, (LPSTR)IDI_APPLICATION );
363     wclass.hCursor       = LoadCursorA( NULL, IDC_ARROW);
364     wclass.hbrBackground = (HBRUSH)( COLOR_WINDOW + 1);
365     wclass.lpszMenuName = 0;
366     wclass.cbClsExtra    = 0;
367     wclass.cbWndExtra    = 0;
368     assert (RegisterClassA( &wclass ));
369     /* create the test window that will receive the keystrokes */
370     assert ( hWndTest = CreateWindowA( wclass.lpszClassName, "InputSysKeyTest",
371                 WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, 0, 100, 100,
372                 NULL, NULL, hInstance, NULL) );
373     ShowWindow( hWndTest, SW_SHOW);
374     UpdateWindow( hWndTest);
375
376     /* flush pending messages */
377     while (PeekMessage( &msg, 0, 0, 0, PM_REMOVE )) DispatchMessageA( &msg );
378
379     SendMessageA(hWndTest, WM_USER, 0, 0);
380     DestroyWindow(hWndTest);
381 }
382
383 static void empty_message_queue(void) {
384     MSG msg;
385     while(PeekMessage(&msg, NULL, 0, 0, PM_REMOVE)) {
386         TranslateMessage(&msg);
387         DispatchMessage(&msg);
388     }
389 }
390
391 struct transition_s {
392     WORD wVk;
393     BYTE before_state;
394     BOOL _todo_wine;
395 };
396
397 struct sendinput_test_s {
398     WORD wVk;
399     DWORD dwFlags;
400     struct transition_s expected_transitions[MAXKEYEVENTS+1];
401     UINT expected_messages[MAXKEYMESSAGES+1];
402 } sendinput_test[] = {
403     /* test ALT+F */
404     {VK_LMENU, 0, {{VK_MENU, 0x00, 0}, {VK_LMENU, 0x00, 0}, {0}},
405         {WM_SYSKEYDOWN, 0}},
406     {'F', 0, {{'F', 0x00, 0}, {0}},
407         {WM_SYSKEYDOWN, WM_SYSCHAR, WM_SYSCOMMAND, 0}},
408     {'F', KEYEVENTF_KEYUP, {{'F', 0x80, 0}, {0}}, {WM_SYSKEYUP, 0}},
409     {VK_LMENU, KEYEVENTF_KEYUP, {{VK_MENU, 0x80, 0}, {VK_LMENU, 0x80, 0}, {0}},
410         {WM_KEYUP, 0}},
411
412     /* test CTRL+O */
413     {VK_LCONTROL, 0, {{VK_CONTROL, 0x00, 0}, {VK_LCONTROL, 0x00, 0}, {0}},
414         {WM_KEYDOWN, 0}},
415     {'O', 0, {{'O', 0x00, 0}, {0}}, {WM_KEYDOWN, WM_CHAR, 0}},
416     {'O', KEYEVENTF_KEYUP, {{'O', 0x80, 0}, {0}}, {WM_KEYUP, 0}},
417     {VK_LCONTROL, KEYEVENTF_KEYUP,
418         {{VK_CONTROL, 0x80, 0}, {VK_LCONTROL, 0x80, 0}, {0}}, {WM_KEYUP, 0}},
419
420     /* test ALT+CTRL+X */
421     {VK_LMENU, 0, {{VK_MENU, 0x00, 0}, {VK_LMENU, 0x00, 0}, {0}},
422         {WM_SYSKEYDOWN, 0}},
423     {VK_LCONTROL, 0, {{VK_CONTROL, 0x00, 0}, {VK_LCONTROL, 0x00, 0}, {0}},
424         {WM_KEYDOWN, 0}},
425     {'X', 0, {{'X', 0x00, 0}, {0}}, {WM_KEYDOWN, 0}},
426     {'X', KEYEVENTF_KEYUP, {{'X', 0x80, 0}, {0}}, {WM_KEYUP, 0}},
427     {VK_LCONTROL, KEYEVENTF_KEYUP,
428         {{VK_CONTROL, 0x80, 0}, {VK_LCONTROL, 0x80, 0}, {0}},
429         {WM_SYSKEYUP, 0}},
430     {VK_LMENU, KEYEVENTF_KEYUP, {{VK_MENU, 0x80, 0}, {VK_LMENU, 0x80, 0}, {0}},
431         {WM_KEYUP, 0}},
432
433     /* test SHIFT+A */
434     {VK_LSHIFT, 0,
435         {{VK_SHIFT, 0x00, 0}, {VK_LSHIFT, 0x00, 0}, {0}}, {WM_KEYDOWN, 0}},
436     {'A', 0, {{'A', 0x00, 0}, {0}}, {WM_KEYDOWN, WM_CHAR, 0}},
437     {'A', KEYEVENTF_KEYUP, {{'A', 0x80, 0}, {0}}, {WM_KEYUP, 0}},
438     {VK_LSHIFT, KEYEVENTF_KEYUP,
439         {{VK_SHIFT, 0x80, 0}, {VK_LSHIFT, 0x80, 0}, {0}}, {WM_KEYUP, 0}},
440
441     {0, 0, {{0}}, {0}} /* end */
442 };
443
444 static struct sendinput_test_s *pTest = sendinput_test;
445 static UINT *pMsg = sendinput_test[0].expected_messages;
446
447 /* Verify that only specified key state transitions occur */
448 static void compare_and_check(int id, BYTE *ks1, BYTE *ks2, struct transition_s *t) {
449     int i;
450     while (t->wVk) {
451         int matched = ((ks1[t->wVk]&0x80) == (t->before_state&0x80)
452                        && (ks2[t->wVk]&0x80) == (~t->before_state&0x80));
453         if (t->_todo_wine) {
454             todo_wine {
455                 ok(matched, "%02d: %02x from %02x -> %02x "
456                    "instead of %02x -> %02x\n", id, t->wVk,
457                    ks1[t->wVk]&0x80, ks2[t->wVk]&0x80, t->before_state,
458                    ~t->before_state&0x80);
459             }
460         } else {
461             ok(matched, "%02d: %02x from %02x -> %02x "
462                "instead of %02x -> %02x\n", id, t->wVk,
463                ks1[t->wVk]&0x80, ks2[t->wVk]&0x80, t->before_state,
464                ~t->before_state&0x80);
465         }
466         ks2[t->wVk] = ks1[t->wVk]; /* clear the match */
467         t++;
468     }
469     for (i = 0; i < 256; i++)
470         ok(ks2[i] == ks1[i], "%02d: %02x from %02x -> %02x unexpected\n",
471            id, i, ks1[i], ks2[i]);
472 }
473
474 /* WndProc2 checks that we get at least the messages specified */
475 static LRESULT CALLBACK WndProc2(HWND hWnd, UINT Msg, WPARAM wParam,
476                                    LPARAM lParam)
477 {
478     if (pTest->wVk != 0) { /* not end */
479         while(pTest->wVk != 0 && *pMsg == 0) {
480             pTest++;
481             pMsg = pTest->expected_messages;
482         }
483         if (Msg == *pMsg)
484             pMsg++;
485     }
486     return DefWindowProc(hWnd, Msg, wParam, lParam);
487 }
488
489 static void test_Input_blackbox(void)
490 {
491     TEST_INPUT i;
492     int ii;
493     BYTE ks1[256], ks2[256];
494     LONG_PTR prevWndProc;
495     HWND window;
496
497     if (!pSendInput)
498     {
499         skip("SendInput is not available\n");
500         return;
501     }
502
503     window = CreateWindow("Static", NULL, WS_POPUP|WS_HSCROLL|WS_VSCROLL
504         |WS_VISIBLE, 0, 0, 200, 60, NULL, NULL,
505         NULL, NULL);
506     ok(window != NULL, "error: %d\n", (int) GetLastError());
507
508     /* must process all initial messages, otherwise X11DRV_KeymapNotify unsets
509      * key state set by SendInput(). */
510     empty_message_queue();
511
512     prevWndProc = SetWindowLongPtr(window, GWLP_WNDPROC, (LONG_PTR) WndProc2);
513     ok(prevWndProc != 0 || (prevWndProc == 0 && GetLastError() == 0),
514        "error: %d\n", (int) GetLastError());
515
516     i.type = INPUT_KEYBOARD;
517     i.u.ki.wScan = 0;
518     i.u.ki.time = 0;
519     i.u.ki.dwExtraInfo = 0;
520
521     for (ii = 0; ii < sizeof(sendinput_test)/sizeof(struct sendinput_test_s)-1;
522          ii++) {
523         GetKeyboardState(ks1);
524         i.u.ki.dwFlags = sendinput_test[ii].dwFlags;
525         i.u.ki.wVk = sendinput_test[ii].wVk;
526         pSendInput(1, (INPUT*)&i, sizeof(TEST_INPUT));
527         empty_message_queue();
528         GetKeyboardState(ks2);
529         compare_and_check(ii, ks1, ks2,
530                           sendinput_test[ii].expected_transitions);
531     }
532
533     /* *pMsg should be 0 and (++pTest)->wVk should be 0 */
534     if (pTest->wVk && *pMsg == 0) pTest++;
535     while(pTest->wVk && pTest->expected_messages[0] == 0) {
536         ++pTest;
537     }
538     ok(*pMsg == 0 && pTest->wVk == 0,
539        "not enough messages found; looking for %x\n", *pMsg);
540     DestroyWindow(window);
541 }
542
543 static void test_keynames(void)
544 {
545     int i, len;
546     char buff[256];
547
548     for (i = 0; i < 512; i++)
549     {
550         strcpy(buff, "----");
551         len = GetKeyNameTextA(i << 16, buff, sizeof(buff));
552         ok(len || !buff[0], "%d: Buffer is not zeroed\n", i);
553     }
554 }
555
556 static POINT pt_old, pt_new;
557 static BOOL clipped;
558 #define STEP 20
559
560 static LRESULT CALLBACK hook_proc1( int code, WPARAM wparam, LPARAM lparam )
561 {
562     MSLLHOOKSTRUCT *hook = (MSLLHOOKSTRUCT *)lparam;
563     POINT pt, pt1;
564
565     if (code == HC_ACTION)
566     {
567         /* This is our new cursor position */
568         pt_new = hook->pt;
569         /* Should return previous position */
570         GetCursorPos(&pt);
571         ok(pt.x == pt_old.x && pt.y == pt_old.y, "GetCursorPos: (%d,%d)\n", pt.x, pt.y);
572
573         /* Should set new position until hook chain is finished. */
574         pt.x = pt_old.x + STEP;
575         pt.y = pt_old.y + STEP;
576         SetCursorPos(pt.x, pt.y);
577         GetCursorPos(&pt1);
578         if (clipped)
579             ok(pt1.x == pt_old.x && pt1.y == pt_old.y, "Wrong set pos: (%d,%d)\n", pt1.x, pt1.y);
580         else
581             ok(pt1.x == pt.x && pt1.y == pt.y, "Wrong set pos: (%d,%d)\n", pt1.x, pt1.y);
582     }
583     return CallNextHookEx( 0, code, wparam, lparam );
584 }
585
586 static LRESULT CALLBACK hook_proc2( int code, WPARAM wparam, LPARAM lparam )
587 {
588     MSLLHOOKSTRUCT *hook = (MSLLHOOKSTRUCT *)lparam;
589     POINT pt;
590
591     if (code == HC_ACTION)
592     {
593         ok(hook->pt.x == pt_new.x && hook->pt.y == pt_new.y,
594            "Wrong hook coords: (%d %d) != (%d,%d)\n", hook->pt.x, hook->pt.y, pt_new.x, pt_new.y);
595
596         /* Should match position set above */
597         GetCursorPos(&pt);
598         if (clipped)
599             ok(pt.x == pt_old.x && pt.y == pt_old.y, "GetCursorPos: (%d,%d)\n", pt.x, pt.y);
600         else
601             ok(pt.x == pt_old.x +STEP && pt.y == pt_old.y +STEP, "GetCursorPos: (%d,%d)\n", pt.x, pt.y);
602     }
603     return CallNextHookEx( 0, code, wparam, lparam );
604 }
605
606 static void test_mouse_ll_hook(void)
607 {
608     HWND hwnd;
609     HHOOK hook1, hook2;
610     POINT pt_org, pt;
611     RECT rc;
612
613     GetCursorPos(&pt_org);
614     hwnd = CreateWindow("static", "Title", WS_OVERLAPPEDWINDOW | WS_VISIBLE,
615                         10, 10, 200, 200, NULL, NULL, NULL, NULL);
616     SetCursorPos(100, 100);
617
618     hook2 = SetWindowsHookExA(WH_MOUSE_LL, hook_proc2, GetModuleHandleA(0), 0);
619     hook1 = SetWindowsHookExA(WH_MOUSE_LL, hook_proc1, GetModuleHandleA(0), 0);
620
621     GetCursorPos(&pt_old);
622     mouse_event(MOUSEEVENTF_MOVE, -STEP,  0, 0, 0);
623     GetCursorPos(&pt_old);
624     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);
625     mouse_event(MOUSEEVENTF_MOVE, +STEP,  0, 0, 0);
626     GetCursorPos(&pt_old);
627     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);
628     mouse_event(MOUSEEVENTF_MOVE,  0, -STEP, 0, 0);
629     GetCursorPos(&pt_old);
630     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);
631     mouse_event(MOUSEEVENTF_MOVE,  0, +STEP, 0, 0);
632     GetCursorPos(&pt_old);
633     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);
634
635     SetRect(&rc, 50, 50, 151, 151);
636     ClipCursor(&rc);
637     clipped = TRUE;
638
639     SetCursorPos(40, 40);
640     GetCursorPos(&pt_old);
641     ok(pt_old.x == 50 && pt_old.y == 50, "Wrong new pos: (%d,%d)\n", pt_new.x, pt_new.y);
642     SetCursorPos(160, 160);
643     GetCursorPos(&pt_old);
644     ok(pt_old.x == 150 && pt_old.y == 150, "Wrong new pos: (%d,%d)\n", pt_new.x, pt_new.y);
645     mouse_event(MOUSEEVENTF_MOVE, +STEP, +STEP, 0, 0);
646     GetCursorPos(&pt_old);
647     ok(pt_old.x == 150 && pt_old.y == 150, "Wrong new pos: (%d,%d)\n", pt_new.x, pt_new.y);
648
649     clipped = FALSE;
650     pt_new.x = pt_new.y = 150;
651     ClipCursor(NULL);
652     UnhookWindowsHookEx(hook1);
653
654     /* Now check that mouse buttons do not change mouse position
655        if we don't have MOUSEEVENTF_MOVE flag specified. */
656
657     /* We reusing the same hook callback, so make it happy */
658     pt_old.x = pt_new.x - STEP;
659     pt_old.y = pt_new.y - STEP;
660     mouse_event(MOUSEEVENTF_LEFTUP, 123, 456, 0, 0);
661     GetCursorPos(&pt);
662     ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
663     mouse_event(MOUSEEVENTF_RIGHTUP, 456, 123, 0, 0);
664     GetCursorPos(&pt);
665     ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
666
667     mouse_event(MOUSEEVENTF_LEFTUP | MOUSEEVENTF_ABSOLUTE, 123, 456, 0, 0);
668     GetCursorPos(&pt);
669     ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
670     mouse_event(MOUSEEVENTF_RIGHTUP | MOUSEEVENTF_ABSOLUTE, 456, 123, 0, 0);
671     GetCursorPos(&pt);
672     ok(pt.x == pt_new.x && pt.y == pt_new.y, "Position changed: (%d,%d)\n", pt.x, pt.y);
673
674     UnhookWindowsHookEx(hook2);
675     DestroyWindow(hwnd);
676     SetCursorPos(pt_org.x, pt_org.y);
677 }
678
679 static void test_GetMouseMovePointsEx(void)
680 {
681 #define BUFLIM  64
682 #define MYERROR 0xdeadbeef
683     int count, retval;
684     MOUSEMOVEPOINT in;
685     MOUSEMOVEPOINT out[200];
686     POINT point;
687
688     /* Get a valid content for the input struct */
689     if(!GetCursorPos(&point)) {
690         skip("GetCursorPos() failed with error %u\n", GetLastError());
691         return;
692     }
693     memset(&in, 0, sizeof(MOUSEMOVEPOINT));
694     in.x = point.x;
695     in.y = point.y;
696
697     /* test first parameter
698      * everything different than sizeof(MOUSEMOVEPOINT)
699      * is expected to fail with ERROR_INVALID_PARAMETER
700      */
701     SetLastError(MYERROR);
702     retval = pGetMouseMovePointsEx(0, &in, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
703     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
704     ok(ERROR_INVALID_PARAMETER == GetLastError(),
705        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
706
707     SetLastError(MYERROR);
708     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)-1, &in, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
709     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
710     ok(ERROR_INVALID_PARAMETER == GetLastError(),
711        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
712
713     SetLastError(MYERROR);
714     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)+1, &in, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
715     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
716     ok(ERROR_INVALID_PARAMETER == GetLastError(),
717        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
718
719     /* test second and third parameter
720      */
721     SetLastError(MYERROR);
722     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), NULL, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
723     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
724     ok(ERROR_NOACCESS == GetLastError(),
725        "expected error ERROR_NOACCESS, got %u\n", GetLastError());
726
727     SetLastError(MYERROR);
728     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, NULL, BUFLIM, GMMP_USE_DISPLAY_POINTS);
729     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
730     ok(ERROR_NOACCESS == GetLastError(),
731        "expected error ERROR_NOACCESS, got %u\n", GetLastError());
732
733     SetLastError(MYERROR);
734     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), NULL, NULL, BUFLIM, GMMP_USE_DISPLAY_POINTS);
735     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
736     ok(ERROR_NOACCESS == GetLastError(),
737        "expected error ERROR_NOACCESS, got %u\n", GetLastError());
738
739     SetLastError(MYERROR);
740     count = 0;
741     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, NULL, count, GMMP_USE_DISPLAY_POINTS);
742     todo_wine {
743     ok(retval == count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
744     ok(MYERROR == GetLastError(),
745        "expected error %d, got %u\n", MYERROR, GetLastError());
746     }
747
748     /* test fourth parameter
749      * a value higher than 64 is expected to fail with ERROR_INVALID_PARAMETER
750      */
751     SetLastError(MYERROR);
752     count = -1;
753     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
754     ok(retval == count, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
755     ok(ERROR_INVALID_PARAMETER == GetLastError(),
756        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
757
758     SetLastError(MYERROR);
759     count = 0;
760     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
761     todo_wine {
762     ok(retval == count, "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
763     ok(MYERROR == GetLastError(),
764        "expected error %d, got %u\n", MYERROR, GetLastError());
765     }
766
767     SetLastError(MYERROR);
768     count = BUFLIM;
769     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, count, GMMP_USE_DISPLAY_POINTS);
770     todo_wine {
771     ok((0 <= retval) && (retval <= count), "expected GetMouseMovePointsEx to succeed, got %d\n", retval);
772     ok(MYERROR == GetLastError(),
773        "expected error %d, got %u\n", MYERROR, GetLastError());
774     }
775
776     SetLastError(MYERROR);
777     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, out, BUFLIM+1, GMMP_USE_DISPLAY_POINTS);
778     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
779     ok(ERROR_INVALID_PARAMETER == GetLastError(),
780        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
781
782     /* it was not possible to force an error with the fifth parameter on win2k */
783
784     /* test combinations of wrong parameters to see which error wins */
785     SetLastError(MYERROR);
786     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)-1, NULL, out, BUFLIM, GMMP_USE_DISPLAY_POINTS);
787     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
788     ok(ERROR_INVALID_PARAMETER == GetLastError(),
789        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
790
791     SetLastError(MYERROR);
792     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT)-1, &in, NULL, BUFLIM, GMMP_USE_DISPLAY_POINTS);
793     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
794     ok(ERROR_INVALID_PARAMETER == GetLastError(),
795        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
796
797     SetLastError(MYERROR);
798     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), NULL, out, BUFLIM+1, GMMP_USE_DISPLAY_POINTS);
799     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
800     ok(ERROR_INVALID_PARAMETER == GetLastError(),
801        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
802
803     SetLastError(MYERROR);
804     retval = pGetMouseMovePointsEx(sizeof(MOUSEMOVEPOINT), &in, NULL, BUFLIM+1, GMMP_USE_DISPLAY_POINTS);
805     ok(retval == -1, "expected GetMouseMovePointsEx to fail, got %d\n", retval);
806     ok(ERROR_INVALID_PARAMETER == GetLastError(),
807        "expected error ERROR_INVALID_PARAMETER, got %u\n", GetLastError());
808
809 #undef BUFLIM
810 #undef MYERROR
811 }
812
813 START_TEST(input)
814 {
815     init_function_pointers();
816
817     if (!pSendInput)
818         skip("SendInput is not available\n");
819     else
820         test_Input_whitebox();
821
822     test_Input_blackbox();
823     test_keynames();
824     test_mouse_ll_hook();
825
826     if(pGetMouseMovePointsEx)
827         test_GetMouseMovePointsEx();
828     else
829         skip("GetMouseMovePointsEx is not available\n");
830 }