2 * Tests for MSI Source functions
4 * Copyright (C) 2006 James Hawkins
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 _WIN32_MSI 300
32 #include "wine/test.h"
34 static BOOL (WINAPI
*pConvertSidToStringSidA
)(PSID
, LPSTR
*);
35 static BOOLEAN (WINAPI
*pGetUserNameExA
)(EXTENDED_NAME_FORMAT
, LPSTR
, PULONG
);
36 static UINT (WINAPI
*pMsiSourceListAddMediaDiskA
)
37 (LPCSTR
, LPCSTR
, MSIINSTALLCONTEXT
, DWORD
, DWORD
, LPCSTR
, LPCSTR
);
38 static UINT (WINAPI
*pMsiSourceListAddSourceExA
)
39 (LPCSTR
, LPCSTR
, MSIINSTALLCONTEXT
, DWORD
, LPCSTR
, DWORD
);
40 static UINT (WINAPI
*pMsiSourceListEnumMediaDisksA
)
41 (LPCSTR
, LPCSTR
, MSIINSTALLCONTEXT
, DWORD
, DWORD
, LPDWORD
, LPSTR
,
42 LPDWORD
, LPSTR
, LPDWORD
);
43 static UINT (WINAPI
*pMsiSourceListEnumSourcesA
)
44 (LPCSTR
, LPCSTR
, MSIINSTALLCONTEXT
, DWORD
, DWORD
, LPSTR
, LPDWORD
);
45 static UINT (WINAPI
*pMsiSourceListGetInfoA
)
46 (LPCSTR
, LPCSTR
, MSIINSTALLCONTEXT
, DWORD
, LPCSTR
, LPSTR
, LPDWORD
);
47 static UINT (WINAPI
*pMsiSourceListSetInfoA
)
48 (LPCSTR
, LPCSTR
, MSIINSTALLCONTEXT
, DWORD
,LPCSTR
, LPCSTR
);
49 static UINT (WINAPI
*pMsiSourceListAddSourceA
)
50 (LPCSTR
, LPCSTR
, DWORD
, LPCSTR
);
52 static void init_functionpointers(void)
54 HMODULE hmsi
= GetModuleHandleA("msi.dll");
55 HMODULE hadvapi32
= GetModuleHandleA("advapi32.dll");
56 HMODULE hsecur32
= LoadLibraryA("secur32.dll");
58 #define GET_PROC(dll, func) \
59 p ## func = (void *)GetProcAddress(dll, #func); \
61 trace("GetProcAddress(%s) failed\n", #func);
63 GET_PROC(hmsi
, MsiSourceListAddMediaDiskA
)
64 GET_PROC(hmsi
, MsiSourceListAddSourceExA
)
65 GET_PROC(hmsi
, MsiSourceListEnumMediaDisksA
)
66 GET_PROC(hmsi
, MsiSourceListEnumSourcesA
)
67 GET_PROC(hmsi
, MsiSourceListGetInfoA
)
68 GET_PROC(hmsi
, MsiSourceListSetInfoA
)
69 GET_PROC(hmsi
, MsiSourceListAddSourceA
)
71 GET_PROC(hadvapi32
, ConvertSidToStringSidA
)
73 GET_PROC(hsecur32
, GetUserNameExA
)
78 /* copied from dlls/msi/registry.c */
79 static BOOL
squash_guid(LPCWSTR in
, LPWSTR out
)
84 if (FAILED(CLSIDFromString((LPOLESTR
)in
, &guid
)))
98 out
[17+i
*2] = in
[n
++];
99 out
[16+i
*2] = in
[n
++];
104 out
[17+i
*2] = in
[n
++];
105 out
[16+i
*2] = in
[n
++];
111 static void create_test_guid(LPSTR prodcode
, LPSTR squashed
)
113 WCHAR guidW
[MAX_PATH
];
114 WCHAR squashedW
[MAX_PATH
];
119 hr
= CoCreateGuid(&guid
);
120 ok(hr
== S_OK
, "Expected S_OK, got %d\n", hr
);
122 size
= StringFromGUID2(&guid
, guidW
, MAX_PATH
);
123 ok(size
== 39, "Expected 39, got %d\n", hr
);
125 WideCharToMultiByte(CP_ACP
, 0, guidW
, size
, prodcode
, MAX_PATH
, NULL
, NULL
);
126 squash_guid(guidW
, squashedW
);
127 WideCharToMultiByte(CP_ACP
, 0, squashedW
, -1, squashed
, MAX_PATH
, NULL
, NULL
);
130 static int get_user_sid(LPSTR
*usersid
)
138 if (!pConvertSidToStringSidA
)
140 rc
=OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY
, &token
);
141 if (!rc
&& GetLastError() == ERROR_CALL_NOT_IMPLEMENTED
)
144 GetTokenInformation(token
, TokenUser
, buf
, size
, &size
);
145 user
= (PTOKEN_USER
)buf
;
146 pConvertSidToStringSidA(user
->User
.Sid
, usersid
);
151 static void check_reg_str(HKEY prodkey
, LPCSTR name
, LPCSTR expected
, BOOL bcase
, DWORD line
)
159 res
= RegQueryValueExA(prodkey
, name
, NULL
, &type
, (LPBYTE
)val
, &size
);
161 if (res
!= ERROR_SUCCESS
|| (type
!= REG_SZ
&& type
!= REG_EXPAND_SZ
))
163 ok_(__FILE__
, line
)(FALSE
, "Key doesn't exist or wrong type\n");
168 ok_(__FILE__
, line
)(lstrlenA(val
) == 0, "Expected empty string, got %s\n", val
);
172 ok_(__FILE__
, line
)(!lstrcmpA(val
, expected
), "Expected %s, got %s\n", expected
, val
);
174 ok_(__FILE__
, line
)(!lstrcmpiA(val
, expected
), "Expected %s, got %s\n", expected
, val
);
178 #define CHECK_REG_STR(prodkey, name, expected) \
179 check_reg_str(prodkey, name, expected, TRUE, __LINE__);
181 static void test_MsiSourceListGetInfo(void)
183 CHAR prodcode
[MAX_PATH
];
184 CHAR prod_squashed
[MAX_PATH
];
185 CHAR keypath
[MAX_PATH
*2];
186 CHAR value
[MAX_PATH
];
191 HKEY userkey
, hkey
, media
;
194 if (!pMsiSourceListGetInfoA
)
196 win_skip("Skipping MsiSourceListGetInfoA tests\n");
200 create_test_guid(prodcode
, prod_squashed
);
201 if (!get_user_sid(&usersid
))
203 skip("User SID not available -> skipping MsiSourceListGetInfoA tests\n");
207 /* NULL szProductCodeOrPatchCode */
208 r
= pMsiSourceListGetInfoA(NULL
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
209 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
210 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
212 /* empty szProductCodeOrPatchCode */
213 r
= pMsiSourceListGetInfoA("", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
214 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
215 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
217 /* garbage szProductCodeOrPatchCode */
218 r
= pMsiSourceListGetInfoA("garbage", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
219 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
220 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
222 /* szProductCodeOrPatchCode */
223 r
= pMsiSourceListGetInfoA("garbage", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
224 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
225 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
227 /* guid without brackets */
228 r
= pMsiSourceListGetInfoA("51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
229 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
230 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
232 /* guid with brackets */
233 r
= pMsiSourceListGetInfoA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
234 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
235 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
237 /* same length as guid, but random */
238 r
= pMsiSourceListGetInfoA("ADKD-2KSDFF2-DKK1KNFJASD9GLKWME-1I3KAD", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
239 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
240 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
242 /* invalid context */
243 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_NONE
,
244 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
245 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
247 /* another invalid context */
248 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_ALLUSERMANAGED
,
249 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
250 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
252 /* yet another invalid context */
253 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_ALL
,
254 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
255 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
257 /* mix two valid contexts */
258 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERMANAGED
| MSIINSTALLCONTEXT_USERUNMANAGED
,
259 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
260 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
263 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
264 4, INSTALLPROPERTY_PACKAGENAME
, NULL
, NULL
);
265 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
268 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
269 MSICODE_PRODUCT
, NULL
, NULL
, NULL
);
270 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
273 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
274 MSICODE_PRODUCT
, "", NULL
, NULL
);
275 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
277 /* value is non-NULL while size is NULL */
278 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
279 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, value
, NULL
);
280 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
282 /* size is non-NULL while value is NULL */
284 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
285 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, &size
);
286 ok(r
== ERROR_UNKNOWN_PRODUCT
|| r
== ERROR_INVALID_PARAMETER
,
287 "Expected ERROR_UNKNOWN_PRODUCT or ERROR_INVALID_PARAMETER, got %d\n", r
);
289 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Products\\");
290 lstrcatA(keypath
, prod_squashed
);
292 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
293 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
295 /* user product key exists */
297 lstrcpyA(value
, "aaa");
298 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
299 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
300 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
301 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got \"%s\"\n", value
);
303 res
= RegCreateKeyA(userkey
, "SourceList", &hkey
);
304 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
306 /* SourceList key exists */
308 lstrcpyA(value
, "aaa");
309 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
310 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
311 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
312 ok(size
== 0, "Expected 0, got %d\n", size
);
313 ok(!lstrcmpA(value
, ""), "Expected \"\", got \"%s\"\n", value
);
315 data
= "msitest.msi";
316 res
= RegSetValueExA(hkey
, "PackageName", 0, REG_SZ
, (const BYTE
*)data
, lstrlenA(data
) + 1);
317 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
319 /* PackageName value exists */
321 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
322 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, NULL
, &size
);
323 ok(r
== ERROR_SUCCESS
|| r
== ERROR_INVALID_PARAMETER
,
324 "Expected ERROR_SUCCESS or ERROR_INVALID_PARAMETER, got %d\n", r
);
325 ok(size
== 11 || r
!= ERROR_SUCCESS
, "Expected 11, got %d\n", size
);
327 /* read the value, don't change size */
329 lstrcpyA(value
, "aaa");
330 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
331 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
332 ok(r
== ERROR_MORE_DATA
, "Expected ERROR_MORE_DATA, got %d\n", r
);
333 ok(!lstrcmpA(value
, "aaa"), "Expected 'aaa', got %s\n", value
);
334 ok(size
== 11, "Expected 11, got %d\n", size
);
336 /* read the value, fix size */
338 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
339 MSICODE_PRODUCT
, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
340 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
341 ok(!lstrcmpA(value
, "msitest.msi"), "Expected 'msitest.msi', got %s\n", value
);
342 ok(size
== 11, "Expected 11, got %d\n", size
);
344 /* empty property now that product key exists */
346 lstrcpyA(value
, "aaa");
347 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
348 MSICODE_PRODUCT
, "", value
, &size
);
349 ok(r
== ERROR_UNKNOWN_PROPERTY
, "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r
);
350 ok(size
== MAX_PATH
, "Expected %d, got %d\n", MAX_PATH
, size
);
351 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got \"%s\"\n", value
);
353 /* nonexistent property now that product key exists */
355 lstrcpyA(value
, "aaa");
356 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
357 MSICODE_PRODUCT
, "nonexistent", value
, &size
);
358 ok(r
== ERROR_UNKNOWN_PROPERTY
, "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r
);
359 ok(size
== MAX_PATH
, "Expected %d, got %d\n", MAX_PATH
, size
);
360 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got \"%s\"\n", value
);
363 res
= RegSetValueExA(hkey
, "nonexistent", 0, REG_SZ
, (const BYTE
*)data
, lstrlenA(data
) + 1);
364 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
366 /* nonexistent property now that nonexistent value exists */
368 lstrcpyA(value
, "aaa");
369 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
370 MSICODE_PRODUCT
, "nonexistent", value
, &size
);
371 ok(r
== ERROR_UNKNOWN_PROPERTY
, "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r
);
372 ok(size
== MAX_PATH
, "Expected %d, got %d\n", MAX_PATH
, size
);
373 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got \"%s\"\n", value
);
375 /* invalid option now that product key exists */
377 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
378 4, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
379 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
380 ok(size
== 11, "Expected 11, got %d\n", size
);
382 /* INSTALLPROPERTY_MEDIAPACKAGEPATH, media key does not exist */
384 lstrcpyA(value
, "aaa");
385 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
386 MSICODE_PRODUCT
, INSTALLPROPERTY_MEDIAPACKAGEPATH
,
388 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
389 ok(!lstrcmpA(value
, ""), "Expected \"\", got \"%s\"\n", value
);
390 ok(size
== 0, "Expected 0, got %d\n", size
);
392 res
= RegCreateKeyA(hkey
, "Media", &media
);
393 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
396 res
= RegSetValueExA(media
, "MediaPackage", 0, REG_SZ
,
397 (const BYTE
*)data
, lstrlenA(data
) + 1);
398 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
400 /* INSTALLPROPERTY_MEDIAPACKAGEPATH */
402 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
403 MSICODE_PRODUCT
, INSTALLPROPERTY_MEDIAPACKAGEPATH
,
405 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
406 ok(!lstrcmpA(value
, "path"), "Expected \"path\", got \"%s\"\n", value
);
407 ok(size
== 4, "Expected 4, got %d\n", size
);
409 /* INSTALLPROPERTY_DISKPROMPT */
411 res
= RegSetValueExA(media
, "DiskPrompt", 0, REG_SZ
,
412 (const BYTE
*)data
, lstrlenA(data
) + 1);
413 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
416 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
417 MSICODE_PRODUCT
, INSTALLPROPERTY_DISKPROMPT
,
419 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
420 ok(!lstrcmpA(value
, "prompt"), "Expected \"prompt\", got \"%s\"\n", value
);
421 ok(size
== 6, "Expected 6, got %d\n", size
);
424 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
425 (const BYTE
*)data
, lstrlenA(data
) + 1);
426 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
428 /* INSTALLPROPERTY_LASTUSEDSOURCE, source is empty */
430 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
431 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDSOURCE
,
433 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
434 ok(!lstrcmpA(value
, ""), "Expected \"\", got \"%s\"\n", value
);
435 ok(size
== 0, "Expected 0, got %d\n", size
);
438 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
439 (const BYTE
*)data
, lstrlenA(data
) + 1);
440 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
442 /* INSTALLPROPERTY_LASTUSEDSOURCE */
444 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
445 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDSOURCE
,
447 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
448 ok(!lstrcmpA(value
, "source"), "Expected \"source\", got \"%s\"\n", value
);
449 ok(size
== 6, "Expected 6, got %d\n", size
);
451 /* INSTALLPROPERTY_LASTUSEDSOURCE, size is too short */
453 lstrcpyA(value
, "aaa");
454 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
455 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDSOURCE
,
457 ok(r
== ERROR_MORE_DATA
, "Expected ERROR_MORE_DATA, got %d\n", r
);
458 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got \"%s\"\n", value
);
459 ok(size
== 6, "Expected 6, got %d\n", size
);
461 /* INSTALLPROPERTY_LASTUSEDSOURCE, size is exactly 6 */
463 lstrcpyA(value
, "aaa");
464 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
465 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDSOURCE
,
467 ok(r
== ERROR_MORE_DATA
, "Expected ERROR_MORE_DATA, got %d\n", r
);
468 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got \"%s\"\n", value
);
469 ok(size
== 6, "Expected 6, got %d\n", size
);
472 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
473 (const BYTE
*)data
, lstrlenA(data
) + 1);
474 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
476 /* INSTALLPROPERTY_LASTUSEDSOURCE, one semi-colon */
478 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
479 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDSOURCE
,
481 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
482 ok(!lstrcmpA(value
, "source"), "Expected \"source\", got \"%s\"\n", value
);
483 ok(size
== 6, "Expected 6, got %d\n", size
);
486 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
487 (const BYTE
*)data
, lstrlenA(data
) + 1);
488 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
490 /* INSTALLPROPERTY_LASTUSEDSOURCE, one colon */
492 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
493 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDSOURCE
,
495 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
496 ok(!lstrcmpA(value
, "a:source"), "Expected \"a:source\", got \"%s\"\n", value
);
497 ok(size
== 8, "Expected 8, got %d\n", size
);
499 /* INSTALLPROPERTY_LASTUSEDTYPE, invalid source format */
501 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
502 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDTYPE
,
504 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
505 ok(!lstrcmpA(value
, ""), "Expected \"\", got \"%s\"\n", value
);
506 ok(size
== 0, "Expected 0, got %d\n", size
);
509 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
510 (const BYTE
*)data
, lstrlenA(data
) + 1);
511 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
513 /* INSTALLPROPERTY_LASTUSEDTYPE, invalid source format */
515 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
516 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDTYPE
,
518 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
519 ok(!lstrcmpA(value
, ""), "Expected \"\", got \"%s\"\n", value
);
520 ok(size
== 0, "Expected 0, got %d\n", size
);
523 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
524 (const BYTE
*)data
, lstrlenA(data
) + 1);
525 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
527 /* INSTALLPROPERTY_LASTUSEDTYPE */
529 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
530 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDTYPE
,
532 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
533 ok(!lstrcmpA(value
, "n"), "Expected \"n\", got \"%s\"\n", value
);
534 ok(size
== 1, "Expected 1, got %d\n", size
);
537 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
538 (const BYTE
*)data
, lstrlenA(data
) + 1);
539 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
541 /* INSTALLPROPERTY_LASTUSEDTYPE */
543 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
544 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDTYPE
,
546 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
547 ok(!lstrcmpA(value
, "n"), "Expected \"n\", got \"%s\"\n", value
);
548 ok(size
== 1, "Expected 1, got %d\n", size
);
551 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
552 (const BYTE
*)data
, lstrlenA(data
) + 1);
553 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
555 /* INSTALLPROPERTY_LASTUSEDTYPE */
557 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
558 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDTYPE
,
560 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
561 ok(!lstrcmpA(value
, "m"), "Expected \"m\", got \"%s\"\n", value
);
562 ok(size
== 1, "Expected 1, got %d\n", size
);
565 res
= RegSetValueExA(hkey
, "LastUsedSource", 0, REG_SZ
,
566 (const BYTE
*)data
, lstrlenA(data
) + 1);
567 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
569 /* INSTALLPROPERTY_LASTUSEDTYPE */
571 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
572 MSICODE_PRODUCT
, INSTALLPROPERTY_LASTUSEDTYPE
,
574 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
575 ok(!lstrcmpA(value
, "u"), "Expected \"u\", got \"%s\"\n", value
);
576 ok(size
== 1, "Expected 1, got %d\n", size
);
578 RegDeleteValueA(media
, "MediaPackage");
579 RegDeleteValueA(media
, "DiskPrompt");
580 RegDeleteKeyA(media
, "");
581 RegDeleteValueA(hkey
, "LastUsedSource");
582 RegDeleteValueA(hkey
, "nonexistent");
583 RegDeleteValueA(hkey
, "PackageName");
584 RegDeleteKeyA(hkey
, "");
585 RegDeleteKeyA(userkey
, "");
587 RegCloseKey(userkey
);
591 lstrcpyA(value
, "aaa");
592 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
593 MSICODE_PATCH
, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
594 ok(r
== ERROR_UNKNOWN_PATCH
, "Expected ERROR_UNKNOWN_PATCH, got %d\n", r
);
595 ok(size
== MAX_PATH
, "Expected %d, got %d\n", MAX_PATH
, size
);
596 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got \"%s\"\n", value
);
598 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Patches\\");
599 lstrcatA(keypath
, prod_squashed
);
601 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
602 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
605 * NOTE: using prodcode guid, but it really doesn't matter
608 lstrcpyA(value
, "aaa");
609 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
610 MSICODE_PATCH
, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
611 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
612 ok(size
== MAX_PATH
, "Expected %d, got %d\n", MAX_PATH
, size
);
613 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got \"%s\"\n", value
);
615 res
= RegCreateKeyA(userkey
, "SourceList", &hkey
);
616 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
618 /* SourceList key exists */
620 lstrcpyA(value
, "aaa");
621 r
= pMsiSourceListGetInfoA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
622 MSICODE_PATCH
, INSTALLPROPERTY_PACKAGENAME
, value
, &size
);
623 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
624 ok(!lstrcmpA(value
, ""), "Expected \"\", got \"%s\"\n", value
);
625 ok(size
== 0, "Expected 0, got %d\n", size
);
627 RegDeleteKeyA(hkey
, "");
628 RegDeleteKeyA(userkey
, "");
630 RegCloseKey(userkey
);
634 static void test_MsiSourceListAddSourceEx(void)
636 CHAR prodcode
[MAX_PATH
];
637 CHAR prod_squashed
[MAX_PATH
];
638 CHAR keypath
[MAX_PATH
*2];
639 CHAR value
[MAX_PATH
];
643 HKEY prodkey
, userkey
, hkey
;
647 if (!pMsiSourceListAddSourceExA
)
649 win_skip("Skipping MsiSourceListAddSourceExA tests\n");
653 create_test_guid(prodcode
, prod_squashed
);
654 if (!get_user_sid(&usersid
))
656 skip("User SID not available -> skipping MsiSourceListAddSourceExA tests\n");
660 /* GetLastError is not set by the function */
662 /* NULL szProductCodeOrPatchCode */
663 r
= pMsiSourceListAddSourceExA(NULL
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
664 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
665 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
667 /* empty szProductCodeOrPatchCode */
668 r
= pMsiSourceListAddSourceExA("", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
669 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
670 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
672 /* garbage szProductCodeOrPatchCode */
673 r
= pMsiSourceListAddSourceExA("garbage", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
674 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
675 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
677 /* guid without brackets */
678 r
= pMsiSourceListAddSourceExA("51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA", usersid
,
679 MSIINSTALLCONTEXT_USERUNMANAGED
,
680 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
681 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
683 /* guid with brackets */
684 r
= pMsiSourceListAddSourceExA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}", usersid
,
685 MSIINSTALLCONTEXT_USERUNMANAGED
,
686 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
687 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
689 /* MSIINSTALLCONTEXT_USERUNMANAGED */
691 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
692 MSIINSTALLCONTEXT_USERUNMANAGED
,
693 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
694 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
696 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Products\\");
697 lstrcatA(keypath
, prod_squashed
);
699 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
700 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
702 /* user product key exists */
703 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
704 MSIINSTALLCONTEXT_USERUNMANAGED
,
705 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
706 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
708 res
= RegCreateKeyA(userkey
, "SourceList", &url
);
709 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
712 /* SourceList key exists */
713 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
714 MSIINSTALLCONTEXT_USERUNMANAGED
,
715 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
716 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
718 res
= RegOpenKeyA(userkey
, "SourceList\\URL", &url
);
719 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
722 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
723 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
724 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
725 ok(size
== 11, "Expected 11, got %d\n", size
);
727 /* add another source, index 0 */
728 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
729 MSIINSTALLCONTEXT_USERUNMANAGED
,
730 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "another", 0);
731 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
734 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
735 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
736 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
737 ok(size
== 11, "Expected 11, got %d\n", size
);
740 res
= RegQueryValueExA(url
, "2", NULL
, NULL
, (LPBYTE
)value
, &size
);
741 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
742 ok(!lstrcmpA(value
, "another/"), "Expected 'another/', got %s\n", value
);
743 ok(size
== 9, "Expected 9, got %d\n", size
);
745 /* add another source, index 1 */
746 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
747 MSIINSTALLCONTEXT_USERUNMANAGED
,
748 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "third/", 1);
749 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
752 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
753 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
754 ok(!lstrcmpA(value
, "third/"), "Expected 'third/', got %s\n", value
);
755 ok(size
== 7, "Expected 7, got %d\n", size
);
758 res
= RegQueryValueExA(url
, "2", NULL
, NULL
, (LPBYTE
)value
, &size
);
759 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
760 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
761 ok(size
== 11, "Expected 11, got %d\n", size
);
764 res
= RegQueryValueExA(url
, "3", NULL
, NULL
, (LPBYTE
)value
, &size
);
765 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
766 ok(!lstrcmpA(value
, "another/"), "Expected 'another/', got %s\n", value
);
767 ok(size
== 9, "Expected 9, got %d\n", size
);
769 /* add another source, index > N */
770 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
771 MSIINSTALLCONTEXT_USERUNMANAGED
,
772 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "last/", 5);
773 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
776 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
777 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
778 ok(!lstrcmpA(value
, "third/"), "Expected 'third/', got %s\n", value
);
779 ok(size
== 7, "Expected 7, got %d\n", size
);
782 res
= RegQueryValueExA(url
, "2", NULL
, NULL
, (LPBYTE
)value
, &size
);
783 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
784 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
785 ok(size
== 11, "Expected 11, got %d\n", size
);
788 res
= RegQueryValueExA(url
, "3", NULL
, NULL
, (LPBYTE
)value
, &size
);
789 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
790 ok(!lstrcmpA(value
, "another/"), "Expected 'another/', got %s\n", value
);
791 ok(size
== 9, "Expected 9, got %d\n", size
);
794 res
= RegQueryValueExA(url
, "4", NULL
, NULL
, (LPBYTE
)value
, &size
);
795 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
796 ok(!lstrcmpA(value
, "last/"), "Expected 'last/', got %s\n", value
);
797 ok(size
== 6, "Expected 6, got %d\n", size
);
799 /* just MSISOURCETYPE_NETWORK */
800 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
801 MSIINSTALLCONTEXT_USERUNMANAGED
,
802 MSISOURCETYPE_NETWORK
, "source", 0);
803 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
805 res
= RegOpenKeyA(userkey
, "SourceList\\Net", &net
);
806 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
809 res
= RegQueryValueExA(net
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
810 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
811 ok(!lstrcmpA(value
, "source\\"), "Expected 'source\\', got %s\n", value
);
812 ok(size
== 8, "Expected 8, got %d\n", size
);
814 /* just MSISOURCETYPE_URL */
815 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
816 MSIINSTALLCONTEXT_USERUNMANAGED
,
817 MSISOURCETYPE_URL
, "source", 0);
818 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
821 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
822 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
823 ok(!lstrcmpA(value
, "third/"), "Expected 'third/', got %s\n", value
);
824 ok(size
== 7, "Expected 7, got %d\n", size
);
827 res
= RegQueryValueExA(url
, "2", NULL
, NULL
, (LPBYTE
)value
, &size
);
828 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
829 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
830 ok(size
== 11, "Expected 11, got %d\n", size
);
833 res
= RegQueryValueExA(url
, "3", NULL
, NULL
, (LPBYTE
)value
, &size
);
834 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
835 ok(!lstrcmpA(value
, "another/"), "Expected 'another/', got %s\n", value
);
836 ok(size
== 9, "Expected 9, got %d\n", size
);
839 res
= RegQueryValueExA(url
, "4", NULL
, NULL
, (LPBYTE
)value
, &size
);
840 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
841 ok(!lstrcmpA(value
, "last/"), "Expected 'last/', got %s\n", value
);
842 ok(size
== 6, "Expected 6, got %d\n", size
);
845 res
= RegQueryValueExA(url
, "5", NULL
, NULL
, (LPBYTE
)value
, &size
);
846 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
847 ok(!lstrcmpA(value
, "source/"), "Expected 'source/', got %s\n", value
);
848 ok(size
== 8, "Expected 8, got %d\n", size
);
851 r
= pMsiSourceListAddSourceExA(prodcode
, NULL
,
852 MSIINSTALLCONTEXT_USERUNMANAGED
,
853 MSISOURCETYPE_NETWORK
, "nousersid", 0);
854 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
857 res
= RegQueryValueExA(net
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
858 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
859 ok(!lstrcmpA(value
, "source\\"), "Expected 'source\\', got %s\n", value
);
860 ok(size
== 8, "Expected 8, got %d\n", size
);
863 res
= RegQueryValueExA(net
, "2", NULL
, NULL
, (LPBYTE
)value
, &size
);
864 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
865 ok(!lstrcmpA(value
, "nousersid\\"), "Expected 'nousersid\\', got %s\n", value
);
866 ok(size
== 11, "Expected 11, got %d\n", size
);
868 /* invalid options, must have source type */
869 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
870 MSIINSTALLCONTEXT_USERUNMANAGED
,
871 MSICODE_PRODUCT
, "source", 0);
872 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
874 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
875 MSIINSTALLCONTEXT_USERUNMANAGED
,
876 MSICODE_PATCH
, "source", 0);
877 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
880 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
881 MSIINSTALLCONTEXT_USERUNMANAGED
,
882 MSISOURCETYPE_URL
, NULL
, 1);
883 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
886 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
887 MSIINSTALLCONTEXT_USERUNMANAGED
,
888 MSISOURCETYPE_URL
, "", 1);
889 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
891 /* MSIINSTALLCONTEXT_USERMANAGED, non-NULL szUserSid */
893 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
894 MSIINSTALLCONTEXT_USERMANAGED
,
895 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
896 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
898 lstrcpyA(keypath
, "Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\Managed\\");
899 lstrcatA(keypath
, usersid
);
900 lstrcatA(keypath
, "\\Installer\\Products\\");
901 lstrcatA(keypath
, prod_squashed
);
903 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &prodkey
);
904 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
906 /* product key exists */
907 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
908 MSIINSTALLCONTEXT_USERMANAGED
,
909 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
910 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
912 res
= RegCreateKeyA(prodkey
, "SourceList", &hkey
);
913 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
916 /* SourceList exists */
917 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
918 MSIINSTALLCONTEXT_USERMANAGED
,
919 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
920 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
922 res
= RegOpenKeyA(prodkey
, "SourceList\\URL", &url
);
923 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
926 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
927 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
928 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
929 ok(size
== 11, "Expected 11, got %d\n", size
);
933 /* MSIINSTALLCONTEXT_USERMANAGED, NULL szUserSid */
935 r
= pMsiSourceListAddSourceExA(prodcode
, NULL
,
936 MSIINSTALLCONTEXT_USERMANAGED
,
937 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "another", 0);
938 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
940 res
= RegOpenKeyA(prodkey
, "SourceList\\URL", &url
);
941 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
944 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
945 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
946 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
947 ok(size
== 11, "Expected 11, got %d\n", size
);
950 res
= RegQueryValueExA(url
, "2", NULL
, NULL
, (LPBYTE
)value
, &size
);
951 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
952 ok(!lstrcmpA(value
, "another/"), "Expected 'another/', got %s\n", value
);
953 ok(size
== 9, "Expected 9, got %d\n", size
);
956 RegCloseKey(prodkey
);
958 /* MSIINSTALLCONTEXT_MACHINE */
960 /* szUserSid must be NULL for MSIINSTALLCONTEXT_MACHINE */
961 r
= pMsiSourceListAddSourceExA(prodcode
, usersid
,
962 MSIINSTALLCONTEXT_MACHINE
,
963 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
964 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
966 r
= pMsiSourceListAddSourceExA(prodcode
, NULL
,
967 MSIINSTALLCONTEXT_MACHINE
,
968 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
969 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
971 lstrcpyA(keypath
, "Software\\Classes\\Installer\\Products\\");
972 lstrcatA(keypath
, prod_squashed
);
974 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &prodkey
);
975 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
977 /* product key exists */
978 r
= pMsiSourceListAddSourceExA(prodcode
, NULL
,
979 MSIINSTALLCONTEXT_MACHINE
,
980 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
981 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
983 res
= RegCreateKeyA(prodkey
, "SourceList", &hkey
);
984 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
987 /* SourceList exists */
988 r
= pMsiSourceListAddSourceExA(prodcode
, NULL
,
989 MSIINSTALLCONTEXT_MACHINE
,
990 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, "C:\\source", 0);
991 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
993 res
= RegOpenKeyA(prodkey
, "SourceList\\URL", &url
);
994 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
997 res
= RegQueryValueExA(url
, "1", NULL
, NULL
, (LPBYTE
)value
, &size
);
998 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
999 ok(!lstrcmpA(value
, "C:\\source/"), "Expected 'C:\\source/', got %s\n", value
);
1000 ok(size
== 11, "Expected 11, got %d\n", size
);
1003 RegCloseKey(prodkey
);
1004 HeapFree(GetProcessHeap(), 0, usersid
);
1007 static void test_MsiSourceListEnumSources(void)
1009 CHAR prodcode
[MAX_PATH
];
1010 CHAR prod_squashed
[MAX_PATH
];
1011 CHAR keypath
[MAX_PATH
*2];
1012 CHAR value
[MAX_PATH
];
1016 HKEY prodkey
, userkey
;
1017 HKEY url
, net
, source
;
1020 if (!pMsiSourceListEnumSourcesA
)
1022 win_skip("MsiSourceListEnumSourcesA is not available\n");
1026 create_test_guid(prodcode
, prod_squashed
);
1027 if (!get_user_sid(&usersid
))
1029 skip("User SID not available -> skipping MsiSourceListEnumSourcesA tests\n");
1033 /* GetLastError is not set by the function */
1035 /* NULL szProductCodeOrPatchCode */
1037 r
= pMsiSourceListEnumSourcesA(NULL
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1038 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1039 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1040 ok(size
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", size
);
1042 /* empty szProductCodeOrPatchCode */
1044 r
= pMsiSourceListEnumSourcesA("", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1045 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1046 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1047 ok(size
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", size
);
1049 /* garbage szProductCodeOrPatchCode */
1051 r
= pMsiSourceListEnumSourcesA("garbage", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1052 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1053 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1054 ok(size
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", size
);
1056 /* guid without brackets */
1058 r
= pMsiSourceListEnumSourcesA("51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA",
1059 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1060 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1061 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1062 ok(size
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", size
);
1064 /* guid with brackets */
1066 r
= pMsiSourceListEnumSourcesA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}",
1067 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1068 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1069 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1070 ok(size
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", size
);
1072 /* MSIINSTALLCONTEXT_USERUNMANAGED */
1075 lstrcpyA(value
, "aaa");
1076 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1077 MSIINSTALLCONTEXT_USERUNMANAGED
,
1078 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1079 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1080 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1081 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1083 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Products\\");
1084 lstrcatA(keypath
, prod_squashed
);
1086 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
1087 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1089 /* user product key exists */
1091 lstrcpyA(value
, "aaa");
1092 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1093 MSIINSTALLCONTEXT_USERUNMANAGED
,
1094 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1095 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
1096 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1097 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1099 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
1100 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1102 /* SourceList key exists */
1104 lstrcpyA(value
, "aaa");
1105 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1106 MSIINSTALLCONTEXT_USERUNMANAGED
,
1107 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1108 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1109 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1110 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1112 res
= RegCreateKeyA(source
, "URL", &url
);
1113 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1115 /* URL key exists */
1117 lstrcpyA(value
, "aaa");
1118 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1119 MSIINSTALLCONTEXT_USERUNMANAGED
,
1120 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1121 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1122 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1123 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1125 res
= RegSetValueExA(url
, "1", 0, REG_SZ
, (LPBYTE
)"first", 6);
1126 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1128 res
= RegSetValueExA(url
, "2", 0, REG_SZ
, (LPBYTE
)"second", 7);
1129 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1131 res
= RegSetValueExA(url
, "4", 0, REG_SZ
, (LPBYTE
)"fourth", 7);
1132 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1136 lstrcpyA(value
, "aaa");
1137 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1138 MSIINSTALLCONTEXT_USERUNMANAGED
,
1139 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1140 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1141 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1142 ok(size
== 5, "Expected 5, got %d\n", size
);
1144 /* try index 0 again */
1146 lstrcpyA(value
, "aaa");
1147 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1148 MSIINSTALLCONTEXT_USERUNMANAGED
,
1149 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1150 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1151 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1152 ok(size
== 5, "Expected 5, got %d\n", size
);
1154 /* both szSource and pcchSource are NULL, index 0 */
1155 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1156 MSIINSTALLCONTEXT_USERUNMANAGED
,
1157 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, NULL
, NULL
);
1158 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1160 /* both szSource and pcchSource are NULL, index 1 */
1161 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1162 MSIINSTALLCONTEXT_USERUNMANAGED
,
1163 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 1, NULL
, NULL
);
1164 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1166 /* size is exactly 5 */
1168 lstrcpyA(value
, "aaa");
1169 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1170 MSIINSTALLCONTEXT_USERUNMANAGED
,
1171 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1172 ok(r
== ERROR_MORE_DATA
, "Expected ERROR_MORE_DATA, got %d\n", r
);
1173 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got %s\n", value
);
1174 ok(size
== 5, "Expected 5, got %d\n", size
);
1176 /* szSource is non-NULL while pcchSource is NULL */
1177 lstrcpyA(value
, "aaa");
1178 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1179 MSIINSTALLCONTEXT_USERUNMANAGED
,
1180 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, NULL
);
1181 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1182 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got %s\n", value
);
1184 /* try index 1 after failure */
1186 lstrcpyA(value
, "aaa");
1187 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1188 MSIINSTALLCONTEXT_USERUNMANAGED
,
1189 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 1, value
, &size
);
1190 ok(r
== ERROR_INVALID_PARAMETER
,
1191 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1192 ok(!lstrcmpA(value
, "aaa"), "Expected \"aaa\", got %s\n", value
);
1193 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1195 /* reset the enumeration */
1197 lstrcpyA(value
, "aaa");
1198 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1199 MSIINSTALLCONTEXT_USERUNMANAGED
,
1200 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1201 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1202 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1203 ok(size
== 5, "Expected 5, got %d\n", size
);
1207 lstrcpyA(value
, "aaa");
1208 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1209 MSIINSTALLCONTEXT_USERUNMANAGED
,
1210 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 1, value
, &size
);
1211 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1212 ok(!lstrcmpA(value
, "second"), "Expected \"second\", got %s\n", value
);
1213 ok(size
== 6, "Expected 6, got %d\n", size
);
1215 /* try index 1 again */
1217 lstrcpyA(value
, "aaa");
1218 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1219 MSIINSTALLCONTEXT_USERUNMANAGED
,
1220 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 1, value
, &size
);
1221 ok(r
== ERROR_INVALID_PARAMETER
,
1222 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1223 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1224 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1228 lstrcpyA(value
, "aaa");
1229 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1230 MSIINSTALLCONTEXT_USERUNMANAGED
,
1231 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 2, value
, &size
);
1232 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1233 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1234 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1238 lstrcpyA(value
, "aaa");
1239 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1240 MSIINSTALLCONTEXT_USERUNMANAGED
,
1241 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, -1, value
, &size
);
1242 ok(r
== ERROR_INVALID_PARAMETER
,
1243 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1244 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1245 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1247 /* NULL szUserSid */
1249 lstrcpyA(value
, "aaa");
1250 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1251 MSIINSTALLCONTEXT_USERUNMANAGED
,
1252 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1253 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1254 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1255 ok(size
== 5, "Expected 5, got %d\n", size
);
1257 /* invalid dwOptions, must be one of MSICODE_ and MSISOURCETYPE_ */
1259 lstrcpyA(value
, "aaa");
1260 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1261 MSIINSTALLCONTEXT_USERUNMANAGED
,
1262 MSICODE_PRODUCT
, 0, value
, &size
);
1263 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1264 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1265 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1267 /* invalid dwOptions, must be one of MSICODE_ and MSISOURCETYPE_ */
1269 lstrcpyA(value
, "aaa");
1270 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1271 MSIINSTALLCONTEXT_USERUNMANAGED
,
1272 MSICODE_PATCH
, 0, value
, &size
);
1273 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1274 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1275 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1277 /* invalid dwOptions, must be one of MSICODE_ and MSISOURCETYPE_ */
1279 lstrcpyA(value
, "aaa");
1280 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1281 MSIINSTALLCONTEXT_USERUNMANAGED
,
1282 MSICODE_PRODUCT
| MSICODE_PATCH
| MSISOURCETYPE_URL
,
1284 ok(r
== ERROR_UNKNOWN_PATCH
, "Expected ERROR_SUCCESS, got %d\n", r
);
1285 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1286 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1288 /* invalid dwOptions, must be one of MSICODE_ and MSISOURCETYPE_ */
1290 lstrcpyA(value
, "aaa");
1291 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1292 MSIINSTALLCONTEXT_USERUNMANAGED
,
1293 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
| MSISOURCETYPE_URL
,
1295 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1296 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1297 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1299 RegDeleteValueA(url
, "1");
1300 RegDeleteValueA(url
, "2");
1301 RegDeleteValueA(url
, "4");
1302 RegDeleteKeyA(url
, "");
1305 /* SourceList key exists */
1307 lstrcpyA(value
, "aaa");
1308 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1309 MSIINSTALLCONTEXT_USERUNMANAGED
,
1310 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1311 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1312 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1313 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1315 res
= RegCreateKeyA(source
, "Net", &net
);
1316 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1318 /* Net key exists */
1320 lstrcpyA(value
, "aaa");
1321 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1322 MSIINSTALLCONTEXT_USERUNMANAGED
,
1323 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1324 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1325 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1326 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1328 res
= RegSetValueExA(net
, "1", 0, REG_SZ
, (LPBYTE
)"first", 6);
1329 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1333 lstrcpyA(value
, "aaa");
1334 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1335 MSIINSTALLCONTEXT_USERUNMANAGED
,
1336 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1337 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1338 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1339 ok(size
== 5, "Expected 5, got %d\n", size
);
1341 RegDeleteValueA(net
, "1");
1342 RegDeleteKeyA(net
, "");
1344 RegDeleteKeyA(source
, "");
1345 RegCloseKey(source
);
1346 RegDeleteKeyA(userkey
, "");
1347 RegCloseKey(userkey
);
1349 /* MSIINSTALLCONTEXT_USERMANAGED */
1352 lstrcpyA(value
, "aaa");
1353 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1354 MSIINSTALLCONTEXT_USERMANAGED
,
1355 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1356 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1357 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1358 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1360 lstrcpyA(keypath
, "Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\Managed\\");
1361 lstrcatA(keypath
, usersid
);
1362 lstrcatA(keypath
, "\\Installer\\Products\\");
1363 lstrcatA(keypath
, prod_squashed
);
1365 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &userkey
);
1366 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1368 /* user product key exists */
1370 lstrcpyA(value
, "aaa");
1371 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1372 MSIINSTALLCONTEXT_USERMANAGED
,
1373 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1374 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
1375 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1376 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1378 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
1379 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1381 /* SourceList key exists */
1383 lstrcpyA(value
, "aaa");
1384 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1385 MSIINSTALLCONTEXT_USERMANAGED
,
1386 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1387 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1388 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1389 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1391 res
= RegCreateKeyA(source
, "URL", &url
);
1392 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1394 /* URL key exists */
1396 lstrcpyA(value
, "aaa");
1397 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1398 MSIINSTALLCONTEXT_USERMANAGED
,
1399 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1400 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1401 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1402 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1404 res
= RegSetValueExA(url
, "1", 0, REG_SZ
, (LPBYTE
)"first", 6);
1405 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1409 lstrcpyA(value
, "aaa");
1410 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1411 MSIINSTALLCONTEXT_USERMANAGED
,
1412 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1413 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1414 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1415 ok(size
== 5, "Expected 5, got %d\n", size
);
1417 /* NULL szUserSid */
1419 lstrcpyA(value
, "aaa");
1420 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1421 MSIINSTALLCONTEXT_USERMANAGED
,
1422 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1423 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1424 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1425 ok(size
== 5, "Expected 5, got %d\n", size
);
1427 RegDeleteValueA(url
, "1");
1428 RegDeleteKeyA(url
, "");
1431 /* SourceList key exists */
1433 lstrcpyA(value
, "aaa");
1434 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1435 MSIINSTALLCONTEXT_USERMANAGED
,
1436 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1437 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1438 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1439 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1441 res
= RegCreateKeyA(source
, "Net", &net
);
1442 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1444 /* Net key exists */
1446 lstrcpyA(value
, "aaa");
1447 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1448 MSIINSTALLCONTEXT_USERMANAGED
,
1449 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1450 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1451 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1452 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1454 res
= RegSetValueExA(net
, "1", 0, REG_SZ
, (LPBYTE
)"first", 6);
1455 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1459 lstrcpyA(value
, "aaa");
1460 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1461 MSIINSTALLCONTEXT_USERMANAGED
,
1462 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1463 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1464 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1465 ok(size
== 5, "Expected 5, got %d\n", size
);
1467 RegDeleteValueA(net
, "1");
1468 RegDeleteKeyA(net
, "");
1470 RegDeleteKeyA(source
, "");
1471 RegCloseKey(source
);
1472 RegDeleteKeyA(userkey
, "");
1473 RegCloseKey(userkey
);
1475 /* MSIINSTALLCONTEXT_MACHINE */
1477 /* szUserSid is non-NULL */
1479 lstrcpyA(value
, "aaa");
1480 r
= pMsiSourceListEnumSourcesA(prodcode
, usersid
,
1481 MSIINSTALLCONTEXT_MACHINE
,
1482 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1483 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1484 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1485 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1487 /* szUserSid is non-NULL */
1489 lstrcpyA(value
, "aaa");
1490 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1491 MSIINSTALLCONTEXT_MACHINE
,
1492 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1493 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1494 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1495 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1497 lstrcpyA(keypath
, "Software\\Classes\\Installer\\Products\\");
1498 lstrcatA(keypath
, prod_squashed
);
1500 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &prodkey
);
1501 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1503 /* user product key exists */
1505 lstrcpyA(value
, "aaa");
1506 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1507 MSIINSTALLCONTEXT_MACHINE
,
1508 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1509 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
1510 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1511 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1513 res
= RegCreateKeyA(prodkey
, "SourceList", &source
);
1514 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1516 /* SourceList key exists */
1518 lstrcpyA(value
, "aaa");
1519 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1520 MSIINSTALLCONTEXT_MACHINE
,
1521 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1522 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1523 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1524 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1526 res
= RegCreateKeyA(source
, "URL", &url
);
1527 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1529 /* URL key exists */
1531 lstrcpyA(value
, "aaa");
1532 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1533 MSIINSTALLCONTEXT_MACHINE
,
1534 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1535 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1536 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1537 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1539 res
= RegSetValueExA(url
, "1", 0, REG_SZ
, (LPBYTE
)"first", 6);
1540 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1544 lstrcpyA(value
, "aaa");
1545 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1546 MSIINSTALLCONTEXT_MACHINE
,
1547 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1548 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1549 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1550 ok(size
== 5, "Expected 5, got %d\n", size
);
1552 /* NULL szUserSid */
1554 lstrcpyA(value
, "aaa");
1555 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1556 MSIINSTALLCONTEXT_MACHINE
,
1557 MSICODE_PRODUCT
| MSISOURCETYPE_URL
, 0, value
, &size
);
1558 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1559 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1560 ok(size
== 5, "Expected 5, got %d\n", size
);
1562 RegDeleteValueA(url
, "1");
1563 RegDeleteKeyA(url
, "");
1566 /* SourceList key exists */
1568 lstrcpyA(value
, "aaa");
1569 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1570 MSIINSTALLCONTEXT_MACHINE
,
1571 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1572 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1573 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1574 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1576 res
= RegCreateKeyA(source
, "Net", &net
);
1577 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1579 /* Net key exists */
1581 lstrcpyA(value
, "aaa");
1582 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1583 MSIINSTALLCONTEXT_MACHINE
,
1584 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1585 ok(r
== ERROR_NO_MORE_ITEMS
, "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
1586 ok(!lstrcmpA(value
, "aaa"), "Expected value to be unchanged, got %s\n", value
);
1587 ok(size
== MAX_PATH
, "Expected MAX_PATH, got %d\n", size
);
1589 res
= RegSetValueExA(net
, "1", 0, REG_SZ
, (LPBYTE
)"first", 6);
1590 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1594 lstrcpyA(value
, "aaa");
1595 r
= pMsiSourceListEnumSourcesA(prodcode
, NULL
,
1596 MSIINSTALLCONTEXT_MACHINE
,
1597 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
, 0, value
, &size
);
1598 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1599 ok(!lstrcmpA(value
, "first"), "Expected \"first\", got %s\n", value
);
1600 ok(size
== 5, "Expected 5, got %d\n", size
);
1602 RegDeleteValueA(net
, "1");
1603 RegDeleteKeyA(net
, "");
1605 RegDeleteKeyA(source
, "");
1606 RegCloseKey(source
);
1607 RegDeleteKeyA(prodkey
, "");
1608 RegCloseKey(prodkey
);
1612 static void test_MsiSourceListSetInfo(void)
1614 CHAR prodcode
[MAX_PATH
];
1615 CHAR prod_squashed
[MAX_PATH
];
1616 CHAR keypath
[MAX_PATH
*2];
1617 HKEY prodkey
, userkey
;
1618 HKEY net
, url
, media
, source
;
1623 if (!pMsiSourceListSetInfoA
)
1625 win_skip("MsiSourceListSetInfoA is not available\n");
1629 create_test_guid(prodcode
, prod_squashed
);
1630 if (!get_user_sid(&usersid
))
1632 skip("User SID not available -> skipping MsiSourceListSetInfoA tests\n");
1636 /* GetLastError is not set by the function */
1638 /* NULL szProductCodeOrPatchCode */
1639 r
= pMsiSourceListSetInfoA(NULL
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1640 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1641 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1642 ok(r
== ERROR_INVALID_PARAMETER
,
1643 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1645 /* empty szProductCodeOrPatchCode */
1646 r
= pMsiSourceListSetInfoA("", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1647 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1648 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1649 ok(r
== ERROR_INVALID_PARAMETER
,
1650 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1652 /* garbage szProductCodeOrPatchCode */
1653 r
= pMsiSourceListSetInfoA("garbage", usersid
,
1654 MSIINSTALLCONTEXT_USERUNMANAGED
,
1655 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1656 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1657 ok(r
== ERROR_INVALID_PARAMETER
,
1658 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1660 /* guid without brackets */
1661 r
= pMsiSourceListSetInfoA("51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA",
1662 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1663 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1664 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1665 ok(r
== ERROR_INVALID_PARAMETER
,
1666 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1668 /* guid with brackets */
1669 r
= pMsiSourceListSetInfoA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}",
1670 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
1671 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1672 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1673 ok(r
== ERROR_UNKNOWN_PRODUCT
,
1674 "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1676 /* dwOptions is MSICODE_PRODUCT */
1677 r
= pMsiSourceListSetInfoA(prodcode
, usersid
,
1678 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1679 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1680 ok(r
== ERROR_UNKNOWN_PRODUCT
,
1681 "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1683 /* dwOptions is MSICODE_PATCH */
1684 r
= pMsiSourceListSetInfoA(prodcode
, usersid
,
1685 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PATCH
,
1686 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1687 ok(r
== ERROR_UNKNOWN_PATCH
, "Expected ERROR_UNKNOWN_PATCH, got %d\n", r
);
1689 /* dwOptions is both MSICODE_PRODUCT and MSICODE_PATCH */
1690 r
= pMsiSourceListSetInfoA(prodcode
, usersid
,
1691 MSIINSTALLCONTEXT_USERUNMANAGED
,
1692 MSICODE_PRODUCT
| MSICODE_PATCH
| MSISOURCETYPE_URL
,
1693 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1694 ok(r
== ERROR_UNKNOWN_PATCH
, "Expected ERROR_UNKNOWN_PATCH, got %d\n", r
);
1696 /* dwOptions has both MSISOURCETYPE_NETWORK and MSISOURCETYPE_URL */
1697 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1698 MSIINSTALLCONTEXT_USERUNMANAGED
,
1699 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
| MSISOURCETYPE_URL
,
1700 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1701 ok(r
== ERROR_UNKNOWN_PRODUCT
,
1702 "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1704 /* LastUsedSource and dwOptions has both
1705 * MSISOURCETYPE_NETWORK and MSISOURCETYPE_URL
1707 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1708 MSIINSTALLCONTEXT_USERUNMANAGED
,
1709 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
| MSISOURCETYPE_URL
,
1710 INSTALLPROPERTY_LASTUSEDSOURCE
, "path");
1711 ok(r
== ERROR_UNKNOWN_PRODUCT
,
1712 "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1714 /* LastUsedSource and dwOptions has no source type */
1715 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1716 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1717 INSTALLPROPERTY_LASTUSEDSOURCE
, "path");
1718 ok(r
== ERROR_UNKNOWN_PRODUCT
,
1719 "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
1721 /* MSIINSTALLCONTEXT_USERUNMANAGED */
1723 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Products\\");
1724 lstrcatA(keypath
, prod_squashed
);
1726 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
1727 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1729 /* user product key exists */
1730 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1731 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1732 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1733 ok(r
== ERROR_BAD_CONFIGURATION
,
1734 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
1736 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
1737 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1739 /* SourceList key exists, no source type */
1740 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1741 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1742 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1743 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1745 /* Media key is created by MsiSourceListSetInfo */
1746 res
= RegOpenKeyA(source
, "Media", &media
);
1747 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1748 CHECK_REG_STR(media
, "MediaPackage", "path");
1750 /* set the info again */
1751 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1752 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1753 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path2");
1754 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1755 CHECK_REG_STR(media
, "MediaPackage", "path2");
1757 /* NULL szProperty */
1758 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1759 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1761 ok(r
== ERROR_INVALID_PARAMETER
,
1762 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1764 /* empty szProperty */
1765 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1766 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1768 ok(r
== ERROR_UNKNOWN_PROPERTY
,
1769 "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r
);
1772 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1773 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1774 INSTALLPROPERTY_MEDIAPACKAGEPATH
, NULL
);
1775 ok(r
== ERROR_UNKNOWN_PROPERTY
,
1776 "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r
);
1779 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1780 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1781 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "");
1782 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1783 CHECK_REG_STR(media
, "MediaPackage", "");
1785 /* INSTALLPROPERTY_MEDIAPACKAGEPATH, MSISOURCETYPE_NETWORK */
1786 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1787 MSIINSTALLCONTEXT_USERUNMANAGED
,
1788 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1789 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1790 ok(r
== ERROR_INVALID_PARAMETER
,
1791 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1793 /* INSTALLPROPERTY_MEDIAPACKAGEPATH, MSISOURCETYPE_URL */
1794 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1795 MSIINSTALLCONTEXT_USERUNMANAGED
,
1796 MSICODE_PRODUCT
| MSISOURCETYPE_URL
,
1797 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1798 ok(r
== ERROR_INVALID_PARAMETER
,
1799 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1801 /* INSTALLPROPERTY_DISKPROMPT */
1802 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1803 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1804 INSTALLPROPERTY_DISKPROMPT
, "prompt");
1805 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1806 CHECK_REG_STR(media
, "DiskPrompt", "prompt");
1808 /* INSTALLPROPERTY_DISKPROMPT, MSISOURCETYPE_NETWORK */
1809 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1810 MSIINSTALLCONTEXT_USERUNMANAGED
,
1811 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1812 INSTALLPROPERTY_DISKPROMPT
, "prompt");
1813 ok(r
== ERROR_INVALID_PARAMETER
,
1814 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1816 /* INSTALLPROPERTY_DISKPROMPT, MSISOURCETYPE_URL */
1817 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1818 MSIINSTALLCONTEXT_USERUNMANAGED
,
1819 MSICODE_PRODUCT
| MSISOURCETYPE_URL
,
1820 INSTALLPROPERTY_DISKPROMPT
, "prompt");
1821 ok(r
== ERROR_INVALID_PARAMETER
,
1822 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1824 /* INSTALLPROPERTY_LASTUSEDSOURCE */
1825 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1826 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1827 INSTALLPROPERTY_LASTUSEDSOURCE
, "source");
1828 ok(r
== ERROR_INVALID_PARAMETER
,
1829 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1831 /* INSTALLPROPERTY_LASTUSEDSOURCE, MSISOURCETYPE_NETWORK */
1832 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1833 MSIINSTALLCONTEXT_USERUNMANAGED
,
1834 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1835 INSTALLPROPERTY_LASTUSEDSOURCE
, "source");
1836 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1838 /* Net key is created by MsiSourceListSetInfo */
1839 res
= RegOpenKeyA(source
, "Net", &net
);
1840 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1841 CHECK_REG_STR(net
, "1", "source\\")
1842 CHECK_REG_STR(source
, "LastUsedSource", "n;1;source");
1844 /* source has forward slash */
1845 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1846 MSIINSTALLCONTEXT_USERUNMANAGED
,
1847 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1848 INSTALLPROPERTY_LASTUSEDSOURCE
, "source/");
1849 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1850 CHECK_REG_STR(net
, "1", "source\\");
1851 CHECK_REG_STR(net
, "2", "source/\\");
1852 CHECK_REG_STR(source
, "LastUsedSource", "n;2;source/");
1854 /* INSTALLPROPERTY_LASTUSEDSOURCE, MSISOURCETYPE_URL */
1855 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1856 MSIINSTALLCONTEXT_USERUNMANAGED
,
1857 MSICODE_PRODUCT
| MSISOURCETYPE_URL
,
1858 INSTALLPROPERTY_LASTUSEDSOURCE
, "source");
1859 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1861 /* URL key is created by MsiSourceListSetInfo */
1862 res
= RegOpenKeyA(source
, "URL", &url
);
1863 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1864 CHECK_REG_STR(url
, "1", "source/");
1865 CHECK_REG_STR(source
, "LastUsedSource", "u;1;source");
1867 /* source has backslash */
1868 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1869 MSIINSTALLCONTEXT_USERUNMANAGED
,
1870 MSICODE_PRODUCT
| MSISOURCETYPE_URL
,
1871 INSTALLPROPERTY_LASTUSEDSOURCE
, "source\\");
1872 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1873 CHECK_REG_STR(url
, "1", "source/");
1874 CHECK_REG_STR(url
, "2", "source\\/");
1875 CHECK_REG_STR(source
, "LastUsedSource", "u;2;source\\");
1877 /* INSTALLPROPERTY_LASTUSEDSOURCE, MSISOURCETYPE_MEDIA */
1878 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1879 MSIINSTALLCONTEXT_USERUNMANAGED
,
1880 MSICODE_PRODUCT
| MSISOURCETYPE_MEDIA
,
1881 INSTALLPROPERTY_LASTUSEDSOURCE
, "source");
1882 ok(r
== ERROR_INVALID_PARAMETER
,
1883 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1885 /* INSTALLPROPERTY_PACKAGENAME */
1886 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1887 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1888 INSTALLPROPERTY_PACKAGENAME
, "name");
1889 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1890 CHECK_REG_STR(source
, "PackageName", "name");
1892 /* INSTALLPROPERTY_PACKAGENAME, MSISOURCETYPE_NETWORK */
1893 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1894 MSIINSTALLCONTEXT_USERUNMANAGED
,
1895 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
1896 INSTALLPROPERTY_PACKAGENAME
, "name");
1897 ok(r
== ERROR_INVALID_PARAMETER
,
1898 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1900 /* INSTALLPROPERTY_PACKAGENAME, MSISOURCETYPE_URL */
1901 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1902 MSIINSTALLCONTEXT_USERUNMANAGED
,
1903 MSICODE_PRODUCT
| MSISOURCETYPE_URL
,
1904 INSTALLPROPERTY_PACKAGENAME
, "name");
1905 ok(r
== ERROR_INVALID_PARAMETER
,
1906 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
1908 /* INSTALLPROPERTY_LASTUSEDTYPE */
1909 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1910 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1911 INSTALLPROPERTY_LASTUSEDTYPE
, "type");
1912 ok(r
== ERROR_UNKNOWN_PROPERTY
,
1913 "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r
);
1915 /* definitely unknown property */
1916 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1917 MSIINSTALLCONTEXT_USERUNMANAGED
, MSICODE_PRODUCT
,
1919 ok(r
== ERROR_UNKNOWN_PROPERTY
,
1920 "Expected ERROR_UNKNOWN_PROPERTY, got %d\n", r
);
1922 RegDeleteValueA(net
, "1");
1923 RegDeleteKeyA(net
, "");
1925 RegDeleteValueA(url
, "1");
1926 RegDeleteKeyA(url
, "");
1928 RegDeleteValueA(media
, "MediaPackage");
1929 RegDeleteValueA(media
, "DiskPrompt");
1930 RegDeleteKeyA(media
, "");
1932 RegDeleteValueA(source
, "PackageName");
1933 RegDeleteKeyA(source
, "");
1934 RegCloseKey(source
);
1935 RegDeleteKeyA(userkey
, "");
1936 RegCloseKey(userkey
);
1938 /* MSIINSTALLCONTEXT_USERMANAGED */
1940 lstrcpyA(keypath
, "Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\Managed\\");
1941 lstrcatA(keypath
, usersid
);
1942 lstrcatA(keypath
, "\\Installer\\Products\\");
1943 lstrcatA(keypath
, prod_squashed
);
1945 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &userkey
);
1946 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1948 /* user product key exists */
1949 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1950 MSIINSTALLCONTEXT_USERMANAGED
, MSICODE_PRODUCT
,
1951 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1952 ok(r
== ERROR_BAD_CONFIGURATION
,
1953 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
1955 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
1956 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1958 /* SourceList key exists, no source type */
1959 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1960 MSIINSTALLCONTEXT_USERMANAGED
, MSICODE_PRODUCT
,
1961 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1962 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
1964 /* Media key is created by MsiSourceListSetInfo */
1965 res
= RegOpenKeyA(source
, "Media", &media
);
1966 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1967 CHECK_REG_STR(media
, "MediaPackage", "path");
1969 RegDeleteValueA(media
, "MediaPackage");
1970 RegDeleteKeyA(media
, "");
1972 RegDeleteKeyA(source
, "");
1973 RegCloseKey(source
);
1974 RegDeleteKeyA(userkey
, "");
1975 RegCloseKey(userkey
);
1977 /* MSIINSTALLCONTEXT_MACHINE */
1979 lstrcpyA(keypath
, "Software\\Classes\\Installer\\Products\\");
1980 lstrcatA(keypath
, prod_squashed
);
1982 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &prodkey
);
1983 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1985 /* user product key exists */
1986 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1987 MSIINSTALLCONTEXT_MACHINE
, MSICODE_PRODUCT
,
1988 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1989 ok(r
== ERROR_BAD_CONFIGURATION
,
1990 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
1992 res
= RegCreateKeyA(prodkey
, "SourceList", &source
);
1993 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
1995 /* SourceList key exists, no source type */
1996 r
= pMsiSourceListSetInfoA(prodcode
, NULL
,
1997 MSIINSTALLCONTEXT_MACHINE
, MSICODE_PRODUCT
,
1998 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
1999 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2001 /* Media key is created by MsiSourceListSetInfo */
2002 res
= RegOpenKeyA(source
, "Media", &media
);
2003 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2004 CHECK_REG_STR(media
, "MediaPackage", "path");
2006 /* szUserSid is non-NULL */
2007 r
= pMsiSourceListSetInfoA(prodcode
, usersid
,
2008 MSIINSTALLCONTEXT_MACHINE
, MSICODE_PRODUCT
,
2009 INSTALLPROPERTY_MEDIAPACKAGEPATH
, "path");
2010 ok(r
== ERROR_INVALID_PARAMETER
,
2011 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2013 RegDeleteValueA(media
, "MediaPackage");
2014 RegDeleteKeyA(media
, "");
2016 RegDeleteKeyA(source
, "");
2017 RegCloseKey(source
);
2018 RegDeleteKeyA(prodkey
, "");
2019 RegCloseKey(prodkey
);
2023 static void test_MsiSourceListAddMediaDisk(void)
2025 CHAR prodcode
[MAX_PATH
];
2026 CHAR prod_squashed
[MAX_PATH
];
2027 CHAR keypath
[MAX_PATH
*2];
2028 HKEY prodkey
, userkey
;
2034 if (!pMsiSourceListAddMediaDiskA
)
2036 win_skip("MsiSourceListAddMediaDiskA is not available\n");
2040 create_test_guid(prodcode
, prod_squashed
);
2041 if (!get_user_sid(&usersid
))
2043 skip("User SID not available -> skipping MsiSourceListAddMediaDiskA tests\n");
2047 /* GetLastError is not set by the function */
2049 /* NULL szProductCodeOrPatchCode */
2050 r
= pMsiSourceListAddMediaDiskA(NULL
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2051 MSICODE_PRODUCT
, 1, "label", "prompt");
2052 ok(r
== ERROR_INVALID_PARAMETER
,
2053 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2055 /* empty szProductCodeOrPatchCode */
2056 r
= pMsiSourceListAddMediaDiskA("", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2057 MSICODE_PRODUCT
, 1, "label", "prompt");
2058 ok(r
== ERROR_INVALID_PARAMETER
,
2059 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2061 /* garbage szProductCodeOrPatchCode */
2062 r
= pMsiSourceListAddMediaDiskA("garbage", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2063 MSICODE_PRODUCT
, 1, "label", "prompt");
2064 ok(r
== ERROR_INVALID_PARAMETER
,
2065 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2067 /* guid without brackets */
2068 r
= pMsiSourceListAddMediaDiskA("51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA",
2069 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2070 MSICODE_PRODUCT
, 1, "label", "prompt");
2071 ok(r
== ERROR_INVALID_PARAMETER
,
2072 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2074 /* guid with brackets */
2075 r
= pMsiSourceListAddMediaDiskA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}",
2076 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2077 MSICODE_PRODUCT
, 1, "label", "prompt");
2078 ok(r
== ERROR_UNKNOWN_PRODUCT
,
2079 "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
2081 /* dwOptions has MSISOURCETYPE_NETWORK */
2082 r
= pMsiSourceListAddMediaDiskA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}",
2083 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2084 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
2085 1, "label", "prompt");
2086 ok(r
== ERROR_INVALID_PARAMETER
,
2087 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2089 /* dwOptions has MSISOURCETYPE_URL */
2090 r
= pMsiSourceListAddMediaDiskA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}",
2091 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2092 MSICODE_PRODUCT
| MSISOURCETYPE_URL
,
2093 1, "label", "prompt");
2094 ok(r
== ERROR_INVALID_PARAMETER
,
2095 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2097 /* dwOptions has MSISOURCETYPE_MEDIA */
2098 r
= pMsiSourceListAddMediaDiskA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}",
2099 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2100 MSICODE_PRODUCT
| MSISOURCETYPE_MEDIA
,
2101 1, "label", "prompt");
2102 ok(r
== ERROR_INVALID_PARAMETER
,
2103 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2105 /* MSIINSTALLCONTEXT_USERUNMANAGED */
2107 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Products\\");
2108 lstrcatA(keypath
, prod_squashed
);
2110 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
2111 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2113 /* user product key exists */
2114 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2115 MSIINSTALLCONTEXT_USERUNMANAGED
,
2116 MSICODE_PRODUCT
, 1, "label", "prompt");
2117 ok(r
== ERROR_BAD_CONFIGURATION
,
2118 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
2120 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
2121 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2123 /* SourceList key exists */
2124 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2125 MSIINSTALLCONTEXT_USERUNMANAGED
,
2126 MSICODE_PRODUCT
, 1, "label", "prompt");
2127 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2129 /* Media subkey is created by MsiSourceListAddMediaDisk */
2130 res
= RegOpenKeyA(source
, "Media", &media
);
2131 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2133 CHECK_REG_STR(media
, "1", "label;prompt");
2135 /* dwDiskId is random */
2136 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2137 MSIINSTALLCONTEXT_USERUNMANAGED
,
2138 MSICODE_PRODUCT
, 42, "label42", "prompt42");
2139 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2141 CHECK_REG_STR(media
, "1", "label;prompt");
2142 CHECK_REG_STR(media
, "42", "label42;prompt42");
2145 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2146 MSIINSTALLCONTEXT_USERUNMANAGED
,
2147 MSICODE_PRODUCT
, 0, "label0", "prompt0");
2148 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2150 CHECK_REG_STR(media
, "0", "label0;prompt0");
2151 CHECK_REG_STR(media
, "1", "label;prompt");
2152 CHECK_REG_STR(media
, "42", "label42;prompt42");
2154 /* dwDiskId is < 0 */
2155 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2156 MSIINSTALLCONTEXT_USERUNMANAGED
,
2157 MSICODE_PRODUCT
, -1, "label-1", "prompt-1");
2158 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2160 CHECK_REG_STR(media
, "-1", "label-1;prompt-1");
2161 CHECK_REG_STR(media
, "0", "label0;prompt0");
2162 CHECK_REG_STR(media
, "1", "label;prompt");
2163 CHECK_REG_STR(media
, "42", "label42;prompt42");
2165 /* update dwDiskId 1 */
2166 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2167 MSIINSTALLCONTEXT_USERUNMANAGED
,
2168 MSICODE_PRODUCT
, 1, "newlabel", "newprompt");
2169 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2171 CHECK_REG_STR(media
, "-1", "label-1;prompt-1");
2172 CHECK_REG_STR(media
, "0", "label0;prompt0");
2173 CHECK_REG_STR(media
, "1", "newlabel;newprompt");
2174 CHECK_REG_STR(media
, "42", "label42;prompt42");
2176 /* update dwDiskId 1, szPrompt is NULL */
2177 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2178 MSIINSTALLCONTEXT_USERUNMANAGED
,
2179 MSICODE_PRODUCT
, 1, "etiqueta", NULL
);
2180 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2182 CHECK_REG_STR(media
, "-1", "label-1;prompt-1");
2183 CHECK_REG_STR(media
, "0", "label0;prompt0");
2184 CHECK_REG_STR(media
, "1", "etiqueta;");
2185 CHECK_REG_STR(media
, "42", "label42;prompt42");
2187 /* update dwDiskId 1, szPrompt is empty */
2188 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2189 MSIINSTALLCONTEXT_USERUNMANAGED
,
2190 MSICODE_PRODUCT
, 1, "etikett", "");
2191 ok(r
== ERROR_INVALID_PARAMETER
,
2192 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2194 /* update dwDiskId 1, szVolumeLabel is NULL */
2195 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2196 MSIINSTALLCONTEXT_USERUNMANAGED
,
2197 MSICODE_PRODUCT
, 1, NULL
, "provocar");
2198 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2200 CHECK_REG_STR(media
, "-1", "label-1;prompt-1");
2201 CHECK_REG_STR(media
, "0", "label0;prompt0");
2202 CHECK_REG_STR(media
, "1", ";provocar");
2203 CHECK_REG_STR(media
, "42", "label42;prompt42");
2205 /* update dwDiskId 1, szVolumeLabel is empty */
2206 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2207 MSIINSTALLCONTEXT_USERUNMANAGED
,
2208 MSICODE_PRODUCT
, 1, "", "provoquer");
2209 ok(r
== ERROR_INVALID_PARAMETER
,
2210 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2212 /* szUserSid is NULL */
2213 r
= pMsiSourceListAddMediaDiskA(prodcode
, NULL
,
2214 MSIINSTALLCONTEXT_USERUNMANAGED
,
2215 MSICODE_PRODUCT
, 1, NULL
, "provoquer");
2216 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2218 CHECK_REG_STR(media
, "-1", "label-1;prompt-1");
2219 CHECK_REG_STR(media
, "0", "label0;prompt0");
2220 CHECK_REG_STR(media
, "1", ";provoquer");
2221 CHECK_REG_STR(media
, "42", "label42;prompt42");
2223 RegDeleteValueA(media
, "-1");
2224 RegDeleteValueA(media
, "0");
2225 RegDeleteValueA(media
, "1");
2226 RegDeleteValueA(media
, "42");
2227 RegDeleteKeyA(media
, "");
2229 RegDeleteKeyA(source
, "");
2230 RegCloseKey(source
);
2231 RegDeleteKeyA(userkey
, "");
2232 RegCloseKey(userkey
);
2234 /* MSIINSTALLCONTEXT_USERMANAGED */
2236 lstrcpyA(keypath
, "Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\Managed\\");
2237 lstrcatA(keypath
, usersid
);
2238 lstrcatA(keypath
, "\\Installer\\Products\\");
2239 lstrcatA(keypath
, prod_squashed
);
2241 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &userkey
);
2242 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2244 /* user product key exists */
2245 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2246 MSIINSTALLCONTEXT_USERMANAGED
,
2247 MSICODE_PRODUCT
, 1, "label", "prompt");
2248 ok(r
== ERROR_BAD_CONFIGURATION
,
2249 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
2251 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
2252 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2254 /* SourceList key exists */
2255 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2256 MSIINSTALLCONTEXT_USERMANAGED
,
2257 MSICODE_PRODUCT
, 1, "label", "prompt");
2258 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2260 /* Media subkey is created by MsiSourceListAddMediaDisk */
2261 res
= RegOpenKeyA(source
, "Media", &media
);
2262 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2264 CHECK_REG_STR(media
, "1", "label;prompt");
2266 RegDeleteValueA(media
, "1");
2267 RegDeleteKeyA(media
, "");
2269 RegDeleteKeyA(source
, "");
2270 RegCloseKey(source
);
2271 RegDeleteKeyA(userkey
, "");
2272 RegCloseKey(userkey
);
2274 /* MSIINSTALLCONTEXT_MACHINE */
2276 lstrcpyA(keypath
, "Software\\Classes\\Installer\\Products\\");
2277 lstrcatA(keypath
, prod_squashed
);
2279 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &prodkey
);
2280 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2282 /* machine product key exists */
2283 r
= pMsiSourceListAddMediaDiskA(prodcode
, NULL
,
2284 MSIINSTALLCONTEXT_MACHINE
,
2285 MSICODE_PRODUCT
, 1, "label", "prompt");
2286 ok(r
== ERROR_BAD_CONFIGURATION
,
2287 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
2289 res
= RegCreateKeyA(prodkey
, "SourceList", &source
);
2290 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2292 /* SourceList key exists */
2293 r
= pMsiSourceListAddMediaDiskA(prodcode
, NULL
,
2294 MSIINSTALLCONTEXT_MACHINE
,
2295 MSICODE_PRODUCT
, 1, "label", "prompt");
2296 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2298 /* Media subkey is created by MsiSourceListAddMediaDisk */
2299 res
= RegOpenKeyA(source
, "Media", &media
);
2300 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2302 CHECK_REG_STR(media
, "1", "label;prompt");
2304 /* szUserSid is non-NULL */
2305 r
= pMsiSourceListAddMediaDiskA(prodcode
, usersid
,
2306 MSIINSTALLCONTEXT_MACHINE
,
2307 MSICODE_PRODUCT
, 1, "label", "prompt");
2308 ok(r
== ERROR_INVALID_PARAMETER
,
2309 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2311 RegDeleteValueA(media
, "1");
2312 RegDeleteKeyA(media
, "");
2314 RegDeleteKeyA(source
, "");
2315 RegCloseKey(source
);
2316 RegDeleteKeyA(prodkey
, "");
2317 RegCloseKey(prodkey
);
2321 static void test_MsiSourceListEnumMediaDisks(void)
2323 CHAR prodcode
[MAX_PATH
];
2324 CHAR prod_squashed
[MAX_PATH
];
2325 CHAR keypath
[MAX_PATH
*2];
2326 CHAR label
[MAX_PATH
];
2327 CHAR prompt
[MAX_PATH
];
2328 HKEY prodkey
, userkey
;
2330 DWORD labelsz
, promptsz
;
2337 if (!pMsiSourceListEnumMediaDisksA
)
2339 win_skip("MsiSourceListEnumMediaDisksA is not available\n");
2343 create_test_guid(prodcode
, prod_squashed
);
2344 if (!get_user_sid(&usersid
))
2346 skip("User SID not available -> skipping MsiSourceListEnumMediaDisksA tests\n");
2350 /* GetLastError is not set by the function */
2352 /* NULL szProductCodeOrPatchCode */
2353 labelsz
= sizeof(label
);
2354 promptsz
= sizeof(prompt
);
2355 r
= pMsiSourceListEnumMediaDisksA(NULL
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2356 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2358 ok(r
== ERROR_INVALID_PARAMETER
,
2359 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2361 /* empty szProductCodeOrPatchCode */
2362 labelsz
= sizeof(label
);
2363 promptsz
= sizeof(prompt
);
2364 r
= pMsiSourceListEnumMediaDisksA("", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2365 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2367 ok(r
== ERROR_INVALID_PARAMETER
,
2368 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2370 /* garbage szProductCodeOrPatchCode */
2371 labelsz
= sizeof(label
);
2372 promptsz
= sizeof(prompt
);
2373 r
= pMsiSourceListEnumMediaDisksA("garbage", usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2374 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2376 ok(r
== ERROR_INVALID_PARAMETER
,
2377 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2379 /* guid without brackets */
2380 labelsz
= sizeof(label
);
2381 promptsz
= sizeof(prompt
);
2382 r
= pMsiSourceListEnumMediaDisksA("51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA",
2383 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2384 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2386 ok(r
== ERROR_INVALID_PARAMETER
,
2387 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2389 /* guid with brackets */
2390 labelsz
= sizeof(label
);
2391 promptsz
= sizeof(prompt
);
2392 r
= pMsiSourceListEnumMediaDisksA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}",
2393 usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2394 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2396 ok(r
== ERROR_UNKNOWN_PRODUCT
,
2397 "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
2399 /* dwOptions has MSISOURCETYPE_NETWORK */
2400 labelsz
= sizeof(label
);
2401 promptsz
= sizeof(prompt
);
2402 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2403 MSICODE_PRODUCT
| MSISOURCETYPE_NETWORK
,
2404 0, &id
, label
, &labelsz
,
2406 ok(r
== ERROR_INVALID_PARAMETER
,
2407 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2409 /* dwOptions has MSISOURCETYPE_URL */
2410 labelsz
= sizeof(label
);
2411 promptsz
= sizeof(prompt
);
2412 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2413 MSICODE_PRODUCT
| MSISOURCETYPE_URL
,
2414 0, &id
, label
, &labelsz
,
2416 ok(r
== ERROR_INVALID_PARAMETER
,
2417 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2419 /* dwIndex is non-zero */
2420 labelsz
= sizeof(label
);
2421 promptsz
= sizeof(prompt
);
2422 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2423 MSICODE_PRODUCT
, 1, &id
, label
, &labelsz
,
2425 ok(r
== ERROR_INVALID_PARAMETER
,
2426 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2428 /* MSIINSTALLCONTEXT_USERUNMANAGED */
2430 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Products\\");
2431 lstrcatA(keypath
, prod_squashed
);
2433 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
2434 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2436 /* user product key exists */
2437 labelsz
= sizeof(label
);
2438 promptsz
= sizeof(prompt
);
2439 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2440 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2442 ok(r
== ERROR_BAD_CONFIGURATION
,
2443 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
2445 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
2446 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2448 /* SourceList key exists */
2450 lstrcpyA(label
, "aaa");
2451 labelsz
= 0xdeadbeef;
2452 lstrcpyA(prompt
, "bbb");
2453 promptsz
= 0xdeadbeef;
2454 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2455 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2457 ok(r
== ERROR_NO_MORE_ITEMS
,
2458 "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
2459 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2460 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2461 ok(labelsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", labelsz
);
2462 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2463 ok(promptsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", promptsz
);
2465 res
= RegCreateKeyA(source
, "Media", &media
);
2466 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2468 /* Media key exists */
2470 lstrcpyA(label
, "aaa");
2471 labelsz
= 0xdeadbeef;
2472 lstrcpyA(prompt
, "bbb");
2473 promptsz
= 0xdeadbeef;
2474 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2475 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2477 ok(r
== ERROR_NO_MORE_ITEMS
,
2478 "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
2479 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2480 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2481 ok(labelsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", labelsz
);
2482 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2483 ok(promptsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", promptsz
);
2485 res
= RegSetValueExA(media
, "1", 0, REG_SZ
, (LPBYTE
)"label;prompt", 13);
2486 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2490 lstrcpyA(label
, "aaa");
2492 lstrcpyA(prompt
, "bbb");
2493 promptsz
= MAX_PATH
;
2494 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2495 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2497 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2498 ok(id
== 1, "Expected 1, got %d\n", id
);
2499 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2500 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2501 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2502 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2504 res
= RegSetValueExA(media
, "2", 0, REG_SZ
, (LPBYTE
)"one;two", 8);
2505 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2507 /* now disk 2 exists, get the sizes */
2510 promptsz
= MAX_PATH
;
2511 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2512 MSICODE_PRODUCT
, 1, &id
, NULL
, &labelsz
,
2514 ok(r
== ERROR_SUCCESS
|| r
== ERROR_INVALID_PARAMETER
,
2515 "Expected ERROR_SUCCESS or ERROR_INVALID_PARAMETER, got %d\n", r
);
2516 if (r
== ERROR_SUCCESS
)
2518 ok(id
== 2, "Expected 2, got %d\n", id
);
2519 ok(labelsz
== 3, "Expected 3, got %d\n", labelsz
);
2520 ok(promptsz
== 3, "Expected 3, got %d\n", promptsz
);
2523 /* now fill in the values */
2525 lstrcpyA(label
, "aaa");
2527 lstrcpyA(prompt
, "bbb");
2528 promptsz
= MAX_PATH
;
2529 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2530 MSICODE_PRODUCT
, 1, &id
, label
, &labelsz
,
2532 ok(r
== ERROR_SUCCESS
|| r
== ERROR_INVALID_PARAMETER
,
2533 "Expected ERROR_SUCCESS or ERROR_INVALID_PARAMETER, got %d\n", r
);
2534 if (r
== ERROR_SUCCESS
)
2536 ok(id
== 2, "Expected 2, got %d\n", id
);
2537 ok(!lstrcmpA(label
, "one"), "Expected \"one\", got \"%s\"\n", label
);
2538 ok(labelsz
== 3, "Expected 3, got %d\n", labelsz
);
2539 ok(!lstrcmpA(prompt
, "two"), "Expected \"two\", got \"%s\"\n", prompt
);
2540 ok(promptsz
== 3, "Expected 3, got %d\n", promptsz
);
2542 else if (r
== ERROR_INVALID_PARAMETER
)
2544 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2545 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2546 ok(labelsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", labelsz
);
2547 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2548 ok(promptsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", promptsz
);
2551 res
= RegSetValueExA(media
, "4", 0, REG_SZ
, (LPBYTE
)"three;four", 11);
2552 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2554 /* disks 1, 2, 4 exist, reset the enumeration */
2556 lstrcpyA(label
, "aaa");
2558 lstrcpyA(prompt
, "bbb");
2559 promptsz
= MAX_PATH
;
2560 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2561 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2563 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2564 ok(id
== 1, "Expected 1, got %d\n", id
);
2565 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2566 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2567 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2568 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2570 /* disks 1, 2, 4 exist, index 1 */
2572 lstrcpyA(label
, "aaa");
2574 lstrcpyA(prompt
, "bbb");
2575 promptsz
= MAX_PATH
;
2576 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2577 MSICODE_PRODUCT
, 1, &id
, label
, &labelsz
,
2579 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2580 ok(id
== 2, "Expected 2, got %d\n", id
);
2581 ok(!lstrcmpA(label
, "one"), "Expected \"one\", got \"%s\"\n", label
);
2582 ok(labelsz
== 3, "Expected 3, got %d\n", labelsz
);
2583 ok(!lstrcmpA(prompt
, "two"), "Expected \"two\", got \"%s\"\n", prompt
);
2584 ok(promptsz
== 3, "Expected 3, got %d\n", promptsz
);
2586 /* disks 1, 2, 4 exist, index 2 */
2588 lstrcpyA(label
, "aaa");
2590 lstrcpyA(prompt
, "bbb");
2591 promptsz
= MAX_PATH
;
2592 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2593 MSICODE_PRODUCT
, 2, &id
, label
, &labelsz
,
2595 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2596 ok(id
== 4, "Expected 4, got %d\n", id
);
2597 ok(!lstrcmpA(label
, "three"), "Expected \"three\", got \"%s\"\n", label
);
2598 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2599 ok(!lstrcmpA(prompt
, "four"), "Expected \"four\", got \"%s\"\n", prompt
);
2600 ok(promptsz
== 4, "Expected 4, got %d\n", promptsz
);
2602 /* disks 1, 2, 4 exist, index 3, invalid */
2604 lstrcpyA(label
, "aaa");
2606 lstrcpyA(prompt
, "bbb");
2607 promptsz
= MAX_PATH
;
2608 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2609 MSICODE_PRODUCT
, 3, &id
, label
, &labelsz
,
2611 ok(r
== ERROR_NO_MORE_ITEMS
,
2612 "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
2613 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2614 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2615 ok(labelsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", labelsz
);
2616 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2617 ok(promptsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", promptsz
);
2619 /* disks 1, 2, 4 exist, reset the enumeration */
2621 lstrcpyA(label
, "aaa");
2623 lstrcpyA(prompt
, "bbb");
2624 promptsz
= MAX_PATH
;
2625 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2626 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2628 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2629 ok(id
== 1, "Expected 1, got %d\n", id
);
2630 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2631 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2632 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2633 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2635 /* try index 0 again */
2637 lstrcpyA(label
, "aaa");
2639 lstrcpyA(prompt
, "bbb");
2640 promptsz
= MAX_PATH
;
2641 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2642 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2644 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2645 ok(id
== 1, "Expected 1, got %d\n", id
);
2646 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2647 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2648 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2649 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2651 /* jump to index 2 */
2653 lstrcpyA(label
, "aaa");
2655 lstrcpyA(prompt
, "bbb");
2656 promptsz
= MAX_PATH
;
2657 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2658 MSICODE_PRODUCT
, 2, &id
, label
, &labelsz
,
2660 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2661 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2662 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2663 ok(labelsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", labelsz
);
2664 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2665 ok(promptsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", promptsz
);
2667 /* after error, try index 1 */
2669 lstrcpyA(label
, "aaa");
2671 lstrcpyA(prompt
, "bbb");
2672 promptsz
= MAX_PATH
;
2673 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2674 MSICODE_PRODUCT
, 1, &id
, label
, &labelsz
,
2676 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2677 ok(id
== 2, "Expected 2, got %d\n", id
);
2678 ok(!lstrcmpA(label
, "one"), "Expected \"one\", got \"%s\"\n", label
);
2679 ok(labelsz
== 3, "Expected 3, got %d\n", labelsz
);
2680 ok(!lstrcmpA(prompt
, "two"), "Expected \"two\", got \"%s\"\n", prompt
);
2681 ok(promptsz
== 3, "Expected 3, got %d\n", promptsz
);
2683 /* try index 1 again */
2685 lstrcpyA(label
, "aaa");
2687 lstrcpyA(prompt
, "bbb");
2688 promptsz
= MAX_PATH
;
2689 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2690 MSICODE_PRODUCT
, 1, &id
, label
, &labelsz
,
2692 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2693 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2694 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2695 ok(labelsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", labelsz
);
2696 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2697 ok(promptsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", promptsz
);
2699 /* NULL pdwDiskId */
2700 lstrcpyA(label
, "aaa");
2702 lstrcpyA(prompt
, "bbb");
2703 promptsz
= MAX_PATH
;
2704 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2705 MSICODE_PRODUCT
, 0, NULL
, label
, &labelsz
,
2707 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2708 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2709 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2710 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2711 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2713 /* szVolumeLabel is NULL */
2716 lstrcpyA(prompt
, "bbb");
2717 promptsz
= MAX_PATH
;
2718 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2719 MSICODE_PRODUCT
, 0, &id
, NULL
, &labelsz
,
2721 ok(r
== ERROR_SUCCESS
|| r
== ERROR_INVALID_PARAMETER
,
2722 "Expected ERROR_SUCCESS or ERROR_INVALID_PARAMETER, got %d\n", r
);
2723 if (r
== ERROR_SUCCESS
)
2725 ok(id
== 1, "Expected 1, got %d\n", id
);
2726 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2727 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2728 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2731 /* szVolumeLabel and pcchVolumeLabel are NULL */
2733 lstrcpyA(prompt
, "bbb");
2734 promptsz
= MAX_PATH
;
2735 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2736 MSICODE_PRODUCT
, 0, &id
, NULL
, NULL
,
2738 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2739 ok(id
== 1, "Expected 1, got %d\n", id
);
2740 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2741 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2743 /* szVolumeLabel is non-NULL while pcchVolumeLabel is NULL */
2745 lstrcpyA(label
, "aaa");
2746 lstrcpyA(prompt
, "bbb");
2747 promptsz
= MAX_PATH
;
2748 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2749 MSICODE_PRODUCT
, 0, &id
, label
, NULL
,
2751 ok(r
== ERROR_SUCCESS
|| r
== ERROR_INVALID_PARAMETER
,
2752 "Expected ERROR_SUCCESS or ERROR_INVALID_PARAMETER, got %d\n", r
);
2753 if (r
== ERROR_SUCCESS
)
2755 ok(id
== 1, "Expected 1, got %d\n", id
);
2756 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2757 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2758 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2761 /* szDiskPrompt is NULL */
2763 lstrcpyA(label
, "aaa");
2765 promptsz
= MAX_PATH
;
2766 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2767 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2769 ok(r
== ERROR_SUCCESS
|| r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_SUCCESS, got %d\n", r
);
2770 if (r
== ERROR_SUCCESS
)
2772 ok(id
== 1, "Expected 1, got %d\n", id
);
2773 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2774 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2775 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2778 /* szDiskPrompt and pcchDiskPrompt are NULL */
2780 lstrcpyA(label
, "aaa");
2782 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2783 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2785 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2786 ok(id
== 1, "Expected 1, got %d\n", id
);
2787 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2788 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2790 /* szDiskPrompt is non-NULL while pcchDiskPrompt is NULL */
2792 lstrcpyA(label
, "aaa");
2794 lstrcpyA(prompt
, "bbb");
2795 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2796 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2798 ok(r
== ERROR_INVALID_PARAMETER
,
2799 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
2800 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2801 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2802 ok(labelsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", labelsz
);
2803 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2805 /* pcchVolumeLabel is exactly 5 */
2806 lstrcpyA(label
, "aaa");
2808 lstrcpyA(prompt
, "bbb");
2809 promptsz
= MAX_PATH
;
2810 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2811 MSICODE_PRODUCT
, 0, NULL
, label
, &labelsz
,
2813 ok(r
== ERROR_MORE_DATA
, "Expected ERROR_MORE_DATA, got %d\n", r
);
2814 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2815 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2816 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2817 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2819 /* pcchDiskPrompt is exactly 6 */
2820 lstrcpyA(label
, "aaa");
2822 lstrcpyA(prompt
, "bbb");
2824 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2825 MSICODE_PRODUCT
, 0, NULL
, label
, &labelsz
,
2827 ok(r
== ERROR_MORE_DATA
, "Expected ERROR_MORE_DATA, got %d\n", r
);
2828 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2829 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2830 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2831 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2833 res
= RegSetValueExA(media
, "1", 0, REG_SZ
, (LPBYTE
)"label", 13);
2834 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2838 lstrcpyA(label
, "aaa");
2840 lstrcpyA(prompt
, "bbb");
2841 promptsz
= MAX_PATH
;
2842 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2843 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2845 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2846 ok(id
== 1, "Expected 1, got %d\n", id
);
2847 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2848 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2849 ok(!lstrcmpA(prompt
, "label"), "Expected \"label\", got \"%s\"\n", prompt
);
2850 ok(promptsz
== 5, "Expected 5, got %d\n", promptsz
);
2852 res
= RegSetValueExA(media
, "1", 0, REG_SZ
, (LPBYTE
)"label;", 13);
2853 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2855 /* semicolon, no disk prompt */
2857 lstrcpyA(label
, "aaa");
2859 lstrcpyA(prompt
, "bbb");
2860 promptsz
= MAX_PATH
;
2861 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2862 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2864 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2865 ok(id
== 1, "Expected 1, got %d\n", id
);
2866 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
2867 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
2868 ok(!lstrcmpA(prompt
, ""), "Expected \"\", got \"%s\"\n", prompt
);
2869 ok(promptsz
== 0, "Expected 0, got %d\n", promptsz
);
2871 res
= RegSetValueExA(media
, "1", 0, REG_SZ
, (LPBYTE
)";prompt", 13);
2872 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2874 /* semicolon, label doesn't exist */
2876 lstrcpyA(label
, "aaa");
2878 lstrcpyA(prompt
, "bbb");
2879 promptsz
= MAX_PATH
;
2880 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2881 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2883 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2884 ok(id
== 1, "Expected 1, got %d\n", id
);
2885 ok(!lstrcmpA(label
, ""), "Expected \"\", got \"%s\"\n", label
);
2886 ok(labelsz
== 0, "Expected 0, got %d\n", labelsz
);
2887 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
2888 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
2890 res
= RegSetValueExA(media
, "1", 0, REG_SZ
, (LPBYTE
)";", 13);
2891 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2893 /* semicolon, neither label nor disk prompt exist */
2895 lstrcpyA(label
, "aaa");
2897 lstrcpyA(prompt
, "bbb");
2898 promptsz
= MAX_PATH
;
2899 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2900 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2902 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2903 ok(id
== 1, "Expected 1, got %d\n", id
);
2904 ok(!lstrcmpA(label
, ""), "Expected \"\", got \"%s\"\n", label
);
2905 ok(labelsz
== 0, "Expected 0, got %d\n", labelsz
);
2906 ok(!lstrcmpA(prompt
, ""), "Expected \"\", got \"%s\"\n", prompt
);
2907 ok(promptsz
== 0, "Expected 0, got %d\n", promptsz
);
2910 res
= RegSetValueExA(media
, "1", 0, REG_DWORD
, (LPBYTE
)&val
, sizeof(DWORD
));
2911 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2913 /* type is REG_DWORD */
2915 lstrcpyA(label
, "aaa");
2917 lstrcpyA(prompt
, "bbb");
2918 promptsz
= MAX_PATH
;
2919 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERUNMANAGED
,
2920 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2922 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
2923 ok(id
== 1, "Expected 1, got %d\n", id
);
2924 ok(!lstrcmpA(label
, "#42"), "Expected \"#42\", got \"%s\"\n", label
);
2925 ok(labelsz
== 3, "Expected 3, got %d\n", labelsz
);
2926 ok(!lstrcmpA(prompt
, "#42"), "Expected \"#42\", got \"%s\"\n", prompt
);
2927 ok(promptsz
== 3, "Expected 3, got %d\n", promptsz
);
2929 RegDeleteValueA(media
, "1");
2930 RegDeleteValueA(media
, "2");
2931 RegDeleteValueA(media
, "4");
2932 RegDeleteKeyA(media
, "");
2934 RegDeleteKeyA(source
, "");
2935 RegCloseKey(source
);
2936 RegDeleteKeyA(userkey
, "");
2937 RegCloseKey(userkey
);
2939 /* MSIINSTALLCONTEXT_USERMANAGED */
2941 lstrcpyA(keypath
, "Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\Managed\\");
2942 lstrcatA(keypath
, usersid
);
2943 lstrcatA(keypath
, "\\Installer\\Products\\");
2944 lstrcatA(keypath
, prod_squashed
);
2946 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &userkey
);
2947 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2949 /* user product key exists */
2950 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERMANAGED
,
2951 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2953 ok(r
== ERROR_BAD_CONFIGURATION
,
2954 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
2956 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
2957 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2959 /* SourceList key exists */
2961 lstrcpyA(label
, "aaa");
2962 labelsz
= 0xdeadbeef;
2963 lstrcpyA(prompt
, "bbb");
2964 promptsz
= 0xdeadbeef;
2965 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERMANAGED
,
2966 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2968 ok(r
== ERROR_NO_MORE_ITEMS
,
2969 "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
2970 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2971 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2972 ok(labelsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", labelsz
);
2973 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2974 ok(promptsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", promptsz
);
2976 res
= RegCreateKeyA(source
, "Media", &media
);
2977 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2979 /* Media key exists */
2981 lstrcpyA(label
, "aaa");
2982 labelsz
= 0xdeadbeef;
2983 lstrcpyA(prompt
, "bbb");
2984 promptsz
= 0xdeadbeef;
2985 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERMANAGED
,
2986 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
2988 ok(r
== ERROR_NO_MORE_ITEMS
,
2989 "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
2990 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
2991 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
2992 ok(labelsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", labelsz
);
2993 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
2994 ok(promptsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", promptsz
);
2996 res
= RegSetValueExA(media
, "2", 0, REG_SZ
, (LPBYTE
)"label;prompt", 13);
2997 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
2999 /* disk exists, but no id 1 */
3001 lstrcpyA(label
, "aaa");
3003 lstrcpyA(prompt
, "bbb");
3004 promptsz
= MAX_PATH
;
3005 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_USERMANAGED
,
3006 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
3008 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3009 ok(id
== 2, "Expected 2, got %d\n", id
);
3010 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
3011 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
3012 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
3013 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
3015 RegDeleteValueA(media
, "2");
3016 RegDeleteKeyA(media
, "");
3018 RegDeleteKeyA(source
, "");
3019 RegCloseKey(source
);
3020 RegDeleteKeyA(userkey
, "");
3021 RegCloseKey(userkey
);
3023 /* MSIINSTALLCONTEXT_MACHINE */
3025 lstrcpyA(keypath
, "Software\\Classes\\Installer\\Products\\");
3026 lstrcatA(keypath
, prod_squashed
);
3028 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &prodkey
);
3029 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3031 /* machine product key exists */
3032 r
= pMsiSourceListEnumMediaDisksA(prodcode
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
3033 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
3035 ok(r
== ERROR_BAD_CONFIGURATION
,
3036 "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
3038 res
= RegCreateKeyA(prodkey
, "SourceList", &source
);
3039 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3041 /* SourceList key exists */
3043 lstrcpyA(label
, "aaa");
3044 labelsz
= 0xdeadbeef;
3045 lstrcpyA(prompt
, "bbb");
3046 promptsz
= 0xdeadbeef;
3047 r
= pMsiSourceListEnumMediaDisksA(prodcode
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
3048 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
3050 ok(r
== ERROR_NO_MORE_ITEMS
,
3051 "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
3052 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
3053 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
3054 ok(labelsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", labelsz
);
3055 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
3056 ok(promptsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", promptsz
);
3058 res
= RegCreateKeyA(source
, "Media", &media
);
3059 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3061 /* Media key exists */
3063 lstrcpyA(label
, "aaa");
3064 labelsz
= 0xdeadbeef;
3065 lstrcpyA(prompt
, "bbb");
3066 promptsz
= 0xdeadbeef;
3067 r
= pMsiSourceListEnumMediaDisksA(prodcode
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
3068 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
3070 ok(r
== ERROR_NO_MORE_ITEMS
,
3071 "Expected ERROR_NO_MORE_ITEMS, got %d\n", r
);
3072 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
3073 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
3074 ok(labelsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", labelsz
);
3075 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
3076 ok(promptsz
== 0xdeadbeef, "Expected 0xdeadbeef, got %d\n", promptsz
);
3078 res
= RegSetValueExA(media
, "2", 0, REG_SZ
, (LPBYTE
)"label;prompt", 13);
3079 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3081 /* disk exists, but no id 1 */
3083 lstrcpyA(label
, "aaa");
3085 lstrcpyA(prompt
, "bbb");
3086 promptsz
= MAX_PATH
;
3087 r
= pMsiSourceListEnumMediaDisksA(prodcode
, NULL
, MSIINSTALLCONTEXT_MACHINE
,
3088 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
3090 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3091 ok(id
== 2, "Expected 2, got %d\n", id
);
3092 ok(!lstrcmpA(label
, "label"), "Expected \"label\", got \"%s\"\n", label
);
3093 ok(labelsz
== 5, "Expected 5, got %d\n", labelsz
);
3094 ok(!lstrcmpA(prompt
, "prompt"), "Expected \"prompt\", got \"%s\"\n", prompt
);
3095 ok(promptsz
== 6, "Expected 6, got %d\n", promptsz
);
3097 /* szUserSid is non-NULL */
3099 lstrcpyA(label
, "aaa");
3101 lstrcpyA(prompt
, "bbb");
3102 promptsz
= MAX_PATH
;
3103 r
= pMsiSourceListEnumMediaDisksA(prodcode
, usersid
, MSIINSTALLCONTEXT_MACHINE
,
3104 MSICODE_PRODUCT
, 0, &id
, label
, &labelsz
,
3106 ok(r
== ERROR_INVALID_PARAMETER
,
3107 "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3108 ok(id
== 0xbeef, "Expected 0xbeef, got %d\n", id
);
3109 ok(!lstrcmpA(label
, "aaa"), "Expected \"aaa\", got \"%s\"\n", label
);
3110 ok(labelsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", labelsz
);
3111 ok(!lstrcmpA(prompt
, "bbb"), "Expected \"bbb\", got \"%s\"\n", prompt
);
3112 ok(promptsz
== MAX_PATH
, "Expected MAX_PATH, got %d\n", promptsz
);
3114 RegDeleteValueA(media
, "2");
3115 RegDeleteKeyA(media
, "");
3117 RegDeleteKeyA(source
, "");
3118 RegCloseKey(source
);
3119 RegDeleteKeyA(prodkey
, "");
3120 RegCloseKey(prodkey
);
3124 static void test_MsiSourceListAddSource(void)
3126 CHAR prodcode
[MAX_PATH
];
3127 CHAR prod_squashed
[MAX_PATH
];
3128 CHAR keypath
[MAX_PATH
*2];
3129 CHAR username
[MAX_PATH
];
3133 HKEY prodkey
, userkey
;
3137 if (!pMsiSourceListAddSourceA
)
3139 win_skip("Skipping MsiSourceListAddSourceA tests\n");
3143 create_test_guid(prodcode
, prod_squashed
);
3144 if (!get_user_sid(&usersid
))
3146 skip("User SID not available -> skipping MsiSourceListAddSourceA tests\n");
3150 /* MACHINENAME\username */
3152 if (pGetUserNameExA
!= NULL
)
3153 pGetUserNameExA(NameSamCompatible
, username
, &size
);
3156 GetComputerNameA(username
, &size
);
3157 lstrcatA(username
, "\\");
3158 ptr
= username
+ lstrlenA(username
);
3159 size
= MAX_PATH
- (ptr
- username
);
3160 GetUserNameA(ptr
, &size
);
3162 trace("username: %s\n", username
);
3164 /* GetLastError is not set by the function */
3166 /* NULL szProduct */
3167 r
= pMsiSourceListAddSourceA(NULL
, username
, 0, "source");
3168 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3170 /* empty szProduct */
3171 r
= pMsiSourceListAddSourceA("", username
, 0, "source");
3172 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3174 /* garbage szProduct */
3175 r
= pMsiSourceListAddSourceA("garbage", username
, 0, "source");
3176 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3178 /* guid without brackets */
3179 r
= pMsiSourceListAddSourceA("51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA", username
, 0, "source");
3180 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3182 /* guid with brackets */
3183 r
= pMsiSourceListAddSourceA("{51CD2AD5-0482-4C46-8DDD-0ED1022AA1AA}", username
, 0, "source");
3184 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
3186 /* dwReserved is not 0 */
3187 r
= pMsiSourceListAddSourceA(prodcode
, username
, 42, "source");
3188 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3190 /* szSource is NULL */
3191 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, NULL
);
3192 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3194 /* szSource is empty */
3195 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "");
3196 ok(r
== ERROR_INVALID_PARAMETER
, "Expected ERROR_INVALID_PARAMETER, got %d\n", r
);
3198 /* MSIINSTALLCONTEXT_USERMANAGED */
3200 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3201 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
3203 lstrcpyA(keypath
, "Software\\Microsoft\\Windows\\CurrentVersion\\Installer\\Managed\\");
3204 lstrcatA(keypath
, usersid
);
3205 lstrcatA(keypath
, "\\Installer\\Products\\");
3206 lstrcatA(keypath
, prod_squashed
);
3208 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &userkey
);
3209 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3211 /* user product key exists */
3212 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3213 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
3215 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
3216 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3218 /* SourceList key exists */
3219 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3220 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3222 /* Net key is created */
3223 res
= RegOpenKeyA(source
, "Net", &net
);
3224 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3226 /* LastUsedSource does not exist and it is not created */
3227 res
= RegQueryValueExA(source
, "LastUsedSource", 0, NULL
, NULL
, NULL
);
3228 ok(res
== ERROR_FILE_NOT_FOUND
, "Expected ERROR_FILE_NOT_FOUND, got %d\n", res
);
3230 CHECK_REG_STR(net
, "1", "source\\");
3232 RegDeleteValueA(net
, "1");
3233 RegDeleteKeyA(net
, "");
3236 res
= RegSetValueExA(source
, "LastUsedSource", 0, REG_SZ
, (LPBYTE
)"blah", 5);
3237 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3239 /* LastUsedSource value exists */
3240 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3241 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3243 /* Net key is created */
3244 res
= RegOpenKeyA(source
, "Net", &net
);
3245 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3247 CHECK_REG_STR(source
, "LastUsedSource", "blah");
3248 CHECK_REG_STR(net
, "1", "source\\");
3250 RegDeleteValueA(net
, "1");
3251 RegDeleteKeyA(net
, "");
3254 res
= RegSetValueExA(source
, "LastUsedSource", 0, REG_SZ
, (LPBYTE
)"5", 2);
3255 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3257 /* LastUsedSource is an integer */
3258 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3259 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3261 /* Net key is created */
3262 res
= RegOpenKeyA(source
, "Net", &net
);
3263 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3265 CHECK_REG_STR(source
, "LastUsedSource", "5");
3266 CHECK_REG_STR(net
, "1", "source\\");
3268 /* Add a second source, has trailing backslash */
3269 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "another\\");
3270 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3272 CHECK_REG_STR(source
, "LastUsedSource", "5");
3273 CHECK_REG_STR(net
, "1", "source\\");
3274 CHECK_REG_STR(net
, "2", "another\\");
3276 res
= RegSetValueExA(source
, "LastUsedSource", 0, REG_SZ
, (LPBYTE
)"2", 2);
3277 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3279 /* LastUsedSource is in the source list */
3280 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "third/");
3281 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3283 CHECK_REG_STR(source
, "LastUsedSource", "2");
3284 CHECK_REG_STR(net
, "1", "source\\");
3285 CHECK_REG_STR(net
, "2", "another\\");
3286 CHECK_REG_STR(net
, "3", "third/\\");
3288 RegDeleteValueA(net
, "1");
3289 RegDeleteValueA(net
, "2");
3290 RegDeleteValueA(net
, "3");
3291 RegDeleteKeyA(net
, "");
3293 RegDeleteKeyA(source
, "");
3294 RegCloseKey(source
);
3295 RegDeleteKeyA(userkey
, "");
3296 RegCloseKey(userkey
);
3298 /* MSIINSTALLCONTEXT_USERUNMANAGED */
3300 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3301 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
3303 lstrcpyA(keypath
, "Software\\Microsoft\\Installer\\Products\\");
3304 lstrcatA(keypath
, prod_squashed
);
3306 res
= RegCreateKeyA(HKEY_CURRENT_USER
, keypath
, &userkey
);
3307 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3309 /* user product key exists */
3310 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3311 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
3313 res
= RegCreateKeyA(userkey
, "SourceList", &source
);
3314 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3316 /* SourceList key exists */
3317 r
= pMsiSourceListAddSourceA(prodcode
, username
, 0, "source");
3318 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3320 /* Net key is created */
3321 res
= RegOpenKeyA(source
, "Net", &net
);
3322 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3324 CHECK_REG_STR(net
, "1", "source\\");
3326 RegDeleteValueA(net
, "1");
3327 RegDeleteKeyA(net
, "");
3329 RegDeleteKeyA(source
, "");
3330 RegCloseKey(source
);
3331 RegDeleteKeyA(userkey
, "");
3332 RegCloseKey(userkey
);
3334 /* MSIINSTALLCONTEXT_MACHINE */
3336 r
= pMsiSourceListAddSourceA(prodcode
, NULL
, 0, "source");
3337 ok(r
== ERROR_UNKNOWN_PRODUCT
, "Expected ERROR_UNKNOWN_PRODUCT, got %d\n", r
);
3339 lstrcpyA(keypath
, "Software\\Classes\\Installer\\Products\\");
3340 lstrcatA(keypath
, prod_squashed
);
3342 res
= RegCreateKeyA(HKEY_LOCAL_MACHINE
, keypath
, &prodkey
);
3343 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3345 /* machine product key exists */
3346 r
= pMsiSourceListAddSourceA(prodcode
, NULL
, 0, "source");
3347 ok(r
== ERROR_BAD_CONFIGURATION
, "Expected ERROR_BAD_CONFIGURATION, got %d\n", r
);
3349 res
= RegCreateKeyA(prodkey
, "SourceList", &source
);
3350 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3352 /* SourceList key exists */
3353 r
= pMsiSourceListAddSourceA(prodcode
, NULL
, 0, "source");
3354 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3356 /* Net key is created */
3357 res
= RegOpenKeyA(source
, "Net", &net
);
3358 ok(res
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", res
);
3360 CHECK_REG_STR(net
, "1", "source\\");
3362 /* empty szUserName */
3363 r
= pMsiSourceListAddSourceA(prodcode
, "", 0, "another");
3364 ok(r
== ERROR_SUCCESS
, "Expected ERROR_SUCCESS, got %d\n", r
);
3366 CHECK_REG_STR(net
, "1", "source\\");
3367 CHECK_REG_STR(net
, "2", "another\\");
3369 RegDeleteValueA(net
, "2");
3370 RegDeleteValueA(net
, "1");
3371 RegDeleteKeyA(net
, "");
3373 RegDeleteKeyA(source
, "");
3374 RegCloseKey(source
);
3375 RegDeleteKeyA(prodkey
, "");
3376 RegCloseKey(prodkey
);
3382 init_functionpointers();
3384 test_MsiSourceListGetInfo();
3385 test_MsiSourceListAddSourceEx();
3386 test_MsiSourceListEnumSources();
3387 test_MsiSourceListSetInfo();
3388 test_MsiSourceListAddMediaDisk();
3389 test_MsiSourceListEnumMediaDisks();
3390 test_MsiSourceListAddSource();