shell32/tests: Fix broken check of the ok() macro return value.
[wine] / dlls / shell32 / tests / autocomplete.c
1 /*
2  * Tests for autocomplete
3  *
4  * Copyright 2008 Jan de Mooij
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #define COBJMACROS
22
23 #include <wine/test.h>
24 #include <stdarg.h>
25
26 #include "windows.h"
27 #include "shobjidl.h"
28 #include "shlguid.h"
29 #include "initguid.h"
30 #include "shldisp.h"
31
32 static HWND hMainWnd, hEdit;
33 static HINSTANCE hinst;
34 static int killfocus_count;
35
36 static IAutoComplete *test_init(void)
37 {
38     HRESULT r;
39     IAutoComplete* ac;
40     IUnknown *acSource;
41
42     /* AutoComplete instance */
43     r = CoCreateInstance(&CLSID_AutoComplete, NULL, CLSCTX_INPROC_SERVER,
44                          &IID_IAutoComplete, (LPVOID*)&ac);
45     if (r == REGDB_E_CLASSNOTREG)
46     {
47         win_skip("CLSID_AutoComplete is not registered\n");
48         return NULL;
49     }
50     ok(SUCCEEDED(r), "no IID_IAutoComplete (0x%08x)\n", r);
51
52     /* AutoComplete source */
53     r = CoCreateInstance(&CLSID_ACLMulti, NULL, CLSCTX_INPROC_SERVER,
54                         &IID_IACList, (LPVOID*)&acSource);
55     if (r == REGDB_E_CLASSNOTREG)
56     {
57         win_skip("CLSID_ACLMulti is not registered\n");
58         return NULL;
59     }
60     ok(SUCCEEDED(r), "no IID_IACList (0x%08x)\n", r);
61
62     /* bind to edit control */
63     r = IAutoComplete_Init(ac, hEdit, acSource, NULL, NULL);
64     ok(SUCCEEDED(r), "Init failed (0x%08x)\n", r);
65
66     IUnknown_Release(acSource);
67
68     return ac;
69 }
70
71 static void test_killfocus(void)
72 {
73     /* Test if WM_KILLFOCUS messages are handled properly by checking if
74      * the parent receives an EN_KILLFOCUS message. */
75     SetFocus(hEdit);
76     killfocus_count = 0;
77     SetFocus(0);
78     ok(killfocus_count == 1, "Expected one EN_KILLFOCUS message, got: %d\n", killfocus_count);
79 }
80
81 static LRESULT CALLBACK MyWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
82 {
83     switch(msg) {
84     case WM_CREATE:
85         /* create edit control */
86         hEdit = CreateWindowEx(0, "EDIT", "Some text", 0, 10, 10, 300, 300,
87                     hWnd, NULL, hinst, NULL);
88         ok(hEdit != NULL, "Can't create edit control\n");
89         break;
90     case WM_COMMAND:
91         if(HIWORD(wParam) == EN_KILLFOCUS)
92             killfocus_count++;
93         break;
94     }
95     return DefWindowProcA(hWnd, msg, wParam, lParam);
96 }
97
98 static void createMainWnd(void)
99 {
100     WNDCLASSA wc;
101     wc.style = CS_HREDRAW | CS_VREDRAW;
102     wc.cbClsExtra = 0;
103     wc.cbWndExtra = 0;
104     wc.hInstance = GetModuleHandleA(NULL);
105     wc.hIcon = NULL;
106     wc.hCursor = LoadCursorA(NULL, IDC_IBEAM);
107     wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW);
108     wc.lpszMenuName = NULL;
109     wc.lpszClassName = "MyTestWnd";
110     wc.lpfnWndProc = MyWndProc;
111     RegisterClassA(&wc);
112
113     hMainWnd = CreateWindowExA(0, "MyTestWnd", "Blah", WS_OVERLAPPEDWINDOW,
114       CW_USEDEFAULT, CW_USEDEFAULT, 130, 105, NULL, NULL, GetModuleHandleA(NULL), 0);
115 }
116
117 START_TEST(autocomplete)
118 {
119     HRESULT r;
120     MSG msg;
121     IAutoComplete* ac;
122
123     r = CoInitialize(NULL);
124     ok(SUCCEEDED(r), "CoInitialize failed (0x%08x). Tests aborted.\n", r);
125     if (FAILED(r))
126         return;
127
128     createMainWnd();
129     ok(hMainWnd != NULL, "Failed to create parent window. Tests aborted.\n");
130     if (!hMainWnd) return;
131
132     ac = test_init();
133     if (!ac)
134         goto cleanup;
135     test_killfocus();
136
137     PostQuitMessage(0);
138     while(GetMessageA(&msg,0,0,0)) {
139         TranslateMessage(&msg);
140         DispatchMessageA(&msg);
141     }
142
143     IAutoComplete_Release(ac);
144
145 cleanup:
146     DestroyWindow(hEdit);
147     DestroyWindow(hMainWnd);
148
149     CoUninitialize();
150 }