2 * Tests for autocomplete
4 * Copyright 2008 Jan de Mooij
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.
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.
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
23 #include <wine/test.h>
32 static HWND hMainWnd
, hEdit
;
33 static HINSTANCE hinst
;
34 static int killfocus_count
;
36 static IAutoComplete
*test_init(void)
42 /* AutoComplete instance */
43 r
= CoCreateInstance(&CLSID_AutoComplete
, NULL
, CLSCTX_INPROC_SERVER
,
44 &IID_IAutoComplete
, (LPVOID
*)&ac
);
45 if (r
== REGDB_E_CLASSNOTREG
)
47 win_skip("CLSID_AutoComplete is not registered\n");
50 ok(r
== S_OK
, "no IID_IAutoComplete (0x%08x)\n", r
);
52 /* AutoComplete source */
53 r
= CoCreateInstance(&CLSID_ACLMulti
, NULL
, CLSCTX_INPROC_SERVER
,
54 &IID_IACList
, (LPVOID
*)&acSource
);
55 if (r
== REGDB_E_CLASSNOTREG
)
57 win_skip("CLSID_ACLMulti is not registered\n");
60 ok(r
== S_OK
, "no IID_IACList (0x%08x)\n", r
);
64 /* crashes on native */
65 r
= IAutoComplete_Init(ac
, hEdit
, NULL
, NULL
, NULL
);
67 /* bind to edit control */
68 r
= IAutoComplete_Init(ac
, hEdit
, acSource
, NULL
, NULL
);
69 ok(r
== S_OK
, "Init failed (0x%08x)\n", r
);
71 IUnknown_Release(acSource
);
76 static void test_killfocus(void)
78 /* Test if WM_KILLFOCUS messages are handled properly by checking if
79 * the parent receives an EN_KILLFOCUS message. */
83 ok(killfocus_count
== 1, "Expected one EN_KILLFOCUS message, got: %d\n", killfocus_count
);
86 static LRESULT CALLBACK
MyWndProc(HWND hWnd
, UINT msg
, WPARAM wParam
, LPARAM lParam
)
90 /* create edit control */
91 hEdit
= CreateWindowEx(0, "EDIT", "Some text", 0, 10, 10, 300, 300,
92 hWnd
, NULL
, hinst
, NULL
);
93 ok(hEdit
!= NULL
, "Can't create edit control\n");
96 if(HIWORD(wParam
) == EN_KILLFOCUS
)
100 return DefWindowProcA(hWnd
, msg
, wParam
, lParam
);
103 static void createMainWnd(void)
106 wc
.style
= CS_HREDRAW
| CS_VREDRAW
;
109 wc
.hInstance
= GetModuleHandleA(NULL
);
111 wc
.hCursor
= LoadCursorA(NULL
, IDC_IBEAM
);
112 wc
.hbrBackground
= GetSysColorBrush(COLOR_WINDOW
);
113 wc
.lpszMenuName
= NULL
;
114 wc
.lpszClassName
= "MyTestWnd";
115 wc
.lpfnWndProc
= MyWndProc
;
118 hMainWnd
= CreateWindowExA(0, "MyTestWnd", "Blah", WS_OVERLAPPEDWINDOW
,
119 CW_USEDEFAULT
, CW_USEDEFAULT
, 130, 105, NULL
, NULL
, GetModuleHandleA(NULL
), 0);
122 START_TEST(autocomplete
)
128 r
= CoInitialize(NULL
);
129 ok(r
== S_OK
, "CoInitialize failed (0x%08x). Tests aborted.\n", r
);
134 ok(hMainWnd
!= NULL
, "Failed to create parent window. Tests aborted.\n");
135 if (!hMainWnd
) return;
143 while(GetMessageA(&msg
,0,0,0)) {
144 TranslateMessage(&msg
);
145 DispatchMessageA(&msg
);
148 IAutoComplete_Release(ac
);
151 DestroyWindow(hEdit
);
152 DestroyWindow(hMainWnd
);