Add a test for some edit control behaviours, make it pass under Wine.
[wine] / dlls / user / tests / listbox.c
1 /* Unit test suite for list boxes.
2  *
3  * Copyright 2003 Ferenc Wagner
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <assert.h>
21 #include <stdarg.h>
22 #include <stdio.h>
23
24 #include "windef.h"
25 #include "winbase.h"
26 #include "wingdi.h"
27 #include "winuser.h"
28 #include "winnls.h"
29
30 #include "wine/test.h"
31
32 #ifdef VISIBLE
33 #define WAIT Sleep (1000)
34 #define REDRAW RedrawWindow (handle, NULL, 0, RDW_UPDATENOW)
35 #else
36 #define WAIT
37 #define REDRAW
38 #endif
39
40 static const char * const strings[4] = {
41   "First added",
42   "Second added",
43   "Third added",
44   "Fourth added which is very long because at some time we only had a 256 byte character buffer and that was overflowing in one of those applications that had a common dialog file open box and tried to add a 300 characters long custom filter string which of course the code did not like and crashed. Just make sure this string is longer than 256 characters."
45 };
46
47 static HWND
48 create_listbox (DWORD add_style, HWND parent)
49 {
50   HWND handle;
51   int ctl_id=0;
52   if (parent)
53     ctl_id=1;
54   handle=CreateWindow ("LISTBOX", "TestList",
55                             (LBS_STANDARD & ~LBS_SORT) | add_style,
56                             0, 0, 100, 100,
57                             parent, (HMENU)ctl_id, NULL, 0);
58
59   assert (handle);
60   SendMessage (handle, LB_ADDSTRING, 0, (LPARAM) (LPCTSTR) strings[0]);
61   SendMessage (handle, LB_ADDSTRING, 0, (LPARAM) (LPCTSTR) strings[1]);
62   SendMessage (handle, LB_ADDSTRING, 0, (LPARAM) (LPCTSTR) strings[2]);
63   SendMessage (handle, LB_ADDSTRING, 0, (LPARAM) (LPCTSTR) strings[3]);
64
65 #ifdef VISIBLE
66   ShowWindow (handle, SW_SHOW);
67 #endif
68   REDRAW;
69
70   return handle;
71 }
72
73 struct listbox_prop {
74   DWORD add_style;
75 };
76
77 struct listbox_stat {
78   int selected, anchor, caret, selcount;
79 };
80
81 struct listbox_test {
82   struct listbox_prop prop;
83   struct listbox_stat  init,  init_todo;
84   struct listbox_stat click, click_todo;
85   struct listbox_stat  step,  step_todo;
86   struct listbox_stat   sel,   sel_todo;
87 };
88
89 static void
90 listbox_query (HWND handle, struct listbox_stat *results)
91 {
92   results->selected = SendMessage (handle, LB_GETCURSEL, 0, 0);
93   results->anchor   = SendMessage (handle, LB_GETANCHORINDEX, 0, 0);
94   results->caret    = SendMessage (handle, LB_GETCARETINDEX, 0, 0);
95   results->selcount = SendMessage (handle, LB_GETSELCOUNT, 0, 0);
96 }
97
98 static void
99 buttonpress (HWND handle, WORD x, WORD y)
100 {
101   LPARAM lp=x+(y<<16);
102
103   WAIT;
104   SendMessage (handle, WM_LBUTTONDOWN, (WPARAM) MK_LBUTTON, lp);
105   SendMessage (handle, WM_LBUTTONUP  , (WPARAM) 0         , lp);
106   REDRAW;
107 }
108
109 static void
110 keypress (HWND handle, WPARAM keycode, BYTE scancode, BOOL extended)
111 {
112   LPARAM lp=1+(scancode<<16)+(extended?KEYEVENTF_EXTENDEDKEY:0);
113
114   WAIT;
115   SendMessage (handle, WM_KEYDOWN, keycode, lp);
116   SendMessage (handle, WM_KEYUP  , keycode, lp | 0xc000000);
117   REDRAW;
118 }
119
120 #define listbox_field_ok(t, s, f, got) \
121   ok (t.s.f==got.f, "style %#x, step " #s ", field " #f \
122       ": expected %d, got %d\n", (unsigned int)t.prop.add_style, \
123       t.s.f, got.f)
124
125 #define listbox_todo_field_ok(t, s, f, got) \
126   if (t.s##_todo.f) todo_wine { listbox_field_ok(t, s, f, got); } \
127   else listbox_field_ok(t, s, f, got)
128
129 #define listbox_ok(t, s, got) \
130   listbox_todo_field_ok(t, s, selected, got); \
131   listbox_todo_field_ok(t, s, anchor, got); \
132   listbox_todo_field_ok(t, s, caret, got); \
133   listbox_todo_field_ok(t, s, selcount, got)
134
135 static void
136 check (const struct listbox_test test)
137 {
138   struct listbox_stat answer;
139   HWND hLB=create_listbox (test.prop.add_style, 0);
140   RECT second_item;
141   int i;
142   int res;
143
144   listbox_query (hLB, &answer);
145   listbox_ok (test, init, answer);
146
147   SendMessage (hLB, LB_GETITEMRECT, (WPARAM) 1, (LPARAM) &second_item);
148   buttonpress(hLB, (WORD)second_item.left, (WORD)second_item.top);
149
150   listbox_query (hLB, &answer);
151   listbox_ok (test, click, answer);
152
153   keypress (hLB, VK_DOWN, 0x50, TRUE);
154
155   listbox_query (hLB, &answer);
156   listbox_ok (test, step, answer);
157
158   DestroyWindow (hLB);
159   hLB=create_listbox (test.prop.add_style, 0);
160
161   SendMessage (hLB, LB_SELITEMRANGE, TRUE, MAKELPARAM(1, 2));
162   listbox_query (hLB, &answer);
163   listbox_ok (test, sel, answer);
164
165   for (i=0;i<4;i++) {
166         DWORD size = SendMessage (hLB, LB_GETTEXTLEN, i, 0);
167         CHAR *txt;
168         WCHAR *txtw;
169
170         txt = HeapAlloc (GetProcessHeap(), 0, size+1);
171         SendMessageA(hLB, LB_GETTEXT, i, (LPARAM)txt);
172         ok(!strcmp (txt, strings[i]), "returned string for item %d does not match %s vs %s\n", i, txt, strings[i]);
173
174         txtw = HeapAlloc (GetProcessHeap(), 0, 2*size+2);
175         SendMessageW(hLB, LB_GETTEXT, i, (LPARAM)txtw);
176         WideCharToMultiByte( CP_ACP, 0, txtw, -1, txt, size, NULL, NULL );
177         ok(!strcmp (txt, strings[i]), "returned string for item %d does not match %s vs %s\n", i, txt, strings[i]);
178
179         HeapFree (GetProcessHeap(), 0, txtw);
180         HeapFree (GetProcessHeap(), 0, txt);
181   }
182   
183   /* Confirm the count of items, and that an invalid delete does not remove anything */
184   res = SendMessage (hLB, LB_GETCOUNT, 0, 0);
185   ok((res==4), "Expected 4 items, got %d\n", res);
186   res = SendMessage (hLB, LB_DELETESTRING, -1, 0);
187   ok((res==LB_ERR), "Expected LB_ERR items, got %d\n", res);
188   res = SendMessage (hLB, LB_DELETESTRING, 4, 0);
189   ok((res==LB_ERR), "Expected LB_ERR items, got %d\n", res);
190   res = SendMessage (hLB, LB_GETCOUNT, 0, 0);
191   ok((res==4), "Expected 4 items, got %d\n", res);
192
193   WAIT;
194   DestroyWindow (hLB);
195 }
196
197 static void check_item_height(void)
198 {
199     HWND hLB;
200     HDC hdc;
201     HFONT font;
202     TEXTMETRIC tm;
203     INT itemHeight;
204
205     hLB = create_listbox (0, 0);
206     ok ((hdc = GetDCEx( hLB, 0, DCX_CACHE )) != 0, "Can't get hdc\n");
207     ok ((font = GetCurrentObject(hdc, OBJ_FONT)) != 0, "Can't get the current font\n");
208     ok (GetTextMetrics( hdc, &tm ), "Can't read font metrics\n");
209     ReleaseDC( hLB, hdc);
210
211     ok (SendMessage(hLB, WM_SETFONT, (WPARAM)font, 0) == 0, "Can't set font\n");
212
213     itemHeight = SendMessage(hLB, LB_GETITEMHEIGHT, 0, 0);
214     ok (itemHeight == tm.tmHeight, "Item height wrong, got %d, expecting %ld\n", itemHeight, tm.tmHeight);
215
216     DestroyWindow (hLB);
217 }
218
219 static LRESULT WINAPI main_window_proc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
220 {
221     switch (msg)
222     {
223     case WM_DRAWITEM:
224     {
225         RECT rc_item, rc_client, rc_clip;
226         DRAWITEMSTRUCT *dis = (DRAWITEMSTRUCT *)lparam;
227
228         trace("%p WM_DRAWITEM %08x %08lx\n", hwnd, wparam, lparam);
229
230         ok(wparam == dis->CtlID, "got wParam=%08x instead of %08x\n",
231                         wparam, dis->CtlID);
232         ok(dis->CtlType == ODT_LISTBOX, "wrong CtlType %04x\n", dis->CtlType);
233
234         GetClientRect(dis->hwndItem, &rc_client);
235         trace("hwndItem %p client rect (%ld,%ld-%ld,%ld)\n", dis->hwndItem,
236                rc_client.left, rc_client.top, rc_client.right, rc_client.bottom);
237         GetClipBox(dis->hDC, &rc_clip);
238         trace("clip rect (%ld,%ld-%ld,%ld)\n", rc_clip.left, rc_clip.top, rc_clip.right, rc_clip.bottom);
239         ok(EqualRect(&rc_client, &rc_clip), "client rect of the listbox should be equal to the clip box\n");
240
241         trace("rcItem (%ld,%ld-%ld,%ld)\n", dis->rcItem.left, dis->rcItem.top,
242                dis->rcItem.right, dis->rcItem.bottom);
243         SendMessage(dis->hwndItem, LB_GETITEMRECT, dis->itemID, (LPARAM)&rc_item);
244         trace("item rect (%ld,%ld-%ld,%ld)\n", rc_item.left, rc_item.top, rc_item.right, rc_item.bottom);
245         ok(EqualRect(&dis->rcItem, &rc_item), "item rects are not equal\n");
246
247         break;
248     }
249
250     default:
251         break;
252     }
253
254     return DefWindowProc(hwnd, msg, wparam, lparam);
255 }
256
257 static void test_ownerdraw(void)
258 {
259     WNDCLASS cls;
260     HWND parent, hLB;
261     INT ret;
262     RECT rc;
263
264     cls.style = 0;
265     cls.lpfnWndProc = main_window_proc;
266     cls.cbClsExtra = 0;
267     cls.cbWndExtra = 0;
268     cls.hInstance = GetModuleHandle(0);
269     cls.hIcon = 0;
270     cls.hCursor = LoadCursor(0, (LPSTR)IDC_ARROW);
271     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
272     cls.lpszMenuName = NULL;
273     cls.lpszClassName = "main_window_class";
274     assert(RegisterClass(&cls));
275
276     parent = CreateWindowEx(0, "main_window_class", NULL,
277                             WS_POPUP | WS_VISIBLE,
278                             100, 100, 400, 400,
279                             GetDesktopWindow(), 0,
280                             GetModuleHandle(0), NULL);
281     assert(parent);
282
283     hLB = create_listbox(LBS_OWNERDRAWFIXED | WS_CHILD | WS_VISIBLE, parent);
284     assert(hLB);
285
286     UpdateWindow(hLB);
287
288     /* make height short enough */
289     SendMessage(hLB, LB_GETITEMRECT, 0, (LPARAM)&rc);
290     SetWindowPos(hLB, 0, 0, 0, 100, rc.bottom - rc.top + 1,
291                  SWP_NOZORDER | SWP_NOMOVE);
292
293     /* make 0 item invisible */
294     SendMessage(hLB, LB_SETTOPINDEX, 1, 0);
295     ret = SendMessage(hLB, LB_GETTOPINDEX, 0, 0);
296     ok(ret == 1, "wrong top index %d\n", ret);
297
298     SendMessage(hLB, LB_GETITEMRECT, 0, (LPARAM)&rc);
299     trace("item 0 rect (%ld,%ld-%ld,%ld)\n", rc.left, rc.top, rc.right, rc.bottom);
300     ok(!IsRectEmpty(&rc), "empty item rect\n");
301     ok(rc.top < 0, "rc.top is not negative (%ld)\n", rc.top);
302
303     DestroyWindow(hLB);
304     DestroyWindow(parent);
305 }
306
307 START_TEST(listbox)
308 {
309   const struct listbox_test SS =
310 /*   {add_style} */
311     {{0},
312      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0},
313      {     1,      1,      1, LB_ERR}, {0,0,0,0},
314      {     2,      2,      2, LB_ERR}, {0,0,0,0},
315      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0}};
316 /* {selected, anchor,  caret, selcount}{TODO fields} */
317   const struct listbox_test SS_NS =
318     {{LBS_NOSEL},
319      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0},
320      {     1,      1,      1, LB_ERR}, {0,0,0,0},
321      {     2,      2,      2, LB_ERR}, {0,0,0,0},
322      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0}};
323   const struct listbox_test MS =
324     {{LBS_MULTIPLESEL},
325      {     0, LB_ERR,      0,      0}, {0,0,0,0},
326      {     1,      1,      1,      1}, {0,0,0,0},
327      {     2,      1,      2,      1}, {0,0,0,0},
328      {     0, LB_ERR,      0,      2}, {0,0,0,0}};
329   const struct listbox_test MS_NS =
330     {{LBS_MULTIPLESEL | LBS_NOSEL},
331      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0},
332      {     1,      1,      1, LB_ERR}, {0,0,0,0},
333      {     2,      2,      2, LB_ERR}, {0,0,0,0},
334      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0}};
335   const struct listbox_test ES =
336     {{LBS_EXTENDEDSEL},
337      {     0, LB_ERR,      0,      0}, {0,0,0,0},
338      {     1,      1,      1,      1}, {0,0,0,0},
339      {     2,      2,      2,      1}, {0,0,0,0},
340      {     0, LB_ERR,      0,      2}, {0,0,0,0}};
341   const struct listbox_test ES_NS =
342     {{LBS_EXTENDEDSEL | LBS_NOSEL},
343      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0},
344      {     1,      1,      1, LB_ERR}, {0,0,0,0},
345      {     2,      2,      2, LB_ERR}, {0,0,0,0},
346      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0}};
347   const struct listbox_test EMS =
348     {{LBS_EXTENDEDSEL | LBS_MULTIPLESEL},
349      {     0, LB_ERR,      0,      0}, {0,0,0,0},
350      {     1,      1,      1,      1}, {0,0,0,0},
351      {     2,      2,      2,      1}, {0,0,0,0},
352      {     0, LB_ERR,      0,      2}, {0,0,0,0}};
353   const struct listbox_test EMS_NS =
354     {{LBS_EXTENDEDSEL | LBS_MULTIPLESEL | LBS_NOSEL},
355      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0},
356      {     1,      1,      1, LB_ERR}, {0,0,0,0},
357      {     2,      2,      2, LB_ERR}, {0,0,0,0},
358      {LB_ERR, LB_ERR,      0, LB_ERR}, {0,0,0,0}};
359
360   trace (" Testing single selection...\n");
361   check (SS);
362   trace (" ... with NOSEL\n");
363   check (SS_NS);
364   trace (" Testing multiple selection...\n");
365   check (MS);
366   trace (" ... with NOSEL\n");
367   check (MS_NS);
368   trace (" Testing extended selection...\n");
369   check (ES);
370   trace (" ... with NOSEL\n");
371   check (ES_NS);
372   trace (" Testing extended and multiple selection...\n");
373   check (EMS);
374   trace (" ... with NOSEL\n");
375   check (EMS_NS);
376
377   check_item_height();
378   test_ownerdraw();
379 }