1 /* Unit test suite for various shell Association objects
3 * Copyright 2012 Detlef Riekenberg
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
28 #include "wine/heap.h"
29 #include "wine/test.h"
32 static void test_IQueryAssociations_QueryInterface(void)
34 IQueryAssociations
*qa
;
35 IQueryAssociations
*qa2
;
39 hr
= CoCreateInstance(&CLSID_QueryAssociations
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IQueryAssociations
, (void*)&qa
);
40 ok(hr
== S_OK
, "got 0x%08x\n", hr
);
42 hr
= IQueryAssociations_QueryInterface(qa
, &IID_IQueryAssociations
, (void**)&qa2
);
43 ok(hr
== S_OK
, "QueryInterface (IQueryAssociations) returned 0x%x\n", hr
);
45 IQueryAssociations_Release(qa2
);
48 hr
= IQueryAssociations_QueryInterface(qa
, &IID_IUnknown
, (void**)&unk
);
49 ok(hr
== S_OK
, "QueryInterface (IUnknown) returned 0x%x\n", hr
);
51 IUnknown_Release(unk
);
54 hr
= IQueryAssociations_QueryInterface(qa
, &IID_IUnknown
, NULL
);
55 ok(hr
== E_POINTER
, "got 0x%x (expected E_POINTER)\n", hr
);
57 IQueryAssociations_Release(qa
);
61 static void test_IApplicationAssociationRegistration_QueryInterface(IApplicationAssociationRegistration
*appreg
)
63 IApplicationAssociationRegistration
*appreg2
;
67 hr
= IApplicationAssociationRegistration_QueryInterface(appreg
, &IID_IApplicationAssociationRegistration
,
69 ok(hr
== S_OK
, "QueryInterface (IApplicationAssociationRegistration) returned 0x%x\n", hr
);
71 IApplicationAssociationRegistration_Release(appreg2
);
74 hr
= IApplicationAssociationRegistration_QueryInterface(appreg
, &IID_IUnknown
, (void**)&unk
);
75 ok(hr
== S_OK
, "QueryInterface (IUnknown) returned 0x%x\n", hr
);
77 IUnknown_Release(unk
);
80 hr
= IApplicationAssociationRegistration_QueryInterface(appreg
, &IID_IUnknown
, NULL
);
81 ok(hr
== E_POINTER
, "got 0x%x (expected E_POINTER)\n", hr
);
84 struct assoc_getstring_test
94 static const WCHAR httpW
[] = {'h','t','t','p',0};
95 static const WCHAR badW
[] = {'b','a','d','b','a','d',0};
97 static struct assoc_getstring_test getstring_tests
[] =
99 { httpW
, 0, ASSOCSTR_EXECUTABLE
, 2, 0x8007007a /* E_NOT_SUFFICIENT_BUFFER */, S_OK
},
100 { httpW
, ASSOCF_NOTRUNCATE
, ASSOCSTR_EXECUTABLE
, 2, E_POINTER
},
104 static void getstring_test(LPCWSTR assocName
, HKEY progIdKey
, ASSOCSTR str
, LPCWSTR expected_string
, int line
)
106 IQueryAssociations
*assoc
;
108 WCHAR
*buffer
= NULL
;
111 hr
= CoCreateInstance(&CLSID_QueryAssociations
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IQueryAssociations
, (void*)&assoc
);
112 ok_(__FILE__
, line
)(hr
== S_OK
, "failed to create IQueryAssociations, 0x%x\n", hr
);
113 hr
= IQueryAssociations_Init(assoc
, ASSOCF_NONE
, assocName
, progIdKey
, NULL
);
114 ok_(__FILE__
, line
)(hr
== S_OK
, "IQueryAssociations::Init failed, 0x%x\n", hr
);
116 hr
= IQueryAssociations_GetString(assoc
, ASSOCF_NONE
, str
, NULL
, NULL
, &len
);
117 if (expected_string
) {
118 ok_(__FILE__
, line
)(hr
== S_FALSE
, "GetString returned 0x%x, expected S_FALSE\n", hr
);
120 /* don't try to allocate memory using uninitialized len */
121 IQueryAssociations_Release(assoc
);
125 buffer
= heap_alloc(len
* sizeof(WCHAR
));
126 ok_(__FILE__
, line
)(buffer
!= NULL
, "out of memory\n");
127 hr
= IQueryAssociations_GetString(assoc
, 0, str
, NULL
, buffer
, &len
);
128 ok_(__FILE__
, line
)(hr
== S_OK
, "GetString returned 0x%x, expected S_OK\n", hr
);
130 ok_(__FILE__
, line
)(lstrcmpW(buffer
, expected_string
) == 0, "GetString returned %s, expected %s\n",
131 wine_dbgstr_w(buffer
), wine_dbgstr_w(expected_string
));
133 ok_(__FILE__
, line
)(FAILED(hr
), "GetString returned 0x%x, expected failure\n", hr
);
136 IQueryAssociations_Release(assoc
);
140 static void test_IQueryAssociations_GetString(void)
142 static WCHAR test_extensionW
[] = {'.','t','e','s','t',0};
143 static WCHAR test_progidW
[] = {'t','e','s','t','f','i','l','e',0};
144 static WCHAR DefaultIconW
[] = {'D','e','f','a','u','l','t','I','c','o','n',0};
145 /* folder.ico, why not */
146 static WCHAR test_iconW
[] = {'s','h','e','l','l','3','2','.','d','l','l',',','1',0};
147 HKEY test_extension_key
;
148 HKEY test_progid_key
;
149 HKEY test_defaulticon_key
;
152 struct assoc_getstring_test
*ptr
= getstring_tests
;
153 IQueryAssociations
*assoc
;
158 r
= RegCreateKeyExW(HKEY_CLASSES_ROOT
, test_extensionW
, 0, NULL
, 0, KEY_ALL_ACCESS
, NULL
, &test_extension_key
, NULL
);
159 if (r
== ERROR_ACCESS_DENIED
)
161 win_skip("Not enough permissions to create a test key.\n");
165 ok(r
== ERROR_SUCCESS
, "RegCreateKeyExW(HKCR, \".test\") failed: 0x%lx\n", r
);
166 r
= RegSetValueExW(test_extension_key
, NULL
, 0, REG_SZ
, (PBYTE
)test_progidW
, sizeof(test_progidW
));
167 ok(r
== ERROR_SUCCESS
, "RegSetValueExW(HKCR\\.test, NULL, \"testfile\") failed: 0x%lx\n", r
);
169 /* adding progid key with no information should fail to return information */
170 r
= RegCreateKeyExW(HKEY_CLASSES_ROOT
, test_progidW
, 0, NULL
, 0, KEY_ALL_ACCESS
, NULL
, &test_progid_key
, NULL
);
171 ok(r
== ERROR_SUCCESS
, "RegCreateKeyExW(HKCR, \"testfile\") failed: 0x%lx\n", r
);
172 getstring_test(test_extensionW
, NULL
, ASSOCSTR_DEFAULTICON
, NULL
, __LINE__
);
173 getstring_test(test_progidW
, NULL
, ASSOCSTR_DEFAULTICON
, NULL
, __LINE__
);
174 getstring_test(NULL
, test_progid_key
, ASSOCSTR_DEFAULTICON
, NULL
, __LINE__
);
176 /* adding information to the progid should return that information */
177 r
= RegCreateKeyExW(test_progid_key
, DefaultIconW
, 0, NULL
, 0, KEY_ALL_ACCESS
, NULL
, &test_defaulticon_key
, NULL
);
178 ok(r
== ERROR_SUCCESS
, "RegCreateKeyExW(HKCR\\testfile\\DefaultIcon) failed: 0x%lx\n", r
);
179 r
= RegSetValueExW(test_defaulticon_key
, NULL
, 0, REG_SZ
, (PBYTE
)test_iconW
, sizeof(test_iconW
));
180 ok(r
== ERROR_SUCCESS
, "RegSetValueExW(HKCR\\testfile\\DefaultIcon, NULL, \"folder.ico\") failed: 0x%lx\n", r
);
181 getstring_test(test_extensionW
, NULL
, ASSOCSTR_DEFAULTICON
, test_iconW
, __LINE__
);
182 getstring_test(test_progidW
, NULL
, ASSOCSTR_DEFAULTICON
, test_iconW
, __LINE__
);
183 getstring_test(NULL
, test_progid_key
, ASSOCSTR_DEFAULTICON
, test_iconW
, __LINE__
);
185 RegDeleteKeyW(test_progid_key
, DefaultIconW
);
186 RegDeleteKeyW(HKEY_CLASSES_ROOT
, test_progidW
);
187 RegDeleteKeyW(HKEY_CLASSES_ROOT
, test_extensionW
);
189 hr
= CoCreateInstance(&CLSID_QueryAssociations
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IQueryAssociations
, (void*)&assoc
);
190 ok(hr
== S_OK
, "failed to create object, 0x%x\n", hr
);
192 hr
= IQueryAssociations_Init(assoc
, ASSOCF_NONE
, httpW
, NULL
, NULL
);
193 ok(hr
== S_OK
, "Init failed, 0x%x\n", hr
);
196 hr
= IQueryAssociations_GetString(assoc
, ASSOCF_NONE
, ASSOCSTR_EXECUTABLE
, NULL
, NULL
, &len
);
197 ok(hr
== S_FALSE
, "got 0x%08x\n", hr
);
198 ok(len
> 0, "got wrong needed length, %d\n", len
);
202 WCHAR buffW
[MAX_PATH
];
205 hr
= IQueryAssociations_Init(assoc
, ASSOCF_NONE
, ptr
->key
, NULL
, NULL
);
206 ok(hr
== S_OK
, "%d: Init failed, 0x%x\n", i
, hr
);
209 buffW
[0] = ptr
->flags
& ASSOCF_NOTRUNCATE
? 0x1 : 0;
210 hr
= IQueryAssociations_GetString(assoc
, ptr
->flags
, ptr
->str
, NULL
, buffW
, &len
);
212 ok(broken(hr
== ptr
->brokenhr
), "%d: GetString failed, 0x%08x\n", i
, hr
);
215 ok(hr
== ptr
->hr
, "%d: GetString failed, 0x%08x\n", i
, hr
);
216 ok(len
> ptr
->len
, "%d: got needed length %d\n", i
, len
);
219 /* even with ASSOCF_NOTRUNCATE it's null terminated */
220 if ((ptr
->flags
& ASSOCF_NOTRUNCATE
) && (ptr
->len
> 0))
221 ok(buffW
[0] == 0 || broken(buffW
[0] == 0x1) /* pre win7 */, "%d: got %x\n", i
, buffW
[0]);
223 if (!(ptr
->flags
& ASSOCF_NOTRUNCATE
) && ptr
->len
&& FAILED(ptr
->hr
))
224 ok(buffW
[0] != 0, "%d: got %x\n", i
, buffW
[0]);
230 IQueryAssociations_Release(assoc
);
233 static void test_IQueryAssociations_Init(void)
235 IQueryAssociations
*assoc
;
239 hr
= CoCreateInstance(&CLSID_QueryAssociations
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IQueryAssociations
, (void*)&assoc
);
240 ok(hr
== S_OK
, "failed to create object, 0x%x\n", hr
);
242 hr
= IQueryAssociations_Init(assoc
, ASSOCF_NONE
, NULL
, NULL
, NULL
);
243 ok(hr
== E_INVALIDARG
, "Init failed, 0x%08x\n", hr
);
245 hr
= IQueryAssociations_Init(assoc
, ASSOCF_NONE
, httpW
, NULL
, NULL
);
246 ok(hr
== S_OK
, "Init failed, 0x%08x\n", hr
);
248 hr
= IQueryAssociations_Init(assoc
, ASSOCF_NONE
, badW
, NULL
, NULL
);
249 ok(hr
== S_OK
|| broken(hr
== S_FALSE
) /* pre-vista */, "Init failed, 0x%08x\n", hr
);
252 hr
= IQueryAssociations_GetString(assoc
, ASSOCF_NONE
, ASSOCSTR_EXECUTABLE
, NULL
, NULL
, &len
);
253 ok(hr
== HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION
) || broken(hr
== E_FAIL
) /* pre-vista */, "got 0x%08x\n", hr
);
255 IQueryAssociations_Release(assoc
);
258 static void test_IApplicationAssociationRegistration_QueryCurrentDefault(IApplicationAssociationRegistration
*appreg
)
260 static const WCHAR emptyW
[] = {0};
261 static const WCHAR txtW
[] = {'.','t','x','t',0};
262 static const WCHAR spacetxtW
[] = {' ','.','t','x','t',0};
264 LPWSTR assocprog
= NULL
;
266 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, emptyW
, AT_URLPROTOCOL
, AL_EFFECTIVE
, &assocprog
);
267 ok(hr
== E_INVALIDARG
, "got 0x%x\n", hr
);
269 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, emptyW
, AT_FILEEXTENSION
, AL_EFFECTIVE
, &assocprog
);
270 ok(hr
== E_INVALIDARG
, "got 0x%x\n", hr
);
272 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, spacetxtW
, AT_FILEEXTENSION
, AL_EFFECTIVE
, &assocprog
);
273 ok(hr
== E_INVALIDARG
|| hr
== HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION
) /*Win8*/, "got 0x%x\n", hr
);
275 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, httpW
, AT_URLPROTOCOL
, AL_EFFECTIVE
, NULL
);
276 ok(hr
== E_INVALIDARG
, "got 0x%x\n", hr
);
278 /* AT_FILEEXTENSION must start with a period */
279 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, txtW
, AT_FILEEXTENSION
, AL_EFFECTIVE
, &assocprog
);
280 ok(hr
== S_OK
, "got 0x%x\n", hr
);
281 trace("%s\n", wine_dbgstr_w(assocprog
));
282 CoTaskMemFree(assocprog
);
284 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, emptyW
, AT_STARTMENUCLIENT
, AL_EFFECTIVE
, &assocprog
);
285 ok(hr
== HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION
), "got 0x%x\n", hr
);
287 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, emptyW
, AT_MIMETYPE
, AL_EFFECTIVE
, &assocprog
);
288 ok(hr
== HRESULT_FROM_WIN32(ERROR_NO_ASSOCIATION
), "got 0x%x\n", hr
);
290 hr
= IApplicationAssociationRegistration_QueryCurrentDefault(appreg
, httpW
, AT_URLPROTOCOL
, AL_EFFECTIVE
, &assocprog
);
291 todo_wine
ok(hr
== S_OK
, "got 0x%x\n", hr
);
292 trace("%s\n", wine_dbgstr_w(assocprog
));
294 CoTaskMemFree(assocprog
);
299 IQueryAssociations
*qa
;
300 IApplicationAssociationRegistration
*appreg
= NULL
;
305 /* this works since XP */
306 hr
= CoCreateInstance(&CLSID_QueryAssociations
, NULL
, CLSCTX_INPROC_SERVER
, &IID_IQueryAssociations
, (void*)&qa
);
309 test_IQueryAssociations_QueryInterface();
310 test_IQueryAssociations_GetString();
311 test_IQueryAssociations_Init();
313 IQueryAssociations_Release(qa
);
316 win_skip("IQueryAssociations not supported, 0x%x\n", hr
);
318 /* this works since Vista */
319 hr
= CoCreateInstance(&CLSID_ApplicationAssociationRegistration
, NULL
, CLSCTX_INPROC_SERVER
,
320 &IID_IApplicationAssociationRegistration
, (LPVOID
*)&appreg
);
323 test_IApplicationAssociationRegistration_QueryInterface(appreg
);
324 test_IApplicationAssociationRegistration_QueryCurrentDefault(appreg
);
326 IApplicationAssociationRegistration_Release(appreg
);
329 win_skip("IApplicationAssociationRegistration not supported: 0x%x\n", hr
);