comctl32/tests: Fix status test failures on older Windows versions.
[wine] / dlls / comctl32 / tests / updown.c
1 /* Unit tests for the up-down control
2  *
3  * Copyright 2005 C. Scott Ananian
4  * Copyright (C) 2007 James Hawkins
5  * Copyright (C) 2007 Leslie Choong
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 /* TO TEST:
23  *   - send click messages to the up-down control, check the current position
24  *   - up-down control automatically positions itself next to its buddy window
25  *   - up-down control sets the caption of the buddy window
26  *   - test CreateUpDownControl API
27  *   - check UDS_AUTOBUDDY style, up-down control selects previous window in z-order
28  *   - check UDM_SETBUDDY message
29  *   - check UDM_GETBUDDY message
30  *   - up-down control and buddy control must have the same parent
31  *   - up-down control notifies its parent window when its position changes with UDN_DELTAPOS + WM_VSCROLL or WM_HSCROLL
32  *   - check UDS_ALIGN[LEFT,RIGHT]...check that width of buddy window is decreased
33  *   - check that UDS_SETBUDDYINT sets the caption of the buddy window when it is changed
34  *   - check that the thousands operator is set for large numbers
35  *   - check that the thousands operator is not set with UDS_NOTHOUSANDS
36  *   - check UDS_ARROWKEYS, control subclasses the buddy window so that it processes the keys when it has focus
37  *   - check UDS_HORZ
38  *   - check changing past min/max values
39  *   - check UDS_WRAP wraps values past min/max, incrementing past upper value wraps position to lower value
40  *   - can change control's position, min/max pos, radix
41  *   - check UDM_GETPOS, for up-down control with a buddy window, position is the caption of the buddy window, so change the
42  *     caption of the buddy window then call UDM_GETPOS
43  *   - check UDM_SETRANGE, max can be less than min, so clicking the up arrow decreases the current position
44  *   - more stuff to test
45  */
46
47 #include <assert.h>
48 #include <windows.h>
49 #include <commctrl.h>
50 #include <stdio.h>
51
52 #include "wine/test.h"
53 #include "msg.h"
54
55 #define expect(EXPECTED,GOT) ok((GOT)==(EXPECTED), "Expected %d, got %d\n", (EXPECTED), (GOT))
56
57 #define NUM_MSG_SEQUENCES   3
58 #define PARENT_SEQ_INDEX    0
59 #define EDIT_SEQ_INDEX      1
60 #define UPDOWN_SEQ_INDEX    2
61
62 static HWND parent_wnd, edit, updown;
63
64 static struct msg_sequence *sequences[NUM_MSG_SEQUENCES];
65
66 static const struct message create_parent_wnd_seq[] = {
67     { WM_GETMINMAXINFO, sent },
68     { WM_NCCREATE, sent },
69     { WM_NCCALCSIZE, sent|wparam, 0 },
70     { WM_CREATE, sent },
71     { WM_SHOWWINDOW, sent|wparam, 1 },
72     { WM_WINDOWPOSCHANGING, sent|wparam, 0 },
73     { WM_QUERYNEWPALETTE,   sent|optional },
74     { WM_WINDOWPOSCHANGING, sent|wparam, 0 },
75     { WM_ACTIVATEAPP, sent|wparam, 1 },
76     { WM_NCACTIVATE, sent|wparam, 1 },
77     { WM_ACTIVATE, sent|wparam, 1 },
78     { WM_IME_SETCONTEXT, sent|wparam|defwinproc|optional, 1 },
79     { WM_IME_NOTIFY, sent|defwinproc|optional },
80     { WM_SETFOCUS, sent|wparam|defwinproc, 0 },
81     /* Win9x adds SWP_NOZORDER below */
82     { WM_WINDOWPOSCHANGED, sent, /*|wparam, SWP_SHOWWINDOW|SWP_NOSIZE|SWP_NOMOVE|SWP_NOCLIENTSIZE|SWP_NOCLIENTMOVE*/ },
83     { WM_NCCALCSIZE, sent|wparam|optional, 1 },
84     { WM_SIZE, sent },
85     { WM_MOVE, sent },
86     { 0 }
87 };
88
89 static const struct message add_edit_to_parent_seq[] = {
90     { WM_PARENTNOTIFY, sent|wparam, WM_CREATE },
91     { 0 }
92 };
93
94 static const struct message add_updown_with_edit_seq[] = {
95     { WM_WINDOWPOSCHANGING, sent },
96     { WM_NCCALCSIZE, sent|wparam, TRUE },
97     { WM_WINDOWPOSCHANGED, sent },
98     { WM_SIZE, sent|wparam|defwinproc, SIZE_RESTORED /*, MAKELONG(91, 75) exact size depends on font */ },
99     { 0 }
100 };
101
102 static const struct message add_updown_to_parent_seq[] = {
103     { WM_NOTIFYFORMAT, sent|lparam, 0, NF_QUERY },
104     { WM_QUERYUISTATE, sent|optional },
105     { WM_PARENTNOTIFY, sent|wparam, MAKELONG(WM_CREATE, WM_CREATE) },
106     { 0 }
107 };
108
109 static const struct message get_edit_text_seq[] = {
110     { WM_GETTEXT, sent },
111     { 0 }
112 };
113
114 static const struct message test_updown_pos_seq[] = {
115     { UDM_SETRANGE, sent|lparam, 0, MAKELONG(100,0) },
116     { UDM_GETRANGE, sent},
117     { UDM_SETPOS, sent|lparam, 0, 5},
118     { UDM_GETPOS, sent},
119     { UDM_SETPOS, sent|lparam, 0, 0},
120     { UDM_GETPOS, sent},
121     { UDM_SETPOS, sent|lparam, 0, MAKELONG(-1,0)},
122     { UDM_GETPOS, sent},
123     { UDM_SETPOS, sent|lparam, 0, 100},
124     { UDM_GETPOS, sent},
125     { UDM_SETPOS, sent|lparam, 0, 101},
126     { UDM_GETPOS, sent},
127     { 0 }
128 };
129
130 static const struct message test_updown_pos32_seq[] = {
131     { UDM_SETRANGE32, sent|lparam, 0, 1000 },
132     { UDM_GETRANGE32, sent}, /* Cannot check wparam and lparam as they are ptrs */
133     { UDM_SETPOS32, sent|lparam, 0, 500 },
134     { UDM_GETPOS32, sent},
135     { UDM_SETPOS32, sent|lparam, 0, 0 },
136     { UDM_GETPOS32, sent},
137     { UDM_SETPOS32, sent|lparam, 0, -1 },
138     { UDM_GETPOS32, sent},
139     { UDM_SETPOS32, sent|lparam, 0, 1000 },
140     { UDM_GETPOS32, sent},
141     { UDM_SETPOS32, sent|lparam, 0, 1001 },
142     { UDM_GETPOS32, sent},
143     { 0 }
144 };
145
146 static const struct message test_updown_buddy_seq[] = {
147     { UDM_GETBUDDY, sent },
148     { UDM_SETBUDDY, sent },
149     { WM_STYLECHANGING, sent|defwinproc },
150     { WM_STYLECHANGED, sent|defwinproc },
151     { WM_STYLECHANGING, sent|defwinproc },
152     { WM_STYLECHANGED, sent|defwinproc },
153     { WM_WINDOWPOSCHANGING, sent|defwinproc },
154     { WM_NCCALCSIZE, sent|wparam|optional|defwinproc, 1 },
155     { WM_WINDOWPOSCHANGED, sent|defwinproc },
156     { WM_MOVE, sent|defwinproc },
157     { UDM_GETBUDDY, sent },
158     { 0 }
159 };
160
161 static const struct message test_updown_base_seq[] = {
162     { UDM_SETBASE, sent|wparam, 10 },
163     { UDM_GETBASE, sent },
164     { UDM_SETBASE, sent|wparam, 80 },
165     { UDM_GETBASE, sent },
166     { UDM_SETBASE, sent|wparam, 16 },
167     { UDM_GETBASE, sent },
168     { UDM_SETBASE, sent|wparam, 80 },
169     { UDM_GETBASE, sent },
170     { UDM_SETBASE, sent|wparam, 10 },
171     { UDM_GETBASE, sent },
172     { 0 }
173 };
174
175 static const struct message test_updown_unicode_seq[] = {
176     { UDM_SETUNICODEFORMAT, sent|wparam, 0 },
177     { UDM_GETUNICODEFORMAT, sent },
178     { UDM_SETUNICODEFORMAT, sent|wparam, 1 },
179     { UDM_GETUNICODEFORMAT, sent },
180     { UDM_SETUNICODEFORMAT, sent|wparam, 0 },
181     { UDM_GETUNICODEFORMAT, sent },
182     { 0 }
183 };
184
185 static const struct message test_updown_destroy_seq[] = {
186     { WM_SHOWWINDOW, sent|wparam|lparam, 0, 0 },
187     { WM_WINDOWPOSCHANGING, sent},
188     { WM_WINDOWPOSCHANGED, sent},
189     { WM_DESTROY, sent},
190     { WM_NCDESTROY, sent},
191     { 0 }
192 };
193
194 static LRESULT WINAPI parent_wnd_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
195 {
196     static LONG defwndproc_counter = 0;
197     LRESULT ret;
198     struct message msg;
199
200     /* log system messages, except for painting */
201     if (message < WM_USER &&
202         message != WM_PAINT &&
203         message != WM_ERASEBKGND &&
204         message != WM_NCPAINT &&
205         message != WM_NCHITTEST &&
206         message != WM_GETTEXT &&
207         message != WM_GETICON &&
208         message != WM_DEVICECHANGE)
209     {
210         trace("parent: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
211
212         msg.message = message;
213         msg.flags = sent|wparam|lparam;
214         if (defwndproc_counter) msg.flags |= defwinproc;
215         msg.wParam = wParam;
216         msg.lParam = lParam;
217         add_message(sequences, PARENT_SEQ_INDEX, &msg);
218     }
219
220     defwndproc_counter++;
221     ret = DefWindowProcA(hwnd, message, wParam, lParam);
222     defwndproc_counter--;
223
224     return ret;
225 }
226
227 static BOOL register_parent_wnd_class(void)
228 {
229     WNDCLASSA cls;
230
231     cls.style = 0;
232     cls.lpfnWndProc = parent_wnd_proc;
233     cls.cbClsExtra = 0;
234     cls.cbWndExtra = 0;
235     cls.hInstance = GetModuleHandleA(NULL);
236     cls.hIcon = 0;
237     cls.hCursor = LoadCursorA(0, IDC_ARROW);
238     cls.hbrBackground = GetStockObject(WHITE_BRUSH);
239     cls.lpszMenuName = NULL;
240     cls.lpszClassName = "Up-Down test parent class";
241     return RegisterClassA(&cls);
242 }
243
244 static HWND create_parent_window(void)
245 {
246     if (!register_parent_wnd_class())
247         return NULL;
248
249     return CreateWindowEx(0, "Up-Down test parent class",
250                           "Up-Down test parent window",
251                           WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX |
252                           WS_MAXIMIZEBOX | WS_VISIBLE,
253                           0, 0, 100, 100,
254                           GetDesktopWindow(), NULL, GetModuleHandleA(NULL), NULL);
255 }
256
257 struct subclass_info
258 {
259     WNDPROC oldproc;
260 };
261
262 static LRESULT WINAPI edit_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
263 {
264     struct subclass_info *info = (struct subclass_info *)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
265     static LONG defwndproc_counter = 0;
266     LRESULT ret;
267     struct message msg;
268
269     trace("edit: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
270
271     msg.message = message;
272     msg.flags = sent|wparam|lparam;
273     if (defwndproc_counter) msg.flags |= defwinproc;
274     msg.wParam = wParam;
275     msg.lParam = lParam;
276     add_message(sequences, EDIT_SEQ_INDEX, &msg);
277
278     defwndproc_counter++;
279     ret = CallWindowProcA(info->oldproc, hwnd, message, wParam, lParam);
280     defwndproc_counter--;
281     return ret;
282 }
283
284 static HWND create_edit_control(void)
285 {
286     struct subclass_info *info;
287     RECT rect;
288
289     info = HeapAlloc(GetProcessHeap(), 0, sizeof(struct subclass_info));
290     if (!info)
291         return NULL;
292
293     GetClientRect(parent_wnd, &rect);
294     edit = CreateWindowExA(0, "EDIT", NULL, WS_CHILD | WS_BORDER | WS_VISIBLE,
295                            0, 0, rect.right, rect.bottom,
296                            parent_wnd, NULL, GetModuleHandleA(NULL), NULL);
297     if (!edit)
298     {
299         HeapFree(GetProcessHeap(), 0, info);
300         return NULL;
301     }
302
303     info->oldproc = (WNDPROC)SetWindowLongPtrA(edit, GWLP_WNDPROC,
304                                             (LONG_PTR)edit_subclass_proc);
305     SetWindowLongPtrA(edit, GWLP_USERDATA, (LONG_PTR)info);
306
307     return edit;
308 }
309
310 static LRESULT WINAPI updown_subclass_proc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
311 {
312     struct subclass_info *info = (struct subclass_info *)GetWindowLongPtrA(hwnd, GWLP_USERDATA);
313     static LONG defwndproc_counter = 0;
314     LRESULT ret;
315     struct message msg;
316
317     trace("updown: %p, %04x, %08lx, %08lx\n", hwnd, message, wParam, lParam);
318
319     msg.message = message;
320     msg.flags = sent|wparam|lparam;
321     if (defwndproc_counter) msg.flags |= defwinproc;
322     msg.wParam = wParam;
323     msg.lParam = lParam;
324     add_message(sequences, UPDOWN_SEQ_INDEX, &msg);
325
326     defwndproc_counter++;
327     ret = CallWindowProcA(info->oldproc, hwnd, message, wParam, lParam);
328     defwndproc_counter--;
329
330     return ret;
331 }
332
333 static HWND create_updown_control(void)
334 {
335     struct subclass_info *info;
336     HWND updown;
337     RECT rect;
338
339     info = HeapAlloc(GetProcessHeap(), 0, sizeof(struct subclass_info));
340     if (!info)
341         return NULL;
342
343     GetClientRect(parent_wnd, &rect);
344     updown = CreateUpDownControl(WS_CHILD | WS_BORDER | WS_VISIBLE | UDS_ALIGNRIGHT,
345                                  0, 0, rect.right, rect.bottom, parent_wnd, 1, GetModuleHandleA(NULL), edit,
346                                  100, 0, 50);
347     if (!updown)
348     {
349         HeapFree(GetProcessHeap(), 0, info);
350         return NULL;
351     }
352
353     info->oldproc = (WNDPROC)SetWindowLongPtrA(updown, GWLP_WNDPROC,
354                                             (LONG_PTR)updown_subclass_proc);
355     SetWindowLongPtrA(updown, GWLP_USERDATA, (LONG_PTR)info);
356
357     return updown;
358 }
359
360 static void test_updown_pos(void)
361 {
362     int r;
363
364     flush_sequences(sequences, NUM_MSG_SEQUENCES);
365
366     /* Set Range from 0 to 100 */
367     SendMessage(updown, UDM_SETRANGE, 0 , MAKELONG(100,0) );
368     r = SendMessage(updown, UDM_GETRANGE, 0,0);
369     expect(100,LOWORD(r));
370     expect(0,HIWORD(r));
371
372     /* Set the position to 5, return is not checked as it was set before func call */
373     SendMessage(updown, UDM_SETPOS, 0 , MAKELONG(5,0) );
374     /* Since UDM_SETBUDDYINT was not set at creation HIWORD(r) will always be 1 as a return from UDM_GETPOS */
375     /* Get the position, which should be 5 */
376     r = SendMessage(updown, UDM_GETPOS, 0 , 0 );
377     expect(5,LOWORD(r));
378     expect(1,HIWORD(r));
379
380     /* Set the position to 0, return should be 5 */
381     r = SendMessage(updown, UDM_SETPOS, 0 , MAKELONG(0,0) );
382     expect(5,r);
383     /* Get the position, which should be 0 */
384     r = SendMessage(updown, UDM_GETPOS, 0 , 0 );
385     expect(0,LOWORD(r));
386     expect(1,HIWORD(r));
387
388     /* Set the position to -1, return should be 0 */
389     r = SendMessage(updown, UDM_SETPOS, 0 , MAKELONG(-1,0) );
390     expect(0,r);
391     /* Get the position, which should be 0 */
392     r = SendMessage(updown, UDM_GETPOS, 0 , 0 );
393     expect(0,LOWORD(r));
394     expect(1,HIWORD(r));
395
396     /* Set the position to 100, return should be 0 */
397     r = SendMessage(updown, UDM_SETPOS, 0 , MAKELONG(100,0) );
398     expect(0,r);
399     /* Get the position, which should be 100 */
400     r = SendMessage(updown, UDM_GETPOS, 0 , 0 );
401     expect(100,LOWORD(r));
402     expect(1,HIWORD(r));
403
404     /* Set the position to 101, return should be 100 */
405     r = SendMessage(updown, UDM_SETPOS, 0 , MAKELONG(101,0) );
406     expect(100,r);
407     /* Get the position, which should be 100 */
408     r = SendMessage(updown, UDM_GETPOS, 0 , 0 );
409     expect(100,LOWORD(r));
410     expect(1,HIWORD(r));
411
412     ok_sequence(sequences, UPDOWN_SEQ_INDEX, test_updown_pos_seq , "test updown pos", FALSE);
413 }
414
415 static void test_updown_pos32(void)
416 {
417     int r;
418     int low, high;
419
420     flush_sequences(sequences, NUM_MSG_SEQUENCES);
421
422     /* Set the position to 0 to 1000 */
423     SendMessage(updown, UDM_SETRANGE32, 0 , 1000 );
424
425     r = SendMessage(updown, UDM_GETRANGE32, (WPARAM) &low , (LPARAM) &high );
426     expect(0,low);
427     expect(1000,high);
428
429     /* Set position to 500 */
430     r = SendMessage(updown, UDM_SETPOS32, 0 , 500 );
431     if (!r)
432     {
433         win_skip("UDM_SETPOS32 and UDM_GETPOS32 need 5.80\n");
434         return;
435     }
436     expect(100,r); /* As set by test_updown_pos() */
437
438     /* Since UDM_SETBUDDYINT was not set at creation bRet will always be true as a return from UDM_GETPOS32 */
439
440     r = SendMessage(updown, UDM_GETPOS32, 0 , (LPARAM) &high );
441     expect(500,r);
442     expect(1,high);
443
444     /* Set position to 0, return should be 500 */
445     r = SendMessage(updown, UDM_SETPOS32, 0 , 0 );
446     expect(500,r);
447     r = SendMessage(updown, UDM_GETPOS32, 0 , (LPARAM) &high );
448     expect(0,r);
449     expect(1,high);
450
451     /* Set position to -1 which should become 0, return should be 0 */
452     r = SendMessage(updown, UDM_SETPOS32, 0 , -1 );
453     expect(0,r);
454     r = SendMessage(updown, UDM_GETPOS32, 0 , (LPARAM) &high );
455     expect(0,r);
456     expect(1,high);
457
458     /* Set position to 1000, return should be 0 */
459     r = SendMessage(updown, UDM_SETPOS32, 0 , 1000 );
460     expect(0,r);
461     r = SendMessage(updown, UDM_GETPOS32, 0 , (LPARAM) &high );
462     expect(1000,r);
463     expect(1,high);
464
465     /* Set position to 1001 which should become 1000, return should be 1000 */
466     r = SendMessage(updown, UDM_SETPOS32, 0 , 1001 );
467     expect(1000,r);
468     r = SendMessage(updown, UDM_GETPOS32, 0 , (LPARAM) &high );
469     expect(1000,r);
470     expect(1,high);
471
472     ok_sequence(sequences, UPDOWN_SEQ_INDEX, test_updown_pos32_seq, "test updown pos32", FALSE);
473 }
474
475 static void test_updown_buddy(void)
476 {
477     HWND buddyReturn;
478
479     flush_sequences(sequences, NUM_MSG_SEQUENCES);
480
481     buddyReturn = (HWND)SendMessage(updown, UDM_GETBUDDY, 0 , 0 );
482     ok(buddyReturn == edit, "Expected edit handle\n");
483
484     buddyReturn = (HWND)SendMessage(updown, UDM_SETBUDDY, (WPARAM) edit, 0);
485     ok(buddyReturn == edit, "Expected edit handle\n");
486
487     buddyReturn = (HWND)SendMessage(updown, UDM_GETBUDDY, 0 , 0 );
488     ok(buddyReturn == edit, "Expected edit handle\n");
489
490     ok_sequence(sequences, UPDOWN_SEQ_INDEX, test_updown_buddy_seq, "test updown buddy", TRUE);
491     ok_sequence(sequences, EDIT_SEQ_INDEX, add_updown_with_edit_seq, "test updown buddy_edit", FALSE);
492 }
493
494 static void test_updown_base(void)
495 {
496     int r;
497
498     flush_sequences(sequences, NUM_MSG_SEQUENCES);
499
500     SendMessage(updown, UDM_SETBASE, 10 , 0);
501     r = SendMessage(updown, UDM_GETBASE, 0 , 0);
502     expect(10,r);
503
504     /* Set base to an invalid value, should return 0 and stay at 10 */
505     r = SendMessage(updown, UDM_SETBASE, 80 , 0);
506     expect(0,r);
507     r = SendMessage(updown, UDM_GETBASE, 0 , 0);
508     expect(10,r);
509
510     /* Set base to 16 now, should get 16 as the return */
511     r = SendMessage(updown, UDM_SETBASE, 16 , 0);
512     expect(10,r);
513     r = SendMessage(updown, UDM_GETBASE, 0 , 0);
514     expect(16,r);
515
516     /* Set base to an invalid value, should return 0 and stay at 16 */
517     r = SendMessage(updown, UDM_SETBASE, 80 , 0);
518     expect(0,r);
519     r = SendMessage(updown, UDM_GETBASE, 0 , 0);
520     expect(16,r);
521
522     /* Set base back to 10, return should be 16 */
523     r = SendMessage(updown, UDM_SETBASE, 10 , 0);
524     expect(16,r);
525     r = SendMessage(updown, UDM_GETBASE, 0 , 0);
526     expect(10,r);
527
528     ok_sequence(sequences, UPDOWN_SEQ_INDEX, test_updown_base_seq, "test updown base", FALSE);
529 }
530
531 static void test_updown_unicode(void)
532 {
533     int r;
534
535     flush_sequences(sequences, NUM_MSG_SEQUENCES);
536
537     /* Set it to ANSI, don't check return as we don't know previous state */
538     SendMessage(updown, UDM_SETUNICODEFORMAT, 0 , 0);
539     r = SendMessage(updown, UDM_GETUNICODEFORMAT, 0 , 0);
540     expect(0,r);
541
542     /* Now set it to Unicode format */
543     r = SendMessage(updown, UDM_SETUNICODEFORMAT, 1 , 0);
544     expect(0,r);
545     r = SendMessage(updown, UDM_GETUNICODEFORMAT, 0 , 0);
546     expect(1,r);
547
548     /* And now set it back to ANSI */
549     r = SendMessage(updown, UDM_SETUNICODEFORMAT, 0 , 0);
550     expect(1,r);
551     r = SendMessage(updown, UDM_GETUNICODEFORMAT, 0 , 0);
552     expect(0,r);
553
554     ok_sequence(sequences, UPDOWN_SEQ_INDEX, test_updown_unicode_seq, "test updown unicode", FALSE);
555 }
556
557
558 static void test_create_updown_control(void)
559 {
560     CHAR text[MAX_PATH];
561
562     parent_wnd = create_parent_window();
563     ok(parent_wnd != NULL, "Failed to create parent window!\n");
564     ok_sequence(sequences, PARENT_SEQ_INDEX, create_parent_wnd_seq, "create parent window", TRUE);
565
566     flush_sequences(sequences, NUM_MSG_SEQUENCES);
567
568     edit = create_edit_control();
569     ok(edit != NULL, "Failed to create edit control\n");
570     ok_sequence(sequences, PARENT_SEQ_INDEX, add_edit_to_parent_seq, "add edit control to parent", FALSE);
571
572     flush_sequences(sequences, NUM_MSG_SEQUENCES);
573
574     updown = create_updown_control();
575     ok(updown != NULL, "Failed to create updown control\n");
576     ok_sequence(sequences, PARENT_SEQ_INDEX, add_updown_to_parent_seq, "add updown control to parent", TRUE);
577     ok_sequence(sequences, EDIT_SEQ_INDEX, add_updown_with_edit_seq, "add updown control with edit", FALSE);
578
579     flush_sequences(sequences, NUM_MSG_SEQUENCES);
580
581     GetWindowTextA(edit, text, MAX_PATH);
582     ok(lstrlenA(text) == 0, "Expected empty string\n");
583     ok_sequence(sequences, EDIT_SEQ_INDEX, get_edit_text_seq, "get edit text", FALSE);
584
585     flush_sequences(sequences, NUM_MSG_SEQUENCES);
586
587     test_updown_pos();
588     test_updown_pos32();
589     test_updown_buddy();
590     test_updown_base();
591     test_updown_unicode();
592 }
593
594 START_TEST(updown)
595 {
596     InitCommonControls();
597     init_msg_sequences(sequences, NUM_MSG_SEQUENCES);
598
599     test_create_updown_control();
600 }