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 void test_init(void) {
41 /* AutoComplete instance */
42 r = CoCreateInstance(&CLSID_AutoComplete, NULL, CLSCTX_INPROC_SERVER,
43 &IID_IAutoComplete, (LPVOID*)&ac);
44 ok(SUCCEEDED(r), "no IID_IAutoComplete (0x%08x)\n", r);
46 /* AutoComplete source */
47 r = CoCreateInstance(&CLSID_ACLMulti, NULL, CLSCTX_INPROC_SERVER,
48 &IID_IACList, (LPVOID*)&acSource);
49 ok(SUCCEEDED(r), "no IID_IACList (0x%08x)\n", r);
51 /* bind to edit control */
52 r = IAutoComplete_Init(ac, hEdit, acSource, NULL, NULL);
53 ok(SUCCEEDED(r), "Init failed (0x%08x)\n", r);
55 static void test_killfocus(void) {
56 /* Test if WM_KILLFOCUS messages are handled properly by checking if
57 * the parent receives an EN_KILLFOCUS message. */
61 ok(killfocus_count == 1, "Expected one EN_KILLFOCUS message, got: %d\n", killfocus_count);
63 static LRESULT CALLBACK MyWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) {
66 /* create edit control */
67 hEdit = CreateWindowEx(0, "EDIT", "Some text", 0, 10, 10, 300, 300,
68 hWnd, NULL, hinst, NULL);
69 ok(hEdit != NULL, "Can't create edit control\n");
72 if(HIWORD(wParam) == EN_KILLFOCUS)
76 return DefWindowProcA(hWnd, msg, wParam, lParam);
78 static void createMainWnd(void) {
80 wc.style = CS_HREDRAW | CS_VREDRAW;
83 wc.hInstance = GetModuleHandleA(NULL);
85 wc.hCursor = LoadCursorA(NULL, IDC_IBEAM);
86 wc.hbrBackground = GetSysColorBrush(COLOR_WINDOW);
87 wc.lpszMenuName = NULL;
88 wc.lpszClassName = "MyTestWnd";
89 wc.lpfnWndProc = MyWndProc;
92 hMainWnd = CreateWindowExA(0, "MyTestWnd", "Blah", WS_OVERLAPPEDWINDOW,
93 CW_USEDEFAULT, CW_USEDEFAULT, 130, 105, NULL, NULL, GetModuleHandleA(NULL), 0);
95 START_TEST(autocomplete) {
99 r = CoInitialize(NULL);
100 ok(SUCCEEDED(r), "CoInitialize failed (0x%08x). Tests aborted.\n", r);
106 if(!ok(hMainWnd != NULL, "Failed to create parent window. Tests aborted.\n"))
113 while(GetMessageA(&msg,0,0,0)) {
114 TranslateMessage(&msg);
115 DispatchMessageA(&msg);
118 DestroyWindow(hEdit);
119 DestroyWindow(hMainWnd);