mmdevapi: Fix small capture bugs.
[wine/multimedia.git] / dlls / shell32 / tests / autocomplete.c
blobd4a84aeeebab5c469e9b5fe274bda182b5b83261
1 /*
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
21 #define COBJMACROS
23 #include <wine/test.h>
24 #include <stdarg.h>
26 #include "windows.h"
27 #include "shobjidl.h"
28 #include "shlguid.h"
29 #include "initguid.h"
30 #include "shldisp.h"
32 static HWND hMainWnd, hEdit;
33 static HINSTANCE hinst;
34 static int killfocus_count;
36 static IAutoComplete *test_init(void)
38 HRESULT r;
39 IAutoComplete* ac;
40 IUnknown *acSource;
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");
48 return NULL;
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");
58 return NULL;
60 ok(r == S_OK, "no IID_IACList (0x%08x)\n", r);
62 if (0)
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);
73 return ac;
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. */
80 SetFocus(hEdit);
81 killfocus_count = 0;
82 SetFocus(0);
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)
88 switch(msg) {
89 case WM_CREATE:
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");
94 break;
95 case WM_COMMAND:
96 if(HIWORD(wParam) == EN_KILLFOCUS)
97 killfocus_count++;
98 break;
100 return DefWindowProcA(hWnd, msg, wParam, lParam);
103 static void createMainWnd(void)
105 WNDCLASSA wc;
106 wc.style = CS_HREDRAW | CS_VREDRAW;
107 wc.cbClsExtra = 0;
108 wc.cbWndExtra = 0;
109 wc.hInstance = GetModuleHandleA(NULL);
110 wc.hIcon = 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;
116 RegisterClassA(&wc);
118 hMainWnd = CreateWindowExA(0, "MyTestWnd", "Blah", WS_OVERLAPPEDWINDOW,
119 CW_USEDEFAULT, CW_USEDEFAULT, 130, 105, NULL, NULL, GetModuleHandleA(NULL), 0);
122 START_TEST(autocomplete)
124 HRESULT r;
125 MSG msg;
126 IAutoComplete* ac;
128 r = CoInitialize(NULL);
129 ok(r == S_OK, "CoInitialize failed (0x%08x). Tests aborted.\n", r);
130 if (r != S_OK)
131 return;
133 createMainWnd();
134 ok(hMainWnd != NULL, "Failed to create parent window. Tests aborted.\n");
135 if (!hMainWnd) return;
137 ac = test_init();
138 if (!ac)
139 goto cleanup;
140 test_killfocus();
142 PostQuitMessage(0);
143 while(GetMessageA(&msg,0,0,0)) {
144 TranslateMessage(&msg);
145 DispatchMessageA(&msg);
148 IAutoComplete_Release(ac);
150 cleanup:
151 DestroyWindow(hEdit);
152 DestroyWindow(hMainWnd);
154 CoUninitialize();