mmdevapi/tests: Add tests for IAudioClient::GetCurrentPadding.
[wine] / dlls / msi / tests / package.c
1 /*
2  * tests for Microsoft Installer functionality
3  *
4  * Copyright 2005 Mike McCormack for CodeWeavers
5  * Copyright 2005 Aric Stewart for CodeWeavers
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  */
21
22 #define COBJMACROS
23
24 #include <stdio.h>
25 #include <windows.h>
26 #include <msidefs.h>
27 #include <msi.h>
28 #include <msiquery.h>
29 #include <srrestoreptapi.h>
30 #include <shlobj.h>
31
32 #include "wine/test.h"
33
34 static BOOL is_wow64;
35 static const char msifile[] = "winetest-package.msi";
36 static char CURR_DIR[MAX_PATH];
37
38 static UINT (WINAPI *pMsiApplyMultiplePatchesA)(LPCSTR, LPCSTR, LPCSTR);
39 static INSTALLSTATE (WINAPI *pMsiGetComponentPathExA)(LPCSTR, LPCSTR, LPCSTR, MSIINSTALLCONTEXT, LPSTR, LPDWORD);
40 static HRESULT (WINAPI *pSHGetFolderPathA)(HWND, int, HANDLE, DWORD, LPSTR);
41
42 static BOOL (WINAPI *pConvertSidToStringSidA)(PSID, LPSTR*);
43 static BOOL (WINAPI *pGetTokenInformation)( HANDLE, TOKEN_INFORMATION_CLASS, LPVOID, DWORD, PDWORD );
44 static BOOL (WINAPI *pOpenProcessToken)( HANDLE, DWORD, PHANDLE );
45 static LONG (WINAPI *pRegDeleteKeyExA)(HKEY, LPCSTR, REGSAM, DWORD);
46 static LONG (WINAPI *pRegDeleteKeyExW)(HKEY, LPCWSTR, REGSAM, DWORD);
47 static BOOL (WINAPI *pIsWow64Process)(HANDLE, PBOOL);
48 static void (WINAPI *pGetSystemInfo)(LPSYSTEM_INFO);
49 static void (WINAPI *pGetNativeSystemInfo)(LPSYSTEM_INFO);
50 static UINT (WINAPI *pGetSystemWow64DirectoryA)(LPSTR, UINT);
51
52 static BOOL (WINAPI *pSRRemoveRestorePoint)(DWORD);
53 static BOOL (WINAPI *pSRSetRestorePointA)(RESTOREPOINTINFOA*, STATEMGRSTATUS*);
54
55 static void init_functionpointers(void)
56 {
57     HMODULE hmsi = GetModuleHandleA("msi.dll");
58     HMODULE hadvapi32 = GetModuleHandleA("advapi32.dll");
59     HMODULE hkernel32 = GetModuleHandleA("kernel32.dll");
60     HMODULE hshell32 = GetModuleHandleA("shell32.dll");
61     HMODULE hsrclient;
62
63 #define GET_PROC(mod, func) \
64     p ## func = (void*)GetProcAddress(mod, #func);
65
66     GET_PROC(hmsi, MsiApplyMultiplePatchesA);
67     GET_PROC(hmsi, MsiGetComponentPathExA);
68     GET_PROC(hshell32, SHGetFolderPathA);
69
70     GET_PROC(hadvapi32, ConvertSidToStringSidA);
71     GET_PROC(hadvapi32, GetTokenInformation);
72     GET_PROC(hadvapi32, OpenProcessToken);
73     GET_PROC(hadvapi32, RegDeleteKeyExA)
74     GET_PROC(hadvapi32, RegDeleteKeyExW)
75     GET_PROC(hkernel32, IsWow64Process)
76     GET_PROC(hkernel32, GetNativeSystemInfo)
77     GET_PROC(hkernel32, GetSystemInfo)
78     GET_PROC(hkernel32, GetSystemWow64DirectoryA)
79
80     hsrclient = LoadLibraryA("srclient.dll");
81     GET_PROC(hsrclient, SRRemoveRestorePoint);
82     GET_PROC(hsrclient, SRSetRestorePointA);
83 #undef GET_PROC
84 }
85
86 static BOOL is_process_limited(void)
87 {
88     HANDLE token;
89
90     if (!pOpenProcessToken || !pGetTokenInformation) return FALSE;
91
92     if (pOpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &token))
93     {
94         BOOL ret;
95         TOKEN_ELEVATION_TYPE type = TokenElevationTypeDefault;
96         DWORD size;
97
98         ret = pGetTokenInformation(token, TokenElevationType, &type, sizeof(type), &size);
99         CloseHandle(token);
100         return (ret && type == TokenElevationTypeLimited);
101     }
102     return FALSE;
103 }
104
105 static LONG delete_key( HKEY key, LPCSTR subkey, REGSAM access )
106 {
107     if (pRegDeleteKeyExA)
108         return pRegDeleteKeyExA( key, subkey, access, 0 );
109     return RegDeleteKeyA( key, subkey );
110 }
111
112 static char *get_user_sid(void)
113 {
114     HANDLE token;
115     DWORD size = 0;
116     TOKEN_USER *user;
117     char *usersid = NULL;
118
119     if (!pConvertSidToStringSidA)
120     {
121         win_skip("ConvertSidToStringSidA is not available\n");
122         return NULL;
123     }
124     OpenProcessToken(GetCurrentProcess(), TOKEN_QUERY, &token);
125     GetTokenInformation(token, TokenUser, NULL, size, &size);
126
127     user = HeapAlloc(GetProcessHeap(), 0, size);
128     GetTokenInformation(token, TokenUser, user, size, &size);
129     pConvertSidToStringSidA(user->User.Sid, &usersid);
130     HeapFree(GetProcessHeap(), 0, user);
131
132     CloseHandle(token);
133     return usersid;
134 }
135
136 /* RegDeleteTreeW from dlls/advapi32/registry.c */
137 static LSTATUS package_RegDeleteTreeW(HKEY hKey, LPCWSTR lpszSubKey, REGSAM access)
138 {
139     LONG ret;
140     DWORD dwMaxSubkeyLen, dwMaxValueLen;
141     DWORD dwMaxLen, dwSize;
142     WCHAR szNameBuf[MAX_PATH], *lpszName = szNameBuf;
143     HKEY hSubKey = hKey;
144
145     if(lpszSubKey)
146     {
147         ret = RegOpenKeyExW(hKey, lpszSubKey, 0, access, &hSubKey);
148         if (ret) return ret;
149     }
150
151     ret = RegQueryInfoKeyW(hSubKey, NULL, NULL, NULL, NULL,
152             &dwMaxSubkeyLen, NULL, NULL, &dwMaxValueLen, NULL, NULL, NULL);
153     if (ret) goto cleanup;
154
155     dwMaxSubkeyLen++;
156     dwMaxValueLen++;
157     dwMaxLen = max(dwMaxSubkeyLen, dwMaxValueLen);
158     if (dwMaxLen > sizeof(szNameBuf)/sizeof(WCHAR))
159     {
160         /* Name too big: alloc a buffer for it */
161         if (!(lpszName = HeapAlloc( GetProcessHeap(), 0, dwMaxLen*sizeof(WCHAR))))
162         {
163             ret = ERROR_NOT_ENOUGH_MEMORY;
164             goto cleanup;
165         }
166     }
167
168     /* Recursively delete all the subkeys */
169     while (TRUE)
170     {
171         dwSize = dwMaxLen;
172         if (RegEnumKeyExW(hSubKey, 0, lpszName, &dwSize, NULL,
173                           NULL, NULL, NULL)) break;
174
175         ret = package_RegDeleteTreeW(hSubKey, lpszName, access);
176         if (ret) goto cleanup;
177     }
178
179     if (lpszSubKey)
180     {
181         if (pRegDeleteKeyExW)
182             ret = pRegDeleteKeyExW(hKey, lpszSubKey, access, 0);
183         else
184             ret = RegDeleteKeyW(hKey, lpszSubKey);
185     }
186     else
187         while (TRUE)
188         {
189             dwSize = dwMaxLen;
190             if (RegEnumValueW(hKey, 0, lpszName, &dwSize,
191                   NULL, NULL, NULL, NULL)) break;
192
193             ret = RegDeleteValueW(hKey, lpszName);
194             if (ret) goto cleanup;
195         }
196
197 cleanup:
198     if (lpszName != szNameBuf)
199         HeapFree(GetProcessHeap(), 0, lpszName);
200     if(lpszSubKey)
201         RegCloseKey(hSubKey);
202     return ret;
203 }
204
205 static BOOL squash_guid(LPCWSTR in, LPWSTR out)
206 {
207     DWORD i,n=1;
208     GUID guid;
209
210     if (FAILED(CLSIDFromString((LPCOLESTR)in, &guid)))
211         return FALSE;
212
213     for(i=0; i<8; i++)
214         out[7-i] = in[n++];
215     n++;
216     for(i=0; i<4; i++)
217         out[11-i] = in[n++];
218     n++;
219     for(i=0; i<4; i++)
220         out[15-i] = in[n++];
221     n++;
222     for(i=0; i<2; i++)
223     {
224         out[17+i*2] = in[n++];
225         out[16+i*2] = in[n++];
226     }
227     n++;
228     for( ; i<8; i++)
229     {
230         out[17+i*2] = in[n++];
231         out[16+i*2] = in[n++];
232     }
233     out[32]=0;
234     return TRUE;
235 }
236
237 static void create_test_guid(LPSTR prodcode, LPSTR squashed)
238 {
239     WCHAR guidW[MAX_PATH];
240     WCHAR squashedW[MAX_PATH];
241     GUID guid;
242     HRESULT hr;
243     int size;
244
245     hr = CoCreateGuid(&guid);
246     ok(hr == S_OK, "Expected S_OK, got %d\n", hr);
247
248     size = StringFromGUID2(&guid, guidW, MAX_PATH);
249     ok(size == 39, "Expected 39, got %d\n", hr);
250
251     WideCharToMultiByte(CP_ACP, 0, guidW, size, prodcode, MAX_PATH, NULL, NULL);
252     squash_guid(guidW, squashedW);
253     WideCharToMultiByte(CP_ACP, 0, squashedW, -1, squashed, MAX_PATH, NULL, NULL);
254 }
255
256 static void set_component_path(LPCSTR filename, MSIINSTALLCONTEXT context,
257                                LPCSTR guid, LPSTR usersid, BOOL dir)
258 {
259     WCHAR guidW[MAX_PATH];
260     WCHAR squashedW[MAX_PATH];
261     CHAR squashed[MAX_PATH];
262     CHAR comppath[MAX_PATH];
263     CHAR prodpath[MAX_PATH];
264     CHAR path[MAX_PATH];
265     LPCSTR prod = NULL;
266     HKEY hkey;
267     REGSAM access = KEY_ALL_ACCESS;
268
269     if (is_wow64)
270         access |= KEY_WOW64_64KEY;
271
272     MultiByteToWideChar(CP_ACP, 0, guid, -1, guidW, MAX_PATH);
273     squash_guid(guidW, squashedW);
274     WideCharToMultiByte(CP_ACP, 0, squashedW, -1, squashed, MAX_PATH, NULL, NULL);
275
276     if (context == MSIINSTALLCONTEXT_MACHINE)
277     {
278         prod = "3D0DAE300FACA1300AD792060BCDAA92";
279         sprintf(comppath,
280                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
281                 "Installer\\UserData\\S-1-5-18\\Components\\%s", squashed);
282         lstrcpyA(prodpath,
283                  "SOFTWARE\\Classes\\Installer\\"
284                  "Products\\3D0DAE300FACA1300AD792060BCDAA92");
285     }
286     else if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
287     {
288         prod = "7D2F387510109040002000060BECB6AB";
289         sprintf(comppath,
290                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
291                 "Installer\\UserData\\%s\\Components\\%s", usersid, squashed);
292         sprintf(prodpath,
293                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
294                 "Installer\\%s\\Installer\\Products\\"
295                 "7D2F387510109040002000060BECB6AB", usersid);
296     }
297     else if (context == MSIINSTALLCONTEXT_USERMANAGED)
298     {
299         prod = "7D2F387510109040002000060BECB6AB";
300         sprintf(comppath,
301                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
302                 "Installer\\UserData\\%s\\Components\\%s", usersid, squashed);
303         sprintf(prodpath,
304                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
305                 "Installer\\Managed\\%s\\Installer\\Products\\"
306                 "7D2F387510109040002000060BECB6AB", usersid);
307     }
308
309     RegCreateKeyExA(HKEY_LOCAL_MACHINE, comppath, 0, NULL, 0, access, NULL, &hkey, NULL);
310
311     lstrcpyA(path, CURR_DIR);
312     lstrcatA(path, "\\");
313     if (!dir) lstrcatA(path, filename);
314
315     RegSetValueExA(hkey, prod, 0, REG_SZ, (LPBYTE)path, lstrlenA(path));
316     RegCloseKey(hkey);
317
318     RegCreateKeyExA(HKEY_LOCAL_MACHINE, prodpath, 0, NULL, 0, access, NULL, &hkey, NULL);
319     RegCloseKey(hkey);
320 }
321
322 static void delete_component_path(LPCSTR guid, MSIINSTALLCONTEXT context, LPSTR usersid)
323 {
324     WCHAR guidW[MAX_PATH];
325     WCHAR squashedW[MAX_PATH];
326     WCHAR substrW[MAX_PATH];
327     CHAR squashed[MAX_PATH];
328     CHAR comppath[MAX_PATH];
329     CHAR prodpath[MAX_PATH];
330     REGSAM access = KEY_ALL_ACCESS;
331
332     if (is_wow64)
333         access |= KEY_WOW64_64KEY;
334
335     MultiByteToWideChar(CP_ACP, 0, guid, -1, guidW, MAX_PATH);
336     squash_guid(guidW, squashedW);
337     WideCharToMultiByte(CP_ACP, 0, squashedW, -1, squashed, MAX_PATH, NULL, NULL);
338
339     if (context == MSIINSTALLCONTEXT_MACHINE)
340     {
341         sprintf(comppath,
342                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
343                 "Installer\\UserData\\S-1-5-18\\Components\\%s", squashed);
344         lstrcpyA(prodpath,
345                  "SOFTWARE\\Classes\\Installer\\"
346                  "Products\\3D0DAE300FACA1300AD792060BCDAA92");
347     }
348     else if (context == MSIINSTALLCONTEXT_USERUNMANAGED)
349     {
350         sprintf(comppath,
351                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
352                 "Installer\\UserData\\%s\\Components\\%s", usersid, squashed);
353         sprintf(prodpath,
354                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
355                 "Installer\\%s\\Installer\\Products\\"
356                 "7D2F387510109040002000060BECB6AB", usersid);
357     }
358     else if (context == MSIINSTALLCONTEXT_USERMANAGED)
359     {
360         sprintf(comppath,
361                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
362                 "Installer\\UserData\\%s\\Components\\%s", usersid, squashed);
363         sprintf(prodpath,
364                 "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\"
365                 "Installer\\Managed\\%s\\Installer\\Products\\"
366                 "7D2F387510109040002000060BECB6AB", usersid);
367     }
368
369     MultiByteToWideChar(CP_ACP, 0, comppath, -1, substrW, MAX_PATH);
370     package_RegDeleteTreeW(HKEY_LOCAL_MACHINE, substrW, access);
371
372     MultiByteToWideChar(CP_ACP, 0, prodpath, -1, substrW, MAX_PATH);
373     package_RegDeleteTreeW(HKEY_LOCAL_MACHINE, substrW, access);
374 }
375
376 static UINT do_query(MSIHANDLE hdb, const char *query, MSIHANDLE *phrec)
377 {
378     MSIHANDLE hview = 0;
379     UINT r, ret;
380
381     /* open a select query */
382     r = MsiDatabaseOpenView(hdb, query, &hview);
383     if (r != ERROR_SUCCESS)
384         return r;
385     r = MsiViewExecute(hview, 0);
386     if (r != ERROR_SUCCESS)
387         return r;
388     ret = MsiViewFetch(hview, phrec);
389     r = MsiViewClose(hview);
390     if (r != ERROR_SUCCESS)
391         return r;
392     r = MsiCloseHandle(hview);
393     if (r != ERROR_SUCCESS)
394         return r;
395     return ret;
396 }
397
398 static UINT run_query( MSIHANDLE hdb, const char *query )
399 {
400     MSIHANDLE hview = 0;
401     UINT r;
402
403     r = MsiDatabaseOpenView(hdb, query, &hview);
404     if( r != ERROR_SUCCESS )
405         return r;
406
407     r = MsiViewExecute(hview, 0);
408     if( r == ERROR_SUCCESS )
409         r = MsiViewClose(hview);
410     MsiCloseHandle(hview);
411     return r;
412 }
413
414 static UINT create_component_table( MSIHANDLE hdb )
415 {
416     return run_query( hdb,
417             "CREATE TABLE `Component` ( "
418             "`Component` CHAR(72) NOT NULL, "
419             "`ComponentId` CHAR(38), "
420             "`Directory_` CHAR(72) NOT NULL, "
421             "`Attributes` SHORT NOT NULL, "
422             "`Condition` CHAR(255), "
423             "`KeyPath` CHAR(72) "
424             "PRIMARY KEY `Component`)" );
425 }
426
427 static UINT create_feature_table( MSIHANDLE hdb )
428 {
429     return run_query( hdb,
430             "CREATE TABLE `Feature` ( "
431             "`Feature` CHAR(38) NOT NULL, "
432             "`Feature_Parent` CHAR(38), "
433             "`Title` CHAR(64), "
434             "`Description` CHAR(255), "
435             "`Display` SHORT NOT NULL, "
436             "`Level` SHORT NOT NULL, "
437             "`Directory_` CHAR(72), "
438             "`Attributes` SHORT NOT NULL "
439             "PRIMARY KEY `Feature`)" );
440 }
441
442 static UINT create_feature_components_table( MSIHANDLE hdb )
443 {
444     return run_query( hdb,
445             "CREATE TABLE `FeatureComponents` ( "
446             "`Feature_` CHAR(38) NOT NULL, "
447             "`Component_` CHAR(72) NOT NULL "
448             "PRIMARY KEY `Feature_`, `Component_` )" );
449 }
450
451 static UINT create_file_table( MSIHANDLE hdb )
452 {
453     return run_query( hdb,
454             "CREATE TABLE `File` ("
455             "`File` CHAR(72) NOT NULL, "
456             "`Component_` CHAR(72) NOT NULL, "
457             "`FileName` CHAR(255) NOT NULL, "
458             "`FileSize` LONG NOT NULL, "
459             "`Version` CHAR(72), "
460             "`Language` CHAR(20), "
461             "`Attributes` SHORT, "
462             "`Sequence` SHORT NOT NULL "
463             "PRIMARY KEY `File`)" );
464 }
465
466 static UINT create_remove_file_table( MSIHANDLE hdb )
467 {
468     return run_query( hdb,
469             "CREATE TABLE `RemoveFile` ("
470             "`FileKey` CHAR(72) NOT NULL, "
471             "`Component_` CHAR(72) NOT NULL, "
472             "`FileName` CHAR(255) LOCALIZABLE, "
473             "`DirProperty` CHAR(72) NOT NULL, "
474             "`InstallMode` SHORT NOT NULL "
475             "PRIMARY KEY `FileKey`)" );
476 }
477
478 static UINT create_appsearch_table( MSIHANDLE hdb )
479 {
480     return run_query( hdb,
481             "CREATE TABLE `AppSearch` ("
482             "`Property` CHAR(72) NOT NULL, "
483             "`Signature_` CHAR(72) NOT NULL "
484             "PRIMARY KEY `Property`, `Signature_`)" );
485 }
486
487 static UINT create_reglocator_table( MSIHANDLE hdb )
488 {
489     return run_query( hdb,
490             "CREATE TABLE `RegLocator` ("
491             "`Signature_` CHAR(72) NOT NULL, "
492             "`Root` SHORT NOT NULL, "
493             "`Key` CHAR(255) NOT NULL, "
494             "`Name` CHAR(255), "
495             "`Type` SHORT "
496             "PRIMARY KEY `Signature_`)" );
497 }
498
499 static UINT create_signature_table( MSIHANDLE hdb )
500 {
501     return run_query( hdb,
502             "CREATE TABLE `Signature` ("
503             "`Signature` CHAR(72) NOT NULL, "
504             "`FileName` CHAR(255) NOT NULL, "
505             "`MinVersion` CHAR(20), "
506             "`MaxVersion` CHAR(20), "
507             "`MinSize` LONG, "
508             "`MaxSize` LONG, "
509             "`MinDate` LONG, "
510             "`MaxDate` LONG, "
511             "`Languages` CHAR(255) "
512             "PRIMARY KEY `Signature`)" );
513 }
514
515 static UINT create_launchcondition_table( MSIHANDLE hdb )
516 {
517     return run_query( hdb,
518             "CREATE TABLE `LaunchCondition` ("
519             "`Condition` CHAR(255) NOT NULL, "
520             "`Description` CHAR(255) NOT NULL "
521             "PRIMARY KEY `Condition`)" );
522 }
523
524 static UINT create_property_table( MSIHANDLE hdb )
525 {
526     return run_query( hdb,
527             "CREATE TABLE `Property` ("
528             "`Property` CHAR(72) NOT NULL, "
529             "`Value` CHAR(0) "
530             "PRIMARY KEY `Property`)" );
531 }
532
533 static UINT create_install_execute_sequence_table( MSIHANDLE hdb )
534 {
535     return run_query( hdb,
536             "CREATE TABLE `InstallExecuteSequence` ("
537             "`Action` CHAR(72) NOT NULL, "
538             "`Condition` CHAR(255), "
539             "`Sequence` SHORT "
540             "PRIMARY KEY `Action`)" );
541 }
542
543 static UINT create_media_table( MSIHANDLE hdb )
544 {
545     return run_query( hdb,
546             "CREATE TABLE `Media` ("
547             "`DiskId` SHORT NOT NULL, "
548             "`LastSequence` SHORT NOT NULL, "
549             "`DiskPrompt` CHAR(64), "
550             "`Cabinet` CHAR(255), "
551             "`VolumeLabel` CHAR(32), "
552             "`Source` CHAR(72) "
553             "PRIMARY KEY `DiskId`)" );
554 }
555
556 static UINT create_ccpsearch_table( MSIHANDLE hdb )
557 {
558     return run_query( hdb,
559             "CREATE TABLE `CCPSearch` ("
560             "`Signature_` CHAR(72) NOT NULL "
561             "PRIMARY KEY `Signature_`)" );
562 }
563
564 static UINT create_drlocator_table( MSIHANDLE hdb )
565 {
566     return run_query( hdb,
567             "CREATE TABLE `DrLocator` ("
568             "`Signature_` CHAR(72) NOT NULL, "
569             "`Parent` CHAR(72), "
570             "`Path` CHAR(255), "
571             "`Depth` SHORT "
572             "PRIMARY KEY `Signature_`, `Parent`, `Path`)" );
573 }
574
575 static UINT create_complocator_table( MSIHANDLE hdb )
576 {
577     return run_query( hdb,
578             "CREATE TABLE `CompLocator` ("
579             "`Signature_` CHAR(72) NOT NULL, "
580             "`ComponentId` CHAR(38) NOT NULL, "
581             "`Type` SHORT "
582             "PRIMARY KEY `Signature_`)" );
583 }
584
585 static UINT create_inilocator_table( MSIHANDLE hdb )
586 {
587     return run_query( hdb,
588             "CREATE TABLE `IniLocator` ("
589             "`Signature_` CHAR(72) NOT NULL, "
590             "`FileName` CHAR(255) NOT NULL, "
591             "`Section` CHAR(96)NOT NULL, "
592             "`Key` CHAR(128)NOT NULL, "
593             "`Field` SHORT, "
594             "`Type` SHORT "
595             "PRIMARY KEY `Signature_`)" );
596 }
597
598 #define make_add_entry(type, qtext) \
599     static UINT add##_##type##_##entry( MSIHANDLE hdb, const char *values ) \
600     { \
601         char insert[] = qtext; \
602         char *query; \
603         UINT sz, r; \
604         sz = strlen(values) + sizeof insert; \
605         query = HeapAlloc(GetProcessHeap(),0,sz); \
606         sprintf(query,insert,values); \
607         r = run_query( hdb, query ); \
608         HeapFree(GetProcessHeap(), 0, query); \
609         return r; \
610     }
611
612 make_add_entry(component,
613                "INSERT INTO `Component`  "
614                "(`Component`, `ComponentId`, `Directory_`, "
615                "`Attributes`, `Condition`, `KeyPath`) VALUES( %s )")
616
617 make_add_entry(directory,
618                "INSERT INTO `Directory` "
619                "(`Directory`,`Directory_Parent`,`DefaultDir`) VALUES( %s )")
620
621 make_add_entry(feature,
622                "INSERT INTO `Feature` "
623                "(`Feature`, `Feature_Parent`, `Title`, `Description`, "
624                "`Display`, `Level`, `Directory_`, `Attributes`) VALUES( %s )")
625
626 make_add_entry(feature_components,
627                "INSERT INTO `FeatureComponents` "
628                "(`Feature_`, `Component_`) VALUES( %s )")
629
630 make_add_entry(file,
631                "INSERT INTO `File` "
632                "(`File`, `Component_`, `FileName`, `FileSize`, "
633                "`Version`, `Language`, `Attributes`, `Sequence`) VALUES( %s )")
634
635 make_add_entry(appsearch,
636                "INSERT INTO `AppSearch` "
637                "(`Property`, `Signature_`) VALUES( %s )")
638
639 make_add_entry(signature,
640                "INSERT INTO `Signature` "
641                "(`Signature`, `FileName`, `MinVersion`, `MaxVersion`,"
642                " `MinSize`, `MaxSize`, `MinDate`, `MaxDate`, `Languages`) "
643                "VALUES( %s )")
644
645 make_add_entry(launchcondition,
646                "INSERT INTO `LaunchCondition` "
647                "(`Condition`, `Description`) VALUES( %s )")
648
649 make_add_entry(property,
650                "INSERT INTO `Property` (`Property`, `Value`) VALUES( %s )")
651
652 make_add_entry(install_execute_sequence,
653                "INSERT INTO `InstallExecuteSequence` "
654                "(`Action`, `Condition`, `Sequence`) VALUES( %s )")
655
656 make_add_entry(media,
657                "INSERT INTO `Media` "
658                "(`DiskId`, `LastSequence`, `DiskPrompt`, "
659                "`Cabinet`, `VolumeLabel`, `Source`) VALUES( %s )")
660
661 make_add_entry(ccpsearch,
662                "INSERT INTO `CCPSearch` (`Signature_`) VALUES( %s )")
663
664 make_add_entry(drlocator,
665                "INSERT INTO `DrLocator` "
666                "(`Signature_`, `Parent`, `Path`, `Depth`) VALUES( %s )")
667
668 make_add_entry(complocator,
669                "INSERT INTO `CompLocator` "
670                "(`Signature_`, `ComponentId`, `Type`) VALUES( %s )")
671
672 make_add_entry(inilocator,
673                "INSERT INTO `IniLocator` "
674                "(`Signature_`, `FileName`, `Section`, `Key`, `Field`, `Type`) "
675                "VALUES( %s )")
676
677 static UINT add_reglocator_entry( MSIHANDLE hdb, const char *sig, UINT root, const char *path,
678                                   const char *name, UINT type )
679 {
680     const char insert[] =
681         "INSERT INTO `RegLocator` (`Signature_`, `Root`, `Key`, `Name`, `Type`) "
682         "VALUES( '%s', %u, '%s', '%s', %u )";
683     char *query;
684     UINT sz, r;
685
686     sz = strlen( sig ) + 10 + strlen( path ) + strlen( name ) + 10 + sizeof( insert );
687     query = HeapAlloc( GetProcessHeap(), 0, sz );
688     sprintf( query, insert, sig, root, path, name, type );
689     r = run_query( hdb, query );
690     HeapFree( GetProcessHeap(), 0, query );
691     return r;
692 }
693
694 static UINT set_summary_info(MSIHANDLE hdb)
695 {
696     UINT res;
697     MSIHANDLE suminfo;
698
699     /* build summary info */
700     res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
701     ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );
702
703     res = MsiSummaryInfoSetProperty(suminfo,2, VT_LPSTR, 0,NULL,
704                         "Installation Database");
705     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
706
707     res = MsiSummaryInfoSetProperty(suminfo,3, VT_LPSTR, 0,NULL,
708                         "Installation Database");
709     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
710
711     res = MsiSummaryInfoSetProperty(suminfo,4, VT_LPSTR, 0,NULL,
712                         "Wine Hackers");
713     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
714
715     res = MsiSummaryInfoSetProperty(suminfo,7, VT_LPSTR, 0,NULL,
716                     ";1033");
717     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
718
719     res = MsiSummaryInfoSetProperty(suminfo,9, VT_LPSTR, 0,NULL,
720                     "{913B8D18-FBB6-4CAC-A239-C74C11E3FA74}");
721     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
722
723     res = MsiSummaryInfoSetProperty(suminfo, 14, VT_I4, 100, NULL, NULL);
724     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
725
726     res = MsiSummaryInfoSetProperty(suminfo, 15, VT_I4, 0, NULL, NULL);
727     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
728
729     res = MsiSummaryInfoPersist(suminfo);
730     ok( res == ERROR_SUCCESS , "Failed to make summary info persist\n" );
731
732     res = MsiCloseHandle( suminfo);
733     ok( res == ERROR_SUCCESS , "Failed to close suminfo\n" );
734
735     return res;
736 }
737
738
739 static MSIHANDLE create_package_db(void)
740 {
741     MSIHANDLE hdb = 0;
742     UINT res;
743
744     DeleteFile(msifile);
745
746     /* create an empty database */
747     res = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb );
748     ok( res == ERROR_SUCCESS , "Failed to create database %u\n", res );
749     if( res != ERROR_SUCCESS )
750         return hdb;
751
752     res = MsiDatabaseCommit( hdb );
753     ok( res == ERROR_SUCCESS , "Failed to commit database\n" );
754
755     res = set_summary_info(hdb);
756     ok( res == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", res);
757
758     res = run_query( hdb,
759             "CREATE TABLE `Directory` ( "
760             "`Directory` CHAR(255) NOT NULL, "
761             "`Directory_Parent` CHAR(255), "
762             "`DefaultDir` CHAR(255) NOT NULL "
763             "PRIMARY KEY `Directory`)" );
764     ok( res == ERROR_SUCCESS , "Failed to create directory table\n" );
765
766     return hdb;
767 }
768
769 static UINT package_from_db(MSIHANDLE hdb, MSIHANDLE *handle)
770 {
771     UINT res;
772     CHAR szPackage[12];
773     MSIHANDLE hPackage;
774
775     sprintf(szPackage, "#%u", hdb);
776     res = MsiOpenPackage(szPackage, &hPackage);
777     if (res != ERROR_SUCCESS)
778     {
779         MsiCloseHandle(hdb);
780         return res;
781     }
782
783     res = MsiCloseHandle(hdb);
784     if (res != ERROR_SUCCESS)
785     {
786         MsiCloseHandle(hPackage);
787         return res;
788     }
789
790     *handle = hPackage;
791     return ERROR_SUCCESS;
792 }
793
794 static void create_test_file(const CHAR *name)
795 {
796     HANDLE file;
797     DWORD written;
798
799     file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
800     ok(file != INVALID_HANDLE_VALUE, "Failure to open file %s\n", name);
801     WriteFile(file, name, strlen(name), &written, NULL);
802     WriteFile(file, "\n", strlen("\n"), &written, NULL);
803     CloseHandle(file);
804 }
805
806 typedef struct _tagVS_VERSIONINFO
807 {
808     WORD wLength;
809     WORD wValueLength;
810     WORD wType;
811     WCHAR szKey[1];
812     WORD wPadding1[1];
813     VS_FIXEDFILEINFO Value;
814     WORD wPadding2[1];
815     WORD wChildren[1];
816 } VS_VERSIONINFO;
817
818 #define roundoffs(a, b, r) (((BYTE *)(b) - (BYTE *)(a) + ((r) - 1)) & ~((r) - 1))
819 #define roundpos(a, b, r) (((BYTE *)(a)) + roundoffs(a, b, r))
820
821 static BOOL create_file_with_version(const CHAR *name, LONG ms, LONG ls)
822 {
823     VS_VERSIONINFO *pVerInfo;
824     VS_FIXEDFILEINFO *pFixedInfo;
825     LPBYTE buffer, ofs;
826     CHAR path[MAX_PATH];
827     DWORD handle, size;
828     HANDLE resource;
829     BOOL ret = FALSE;
830
831     GetSystemDirectory(path, MAX_PATH);
832     /* Some dlls can't be updated on Vista/W2K8 */
833     lstrcatA(path, "\\version.dll");
834
835     CopyFileA(path, name, FALSE);
836
837     size = GetFileVersionInfoSize(path, &handle);
838     buffer = HeapAlloc(GetProcessHeap(), 0, size);
839
840     GetFileVersionInfoA(path, 0, size, buffer);
841
842     pVerInfo = (VS_VERSIONINFO *)buffer;
843     ofs = (BYTE *)&pVerInfo->szKey[lstrlenW(pVerInfo->szKey) + 1];
844     pFixedInfo = (VS_FIXEDFILEINFO *)roundpos(pVerInfo, ofs, 4);
845
846     pFixedInfo->dwFileVersionMS = ms;
847     pFixedInfo->dwFileVersionLS = ls;
848     pFixedInfo->dwProductVersionMS = ms;
849     pFixedInfo->dwProductVersionLS = ls;
850
851     resource = BeginUpdateResource(name, FALSE);
852     if (!resource)
853         goto done;
854
855     if (!UpdateResource(resource, RT_VERSION, MAKEINTRESOURCE(VS_VERSION_INFO),
856                    MAKELANGID(LANG_NEUTRAL, SUBLANG_NEUTRAL), buffer, size))
857         goto done;
858
859     if (!EndUpdateResource(resource, FALSE))
860         goto done;
861
862     ret = TRUE;
863
864 done:
865     HeapFree(GetProcessHeap(), 0, buffer);
866     return ret;
867 }
868
869 static BOOL notify_system_change(DWORD event_type, STATEMGRSTATUS *status)
870 {
871     RESTOREPOINTINFOA spec;
872
873     spec.dwEventType = event_type;
874     spec.dwRestorePtType = APPLICATION_INSTALL;
875     spec.llSequenceNumber = status->llSequenceNumber;
876     lstrcpyA(spec.szDescription, "msitest restore point");
877
878     return pSRSetRestorePointA(&spec, status);
879 }
880
881 static void remove_restore_point(DWORD seq_number)
882 {
883     DWORD res;
884
885     res = pSRRemoveRestorePoint(seq_number);
886     if (res != ERROR_SUCCESS)
887         trace("Failed to remove the restore point : %08x\n", res);
888 }
889
890 static void test_createpackage(void)
891 {
892     MSIHANDLE hPackage = 0;
893     UINT res;
894
895     res = package_from_db(create_package_db(), &hPackage);
896     if (res == ERROR_INSTALL_PACKAGE_REJECTED)
897     {
898         skip("Not enough rights to perform tests\n");
899         DeleteFile(msifile);
900         return;
901     }
902     ok( res == ERROR_SUCCESS, " Failed to create package %u\n", res );
903
904     res = MsiCloseHandle( hPackage);
905     ok( res == ERROR_SUCCESS , "Failed to close package\n" );
906     DeleteFile(msifile);
907 }
908
909 static void test_doaction( void )
910 {
911     MSIHANDLE hpkg;
912     UINT r;
913
914     r = MsiDoAction( -1, NULL );
915     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
916
917     r = package_from_db(create_package_db(), &hpkg);
918     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
919     {
920         skip("Not enough rights to perform tests\n");
921         DeleteFile(msifile);
922         return;
923     }
924     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r);
925
926     r = MsiDoAction(hpkg, NULL);
927     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
928
929     r = MsiDoAction(0, "boo");
930     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
931
932     r = MsiDoAction(hpkg, "boo");
933     ok( r == ERROR_FUNCTION_NOT_CALLED, "wrong return val\n");
934
935     MsiCloseHandle( hpkg );
936     DeleteFile(msifile);
937 }
938
939 static void test_gettargetpath_bad(void)
940 {
941     static const WCHAR boo[] = {'b','o','o',0};
942     static const WCHAR empty[] = {0};
943     char buffer[0x80];
944     WCHAR bufferW[0x80];
945     MSIHANDLE hpkg;
946     DWORD sz;
947     UINT r;
948
949     r = package_from_db(create_package_db(), &hpkg);
950     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
951     {
952         skip("Not enough rights to perform tests\n");
953         DeleteFile(msifile);
954         return;
955     }
956     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r);
957
958     r = MsiGetTargetPath( 0, NULL, NULL, NULL );
959     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
960
961     r = MsiGetTargetPath( 0, NULL, NULL, &sz );
962     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
963
964     r = MsiGetTargetPath( 0, "boo", NULL, NULL );
965     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
966
967     r = MsiGetTargetPath( 0, "boo", NULL, NULL );
968     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
969
970     r = MsiGetTargetPath( hpkg, "boo", NULL, NULL );
971     ok( r == ERROR_DIRECTORY, "wrong return val\n");
972
973     r = MsiGetTargetPath( hpkg, "boo", buffer, NULL );
974     ok( r == ERROR_DIRECTORY, "wrong return val\n");
975
976     sz = 0;
977     r = MsiGetTargetPath( hpkg, "", buffer, &sz );
978     ok( r == ERROR_DIRECTORY, "wrong return val\n");
979
980     r = MsiGetTargetPathW( 0, NULL, NULL, NULL );
981     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
982
983     r = MsiGetTargetPathW( 0, NULL, NULL, &sz );
984     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
985
986     r = MsiGetTargetPathW( 0, boo, NULL, NULL );
987     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
988
989     r = MsiGetTargetPathW( 0, boo, NULL, NULL );
990     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
991
992     r = MsiGetTargetPathW( hpkg, boo, NULL, NULL );
993     ok( r == ERROR_DIRECTORY, "wrong return val\n");
994
995     r = MsiGetTargetPathW( hpkg, boo, bufferW, NULL );
996     ok( r == ERROR_DIRECTORY, "wrong return val\n");
997
998     sz = 0;
999     r = MsiGetTargetPathW( hpkg, empty, bufferW, &sz );
1000     ok( r == ERROR_DIRECTORY, "wrong return val\n");
1001
1002     MsiCloseHandle( hpkg );
1003     DeleteFile(msifile);
1004 }
1005
1006 static void query_file_path(MSIHANDLE hpkg, LPCSTR file, LPSTR buff)
1007 {
1008     UINT r;
1009     DWORD size;
1010     MSIHANDLE rec;
1011
1012     rec = MsiCreateRecord( 1 );
1013     ok(rec, "MsiCreate record failed\n");
1014
1015     r = MsiRecordSetString( rec, 0, file );
1016     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
1017
1018     size = MAX_PATH;
1019     r = MsiFormatRecord( hpkg, rec, buff, &size );
1020     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
1021
1022     MsiCloseHandle( rec );
1023 }
1024
1025 static void test_settargetpath(void)
1026 {
1027     char tempdir[MAX_PATH+8], buffer[MAX_PATH], file[MAX_PATH];
1028     DWORD sz;
1029     MSIHANDLE hpkg;
1030     UINT r;
1031     MSIHANDLE hdb;
1032
1033     hdb = create_package_db();
1034     ok ( hdb, "failed to create package database\n" );
1035
1036     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'" );
1037     ok( r == S_OK, "failed to add directory entry: %d\n" , r );
1038
1039     r = create_component_table( hdb );
1040     ok( r == S_OK, "cannot create Component table: %d\n", r );
1041
1042     r = add_component_entry( hdb, "'RootComp', '{83e2694d-0864-4124-9323-6d37630912a1}', 'TARGETDIR', 8, '', 'RootFile'" );
1043     ok( r == S_OK, "cannot add dummy component: %d\n", r );
1044
1045     r = add_component_entry( hdb, "'TestComp', '{A3FB59C8-C293-4F7E-B8C5-F0E1D8EEE4E5}', 'TestDir', 0, '', 'TestFile'" );
1046     ok( r == S_OK, "cannot add test component: %d\n", r );
1047
1048     r = create_feature_table( hdb );
1049     ok( r == S_OK, "cannot create Feature table: %d\n", r );
1050
1051     r = add_feature_entry( hdb, "'TestFeature', '', '', '', 0, 1, '', 0" );
1052     ok( r == ERROR_SUCCESS, "cannot add TestFeature to Feature table: %d\n", r );
1053
1054     r = create_feature_components_table( hdb );
1055     ok( r == S_OK, "cannot create FeatureComponents table: %d\n", r );
1056
1057     r = add_feature_components_entry( hdb, "'TestFeature', 'RootComp'" );
1058     ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
1059
1060     r = add_feature_components_entry( hdb, "'TestFeature', 'TestComp'" );
1061     ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
1062
1063     add_directory_entry( hdb, "'TestParent', 'TARGETDIR', 'TestParent'" );
1064     add_directory_entry( hdb, "'TestDir', 'TestParent', 'TestDir'" );
1065
1066     r = create_file_table( hdb );
1067     ok( r == S_OK, "cannot create File table: %d\n", r );
1068
1069     r = add_file_entry( hdb, "'RootFile', 'RootComp', 'rootfile.txt', 0, '', '1033', 8192, 1" );
1070     ok( r == S_OK, "cannot add file to the File table: %d\n", r );
1071
1072     r = add_file_entry( hdb, "'TestFile', 'TestComp', 'testfile.txt', 0, '', '1033', 8192, 1" );
1073     ok( r == S_OK, "cannot add file to the File table: %d\n", r );
1074
1075     r = package_from_db( hdb, &hpkg );
1076     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
1077     {
1078         skip("Not enough rights to perform tests\n");
1079         DeleteFile(msifile);
1080         return;
1081     }
1082     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r);
1083
1084     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
1085
1086     r = MsiDoAction( hpkg, "CostInitialize");
1087     ok( r == ERROR_SUCCESS, "cost init failed\n");
1088
1089     r = MsiDoAction( hpkg, "FileCost");
1090     ok( r == ERROR_SUCCESS, "file cost failed\n");
1091
1092     r = MsiDoAction( hpkg, "CostFinalize");
1093     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
1094
1095     r = MsiSetTargetPath( 0, NULL, NULL );
1096     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1097
1098     r = MsiSetTargetPath( 0, "boo", "C:\\bogusx" );
1099     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
1100
1101     r = MsiSetTargetPath( hpkg, "boo", NULL );
1102     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1103
1104     r = MsiSetTargetPath( hpkg, "boo", "c:\\bogusx" );
1105     ok( r == ERROR_DIRECTORY, "wrong return val\n");
1106
1107     sz = sizeof tempdir - 1;
1108     r = MsiGetTargetPath( hpkg, "TARGETDIR", tempdir, &sz );
1109     sprintf( file, "%srootfile.txt", tempdir );
1110     buffer[0] = 0;
1111     query_file_path( hpkg, "[#RootFile]", buffer );
1112     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
1113     ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer );
1114
1115     GetTempFileName( tempdir, "_wt", 0, buffer );
1116     sprintf( tempdir, "%s\\subdir", buffer );
1117
1118     r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
1119     ok( r == ERROR_SUCCESS || r == ERROR_DIRECTORY,
1120         "MsiSetTargetPath on file returned %d\n", r );
1121
1122     r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
1123     ok( r == ERROR_SUCCESS || r == ERROR_DIRECTORY,
1124         "MsiSetTargetPath on 'subdir' of file returned %d\n", r );
1125
1126     DeleteFile( buffer );
1127
1128     r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
1129     ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
1130
1131     r = GetFileAttributes( buffer );
1132     ok ( r == INVALID_FILE_ATTRIBUTES, "file/directory exists after MsiSetTargetPath. Attributes: %08X\n", r );
1133
1134     r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
1135     ok( r == ERROR_SUCCESS, "MsiSetTargetPath on subsubdir returned %d\n", r );
1136
1137     sz = sizeof buffer - 1;
1138     lstrcat( tempdir, "\\" );
1139     r = MsiGetTargetPath( hpkg, "TARGETDIR", buffer, &sz );
1140     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
1141     ok( !lstrcmp(buffer, tempdir), "Expected %s, got %s\n", tempdir, buffer);
1142
1143     sprintf( file, "%srootfile.txt", tempdir );
1144     query_file_path( hpkg, "[#RootFile]", buffer );
1145     ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer);
1146
1147     r = MsiSetTargetPath( hpkg, "TestParent", "C:\\one\\two" );
1148     ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
1149
1150     query_file_path( hpkg, "[#TestFile]", buffer );
1151     ok( !lstrcmpi(buffer, "C:\\one\\two\\TestDir\\testfile.txt"),
1152         "Expected C:\\one\\two\\TestDir\\testfile.txt, got %s\n", buffer );
1153
1154     sz = sizeof buffer - 1;
1155     r = MsiGetTargetPath( hpkg, "TestParent", buffer, &sz );
1156     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
1157     ok( !lstrcmpi(buffer, "C:\\one\\two\\"), "Expected C:\\one\\two\\, got %s\n", buffer);
1158
1159     r = MsiSetTargetPath( hpkg, "TestParent", "C:\\one\\two\\three" );
1160     ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
1161
1162     sz = sizeof buffer - 1;
1163     r = MsiGetTargetPath( hpkg, "TestParent", buffer, &sz );
1164     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
1165     ok( !lstrcmpi(buffer, "C:\\one\\two\\three\\"), "Expected C:\\one\\two\\three\\, got %s\n", buffer);
1166
1167     MsiCloseHandle( hpkg );
1168 }
1169
1170 static void test_condition(void)
1171 {
1172     static const WCHAR cond1[] = {'\"','a',0x30a,'\"','<','\"',0xe5,'\"',0};
1173     static const WCHAR cond2[] = {'\"','a',0x30a,'\"','>','\"',0xe5,'\"',0};
1174     static const WCHAR cond3[] = {'\"','a',0x30a,'\"','<','>','\"',0xe5,'\"',0};
1175     static const WCHAR cond4[] = {'\"','a',0x30a,'\"','=','\"',0xe5,'\"',0};
1176     MSICONDITION r;
1177     MSIHANDLE hpkg;
1178
1179     r = package_from_db(create_package_db(), &hpkg);
1180     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
1181     {
1182         skip("Not enough rights to perform tests\n");
1183         DeleteFile(msifile);
1184         return;
1185     }
1186     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r);
1187
1188     r = MsiEvaluateCondition(0, NULL);
1189     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1190
1191     r = MsiEvaluateCondition(hpkg, NULL);
1192     ok( r == MSICONDITION_NONE, "wrong return val\n");
1193
1194     r = MsiEvaluateCondition(hpkg, "");
1195     ok( r == MSICONDITION_NONE, "wrong return val\n");
1196
1197     r = MsiEvaluateCondition(hpkg, "1");
1198     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1199
1200     r = MsiEvaluateCondition(hpkg, "0");
1201     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1202
1203     r = MsiEvaluateCondition(hpkg, "-1");
1204     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1205
1206     r = MsiEvaluateCondition(hpkg, "0 = 0");
1207     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1208
1209     r = MsiEvaluateCondition(hpkg, "0 <> 0");
1210     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1211
1212     r = MsiEvaluateCondition(hpkg, "0 = 1");
1213     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1214
1215     r = MsiEvaluateCondition(hpkg, "0 > 1");
1216     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1217
1218     r = MsiEvaluateCondition(hpkg, "0 ~> 1");
1219     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1220
1221     r = MsiEvaluateCondition(hpkg, "1 > 1");
1222     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1223
1224     r = MsiEvaluateCondition(hpkg, "1 ~> 1");
1225     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1226
1227     r = MsiEvaluateCondition(hpkg, "0 >= 1");
1228     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1229
1230     r = MsiEvaluateCondition(hpkg, "0 ~>= 1");
1231     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1232
1233     r = MsiEvaluateCondition(hpkg, "1 >= 1");
1234     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1235
1236     r = MsiEvaluateCondition(hpkg, "1 ~>= 1");
1237     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1238
1239     r = MsiEvaluateCondition(hpkg, "0 < 1");
1240     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1241
1242     r = MsiEvaluateCondition(hpkg, "0 ~< 1");
1243     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1244
1245     r = MsiEvaluateCondition(hpkg, "1 < 1");
1246     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1247
1248     r = MsiEvaluateCondition(hpkg, "1 ~< 1");
1249     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1250
1251     r = MsiEvaluateCondition(hpkg, "0 <= 1");
1252     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1253
1254     r = MsiEvaluateCondition(hpkg, "0 ~<= 1");
1255     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1256
1257     r = MsiEvaluateCondition(hpkg, "1 <= 1");
1258     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1259
1260     r = MsiEvaluateCondition(hpkg, "1 ~<= 1");
1261     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1262
1263     r = MsiEvaluateCondition(hpkg, "0 >=");
1264     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1265
1266     r = MsiEvaluateCondition(hpkg, " ");
1267     ok( r == MSICONDITION_NONE, "wrong return val\n");
1268
1269     r = MsiEvaluateCondition(hpkg, "LicView <> \"1\"");
1270     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1271
1272     r = MsiEvaluateCondition(hpkg, "LicView <> \"0\"");
1273     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1274
1275     r = MsiEvaluateCondition(hpkg, "LicView <> LicView");
1276     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1277
1278     r = MsiEvaluateCondition(hpkg, "not 0");
1279     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1280
1281     r = MsiEvaluateCondition(hpkg, "not LicView");
1282     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1283
1284     r = MsiEvaluateCondition(hpkg, "\"Testing\" ~<< \"Testing\"");
1285     ok (r == MSICONDITION_TRUE, "wrong return val\n");
1286
1287     r = MsiEvaluateCondition(hpkg, "LicView ~<< \"Testing\"");
1288     ok (r == MSICONDITION_FALSE, "wrong return val\n");
1289
1290     r = MsiEvaluateCondition(hpkg, "Not LicView ~<< \"Testing\"");
1291     ok (r == MSICONDITION_TRUE, "wrong return val\n");
1292
1293     r = MsiEvaluateCondition(hpkg, "not \"A\"");
1294     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1295
1296     r = MsiEvaluateCondition(hpkg, "~not \"A\"");
1297     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1298
1299     r = MsiEvaluateCondition(hpkg, "\"0\"");
1300     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1301
1302     r = MsiEvaluateCondition(hpkg, "1 and 2");
1303     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1304
1305     r = MsiEvaluateCondition(hpkg, "not 0 and 3");
1306     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1307
1308     r = MsiEvaluateCondition(hpkg, "not 0 and 0");
1309     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1310
1311     r = MsiEvaluateCondition(hpkg, "not 0 or 1");
1312     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1313
1314     r = MsiEvaluateCondition(hpkg, "(0)");
1315     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1316
1317     r = MsiEvaluateCondition(hpkg, "(((((1))))))");
1318     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1319
1320     r = MsiEvaluateCondition(hpkg, "(((((1)))))");
1321     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1322
1323     r = MsiEvaluateCondition(hpkg, " \"A\" < \"B\" ");
1324     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1325
1326     r = MsiEvaluateCondition(hpkg, " \"A\" > \"B\" ");
1327     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1328
1329     r = MsiEvaluateCondition(hpkg, " \"1\" > \"12\" ");
1330     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1331
1332     r = MsiEvaluateCondition(hpkg, " \"100\" < \"21\" ");
1333     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1334
1335     r = MsiEvaluateCondition(hpkg, "0 < > 0");
1336     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1337
1338     r = MsiEvaluateCondition(hpkg, "(1<<1) == 2");
1339     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1340
1341     r = MsiEvaluateCondition(hpkg, " \"A\" = \"a\" ");
1342     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1343
1344     r = MsiEvaluateCondition(hpkg, " \"A\" ~ = \"a\" ");
1345     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1346
1347     r = MsiEvaluateCondition(hpkg, " \"A\" ~= \"a\" ");
1348     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1349
1350     r = MsiEvaluateCondition(hpkg, " \"A\" ~= 1 ");
1351     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1352
1353     r = MsiEvaluateCondition(hpkg, " \"A\" = 1 ");
1354     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1355
1356     r = MsiEvaluateCondition(hpkg, " 1 ~= 1 ");
1357     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1358
1359     r = MsiEvaluateCondition(hpkg, " 1 ~= \"1\" ");
1360     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1361
1362     r = MsiEvaluateCondition(hpkg, " 1 = \"1\" ");
1363     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1364
1365     r = MsiEvaluateCondition(hpkg, " 0 = \"1\" ");
1366     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1367
1368     r = MsiEvaluateCondition(hpkg, " 0 < \"100\" ");
1369     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1370
1371     r = MsiEvaluateCondition(hpkg, " 100 > \"0\" ");
1372     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1373
1374     r = MsiEvaluateCondition(hpkg, "1 XOR 1");
1375     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1376
1377     r = MsiEvaluateCondition(hpkg, "1 IMP 1");
1378     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1379
1380     r = MsiEvaluateCondition(hpkg, "1 IMP 0");
1381     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1382
1383     r = MsiEvaluateCondition(hpkg, "0 IMP 0");
1384     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1385
1386     r = MsiEvaluateCondition(hpkg, "0 EQV 0");
1387     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1388
1389     r = MsiEvaluateCondition(hpkg, "0 EQV 1");
1390     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1391
1392     r = MsiEvaluateCondition(hpkg, "1 IMP 1 OR 0");
1393     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1394
1395     r = MsiEvaluateCondition(hpkg, "1 IMPL 1");
1396     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1397
1398     r = MsiEvaluateCondition(hpkg, "\"ASFD\" >< \"S\" ");
1399     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1400
1401     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"s\" ");
1402     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1403
1404     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"\" ");
1405     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1406
1407     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"sss\" ");
1408     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1409
1410     MsiSetProperty(hpkg, "mm", "5" );
1411
1412     r = MsiEvaluateCondition(hpkg, "mm = 5");
1413     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1414
1415     r = MsiEvaluateCondition(hpkg, "mm < 6");
1416     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1417
1418     r = MsiEvaluateCondition(hpkg, "mm <= 5");
1419     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1420
1421     r = MsiEvaluateCondition(hpkg, "mm > 4");
1422     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1423
1424     r = MsiEvaluateCondition(hpkg, "mm < 12");
1425     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1426
1427     r = MsiEvaluateCondition(hpkg, "mm = \"5\"");
1428     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1429
1430     r = MsiEvaluateCondition(hpkg, "0 = \"\"");
1431     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1432
1433     r = MsiEvaluateCondition(hpkg, "0 AND \"\"");
1434     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1435
1436     r = MsiEvaluateCondition(hpkg, "1 AND \"\"");
1437     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1438
1439     r = MsiEvaluateCondition(hpkg, "1 AND \"1\"");
1440     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1441
1442     r = MsiEvaluateCondition(hpkg, "3 >< 1");
1443     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1444
1445     r = MsiEvaluateCondition(hpkg, "3 >< 4");
1446     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1447
1448     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 0");
1449     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1450
1451     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1");
1452     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1453
1454     r = MsiEvaluateCondition(hpkg, "NOT 1 OR 0");
1455     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1456
1457     r = MsiEvaluateCondition(hpkg, "0 AND 1 OR 1");
1458     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1459
1460     r = MsiEvaluateCondition(hpkg, "0 AND 0 OR 1");
1461     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1462
1463     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1 OR 0");
1464     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1465
1466     r = MsiEvaluateCondition(hpkg, "_1 = _1");
1467     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1468
1469     r = MsiEvaluateCondition(hpkg, "( 1 AND 1 ) = 2");
1470     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1471
1472     r = MsiEvaluateCondition(hpkg, "NOT ( 1 AND 1 )");
1473     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1474
1475     r = MsiEvaluateCondition(hpkg, "NOT A AND (BBBBBBBBBB=2 OR CCC=1) AND Ddddddddd");
1476     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1477
1478     r = MsiEvaluateCondition(hpkg, "Installed<>\"\"");
1479     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1480
1481     r = MsiEvaluateCondition(hpkg, "NOT 1 AND 0");
1482     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1483
1484     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1485     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1486
1487     r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
1488     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1489
1490     r = MsiEvaluateCondition(hpkg, "bandalmael<0");
1491     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1492
1493     r = MsiEvaluateCondition(hpkg, "bandalmael>0");
1494     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1495
1496     r = MsiEvaluateCondition(hpkg, "bandalmael>=0");
1497     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1498
1499     r = MsiEvaluateCondition(hpkg, "bandalmael<=0");
1500     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1501
1502     r = MsiEvaluateCondition(hpkg, "bandalmael~<>0");
1503     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1504
1505     MsiSetProperty(hpkg, "bandalmael", "0" );
1506     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1507     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1508
1509     MsiSetProperty(hpkg, "bandalmael", "" );
1510     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1511     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1512
1513     MsiSetProperty(hpkg, "bandalmael", "asdf" );
1514     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1515     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1516
1517     MsiSetProperty(hpkg, "bandalmael", "0asdf" );
1518     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1519     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1520
1521     MsiSetProperty(hpkg, "bandalmael", "0 " );
1522     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1523     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1524
1525     MsiSetProperty(hpkg, "bandalmael", "-0" );
1526     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1527     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1528
1529     MsiSetProperty(hpkg, "bandalmael", "0000000000000" );
1530     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1531     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1532
1533     MsiSetProperty(hpkg, "bandalmael", "--0" );
1534     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1535     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1536
1537     MsiSetProperty(hpkg, "bandalmael", "0x00" );
1538     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1539     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1540
1541     MsiSetProperty(hpkg, "bandalmael", "-" );
1542     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1543     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1544
1545     MsiSetProperty(hpkg, "bandalmael", "+0" );
1546     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1547     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1548
1549     MsiSetProperty(hpkg, "bandalmael", "0.0" );
1550     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1551     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1552     r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
1553     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1554
1555     MsiSetProperty(hpkg, "one", "hi");
1556     MsiSetProperty(hpkg, "two", "hithere");
1557     r = MsiEvaluateCondition(hpkg, "one >< two");
1558     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1559
1560     MsiSetProperty(hpkg, "one", "hithere");
1561     MsiSetProperty(hpkg, "two", "hi");
1562     r = MsiEvaluateCondition(hpkg, "one >< two");
1563     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1564
1565     MsiSetProperty(hpkg, "one", "hello");
1566     MsiSetProperty(hpkg, "two", "hi");
1567     r = MsiEvaluateCondition(hpkg, "one >< two");
1568     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1569
1570     MsiSetProperty(hpkg, "one", "hellohithere");
1571     MsiSetProperty(hpkg, "two", "hi");
1572     r = MsiEvaluateCondition(hpkg, "one >< two");
1573     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1574
1575     MsiSetProperty(hpkg, "one", "");
1576     MsiSetProperty(hpkg, "two", "hi");
1577     r = MsiEvaluateCondition(hpkg, "one >< two");
1578     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1579
1580     MsiSetProperty(hpkg, "one", "hi");
1581     MsiSetProperty(hpkg, "two", "");
1582     r = MsiEvaluateCondition(hpkg, "one >< two");
1583     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1584
1585     MsiSetProperty(hpkg, "one", "");
1586     MsiSetProperty(hpkg, "two", "");
1587     r = MsiEvaluateCondition(hpkg, "one >< two");
1588     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1589
1590     MsiSetProperty(hpkg, "one", "1234");
1591     MsiSetProperty(hpkg, "two", "1");
1592     r = MsiEvaluateCondition(hpkg, "one >< two");
1593     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1594
1595     MsiSetProperty(hpkg, "one", "one 1234");
1596     MsiSetProperty(hpkg, "two", "1");
1597     r = MsiEvaluateCondition(hpkg, "one >< two");
1598     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1599
1600     MsiSetProperty(hpkg, "one", "hithere");
1601     MsiSetProperty(hpkg, "two", "hi");
1602     r = MsiEvaluateCondition(hpkg, "one << two");
1603     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1604
1605     MsiSetProperty(hpkg, "one", "hi");
1606     MsiSetProperty(hpkg, "two", "hithere");
1607     r = MsiEvaluateCondition(hpkg, "one << two");
1608     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1609
1610     MsiSetProperty(hpkg, "one", "hi");
1611     MsiSetProperty(hpkg, "two", "hi");
1612     r = MsiEvaluateCondition(hpkg, "one << two");
1613     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1614
1615     MsiSetProperty(hpkg, "one", "abcdhithere");
1616     MsiSetProperty(hpkg, "two", "hi");
1617     r = MsiEvaluateCondition(hpkg, "one << two");
1618     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1619
1620     MsiSetProperty(hpkg, "one", "");
1621     MsiSetProperty(hpkg, "two", "hi");
1622     r = MsiEvaluateCondition(hpkg, "one << two");
1623     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1624
1625     MsiSetProperty(hpkg, "one", "hithere");
1626     MsiSetProperty(hpkg, "two", "");
1627     r = MsiEvaluateCondition(hpkg, "one << two");
1628     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1629
1630     MsiSetProperty(hpkg, "one", "");
1631     MsiSetProperty(hpkg, "two", "");
1632     r = MsiEvaluateCondition(hpkg, "one << two");
1633     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1634
1635     MsiSetProperty(hpkg, "one", "1234");
1636     MsiSetProperty(hpkg, "two", "1");
1637     r = MsiEvaluateCondition(hpkg, "one << two");
1638     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1639
1640     MsiSetProperty(hpkg, "one", "1234 one");
1641     MsiSetProperty(hpkg, "two", "1");
1642     r = MsiEvaluateCondition(hpkg, "one << two");
1643     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1644
1645     MsiSetProperty(hpkg, "one", "hithere");
1646     MsiSetProperty(hpkg, "two", "there");
1647     r = MsiEvaluateCondition(hpkg, "one >> two");
1648     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1649
1650     MsiSetProperty(hpkg, "one", "hithere");
1651     MsiSetProperty(hpkg, "two", "hi");
1652     r = MsiEvaluateCondition(hpkg, "one >> two");
1653     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1654
1655     MsiSetProperty(hpkg, "one", "there");
1656     MsiSetProperty(hpkg, "two", "hithere");
1657     r = MsiEvaluateCondition(hpkg, "one >> two");
1658     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1659
1660     MsiSetProperty(hpkg, "one", "there");
1661     MsiSetProperty(hpkg, "two", "there");
1662     r = MsiEvaluateCondition(hpkg, "one >> two");
1663     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1664
1665     MsiSetProperty(hpkg, "one", "abcdhithere");
1666     MsiSetProperty(hpkg, "two", "hi");
1667     r = MsiEvaluateCondition(hpkg, "one >> two");
1668     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1669
1670     MsiSetProperty(hpkg, "one", "");
1671     MsiSetProperty(hpkg, "two", "there");
1672     r = MsiEvaluateCondition(hpkg, "one >> two");
1673     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1674
1675     MsiSetProperty(hpkg, "one", "there");
1676     MsiSetProperty(hpkg, "two", "");
1677     r = MsiEvaluateCondition(hpkg, "one >> two");
1678     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1679
1680     MsiSetProperty(hpkg, "one", "");
1681     MsiSetProperty(hpkg, "two", "");
1682     r = MsiEvaluateCondition(hpkg, "one >> two");
1683     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1684
1685     MsiSetProperty(hpkg, "one", "1234");
1686     MsiSetProperty(hpkg, "two", "4");
1687     r = MsiEvaluateCondition(hpkg, "one >> two");
1688     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1689
1690     MsiSetProperty(hpkg, "one", "one 1234");
1691     MsiSetProperty(hpkg, "two", "4");
1692     r = MsiEvaluateCondition(hpkg, "one >> two");
1693     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1694
1695     MsiSetProperty(hpkg, "MsiNetAssemblySupport", NULL);  /* make sure it's empty */
1696
1697     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322\"");
1698     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1699
1700     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport > \"1.1.4322\"");
1701     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1702
1703     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport >= \"1.1.4322\"");
1704     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1705
1706     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport <= \"1.1.4322\"");
1707     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1708
1709     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport <> \"1.1.4322\"");
1710     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1711
1712     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport ~< \"1.1.4322\"");
1713     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1714
1715     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"abcd\"");
1716     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1717
1718     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a1.1.4322\"");
1719     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1720
1721     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322a\"");
1722     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1723
1724     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"0000001.1.4322\"");
1725     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1726
1727     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322.1\"");
1728     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1729
1730     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322.1.1\"");
1731     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1732
1733     r = MsiEvaluateCondition(hpkg, "\"2\" < \"1.1");
1734     ok( r == MSICONDITION_ERROR, "wrong return val (%d)\n", r);
1735
1736     r = MsiEvaluateCondition(hpkg, "\"2\" < \"1.1\"");
1737     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1738
1739     r = MsiEvaluateCondition(hpkg, "\"2\" < \"12.1\"");
1740     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1741
1742     r = MsiEvaluateCondition(hpkg, "\"02.1\" < \"2.11\"");
1743     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1744
1745     r = MsiEvaluateCondition(hpkg, "\"02.1.1\" < \"2.1\"");
1746     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1747
1748     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1\"");
1749     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1750
1751     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1\"");
1752     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1753
1754     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"0\"");
1755     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1756
1757     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"-1\"");
1758     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1759
1760     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a\"");
1761     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1762
1763     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"!\"");
1764     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1765
1766     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"!\"");
1767     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1768
1769     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"/\"");
1770     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1771
1772     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \" \"");
1773     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1774
1775     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"azAZ_\"");
1776     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1777
1778     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a[a]\"");
1779     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1780
1781     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a[a]a\"");
1782     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1783
1784     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"[a]\"");
1785     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1786
1787     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"[a]a\"");
1788     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1789
1790     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"{a}\"");
1791     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1792
1793     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"{a\"");
1794     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1795
1796     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"[a\"");
1797     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1798
1799     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a{\"");
1800     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1801
1802     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a]\"");
1803     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1804
1805     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"A\"");
1806     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1807
1808     MsiSetProperty(hpkg, "MsiNetAssemblySupport", "1.1.4322");
1809     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322\"");
1810     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1811
1812     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.14322\"");
1813     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1814
1815     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.5\"");
1816     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1817
1818     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1\"");
1819     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1820
1821     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1\"");
1822     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1823
1824     MsiSetProperty(hpkg, "one", "1");
1825     r = MsiEvaluateCondition(hpkg, "one < \"1\"");
1826     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1827
1828     MsiSetProperty(hpkg, "X", "5.0");
1829
1830     r = MsiEvaluateCondition(hpkg, "X != \"\"");
1831     ok( r == MSICONDITION_ERROR, "wrong return val (%d)\n", r);
1832
1833     r = MsiEvaluateCondition(hpkg, "X =\"5.0\"");
1834     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1835
1836     r = MsiEvaluateCondition(hpkg, "X =\"5.1\"");
1837     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1838
1839     r = MsiEvaluateCondition(hpkg, "X =\"6.0\"");
1840     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1841
1842     r = MsiEvaluateCondition(hpkg, "X =\"5.0\" or X =\"5.1\" or X =\"6.0\"");
1843     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1844
1845     r = MsiEvaluateCondition(hpkg, "(X =\"5.0\" or X =\"5.1\" or X =\"6.0\")");
1846     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1847
1848     r = MsiEvaluateCondition(hpkg, "X !=\"\" and (X =\"5.0\" or X =\"5.1\" or X =\"6.0\")");
1849     ok( r == MSICONDITION_ERROR, "wrong return val (%d)\n", r);
1850
1851     /* feature doesn't exist */
1852     r = MsiEvaluateCondition(hpkg, "&nofeature");
1853     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1854
1855     MsiSetProperty(hpkg, "A", "2");
1856     MsiSetProperty(hpkg, "X", "50");
1857
1858     r = MsiEvaluateCondition(hpkg, "2 <= X");
1859     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1860
1861     r = MsiEvaluateCondition(hpkg, "A <= X");
1862     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1863
1864     r = MsiEvaluateCondition(hpkg, "A <= 50");
1865     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1866
1867     MsiSetProperty(hpkg, "X", "50val");
1868
1869     r = MsiEvaluateCondition(hpkg, "2 <= X");
1870     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1871
1872     r = MsiEvaluateCondition(hpkg, "A <= X");
1873     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1874
1875     MsiSetProperty(hpkg, "A", "7");
1876     MsiSetProperty(hpkg, "X", "50");
1877
1878     r = MsiEvaluateCondition(hpkg, "7 <= X");
1879     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1880
1881     r = MsiEvaluateCondition(hpkg, "A <= X");
1882     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1883
1884     r = MsiEvaluateCondition(hpkg, "A <= 50");
1885     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1886
1887     MsiSetProperty(hpkg, "X", "50val");
1888
1889     r = MsiEvaluateCondition(hpkg, "2 <= X");
1890     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1891
1892     r = MsiEvaluateCondition(hpkg, "A <= X");
1893     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1894
1895     r = MsiEvaluateConditionW(hpkg, cond1);
1896     ok( r == MSICONDITION_TRUE || broken(r == MSICONDITION_FALSE),
1897         "wrong return val (%d)\n", r);
1898
1899     r = MsiEvaluateConditionW(hpkg, cond2);
1900     ok( r == MSICONDITION_FALSE || broken(r == MSICONDITION_TRUE),
1901         "wrong return val (%d)\n", r);
1902
1903     r = MsiEvaluateConditionW(hpkg, cond3);
1904     ok( r == MSICONDITION_TRUE || broken(r == MSICONDITION_FALSE),
1905         "wrong return val (%d)\n", r);
1906
1907     r = MsiEvaluateConditionW(hpkg, cond4);
1908     ok( r == MSICONDITION_FALSE || broken(r == MSICONDITION_TRUE),
1909         "wrong return val (%d)\n", r);
1910
1911     MsiCloseHandle( hpkg );
1912     DeleteFile(msifile);
1913 }
1914
1915 static BOOL check_prop_empty( MSIHANDLE hpkg, const char * prop)
1916 {
1917     UINT r;
1918     DWORD sz;
1919     char buffer[2];
1920
1921     sz = sizeof buffer;
1922     strcpy(buffer,"x");
1923     r = MsiGetProperty( hpkg, prop, buffer, &sz );
1924     return r == ERROR_SUCCESS && buffer[0] == 0 && sz == 0;
1925 }
1926
1927 static void test_props(void)
1928 {
1929     MSIHANDLE hpkg, hdb;
1930     UINT r;
1931     DWORD sz;
1932     char buffer[0x100];
1933
1934     hdb = create_package_db();
1935     r = run_query( hdb,
1936             "CREATE TABLE `Property` ( "
1937             "`Property` CHAR(255) NOT NULL, "
1938             "`Value` CHAR(255) "
1939             "PRIMARY KEY `Property`)" );
1940     ok( r == ERROR_SUCCESS , "Failed\n" );
1941
1942     r = run_query(hdb,
1943             "INSERT INTO `Property` "
1944             "(`Property`, `Value`) "
1945             "VALUES( 'MetadataCompName', 'Photoshop.dll' )");
1946     ok( r == ERROR_SUCCESS , "Failed\n" );
1947
1948     r = package_from_db( hdb, &hpkg );
1949     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
1950     {
1951         skip("Not enough rights to perform tests\n");
1952         DeleteFile(msifile);
1953         return;
1954     }
1955     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r);
1956
1957     /* test invalid values */
1958     r = MsiGetProperty( 0, NULL, NULL, NULL );
1959     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1960
1961     r = MsiGetProperty( hpkg, NULL, NULL, NULL );
1962     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1963
1964     r = MsiGetProperty( hpkg, "boo", NULL, NULL );
1965     ok( r == ERROR_SUCCESS, "wrong return val\n");
1966
1967     r = MsiGetProperty( hpkg, "boo", buffer, NULL );
1968     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1969
1970     /* test retrieving an empty/nonexistent property */
1971     sz = sizeof buffer;
1972     r = MsiGetProperty( hpkg, "boo", NULL, &sz );
1973     ok( r == ERROR_SUCCESS, "wrong return val\n");
1974     ok( sz == 0, "wrong size returned\n");
1975
1976     check_prop_empty( hpkg, "boo");
1977     sz = 0;
1978     strcpy(buffer,"x");
1979     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1980     ok( r == ERROR_MORE_DATA, "wrong return val\n");
1981     ok( !strcmp(buffer,"x"), "buffer was changed\n");
1982     ok( sz == 0, "wrong size returned\n");
1983
1984     sz = 1;
1985     strcpy(buffer,"x");
1986     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1987     ok( r == ERROR_SUCCESS, "wrong return val\n");
1988     ok( buffer[0] == 0, "buffer was not changed\n");
1989     ok( sz == 0, "wrong size returned\n");
1990
1991     /* set the property to something */
1992     r = MsiSetProperty( 0, NULL, NULL );
1993     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
1994
1995     r = MsiSetProperty( hpkg, NULL, NULL );
1996     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1997
1998     r = MsiSetProperty( hpkg, "", NULL );
1999     ok( r == ERROR_SUCCESS, "wrong return val\n");
2000
2001     /* try set and get some illegal property identifiers */
2002     r = MsiSetProperty( hpkg, "", "asdf" );
2003     ok( r == ERROR_FUNCTION_FAILED, "wrong return val\n");
2004
2005     r = MsiSetProperty( hpkg, "=", "asdf" );
2006     ok( r == ERROR_SUCCESS, "wrong return val\n");
2007
2008     r = MsiSetProperty( hpkg, " ", "asdf" );
2009     ok( r == ERROR_SUCCESS, "wrong return val\n");
2010
2011     r = MsiSetProperty( hpkg, "'", "asdf" );
2012     ok( r == ERROR_SUCCESS, "wrong return val\n");
2013
2014     sz = sizeof buffer;
2015     buffer[0]=0;
2016     r = MsiGetProperty( hpkg, "'", buffer, &sz );
2017     ok( r == ERROR_SUCCESS, "wrong return val\n");
2018     ok( !strcmp(buffer,"asdf"), "buffer was not changed\n");
2019
2020     /* set empty values */
2021     r = MsiSetProperty( hpkg, "boo", NULL );
2022     ok( r == ERROR_SUCCESS, "wrong return val\n");
2023     ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
2024
2025     r = MsiSetProperty( hpkg, "boo", "" );
2026     ok( r == ERROR_SUCCESS, "wrong return val\n");
2027     ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
2028
2029     /* set a non-empty value */
2030     r = MsiSetProperty( hpkg, "boo", "xyz" );
2031     ok( r == ERROR_SUCCESS, "wrong return val\n");
2032
2033     sz = 1;
2034     strcpy(buffer,"x");
2035     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
2036     ok( r == ERROR_MORE_DATA, "wrong return val\n");
2037     ok( buffer[0] == 0, "buffer was not changed\n");
2038     ok( sz == 3, "wrong size returned\n");
2039
2040     sz = 4;
2041     strcpy(buffer,"x");
2042     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
2043     ok( r == ERROR_SUCCESS, "wrong return val\n");
2044     ok( !strcmp(buffer,"xyz"), "buffer was not changed\n");
2045     ok( sz == 3, "wrong size returned\n");
2046
2047     sz = 3;
2048     strcpy(buffer,"x");
2049     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
2050     ok( r == ERROR_MORE_DATA, "wrong return val\n");
2051     ok( !strcmp(buffer,"xy"), "buffer was not changed\n");
2052     ok( sz == 3, "wrong size returned\n");
2053
2054     r = MsiSetProperty(hpkg, "SourceDir", "foo");
2055     ok( r == ERROR_SUCCESS, "wrong return val\n");
2056
2057     sz = 4;
2058     r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
2059     ok( r == ERROR_SUCCESS, "wrong return val\n");
2060     ok( !strcmp(buffer,""), "buffer wrong\n");
2061     ok( sz == 0, "wrong size returned\n");
2062
2063     sz = 4;
2064     r = MsiGetProperty(hpkg, "SOMERANDOMNAME", buffer, &sz);
2065     ok( r == ERROR_SUCCESS, "wrong return val\n");
2066     ok( !strcmp(buffer,""), "buffer wrong\n");
2067     ok( sz == 0, "wrong size returned\n");
2068
2069     sz = 4;
2070     r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
2071     ok( r == ERROR_SUCCESS, "wrong return val\n");
2072     ok( !strcmp(buffer,"foo"), "buffer wrong\n");
2073     ok( sz == 3, "wrong size returned\n");
2074
2075     r = MsiSetProperty(hpkg, "MetadataCompName", "Photoshop.dll");
2076     ok( r == ERROR_SUCCESS, "wrong return val\n");
2077
2078     sz = 0;
2079     r = MsiGetProperty(hpkg, "MetadataCompName", NULL, &sz );
2080     ok( r == ERROR_SUCCESS, "return wrong\n");
2081     ok( sz == 13, "size wrong (%d)\n", sz);
2082
2083     sz = 13;
2084     r = MsiGetProperty(hpkg, "MetadataCompName", buffer, &sz );
2085     ok( r == ERROR_MORE_DATA, "return wrong\n");
2086     ok( !strcmp(buffer,"Photoshop.dl"), "buffer wrong\n");
2087
2088     r = MsiSetProperty(hpkg, "property", "value");
2089     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2090
2091     sz = 6;
2092     r = MsiGetProperty(hpkg, "property", buffer, &sz);
2093     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2094     ok( !strcmp(buffer, "value"), "Expected value, got %s\n", buffer);
2095
2096     r = MsiSetProperty(hpkg, "property", NULL);
2097     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2098
2099     sz = 6;
2100     r = MsiGetProperty(hpkg, "property", buffer, &sz);
2101     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2102     ok( !strlen(buffer), "Expected empty string, got %s\n", buffer);
2103
2104     MsiCloseHandle( hpkg );
2105     DeleteFile(msifile);
2106 }
2107
2108 static BOOL find_prop_in_property(MSIHANDLE hdb, LPCSTR prop, LPCSTR val)
2109 {
2110     MSIHANDLE hview, hrec;
2111     BOOL found;
2112     CHAR buffer[MAX_PATH];
2113     DWORD sz;
2114     UINT r;
2115
2116     r = MsiDatabaseOpenView(hdb, "SELECT * FROM `_Property`", &hview);
2117     ok(r == ERROR_SUCCESS, "MsiDatabaseOpenView failed\n");
2118     r = MsiViewExecute(hview, 0);
2119     ok(r == ERROR_SUCCESS, "MsiViewExecute failed\n");
2120
2121     found = FALSE;
2122     while (r == ERROR_SUCCESS && !found)
2123     {
2124         r = MsiViewFetch(hview, &hrec);
2125         if (r != ERROR_SUCCESS) break;
2126
2127         sz = MAX_PATH;
2128         r = MsiRecordGetString(hrec, 1, buffer, &sz);
2129         if (r == ERROR_SUCCESS && !lstrcmpA(buffer, prop))
2130         {
2131             sz = MAX_PATH;
2132             r = MsiRecordGetString(hrec, 2, buffer, &sz);
2133             if (r == ERROR_SUCCESS && !lstrcmpA(buffer, val))
2134                 found = TRUE;
2135         }
2136
2137         MsiCloseHandle(hrec);
2138     }
2139
2140     MsiViewClose(hview);
2141     MsiCloseHandle(hview);
2142
2143     return found;
2144 }
2145
2146 static void test_property_table(void)
2147 {
2148     const char *query;
2149     UINT r;
2150     MSIHANDLE hpkg, hdb, hrec;
2151     char buffer[MAX_PATH], package[10];
2152     DWORD sz;
2153     BOOL found;
2154
2155     hdb = create_package_db();
2156     ok( hdb, "failed to create package\n");
2157
2158     r = package_from_db(hdb, &hpkg);
2159     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
2160     {
2161         skip("Not enough rights to perform tests\n");
2162         DeleteFile(msifile);
2163         return;
2164     }
2165     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r);
2166
2167     MsiCloseHandle(hdb);
2168
2169     hdb = MsiGetActiveDatabase(hpkg);
2170
2171     query = "CREATE TABLE `_Property` ( "
2172         "`foo` INT NOT NULL, `bar` INT LOCALIZABLE PRIMARY KEY `foo`)";
2173     r = run_query(hdb, query);
2174     ok(r == ERROR_BAD_QUERY_SYNTAX, "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
2175
2176     MsiCloseHandle(hdb);
2177     MsiCloseHandle(hpkg);
2178     DeleteFile(msifile);
2179
2180     hdb = create_package_db();
2181     ok( hdb, "failed to create package\n");
2182
2183     query = "CREATE TABLE `_Property` ( "
2184         "`foo` INT NOT NULL, `bar` INT LOCALIZABLE PRIMARY KEY `foo`)";
2185     r = run_query(hdb, query);
2186     ok(r == ERROR_SUCCESS, "failed to create table\n");
2187
2188     query = "ALTER `_Property` ADD `foo` INTEGER";
2189     r = run_query(hdb, query);
2190     ok(r == ERROR_BAD_QUERY_SYNTAX, "failed to add column\n");
2191
2192     query = "ALTER TABLE `_Property` ADD `foo` INTEGER";
2193     r = run_query(hdb, query);
2194     ok(r == ERROR_BAD_QUERY_SYNTAX, "failed to add column\n");
2195
2196     query = "ALTER TABLE `_Property` ADD `extra` INTEGER";
2197     r = run_query(hdb, query);
2198     ok(r == ERROR_SUCCESS, "failed to add column\n");
2199
2200     sprintf(package, "#%i", hdb);
2201     r = MsiOpenPackage(package, &hpkg);
2202     todo_wine ok(r != ERROR_SUCCESS, "MsiOpenPackage succeeded\n");
2203     if (r == ERROR_SUCCESS)
2204         MsiCloseHandle(hpkg);
2205
2206     r = MsiCloseHandle(hdb);
2207     ok(r == ERROR_SUCCESS, "MsiCloseHandle failed %u\n", r);
2208
2209     hdb = create_package_db();
2210     ok (hdb, "failed to create package database\n");
2211
2212     r = create_property_table(hdb);
2213     ok(r == ERROR_SUCCESS, "cannot create Property table: %d\n", r);
2214
2215     r = add_property_entry(hdb, "'prop', 'val'");
2216     ok(r == ERROR_SUCCESS, "cannot add property: %d\n", r);
2217
2218     r = package_from_db(hdb, &hpkg);
2219     ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
2220
2221     MsiCloseHandle(hdb);
2222
2223     sz = MAX_PATH;
2224     r = MsiGetProperty(hpkg, "prop", buffer, &sz);
2225     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2226     ok(!lstrcmp(buffer, "val"), "Expected val, got %s\n", buffer);
2227
2228     hdb = MsiGetActiveDatabase(hpkg);
2229
2230     found = find_prop_in_property(hdb, "prop", "val");
2231     ok(found, "prop should be in the _Property table\n");
2232
2233     r = add_property_entry(hdb, "'dantes', 'mercedes'");
2234     ok(r == ERROR_SUCCESS, "cannot add property: %d\n", r);
2235
2236     query = "SELECT * FROM `_Property` WHERE `Property` = 'dantes'";
2237     r = do_query(hdb, query, &hrec);
2238     ok(r == ERROR_BAD_QUERY_SYNTAX, "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
2239
2240     found = find_prop_in_property(hdb, "dantes", "mercedes");
2241     ok(found == FALSE, "dantes should not be in the _Property table\n");
2242
2243     sz = MAX_PATH;
2244     lstrcpy(buffer, "aaa");
2245     r = MsiGetProperty(hpkg, "dantes", buffer, &sz);
2246     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2247     ok(lstrlenA(buffer) == 0, "Expected empty string, got %s\n", buffer);
2248
2249     r = MsiSetProperty(hpkg, "dantes", "mercedes");
2250     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2251
2252     found = find_prop_in_property(hdb, "dantes", "mercedes");
2253     ok(found == TRUE, "dantes should be in the _Property table\n");
2254
2255     MsiCloseHandle(hdb);
2256     MsiCloseHandle(hpkg);
2257     DeleteFile(msifile);
2258 }
2259
2260 static UINT try_query_param( MSIHANDLE hdb, LPCSTR szQuery, MSIHANDLE hrec )
2261 {
2262     MSIHANDLE htab = 0;
2263     UINT res;
2264
2265     res = MsiDatabaseOpenView( hdb, szQuery, &htab );
2266     if( res == ERROR_SUCCESS )
2267     {
2268         UINT r;
2269
2270         r = MsiViewExecute( htab, hrec );
2271         if( r != ERROR_SUCCESS )
2272         {
2273             res = r;
2274             fprintf(stderr,"MsiViewExecute failed %08x\n", res);
2275         }
2276
2277         r = MsiViewClose( htab );
2278         if( r != ERROR_SUCCESS )
2279             res = r;
2280
2281         r = MsiCloseHandle( htab );
2282         if( r != ERROR_SUCCESS )
2283             res = r;
2284     }
2285     return res;
2286 }
2287
2288 static UINT try_query( MSIHANDLE hdb, LPCSTR szQuery )
2289 {
2290     return try_query_param( hdb, szQuery, 0 );
2291 }
2292
2293 static void set_summary_str(MSIHANDLE hdb, DWORD pid, LPCSTR value)
2294 {
2295     MSIHANDLE summary;
2296     UINT r;
2297
2298     r = MsiGetSummaryInformationA(hdb, NULL, 1, &summary);
2299     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2300
2301     r = MsiSummaryInfoSetPropertyA(summary, pid, VT_LPSTR, 0, NULL, value);
2302     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
2303
2304     r = MsiSummaryInfoPersist(summary);
2305     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
2306
2307     MsiCloseHandle(summary);
2308 }
2309
2310 static void set_summary_dword(MSIHANDLE hdb, DWORD pid, DWORD value)
2311 {
2312     MSIHANDLE summary;
2313     UINT r;
2314
2315     r = MsiGetSummaryInformationA(hdb, NULL, 1, &summary);
2316     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2317
2318     r = MsiSummaryInfoSetPropertyA(summary, pid, VT_I4, value, NULL, NULL);
2319     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
2320
2321     r = MsiSummaryInfoPersist(summary);
2322     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
2323
2324     MsiCloseHandle(summary);
2325 }
2326
2327 static void test_msipackage(void)
2328 {
2329     MSIHANDLE hdb = 0, hpack = 100;
2330     UINT r;
2331     const char *query;
2332     char name[10];
2333
2334     /* NULL szPackagePath */
2335     r = MsiOpenPackage(NULL, &hpack);
2336     ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
2337
2338     /* empty szPackagePath */
2339     r = MsiOpenPackage("", &hpack);
2340     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
2341     {
2342         skip("Not enough rights to perform tests\n");
2343         return;
2344     }
2345     todo_wine
2346     {
2347         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2348     }
2349
2350     if (r == ERROR_SUCCESS)
2351         MsiCloseHandle(hpack);
2352
2353     /* nonexistent szPackagePath */
2354     r = MsiOpenPackage("nonexistent", &hpack);
2355     ok(r == ERROR_FILE_NOT_FOUND, "Expected ERROR_FILE_NOT_FOUND, got %d\n", r);
2356
2357     /* NULL hProduct */
2358     r = MsiOpenPackage(msifile, NULL);
2359     ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
2360
2361     name[0]='#';
2362     name[1]=0;
2363     r = MsiOpenPackage(name, &hpack);
2364     ok(r == ERROR_INVALID_HANDLE, "Expected ERROR_INVALID_HANDLE, got %d\n", r);
2365
2366     r = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb);
2367     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2368
2369     /* database exists, but is emtpy */
2370     sprintf(name, "#%d", hdb);
2371     r = MsiOpenPackage(name, &hpack);
2372     ok(r == ERROR_INSTALL_PACKAGE_INVALID,
2373        "Expected ERROR_INSTALL_PACKAGE_INVALID, got %d\n", r);
2374
2375     query = "CREATE TABLE `Property` ( "
2376             "`Property` CHAR(72), `Value` CHAR(0) "
2377             "PRIMARY KEY `Property`)";
2378     r = try_query(hdb, query);
2379     ok(r == ERROR_SUCCESS, "failed to create Properties table\n");
2380
2381     query = "CREATE TABLE `InstallExecuteSequence` ("
2382             "`Action` CHAR(72), `Condition` CHAR(0), `Sequence` INTEGER "
2383             "PRIMARY KEY `Action`)";
2384     r = try_query(hdb, query);
2385     ok(r == ERROR_SUCCESS, "failed to create InstallExecuteSequence table\n");
2386
2387     /* a few key tables exist */
2388     sprintf(name, "#%d", hdb);
2389     r = MsiOpenPackage(name, &hpack);
2390     ok(r == ERROR_INSTALL_PACKAGE_INVALID,
2391        "Expected ERROR_INSTALL_PACKAGE_INVALID, got %d\n", r);
2392
2393     MsiCloseHandle(hdb);
2394     DeleteFile(msifile);
2395
2396     /* start with a clean database to show what constitutes a valid package */
2397     r = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb);
2398     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2399
2400     sprintf(name, "#%d", hdb);
2401
2402     /* The following summary information props must exist:
2403      *  - PID_REVNUMBER
2404      *  - PID_PAGECOUNT
2405      */
2406
2407     set_summary_dword(hdb, PID_PAGECOUNT, 100);
2408     r = MsiOpenPackage(name, &hpack);
2409     ok(r == ERROR_INSTALL_PACKAGE_INVALID,
2410        "Expected ERROR_INSTALL_PACKAGE_INVALID, got %d\n", r);
2411
2412     set_summary_str(hdb, PID_REVNUMBER, "{004757CD-5092-49c2-AD20-28E1CE0DF5F2}");
2413     r = MsiOpenPackage(name, &hpack);
2414     ok(r == ERROR_SUCCESS,
2415        "Expected ERROR_SUCCESS, got %d\n", r);
2416
2417     MsiCloseHandle(hpack);
2418     MsiCloseHandle(hdb);
2419     DeleteFile(msifile);
2420 }
2421
2422 static void test_formatrecord2(void)
2423 {
2424     MSIHANDLE hpkg, hrec ;
2425     char buffer[0x100];
2426     DWORD sz;
2427     UINT r;
2428
2429     r = package_from_db(create_package_db(), &hpkg);
2430     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
2431     {
2432         skip("Not enough rights to perform tests\n");
2433         DeleteFile(msifile);
2434         return;
2435     }
2436     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r);
2437
2438     r = MsiSetProperty(hpkg, "Manufacturer", " " );
2439     ok( r == ERROR_SUCCESS, "set property failed\n");
2440
2441     hrec = MsiCreateRecord(2);
2442     ok(hrec, "create record failed\n");
2443
2444     r = MsiRecordSetString( hrec, 0, "[ProgramFilesFolder][Manufacturer]\\asdf");
2445     ok( r == ERROR_SUCCESS, "format record failed\n");
2446
2447     buffer[0] = 0;
2448     sz = sizeof buffer;
2449     r = MsiFormatRecord( hpkg, hrec, buffer, &sz );
2450     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2451
2452     r = MsiRecordSetString(hrec, 0, "[foo][1]");
2453     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2454     r = MsiRecordSetString(hrec, 1, "hoo");
2455     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2456     sz = sizeof buffer;
2457     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
2458     ok( sz == 3, "size wrong\n");
2459     ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
2460     ok( r == ERROR_SUCCESS, "format failed\n");
2461
2462     r = MsiRecordSetString(hrec, 0, "x[~]x");
2463     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2464     sz = sizeof buffer;
2465     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
2466     ok( sz == 3, "size wrong\n");
2467     ok( 0 == strcmp(buffer,"x"), "wrong output %s\n",buffer);
2468     ok( r == ERROR_SUCCESS, "format failed\n");
2469
2470     r = MsiRecordSetString(hrec, 0, "[foo.$%}][1]");
2471     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2472     r = MsiRecordSetString(hrec, 1, "hoo");
2473     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2474     sz = sizeof buffer;
2475     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
2476     ok( sz == 3, "size wrong\n");
2477     ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
2478     ok( r == ERROR_SUCCESS, "format failed\n");
2479
2480     r = MsiRecordSetString(hrec, 0, "[\\[]");
2481     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2482     sz = sizeof buffer;
2483     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
2484     ok( sz == 1, "size wrong\n");
2485     ok( 0 == strcmp(buffer,"["), "wrong output %s\n",buffer);
2486     ok( r == ERROR_SUCCESS, "format failed\n");
2487
2488     SetEnvironmentVariable("FOO", "BAR");
2489     r = MsiRecordSetString(hrec, 0, "[%FOO]");
2490     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2491     sz = sizeof buffer;
2492     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
2493     ok( sz == 3, "size wrong\n");
2494     ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
2495     ok( r == ERROR_SUCCESS, "format failed\n");
2496
2497     r = MsiRecordSetString(hrec, 0, "[[1]]");
2498     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2499     r = MsiRecordSetString(hrec, 1, "%FOO");
2500     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
2501     sz = sizeof buffer;
2502     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
2503     ok( sz == 3, "size wrong\n");
2504     ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
2505     ok( r == ERROR_SUCCESS, "format failed\n");
2506
2507     MsiCloseHandle( hrec );
2508     MsiCloseHandle( hpkg );
2509     DeleteFile(msifile);
2510 }
2511
2512 static void test_states(void)
2513 {
2514     MSIHANDLE hpkg;
2515     UINT r;
2516     MSIHANDLE hdb;
2517     INSTALLSTATE state, action;
2518
2519     static const CHAR msifile2[] = "winetest2-package.msi";
2520     static const CHAR msifile3[] = "winetest3-package.msi";
2521     static const CHAR msifile4[] = "winetest4-package.msi";
2522
2523     if (is_process_limited())
2524     {
2525         skip("process is limited\n");
2526         return;
2527     }
2528
2529     hdb = create_package_db();
2530     ok ( hdb, "failed to create package database\n" );
2531
2532     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2533     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2534
2535     r = create_property_table( hdb );
2536     ok( r == ERROR_SUCCESS, "cannot create Property table: %d\n", r );
2537
2538     r = add_property_entry( hdb, "'ProductCode', '{7262AC98-EEBD-4364-8CE3-D654F6A425B9}'" );
2539     ok( r == ERROR_SUCCESS, "cannot add property entry: %d\n", r );
2540
2541     r = add_property_entry( hdb, "'ProductLanguage', '1033'" );
2542     ok( r == ERROR_SUCCESS, "cannot add property entry: %d\n", r );
2543
2544     r = add_property_entry( hdb, "'ProductName', 'MSITEST'" );
2545     ok( r == ERROR_SUCCESS, "cannot add property entry: %d\n", r );
2546
2547     r = add_property_entry( hdb, "'ProductVersion', '1.1.1'" );
2548     ok( r == ERROR_SUCCESS, "cannot add property entry: %d\n", r );
2549
2550     r = add_property_entry( hdb, "'MSIFASTINSTALL', '1'" );
2551     ok( r == ERROR_SUCCESS, "cannot add property entry: %d\n", r );
2552
2553     r = create_install_execute_sequence_table( hdb );
2554     ok( r == ERROR_SUCCESS, "cannot create InstallExecuteSequence table: %d\n", r );
2555
2556     r = add_install_execute_sequence_entry( hdb, "'CostInitialize', '', '800'" );
2557     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2558
2559     r = add_install_execute_sequence_entry( hdb, "'FileCost', '', '900'" );
2560     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2561
2562     r = add_install_execute_sequence_entry( hdb, "'CostFinalize', '', '1000'" );
2563     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2564
2565     r = add_install_execute_sequence_entry( hdb, "'InstallValidate', '', '1400'" );
2566     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2567
2568     r = add_install_execute_sequence_entry( hdb, "'InstallInitialize', '', '1500'" );
2569     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2570
2571     r = add_install_execute_sequence_entry( hdb, "'ProcessComponents', '', '1600'" );
2572     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2573
2574     r = add_install_execute_sequence_entry( hdb, "'UnpublishFeatures', '', '1800'" );
2575     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2576
2577     r = add_install_execute_sequence_entry( hdb, "'RegisterProduct', '', '6100'" );
2578     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2579
2580     r = add_install_execute_sequence_entry( hdb, "'PublishFeatures', '', '6300'" );
2581     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2582
2583     r = add_install_execute_sequence_entry( hdb, "'PublishProduct', '', '6400'" );
2584     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2585
2586     r = add_install_execute_sequence_entry( hdb, "'InstallFinalize', '', '6600'" );
2587     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry: %d\n", r );
2588
2589     r = create_media_table( hdb );
2590     ok( r == ERROR_SUCCESS, "cannot create media table: %d\n", r );
2591
2592     r = add_media_entry( hdb, "'1', '3', '', '', 'DISK1', ''");
2593     ok( r == ERROR_SUCCESS, "cannot add media entry: %d\n", r );
2594
2595     r = create_feature_table( hdb );
2596     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
2597
2598     r = create_component_table( hdb );
2599     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
2600
2601     /* msidbFeatureAttributesFavorLocal */
2602     r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
2603     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2604
2605     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
2606     r = add_component_entry( hdb, "'alpha', '{467EC132-739D-4784-A37B-677AA43DBC94}', 'TARGETDIR', 0, '', 'alpha_file'" );
2607     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2608
2609     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
2610     r = add_component_entry( hdb, "'beta', '{2C1F189C-24A6-4C34-B26B-994A6C026506}', 'TARGETDIR', 1, '', 'beta_file'" );
2611     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2612
2613     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
2614     r = add_component_entry( hdb, "'gamma', '{C271E2A4-DE2E-4F70-86D1-6984AF7DE2CA}', 'TARGETDIR', 2, '', 'gamma_file'" );
2615     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2616
2617     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSharedDllRefCount */
2618     r = add_component_entry( hdb, "'theta', '{4EB3129D-81A8-48D5-9801-75600FED3DD9}', 'TARGETDIR', 8, '', 'theta_file'" );
2619     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2620
2621     /* msidbFeatureAttributesFavorSource */
2622     r = add_feature_entry( hdb, "'two', '', '', '', 2, 1, '', 1" );
2623     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2624
2625     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
2626     r = add_component_entry( hdb, "'delta', '{938FD4F2-C648-4259-A03C-7AA3B45643F3}', 'TARGETDIR', 0, '', 'delta_file'" );
2627     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2628
2629     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
2630     r = add_component_entry( hdb, "'epsilon', '{D59713B6-C11D-47F2-A395-1E5321781190}', 'TARGETDIR', 1, '', 'epsilon_file'" );
2631     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2632
2633     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
2634     r = add_component_entry( hdb, "'zeta', '{377D33AB-2FAA-42B9-A629-0C0DAE9B9C7A}', 'TARGETDIR', 2, '', 'zeta_file'" );
2635     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2636
2637     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSharedDllRefCount */
2638     r = add_component_entry( hdb, "'iota', '{5D36F871-B5ED-4801-9E0F-C46B9E5C9669}', 'TARGETDIR', 8, '', 'iota_file'" );
2639     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2640
2641     /* msidbFeatureAttributesFavorSource */
2642     r = add_feature_entry( hdb, "'three', '', '', '', 2, 1, '', 1" );
2643     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2644
2645     /* msidbFeatureAttributesFavorLocal */
2646     r = add_feature_entry( hdb, "'four', '', '', '', 2, 1, '', 0" );
2647     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2648
2649     /* disabled */
2650     r = add_feature_entry( hdb, "'five', '', '', '', 2, 0, '', 1" );
2651     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2652
2653     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
2654     r = add_component_entry( hdb, "'eta', '{DD89003F-0DD4-41B8-81C0-3411A7DA2695}', 'TARGETDIR', 1, '', 'eta_file'" );
2655     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2656
2657     /* no feature parent:msidbComponentAttributesLocalOnly */
2658     r = add_component_entry( hdb, "'kappa', '{D6B93DC3-8DA5-4769-9888-42BFE156BB8B}', 'TARGETDIR', 1, '', 'kappa_file'" );
2659     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2660
2661     /* msidbFeatureAttributesFavorLocal:removed */
2662     r = add_feature_entry( hdb, "'six', '', '', '', 2, 1, '', 0" );
2663     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2664
2665     /* msidbFeatureAttributesFavorLocal:removed:msidbComponentAttributesLocalOnly */
2666     r = add_component_entry( hdb, "'lambda', '{6528C5E4-02A4-4636-A214-7A66A6C35B64}', 'TARGETDIR', 0, '', 'lambda_file'" );
2667     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2668
2669     /* msidbFeatureAttributesFavorLocal:removed:msidbComponentAttributesSourceOnly */
2670     r = add_component_entry( hdb, "'mu', '{97014BAB-6C56-4013-9A63-2BF913B42519}', 'TARGETDIR', 1, '', 'mu_file'" );
2671     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2672
2673     /* msidbFeatureAttributesFavorLocal:removed:msidbComponentAttributesOptional */
2674     r = add_component_entry( hdb, "'nu', '{943DD0D8-5808-4954-8526-3B8493FEDDCD}', 'TARGETDIR', 2, '', 'nu_file'" );
2675     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2676
2677     /* msidbFeatureAttributesFavorLocal:removed:msidbComponentAttributesSharedDllRefCount */
2678     r = add_component_entry( hdb, "'xi', '{D6CF9EF7-6FCF-4930-B34B-F938AEFF9BDB}', 'TARGETDIR', 8, '', 'xi_file'" );
2679     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2680
2681     /* msidbFeatureAttributesFavorSource:removed */
2682     r = add_feature_entry( hdb, "'seven', '', '', '', 2, 1, '', 1" );
2683     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2684
2685     /* msidbFeatureAttributesFavorSource:removed:msidbComponentAttributesLocalOnly */
2686     r = add_component_entry( hdb, "'omicron', '{7B57521D-15DB-4141-9AA6-01D934A4433F}', 'TARGETDIR', 0, '', 'omicron_file'" );
2687     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2688
2689     /* msidbFeatureAttributesFavorSource:removed:msidbComponentAttributesSourceOnly */
2690     r = add_component_entry( hdb, "'pi', '{FB85346B-378E-4492-8769-792305471C81}', 'TARGETDIR', 1, '', 'pi_file'" );
2691     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2692
2693     /* msidbFeatureAttributesFavorSource:removed:msidbComponentAttributesOptional */
2694     r = add_component_entry( hdb, "'rho', '{798F2047-7B0C-4783-8BB0-D703E554114B}', 'TARGETDIR', 2, '', 'rho_file'" );
2695     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2696
2697     /* msidbFeatureAttributesFavorSource:removed:msidbComponentAttributesSharedDllRefCount */
2698     r = add_component_entry( hdb, "'sigma', '{5CE9DDA8-B67B-4736-9D93-99D61C5B93E7}', 'TARGETDIR', 8, '', 'sigma_file'" );
2699     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2700
2701     /* msidbFeatureAttributesFavorLocal */
2702     r = add_feature_entry( hdb, "'eight', '', '', '', 2, 1, '', 0" );
2703     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2704
2705     r = add_component_entry( hdb, "'tau', '{07DEB510-677C-4A6F-A0A6-7CD8EFEA77ED}', 'TARGETDIR', 1, '', 'tau_file'" );
2706     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2707
2708     /* msidbFeatureAttributesFavorSource */
2709     r = add_feature_entry( hdb, "'nine', '', '', '', 2, 1, '', 1" );
2710     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2711
2712     r = add_component_entry( hdb, "'phi', '{9F0594C5-35AD-43EA-94DD-8DF73FAA664D}', 'TARGETDIR', 1, '', 'phi_file'" );
2713     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2714
2715     /* msidbFeatureAttributesFavorAdvertise */
2716     r = add_feature_entry( hdb, "'ten', '', '', '', 2, 1, '', 4" );
2717     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2718
2719     r = add_component_entry( hdb, "'chi', '{E6B539AB-5DA9-4236-A2D2-E341A50B4C38}', 'TARGETDIR', 1, '', 'chi_file'" );
2720     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2721
2722     /* msidbFeatureAttributesUIDisallowAbsent */
2723     r = add_feature_entry( hdb, "'eleven', '', '', '', 2, 1, '', 16" );
2724     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2725
2726     r = add_component_entry( hdb, "'psi', '{A06B23B5-746B-427A-8A6E-FD6AC8F46A95}', 'TARGETDIR', 1, '', 'psi_file'" );
2727     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2728
2729     r = create_feature_components_table( hdb );
2730     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2731
2732     r = add_feature_components_entry( hdb, "'one', 'alpha'" );
2733     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2734
2735     r = add_feature_components_entry( hdb, "'one', 'beta'" );
2736     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2737
2738     r = add_feature_components_entry( hdb, "'one', 'gamma'" );
2739     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2740
2741     r = add_feature_components_entry( hdb, "'one', 'theta'" );
2742     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2743
2744     r = add_feature_components_entry( hdb, "'two', 'delta'" );
2745     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2746
2747     r = add_feature_components_entry( hdb, "'two', 'epsilon'" );
2748     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2749
2750     r = add_feature_components_entry( hdb, "'two', 'zeta'" );
2751     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2752
2753     r = add_feature_components_entry( hdb, "'two', 'iota'" );
2754     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2755
2756     r = add_feature_components_entry( hdb, "'three', 'eta'" );
2757     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2758
2759     r = add_feature_components_entry( hdb, "'four', 'eta'" );
2760     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2761
2762     r = add_feature_components_entry( hdb, "'five', 'eta'" );
2763     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2764
2765     r = add_feature_components_entry( hdb, "'six', 'lambda'" );
2766     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2767
2768     r = add_feature_components_entry( hdb, "'six', 'mu'" );
2769     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2770
2771     r = add_feature_components_entry( hdb, "'six', 'nu'" );
2772     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2773
2774     r = add_feature_components_entry( hdb, "'six', 'xi'" );
2775     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2776
2777     r = add_feature_components_entry( hdb, "'seven', 'omicron'" );
2778     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2779
2780     r = add_feature_components_entry( hdb, "'seven', 'pi'" );
2781     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2782
2783     r = add_feature_components_entry( hdb, "'seven', 'rho'" );
2784     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2785
2786     r = add_feature_components_entry( hdb, "'seven', 'sigma'" );
2787     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2788
2789     r = add_feature_components_entry( hdb, "'eight', 'tau'" );
2790     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2791
2792     r = add_feature_components_entry( hdb, "'nine', 'phi'" );
2793     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2794
2795     r = add_feature_components_entry( hdb, "'ten', 'chi'" );
2796     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2797
2798     r = add_feature_components_entry( hdb, "'eleven', 'psi'" );
2799     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2800
2801     r = create_file_table( hdb );
2802     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2803
2804     r = add_file_entry( hdb, "'alpha_file', 'alpha', 'alpha.txt', 100, '', '1033', 8192, 1" );
2805     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2806
2807     r = add_file_entry( hdb, "'beta_file', 'beta', 'beta.txt', 0, '', '1033', 8192, 1" );
2808     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2809
2810     r = add_file_entry( hdb, "'gamma_file', 'gamma', 'gamma.txt', 0, '', '1033', 8192, 1" );
2811     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2812
2813     r = add_file_entry( hdb, "'theta_file', 'theta', 'theta.txt', 0, '', '1033', 8192, 1" );
2814     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2815
2816     r = add_file_entry( hdb, "'delta_file', 'delta', 'delta.txt', 0, '', '1033', 8192, 1" );
2817     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2818
2819     r = add_file_entry( hdb, "'epsilon_file', 'epsilon', 'epsilon.txt', 0, '', '1033', 8192, 1" );
2820     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2821
2822     r = add_file_entry( hdb, "'zeta_file', 'zeta', 'zeta.txt', 0, '', '1033', 8192, 1" );
2823     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2824
2825     r = add_file_entry( hdb, "'iota_file', 'iota', 'iota.txt', 0, '', '1033', 8192, 1" );
2826     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2827
2828     /* compressed file */
2829     r = add_file_entry( hdb, "'eta_file', 'eta', 'eta.txt', 0, '', '1033', 16384, 1" );
2830     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2831
2832     r = add_file_entry( hdb, "'kappa_file', 'kappa', 'kappa.txt', 0, '', '1033', 8192, 1" );
2833     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2834
2835     r = add_file_entry( hdb, "'lambda_file', 'lambda', 'lambda.txt', 100, '', '1033', 8192, 1" );
2836     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2837
2838     r = add_file_entry( hdb, "'mu_file', 'mu', 'mu.txt', 100, '', '1033', 8192, 1" );
2839     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2840
2841     r = add_file_entry( hdb, "'nu_file', 'nu', 'nu.txt', 100, '', '1033', 8192, 1" );
2842     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2843
2844     r = add_file_entry( hdb, "'xi_file', 'xi', 'xi.txt', 100, '', '1033', 8192, 1" );
2845     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2846
2847     r = add_file_entry( hdb, "'omicron_file', 'omicron', 'omicron.txt', 100, '', '1033', 8192, 1" );
2848     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2849
2850     r = add_file_entry( hdb, "'pi_file', 'pi', 'pi.txt', 100, '', '1033', 8192, 1" );
2851     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2852
2853     r = add_file_entry( hdb, "'rho_file', 'rho', 'rho.txt', 100, '', '1033', 8192, 1" );
2854     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2855
2856     r = add_file_entry( hdb, "'sigma_file', 'sigma', 'sigma.txt', 100, '', '1033', 8192, 1" );
2857     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2858
2859     r = add_file_entry( hdb, "'tau_file', 'tau', 'tau.txt', 100, '', '1033', 8192, 1" );
2860     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2861
2862     r = add_file_entry( hdb, "'phi_file', 'phi', 'phi.txt', 100, '', '1033', 8192, 1" );
2863     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2864
2865     r = add_file_entry( hdb, "'chi_file', 'chi', 'chi.txt', 100, '', '1033', 8192, 1" );
2866     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2867
2868     r = add_file_entry( hdb, "'psi_file', 'psi', 'psi.txt', 100, '', '1033', 8192, 1" );
2869     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2870
2871     MsiDatabaseCommit(hdb);
2872
2873     /* these properties must not be in the saved msi file */
2874     r = add_property_entry( hdb, "'ADDLOCAL', 'one,four'");
2875     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
2876
2877     r = add_property_entry( hdb, "'ADDSOURCE', 'two,three'");
2878     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
2879
2880     r = add_property_entry( hdb, "'REMOVE', 'six,seven'");
2881     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
2882
2883     r = add_property_entry( hdb, "'REINSTALL', 'eight,nine,ten'");
2884     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
2885
2886     r = add_property_entry( hdb, "'REINSTALLMODE', 'omus'");
2887     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
2888
2889     r = package_from_db( hdb, &hpkg );
2890     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
2891     {
2892         skip("Not enough rights to perform tests\n");
2893         DeleteFile(msifile);
2894         return;
2895     }
2896     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
2897
2898     MsiCloseHandle(hdb);
2899
2900     CopyFileA(msifile, msifile2, FALSE);
2901     CopyFileA(msifile, msifile3, FALSE);
2902     CopyFileA(msifile, msifile4, FALSE);
2903
2904     state = 0xdeadbee;
2905     action = 0xdeadbee;
2906     r = MsiGetFeatureState(hpkg, "one", &state, &action);
2907     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2908     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2909     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2910
2911     state = 0xdeadbee;
2912     action = 0xdeadbee;
2913     r = MsiGetFeatureState(hpkg, "two", &state, &action);
2914     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2915     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2916     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2917
2918     state = 0xdeadbee;
2919     action = 0xdeadbee;
2920     r = MsiGetFeatureState(hpkg, "three", &state, &action);
2921     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2922     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2923     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2924
2925     state = 0xdeadbee;
2926     action = 0xdeadbee;
2927     r = MsiGetFeatureState(hpkg, "four", &state, &action);
2928     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2929     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2930     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2931
2932     state = 0xdeadbee;
2933     action = 0xdeadbee;
2934     r = MsiGetFeatureState(hpkg, "five", &state, &action);
2935     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2936     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2937     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2938
2939     state = 0xdeadbee;
2940     action = 0xdeadbee;
2941     r = MsiGetFeatureState(hpkg, "six", &state, &action);
2942     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2943     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2944     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2945
2946     state = 0xdeadbee;
2947     action = 0xdeadbee;
2948     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
2949     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2950     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2951     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2952
2953     state = 0xdeadbee;
2954     action = 0xdeadbee;
2955     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
2956     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2957     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2958     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2959
2960     state = 0xdeadbee;
2961     action = 0xdeadbee;
2962     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
2963     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2964     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2965     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2966
2967     state = 0xdeadbee;
2968     action = 0xdeadbee;
2969     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
2970     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2971     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2972     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2973
2974     state = 0xdeadbee;
2975     action = 0xdeadbee;
2976     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
2977     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2978     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2979     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2980
2981     state = 0xdeadbee;
2982     action = 0xdeadbee;
2983     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
2984     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2985     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2986     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2987
2988     state = 0xdeadbee;
2989     action = 0xdeadbee;
2990     r = MsiGetComponentState(hpkg, "beta", &state, &action);
2991     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2992     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2993     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2994
2995     state = 0xdeadbee;
2996     action = 0xdeadbee;
2997     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
2998     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2999     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3000     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3001
3002     state = 0xdeadbee;
3003     action = 0xdeadbee;
3004     r = MsiGetComponentState(hpkg, "theta", &state, &action);
3005     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3006     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3007     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3008
3009     state = 0xdeadbee;
3010     action = 0xdeadbee;
3011     r = MsiGetComponentState(hpkg, "delta", &state, &action);
3012     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3013     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3014     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3015
3016     state = 0xdeadbee;
3017     action = 0xdeadbee;
3018     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
3019     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3020     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3021     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3022
3023     state = 0xdeadbee;
3024     action = 0xdeadbee;
3025     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
3026     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3027     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3028     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3029
3030     state = 0xdeadbee;
3031     action = 0xdeadbee;
3032     r = MsiGetComponentState(hpkg, "iota", &state, &action);
3033     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3034     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3035     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3036
3037     state = 0xdeadbee;
3038     action = 0xdeadbee;
3039     r = MsiGetComponentState(hpkg, "eta", &state, &action);
3040     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3041     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3042     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3043
3044     state = 0xdeadbee;
3045     action = 0xdeadbee;
3046     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
3047     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3048     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3049     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3050
3051     state = 0xdeadbee;
3052     action = 0xdeadbee;
3053     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
3054     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3055     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3056     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3057
3058     state = 0xdeadbee;
3059     action = 0xdeadbee;
3060     r = MsiGetComponentState(hpkg, "mu", &state, &action);
3061     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3062     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3063     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3064
3065     state = 0xdeadbee;
3066     action = 0xdeadbee;
3067     r = MsiGetComponentState(hpkg, "nu", &state, &action);
3068     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3069     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3070     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3071
3072     state = 0xdeadbee;
3073     action = 0xdeadbee;
3074     r = MsiGetComponentState(hpkg, "xi", &state, &action);
3075     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3076     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3077     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3078
3079     state = 0xdeadbee;
3080     action = 0xdeadbee;
3081     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
3082     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3083     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3084     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3085
3086     state = 0xdeadbee;
3087     action = 0xdeadbee;
3088     r = MsiGetComponentState(hpkg, "pi", &state, &action);
3089     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3090     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3091     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3092
3093     state = 0xdeadbee;
3094     action = 0xdeadbee;
3095     r = MsiGetComponentState(hpkg, "rho", &state, &action);
3096     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3097     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3098     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3099
3100     state = 0xdeadbee;
3101     action = 0xdeadbee;
3102     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
3103     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3104     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3105     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3106
3107     state = 0xdeadbee;
3108     action = 0xdeadbee;
3109     r = MsiGetComponentState(hpkg, "tau", &state, &action);
3110     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3111     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3112     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3113
3114     state = 0xdeadbee;
3115     action = 0xdeadbee;
3116     r = MsiGetComponentState(hpkg, "phi", &state, &action);
3117     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3118     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3119     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3120
3121     state = 0xdeadbee;
3122     action = 0xdeadbee;
3123     r = MsiGetComponentState(hpkg, "chi", &state, &action);
3124     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3125     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3126     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3127
3128     state = 0xdeadbee;
3129     action = 0xdeadbee;
3130     r = MsiGetComponentState(hpkg, "psi", &state, &action);
3131     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3132     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3133     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3134
3135     r = MsiDoAction( hpkg, "CostInitialize");
3136     ok( r == ERROR_SUCCESS, "cost init failed\n");
3137
3138     state = 0xdeadbee;
3139     action = 0xdeadbee;
3140     r = MsiGetFeatureState(hpkg, "one", &state, &action);
3141     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3142     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3143     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3144
3145     state = 0xdeadbee;
3146     action = 0xdeadbee;
3147     r = MsiGetFeatureState(hpkg, "two", &state, &action);
3148     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3149     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3150     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3151
3152     state = 0xdeadbee;
3153     action = 0xdeadbee;
3154     r = MsiGetFeatureState(hpkg, "three", &state, &action);
3155     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3156     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3157     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3158
3159     state = 0xdeadbee;
3160     action = 0xdeadbee;
3161     r = MsiGetFeatureState(hpkg, "four", &state, &action);
3162     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3163     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3164     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3165
3166     state = 0xdeadbee;
3167     action = 0xdeadbee;
3168     r = MsiGetFeatureState(hpkg, "five", &state, &action);
3169     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3170     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3171     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3172
3173     state = 0xdeadbee;
3174     action = 0xdeadbee;
3175     r = MsiGetFeatureState(hpkg, "six", &state, &action);
3176     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3177     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3178     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3179
3180     state = 0xdeadbee;
3181     action = 0xdeadbee;
3182     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
3183     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3184     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3185     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3186
3187     state = 0xdeadbee;
3188     action = 0xdeadbee;
3189     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
3190     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3191     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3192     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3193
3194     state = 0xdeadbee;
3195     action = 0xdeadbee;
3196     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
3197     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3198     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3199     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3200
3201     state = 0xdeadbee;
3202     action = 0xdeadbee;
3203     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
3204     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3205     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3206     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3207
3208     state = 0xdeadbee;
3209     action = 0xdeadbee;
3210     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
3211     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3212     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3213     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3214
3215     state = 0xdeadbee;
3216     action = 0xdeadbee;
3217     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
3218     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3219     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3220     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3221
3222     state = 0xdeadbee;
3223     action = 0xdeadbee;
3224     r = MsiGetComponentState(hpkg, "beta", &state, &action);
3225     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3226     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3227     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3228
3229     state = 0xdeadbee;
3230     action = 0xdeadbee;
3231     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
3232     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3233     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3234     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3235
3236     state = 0xdeadbee;
3237     action = 0xdeadbee;
3238     r = MsiGetComponentState(hpkg, "theta", &state, &action);
3239     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3240     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3241     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3242
3243     state = 0xdeadbee;
3244     action = 0xdeadbee;
3245     r = MsiGetComponentState(hpkg, "delta", &state, &action);
3246     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3247     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3248     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3249
3250     state = 0xdeadbee;
3251     action = 0xdeadbee;
3252     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
3253     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3254     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3255     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3256
3257     state = 0xdeadbee;
3258     action = 0xdeadbee;
3259     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
3260     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3261     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3262     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3263
3264     state = 0xdeadbee;
3265     action = 0xdeadbee;
3266     r = MsiGetComponentState(hpkg, "iota", &state, &action);
3267     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3268     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3269     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3270
3271     state = 0xdeadbee;
3272     action = 0xdeadbee;
3273     r = MsiGetComponentState(hpkg, "eta", &state, &action);
3274     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3275     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3276     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3277
3278     state = 0xdeadbee;
3279     action = 0xdeadbee;
3280     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
3281     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3282     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3283     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3284
3285     state = 0xdeadbee;
3286     action = 0xdeadbee;
3287     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
3288     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3289     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3290     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3291
3292     state = 0xdeadbee;
3293     action = 0xdeadbee;
3294     r = MsiGetComponentState(hpkg, "mu", &state, &action);
3295     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3296     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3297     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3298
3299     state = 0xdeadbee;
3300     action = 0xdeadbee;
3301     r = MsiGetComponentState(hpkg, "nu", &state, &action);
3302     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3303     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3304     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3305
3306     state = 0xdeadbee;
3307     action = 0xdeadbee;
3308     r = MsiGetComponentState(hpkg, "xi", &state, &action);
3309     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3310     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3311     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3312
3313     state = 0xdeadbee;
3314     action = 0xdeadbee;
3315     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
3316     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3317     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3318     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3319
3320     state = 0xdeadbee;
3321     action = 0xdeadbee;
3322     r = MsiGetComponentState(hpkg, "pi", &state, &action);
3323     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3324     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3325     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3326
3327     state = 0xdeadbee;
3328     action = 0xdeadbee;
3329     r = MsiGetComponentState(hpkg, "rho", &state, &action);
3330     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3331     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3332     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3333
3334     state = 0xdeadbee;
3335     action = 0xdeadbee;
3336     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
3337     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3338     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3339     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3340
3341     state = 0xdeadbee;
3342     action = 0xdeadbee;
3343     r = MsiGetComponentState(hpkg, "tau", &state, &action);
3344     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3345     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3346     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3347
3348     state = 0xdeadbee;
3349     action = 0xdeadbee;
3350     r = MsiGetComponentState(hpkg, "phi", &state, &action);
3351     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3352     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3353     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3354
3355     state = 0xdeadbee;
3356     action = 0xdeadbee;
3357     r = MsiGetComponentState(hpkg, "chi", &state, &action);
3358     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3359     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3360     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3361
3362     state = 0xdeadbee;
3363     action = 0xdeadbee;
3364     r = MsiGetComponentState(hpkg, "psi", &state, &action);
3365     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3366     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3367     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3368
3369     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
3370
3371     r = MsiDoAction( hpkg, "FileCost");
3372     ok( r == ERROR_SUCCESS, "file cost failed\n");
3373
3374     r = MsiGetFeatureState(hpkg, "one", NULL, NULL);
3375     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3376
3377     action = 0xdeadbee;
3378     r = MsiGetFeatureState(hpkg, "one", NULL, &action);
3379     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3380     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3381
3382     state = 0xdeadbee;
3383     r = MsiGetFeatureState( hpkg, "one", &state, NULL);
3384     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3385     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3386
3387     state = 0xdeadbee;
3388     action = 0xdeadbee;
3389     r = MsiGetFeatureState(hpkg, "one", &state, &action);
3390     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3391     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3392     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3393
3394     state = 0xdeadbee;
3395     action = 0xdeadbee;
3396     r = MsiGetFeatureState(hpkg, "two", &state, &action);
3397     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3398     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3399     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3400
3401     state = 0xdeadbee;
3402     action = 0xdeadbee;
3403     r = MsiGetFeatureState(hpkg, "three", &state, &action);
3404     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3405     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3406     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3407
3408     state = 0xdeadbee;
3409     action = 0xdeadbee;
3410     r = MsiGetFeatureState(hpkg, "four", &state, &action);
3411     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3412     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3413     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3414
3415     state = 0xdeadbee;
3416     action = 0xdeadbee;
3417     r = MsiGetFeatureState(hpkg, "five", &state, &action);
3418     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3419     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3420     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3421
3422     state = 0xdeadbee;
3423     action = 0xdeadbee;
3424     r = MsiGetFeatureState(hpkg, "six", &state, &action);
3425     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3426     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3427     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3428
3429     state = 0xdeadbee;
3430     action = 0xdeadbee;
3431     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
3432     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3433     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3434     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3435
3436     state = 0xdeadbee;
3437     action = 0xdeadbee;
3438     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
3439     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3440     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3441     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3442
3443     state = 0xdeadbee;
3444     action = 0xdeadbee;
3445     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
3446     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3447     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3448     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3449
3450     state = 0xdeadbee;
3451     action = 0xdeadbee;
3452     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
3453     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3454     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3455     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3456
3457     state = 0xdeadbee;
3458     action = 0xdeadbee;
3459     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
3460     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3461     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3462     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3463
3464     state = 0xdeadbee;
3465     action = 0xdeadbee;
3466     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
3467     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3468     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3469     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3470
3471     state = 0xdeadbee;
3472     action = 0xdeadbee;
3473     r = MsiGetComponentState(hpkg, "beta", &state, &action);
3474     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3475     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3476     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3477
3478     state = 0xdeadbee;
3479     action = 0xdeadbee;
3480     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
3481     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3482     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3483     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3484
3485     state = 0xdeadbee;
3486     action = 0xdeadbee;
3487     r = MsiGetComponentState(hpkg, "theta", &state, &action);
3488     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3489     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3490     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3491
3492     state = 0xdeadbee;
3493     action = 0xdeadbee;
3494     r = MsiGetComponentState(hpkg, "delta", &state, &action);
3495     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3496     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3497     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3498
3499     state = 0xdeadbee;
3500     action = 0xdeadbee;
3501     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
3502     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3503     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3504     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3505
3506     state = 0xdeadbee;
3507     action = 0xdeadbee;
3508     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
3509     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3510     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3511     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3512
3513     state = 0xdeadbee;
3514     action = 0xdeadbee;
3515     r = MsiGetComponentState(hpkg, "iota", &state, &action);
3516     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3517     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3518     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3519
3520     state = 0xdeadbee;
3521     action = 0xdeadbee;
3522     r = MsiGetComponentState(hpkg, "eta", &state, &action);
3523     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3524     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3525     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3526
3527     state = 0xdeadbee;
3528     action = 0xdeadbee;
3529     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
3530     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3531     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3532     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3533
3534     state = 0xdeadbee;
3535     action = 0xdeadbee;
3536     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
3537     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3538     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3539     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3540
3541     state = 0xdeadbee;
3542     action = 0xdeadbee;
3543     r = MsiGetComponentState(hpkg, "mu", &state, &action);
3544     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3545     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3546     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3547
3548     state = 0xdeadbee;
3549     action = 0xdeadbee;
3550     r = MsiGetComponentState(hpkg, "nu", &state, &action);
3551     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3552     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3553     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3554
3555     state = 0xdeadbee;
3556     action = 0xdeadbee;
3557     r = MsiGetComponentState(hpkg, "xi", &state, &action);
3558     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3559     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3560     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3561
3562     state = 0xdeadbee;
3563     action = 0xdeadbee;
3564     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
3565     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3566     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3567     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3568
3569     state = 0xdeadbee;
3570     action = 0xdeadbee;
3571     r = MsiGetComponentState(hpkg, "pi", &state, &action);
3572     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3573     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3574     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3575
3576     state = 0xdeadbee;
3577     action = 0xdeadbee;
3578     r = MsiGetComponentState(hpkg, "rho", &state, &action);
3579     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3580     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3581     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3582
3583     state = 0xdeadbee;
3584     action = 0xdeadbee;
3585     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
3586     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3587     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3588     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3589
3590     state = 0xdeadbee;
3591     action = 0xdeadbee;
3592     r = MsiGetComponentState(hpkg, "tau", &state, &action);
3593     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3594     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3595     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3596
3597     state = 0xdeadbee;
3598     action = 0xdeadbee;
3599     r = MsiGetComponentState(hpkg, "phi", &state, &action);
3600     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3601     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3602     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3603
3604     state = 0xdeadbee;
3605     action = 0xdeadbee;
3606     r = MsiGetComponentState(hpkg, "chi", &state, &action);
3607     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3608     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3609     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3610
3611     state = 0xdeadbee;
3612     action = 0xdeadbee;
3613     r = MsiGetComponentState(hpkg, "psi", &state, &action);
3614     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3615     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
3616     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3617
3618     r = MsiDoAction( hpkg, "CostFinalize");
3619     ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
3620
3621     state = 0xdeadbee;
3622     action = 0xdeadbee;
3623     r = MsiGetFeatureState(hpkg, "one", &state, &action);
3624     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3625     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3626     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3627
3628     state = 0xdeadbee;
3629     action = 0xdeadbee;
3630     r = MsiGetFeatureState(hpkg, "two", &state, &action);
3631     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3632     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3633     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
3634
3635     state = 0xdeadbee;
3636     action = 0xdeadbee;
3637     r = MsiGetFeatureState(hpkg, "three", &state, &action);
3638     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3639     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3640     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3641
3642     state = 0xdeadbee;
3643     action = 0xdeadbee;
3644     r = MsiGetFeatureState(hpkg, "four", &state, &action);
3645     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3646     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3647     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3648
3649     state = 0xdeadbee;
3650     action = 0xdeadbee;
3651     r = MsiGetFeatureState(hpkg, "five", &state, &action);
3652     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3653     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3654     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3655
3656     state = 0xdeadbee;
3657     action = 0xdeadbee;
3658     r = MsiGetFeatureState(hpkg, "six", &state, &action);
3659     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3660     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3661     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3662
3663     state = 0xdeadbee;
3664     action = 0xdeadbee;
3665     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
3666     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3667     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3668     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3669
3670     state = 0xdeadbee;
3671     action = 0xdeadbee;
3672     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
3673     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3674     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3675     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3676
3677     state = 0xdeadbee;
3678     action = 0xdeadbee;
3679     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
3680     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3681     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3682     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3683
3684     state = 0xdeadbee;
3685     action = 0xdeadbee;
3686     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
3687     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3688     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3689     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3690
3691     state = 0xdeadbee;
3692     action = 0xdeadbee;
3693     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
3694     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3695     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3696     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3697
3698     state = 0xdeadbee;
3699     action = 0xdeadbee;
3700     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
3701     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3702     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3703     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3704
3705     state = 0xdeadbee;
3706     action = 0xdeadbee;
3707     r = MsiGetComponentState(hpkg, "beta", &state, &action);
3708     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3709     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3710     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
3711
3712     state = 0xdeadbee;
3713     action = 0xdeadbee;
3714     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
3715     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3716     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3717     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3718
3719     state = 0xdeadbee;
3720     action = 0xdeadbee;
3721     r = MsiGetComponentState(hpkg, "theta", &state, &action);
3722     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3723     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3724     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3725
3726     state = 0xdeadbee;
3727     action = 0xdeadbee;
3728     r = MsiGetComponentState(hpkg, "delta", &state, &action);
3729     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3730     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3731     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3732
3733     state = 0xdeadbee;
3734     action = 0xdeadbee;
3735     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
3736     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3737     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3738     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
3739
3740     state = 0xdeadbee;
3741     action = 0xdeadbee;
3742     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
3743     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3744     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3745     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
3746
3747     state = 0xdeadbee;
3748     action = 0xdeadbee;
3749     r = MsiGetComponentState(hpkg, "iota", &state, &action);
3750     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3751     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3752     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3753
3754     state = 0xdeadbee;
3755     action = 0xdeadbee;
3756     r = MsiGetComponentState(hpkg, "eta", &state, &action);
3757     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3758     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3759     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
3760
3761     state = 0xdeadbee;
3762     action = 0xdeadbee;
3763     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
3764     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3765     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3766     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3767
3768     state = 0xdeadbee;
3769     action = 0xdeadbee;
3770     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
3771     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3772     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3773     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3774
3775     state = 0xdeadbee;
3776     action = 0xdeadbee;
3777     r = MsiGetComponentState(hpkg, "mu", &state, &action);
3778     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3779     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3780     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3781
3782     state = 0xdeadbee;
3783     action = 0xdeadbee;
3784     r = MsiGetComponentState(hpkg, "nu", &state, &action);
3785     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3786     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3787     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3788
3789     state = 0xdeadbee;
3790     action = 0xdeadbee;
3791     r = MsiGetComponentState(hpkg, "xi", &state, &action);
3792     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3793     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3794     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3795
3796     state = 0xdeadbee;
3797     action = 0xdeadbee;
3798     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
3799     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3800     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3801     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3802
3803     state = 0xdeadbee;
3804     action = 0xdeadbee;
3805     r = MsiGetComponentState(hpkg, "pi", &state, &action);
3806     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3807     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3808     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3809
3810     state = 0xdeadbee;
3811     action = 0xdeadbee;
3812     r = MsiGetComponentState(hpkg, "rho", &state, &action);
3813     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3814     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3815     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3816
3817     state = 0xdeadbee;
3818     action = 0xdeadbee;
3819     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
3820     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3821     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3822     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3823
3824     state = 0xdeadbee;
3825     action = 0xdeadbee;
3826     r = MsiGetComponentState(hpkg, "tau", &state, &action);
3827     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3828     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3829     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3830
3831     state = 0xdeadbee;
3832     action = 0xdeadbee;
3833     r = MsiGetComponentState(hpkg, "phi", &state, &action);
3834     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3835     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3836     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3837
3838     state = 0xdeadbee;
3839     action = 0xdeadbee;
3840     r = MsiGetComponentState(hpkg, "chi", &state, &action);
3841     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3842     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3843     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3844
3845     state = 0xdeadbee;
3846     action = 0xdeadbee;
3847     r = MsiGetComponentState(hpkg, "psi", &state, &action);
3848     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3849     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
3850     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
3851
3852     MsiCloseHandle( hpkg );
3853
3854     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
3855
3856     /* publish the features and components */
3857     r = MsiInstallProduct(msifile, "ADDLOCAL=one,four ADDSOURCE=two,three REMOVE=six,seven REINSTALL=eight,nine,ten");
3858     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
3859
3860     r = MsiOpenDatabase(msifile, MSIDBOPEN_DIRECT, &hdb);
3861     ok(r == ERROR_SUCCESS, "failed to open database: %d\n", r);
3862
3863     /* these properties must not be in the saved msi file */
3864     r = add_property_entry( hdb, "'ADDLOCAL', 'one,four'");
3865     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
3866
3867     r = add_property_entry( hdb, "'ADDSOURCE', 'two,three'");
3868     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
3869
3870     r = add_property_entry( hdb, "'REMOVE', 'six,seven'");
3871     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
3872
3873     r = add_property_entry( hdb, "'REINSTALL', 'eight,nine,ten'");
3874     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
3875
3876     r = package_from_db( hdb, &hpkg );
3877     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
3878
3879     MsiCloseHandle(hdb);
3880
3881     state = 0xdeadbee;
3882     action = 0xdeadbee;
3883     r = MsiGetFeatureState(hpkg, "one", &state, &action);
3884     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3885     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3886     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3887
3888     state = 0xdeadbee;
3889     action = 0xdeadbee;
3890     r = MsiGetFeatureState(hpkg, "two", &state, &action);
3891     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3892     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3893     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3894
3895     state = 0xdeadbee;
3896     action = 0xdeadbee;
3897     r = MsiGetFeatureState(hpkg, "three", &state, &action);
3898     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3899     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3900     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3901
3902     state = 0xdeadbee;
3903     action = 0xdeadbee;
3904     r = MsiGetFeatureState(hpkg, "four", &state, &action);
3905     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3906     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3907     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3908
3909     state = 0xdeadbee;
3910     action = 0xdeadbee;
3911     r = MsiGetFeatureState(hpkg, "five", &state, &action);
3912     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3913     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3914     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3915
3916     state = 0xdeadbee;
3917     action = 0xdeadbee;
3918     r = MsiGetFeatureState(hpkg, "six", &state, &action);
3919     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3920     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3921     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3922
3923     state = 0xdeadbee;
3924     action = 0xdeadbee;
3925     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
3926     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3927     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3928     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3929
3930     state = 0xdeadbee;
3931     action = 0xdeadbee;
3932     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
3933     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3934     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3935     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3936
3937     state = 0xdeadbee;
3938     action = 0xdeadbee;
3939     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
3940     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3941     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3942     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3943
3944     state = 0xdeadbee;
3945     action = 0xdeadbee;
3946     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
3947     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3948     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3949     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3950
3951     state = 0xdeadbee;
3952     action = 0xdeadbee;
3953     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
3954     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
3955     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3956     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3957
3958     state = 0xdeadbee;
3959     action = 0xdeadbee;
3960     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
3961     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3962     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3963     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3964
3965     state = 0xdeadbee;
3966     action = 0xdeadbee;
3967     r = MsiGetComponentState(hpkg, "beta", &state, &action);
3968     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3969     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3970     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3971
3972     state = 0xdeadbee;
3973     action = 0xdeadbee;
3974     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
3975     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3976     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3977     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3978
3979     state = 0xdeadbee;
3980     action = 0xdeadbee;
3981     r = MsiGetComponentState(hpkg, "theta", &state, &action);
3982     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3983     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3984     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3985
3986     state = 0xdeadbee;
3987     action = 0xdeadbee;
3988     r = MsiGetComponentState(hpkg, "delta", &state, &action);
3989     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3990     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3991     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3992
3993     state = 0xdeadbee;
3994     action = 0xdeadbee;
3995     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
3996     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
3997     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
3998     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
3999
4000     state = 0xdeadbee;
4001     action = 0xdeadbee;
4002     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
4003     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4004     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4005     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4006
4007     state = 0xdeadbee;
4008     action = 0xdeadbee;
4009     r = MsiGetComponentState(hpkg, "iota", &state, &action);
4010     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4011     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4012     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4013
4014     state = 0xdeadbee;
4015     action = 0xdeadbee;
4016     r = MsiGetComponentState(hpkg, "eta", &state, &action);
4017     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4018     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4019     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4020
4021     state = 0xdeadbee;
4022     action = 0xdeadbee;
4023     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
4024     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4025     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4026     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4027
4028     state = 0xdeadbee;
4029     action = 0xdeadbee;
4030     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
4031     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4032     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4033     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4034
4035     state = 0xdeadbee;
4036     action = 0xdeadbee;
4037     r = MsiGetComponentState(hpkg, "mu", &state, &action);
4038     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4039     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4040     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4041
4042     state = 0xdeadbee;
4043     action = 0xdeadbee;
4044     r = MsiGetComponentState(hpkg, "nu", &state, &action);
4045     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4046     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4047     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4048
4049     state = 0xdeadbee;
4050     action = 0xdeadbee;
4051     r = MsiGetComponentState(hpkg, "xi", &state, &action);
4052     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4053     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4054     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4055
4056     state = 0xdeadbee;
4057     action = 0xdeadbee;
4058     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
4059     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4060     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4061     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4062
4063     state = 0xdeadbee;
4064     action = 0xdeadbee;
4065     r = MsiGetComponentState(hpkg, "pi", &state, &action);
4066     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4067     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4068     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4069
4070     state = 0xdeadbee;
4071     action = 0xdeadbee;
4072     r = MsiGetComponentState(hpkg, "rho", &state, &action);
4073     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4074     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4075     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4076
4077     state = 0xdeadbee;
4078     action = 0xdeadbee;
4079     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
4080     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4081     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4082     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4083
4084     state = 0xdeadbee;
4085     action = 0xdeadbee;
4086     r = MsiGetComponentState(hpkg, "tau", &state, &action);
4087     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4088     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4089     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4090
4091     state = 0xdeadbee;
4092     action = 0xdeadbee;
4093     r = MsiGetComponentState(hpkg, "phi", &state, &action);
4094     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4095     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4096     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4097
4098     state = 0xdeadbee;
4099     action = 0xdeadbee;
4100     r = MsiGetComponentState(hpkg, "chi", &state, &action);
4101     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4102     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4103     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4104
4105     state = 0xdeadbee;
4106     action = 0xdeadbee;
4107     r = MsiGetComponentState(hpkg, "psi", &state, &action);
4108     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4109     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4110     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4111
4112     r = MsiDoAction( hpkg, "CostInitialize");
4113     ok( r == ERROR_SUCCESS, "cost init failed\n");
4114
4115     state = 0xdeadbee;
4116     action = 0xdeadbee;
4117     r = MsiGetFeatureState(hpkg, "one", &state, &action);
4118     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4119     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4120     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4121
4122     state = 0xdeadbee;
4123     action = 0xdeadbee;
4124     r = MsiGetFeatureState(hpkg, "two", &state, &action);
4125     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4126     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4127     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4128
4129     state = 0xdeadbee;
4130     action = 0xdeadbee;
4131     r = MsiGetFeatureState(hpkg, "three", &state, &action);
4132     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4133     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4134     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4135
4136     state = 0xdeadbee;
4137     action = 0xdeadbee;
4138     r = MsiGetFeatureState(hpkg, "four", &state, &action);
4139     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4140     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4141     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4142
4143     state = 0xdeadbee;
4144     action = 0xdeadbee;
4145     r = MsiGetFeatureState(hpkg, "five", &state, &action);
4146     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4147     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4148     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4149
4150     state = 0xdeadbee;
4151     action = 0xdeadbee;
4152     r = MsiGetFeatureState(hpkg, "six", &state, &action);
4153     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4154     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4155     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4156
4157     state = 0xdeadbee;
4158     action = 0xdeadbee;
4159     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
4160     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4161     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4162     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4163
4164     state = 0xdeadbee;
4165     action = 0xdeadbee;
4166     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
4167     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4168     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4169     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4170
4171     state = 0xdeadbee;
4172     action = 0xdeadbee;
4173     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
4174     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4175     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4176     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4177
4178     state = 0xdeadbee;
4179     action = 0xdeadbee;
4180     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
4181     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4182     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4183     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4184
4185     state = 0xdeadbee;
4186     action = 0xdeadbee;
4187     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
4188     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4189     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4190     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4191
4192     state = 0xdeadbee;
4193     action = 0xdeadbee;
4194     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
4195     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4196     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4197     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4198
4199     state = 0xdeadbee;
4200     action = 0xdeadbee;
4201     r = MsiGetComponentState(hpkg, "beta", &state, &action);
4202     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4203     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4204     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4205
4206     state = 0xdeadbee;
4207     action = 0xdeadbee;
4208     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
4209     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4210     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4211     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4212
4213     state = 0xdeadbee;
4214     action = 0xdeadbee;
4215     r = MsiGetComponentState(hpkg, "theta", &state, &action);
4216     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4217     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4218     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4219
4220     state = 0xdeadbee;
4221     action = 0xdeadbee;
4222     r = MsiGetComponentState(hpkg, "delta", &state, &action);
4223     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4224     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4225     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4226
4227     state = 0xdeadbee;
4228     action = 0xdeadbee;
4229     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
4230     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4231     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4232     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4233
4234     state = 0xdeadbee;
4235     action = 0xdeadbee;
4236     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
4237     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4238     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4239     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4240
4241     state = 0xdeadbee;
4242     action = 0xdeadbee;
4243     r = MsiGetComponentState(hpkg, "iota", &state, &action);
4244     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4245     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4246     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4247
4248     state = 0xdeadbee;
4249     action = 0xdeadbee;
4250     r = MsiGetComponentState(hpkg, "eta", &state, &action);
4251     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4252     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4253     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4254
4255     state = 0xdeadbee;
4256     action = 0xdeadbee;
4257     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
4258     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4259     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4260     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4261
4262     state = 0xdeadbee;
4263     action = 0xdeadbee;
4264     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
4265     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4266     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4267     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4268
4269     state = 0xdeadbee;
4270     action = 0xdeadbee;
4271     r = MsiGetComponentState(hpkg, "mu", &state, &action);
4272     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4273     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4274     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4275
4276     state = 0xdeadbee;
4277     action = 0xdeadbee;
4278     r = MsiGetComponentState(hpkg, "nu", &state, &action);
4279     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4280     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4281     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4282
4283     state = 0xdeadbee;
4284     action = 0xdeadbee;
4285     r = MsiGetComponentState(hpkg, "xi", &state, &action);
4286     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4287     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4288     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4289
4290     state = 0xdeadbee;
4291     action = 0xdeadbee;
4292     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
4293     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4294     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4295     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4296
4297     state = 0xdeadbee;
4298     action = 0xdeadbee;
4299     r = MsiGetComponentState(hpkg, "pi", &state, &action);
4300     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4301     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4302     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4303
4304     state = 0xdeadbee;
4305     action = 0xdeadbee;
4306     r = MsiGetComponentState(hpkg, "rho", &state, &action);
4307     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4308     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4309     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4310
4311     state = 0xdeadbee;
4312     action = 0xdeadbee;
4313     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
4314     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4315     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4316     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4317
4318     state = 0xdeadbee;
4319     action = 0xdeadbee;
4320     r = MsiGetComponentState(hpkg, "tau", &state, &action);
4321     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4322     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4323     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4324
4325     state = 0xdeadbee;
4326     action = 0xdeadbee;
4327     r = MsiGetComponentState(hpkg, "phi", &state, &action);
4328     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4329     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4330     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4331
4332     state = 0xdeadbee;
4333     action = 0xdeadbee;
4334     r = MsiGetComponentState(hpkg, "chi", &state, &action);
4335     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4336     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4337     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4338
4339     state = 0xdeadbee;
4340     action = 0xdeadbee;
4341     r = MsiGetComponentState(hpkg, "psi", &state, &action);
4342     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4343     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4344     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4345
4346     r = MsiDoAction( hpkg, "FileCost");
4347     ok( r == ERROR_SUCCESS, "file cost failed\n");
4348
4349     state = 0xdeadbee;
4350     action = 0xdeadbee;
4351     r = MsiGetFeatureState(hpkg, "one", &state, &action);
4352     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4353     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4354     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4355
4356     state = 0xdeadbee;
4357     action = 0xdeadbee;
4358     r = MsiGetFeatureState(hpkg, "two", &state, &action);
4359     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4360     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4361     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4362
4363     state = 0xdeadbee;
4364     action = 0xdeadbee;
4365     r = MsiGetFeatureState(hpkg, "three", &state, &action);
4366     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4367     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4368     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4369
4370     state = 0xdeadbee;
4371     action = 0xdeadbee;
4372     r = MsiGetFeatureState(hpkg, "four", &state, &action);
4373     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4374     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4375     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4376
4377     state = 0xdeadbee;
4378     action = 0xdeadbee;
4379     r = MsiGetFeatureState(hpkg, "five", &state, &action);
4380     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4381     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4382     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4383
4384     state = 0xdeadbee;
4385     action = 0xdeadbee;
4386     r = MsiGetFeatureState(hpkg, "six", &state, &action);
4387     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4388     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4389     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4390
4391     state = 0xdeadbee;
4392     action = 0xdeadbee;
4393     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
4394     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4395     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4396     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4397
4398     state = 0xdeadbee;
4399     action = 0xdeadbee;
4400     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
4401     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4402     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4403     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4404
4405     state = 0xdeadbee;
4406     action = 0xdeadbee;
4407     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
4408     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4409     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4410     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4411
4412     state = 0xdeadbee;
4413     action = 0xdeadbee;
4414     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
4415     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4416     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4417     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4418
4419     state = 0xdeadbee;
4420     action = 0xdeadbee;
4421     r = MsiGetComponentState(hpkg, "beta", &state, &action);
4422     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4423     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4424     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4425
4426     state = 0xdeadbee;
4427     action = 0xdeadbee;
4428     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
4429     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4430     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4431     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4432
4433     state = 0xdeadbee;
4434     action = 0xdeadbee;
4435     r = MsiGetComponentState(hpkg, "theta", &state, &action);
4436     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4437     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4438     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4439
4440     state = 0xdeadbee;
4441     action = 0xdeadbee;
4442     r = MsiGetComponentState(hpkg, "delta", &state, &action);
4443     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4444     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4445     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4446
4447     state = 0xdeadbee;
4448     action = 0xdeadbee;
4449     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
4450     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4451     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4452     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4453
4454     state = 0xdeadbee;
4455     action = 0xdeadbee;
4456     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
4457     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4458     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4459     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4460
4461     state = 0xdeadbee;
4462     action = 0xdeadbee;
4463     r = MsiGetComponentState(hpkg, "iota", &state, &action);
4464     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4465     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4466     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4467
4468     state = 0xdeadbee;
4469     action = 0xdeadbee;
4470     r = MsiGetComponentState(hpkg, "eta", &state, &action);
4471     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4472     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4473     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4474
4475     state = 0xdeadbee;
4476     action = 0xdeadbee;
4477     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
4478     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4479     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4480     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4481
4482     state = 0xdeadbee;
4483     action = 0xdeadbee;
4484     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
4485     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4486     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4487     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4488
4489     state = 0xdeadbee;
4490     action = 0xdeadbee;
4491     r = MsiGetComponentState(hpkg, "mu", &state, &action);
4492     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4493     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4494     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4495
4496     state = 0xdeadbee;
4497     action = 0xdeadbee;
4498     r = MsiGetComponentState(hpkg, "nu", &state, &action);
4499     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4500     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4501     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4502
4503     state = 0xdeadbee;
4504     action = 0xdeadbee;
4505     r = MsiGetComponentState(hpkg, "xi", &state, &action);
4506     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4507     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4508     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4509
4510     state = 0xdeadbee;
4511     action = 0xdeadbee;
4512     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
4513     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4514     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4515     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4516
4517     state = 0xdeadbee;
4518     action = 0xdeadbee;
4519     r = MsiGetComponentState(hpkg, "pi", &state, &action);
4520     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4521     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4522     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4523
4524     state = 0xdeadbee;
4525     action = 0xdeadbee;
4526     r = MsiGetComponentState(hpkg, "rho", &state, &action);
4527     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4528     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4529     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4530
4531     state = 0xdeadbee;
4532     action = 0xdeadbee;
4533     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
4534     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4535     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4536     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4537
4538     state = 0xdeadbee;
4539     action = 0xdeadbee;
4540     r = MsiGetComponentState(hpkg, "tau", &state, &action);
4541     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4542     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4543     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4544
4545     state = 0xdeadbee;
4546     action = 0xdeadbee;
4547     r = MsiGetComponentState(hpkg, "phi", &state, &action);
4548     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4549     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4550     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4551
4552     state = 0xdeadbee;
4553     action = 0xdeadbee;
4554     r = MsiGetComponentState(hpkg, "chi", &state, &action);
4555     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4556     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4557     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4558
4559     state = 0xdeadbee;
4560     action = 0xdeadbee;
4561     r = MsiGetComponentState(hpkg, "psi", &state, &action);
4562     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4563     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
4564     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4565
4566     r = MsiDoAction( hpkg, "CostFinalize");
4567     ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
4568
4569     state = 0xdeadbee;
4570     action = 0xdeadbee;
4571     r = MsiGetFeatureState(hpkg, "one", &state, &action);
4572     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4573     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
4574     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4575
4576     state = 0xdeadbee;
4577     action = 0xdeadbee;
4578     r = MsiGetFeatureState(hpkg, "two", &state, &action);
4579     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4580     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
4581     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
4582
4583     state = 0xdeadbee;
4584     action = 0xdeadbee;
4585     r = MsiGetFeatureState(hpkg, "three", &state, &action);
4586     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4587     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4588     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4589
4590     state = 0xdeadbee;
4591     action = 0xdeadbee;
4592     r = MsiGetFeatureState(hpkg, "four", &state, &action);
4593     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4594     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4595     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4596
4597     state = 0xdeadbee;
4598     action = 0xdeadbee;
4599     r = MsiGetFeatureState(hpkg, "five", &state, &action);
4600     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4601     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4602     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4603
4604     state = 0xdeadbee;
4605     action = 0xdeadbee;
4606     r = MsiGetFeatureState(hpkg, "six", &state, &action);
4607     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4608     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4609     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4610
4611     state = 0xdeadbee;
4612     action = 0xdeadbee;
4613     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
4614     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4615     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4616     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4617
4618     state = 0xdeadbee;
4619     action = 0xdeadbee;
4620     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
4621     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4622     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4623     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4624
4625     state = 0xdeadbee;
4626     action = 0xdeadbee;
4627     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
4628     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4629     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4630     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4631
4632     state = 0xdeadbee;
4633     action = 0xdeadbee;
4634     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
4635     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4636     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4637     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4638
4639     state = 0xdeadbee;
4640     action = 0xdeadbee;
4641     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
4642     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4643     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4644     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4645
4646     state = 0xdeadbee;
4647     action = 0xdeadbee;
4648     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
4649     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4650     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4651     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4652
4653     state = 0xdeadbee;
4654     action = 0xdeadbee;
4655     r = MsiGetComponentState(hpkg, "beta", &state, &action);
4656     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4657     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
4658     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
4659
4660     state = 0xdeadbee;
4661     action = 0xdeadbee;
4662     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
4663     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4664     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4665     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4666
4667     state = 0xdeadbee;
4668     action = 0xdeadbee;
4669     r = MsiGetComponentState(hpkg, "theta", &state, &action);
4670     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4671     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4672     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4673
4674     state = 0xdeadbee;
4675     action = 0xdeadbee;
4676     r = MsiGetComponentState(hpkg, "delta", &state, &action);
4677     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4678     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4679     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4680
4681     state = 0xdeadbee;
4682     action = 0xdeadbee;
4683     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
4684     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4685     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
4686     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4687
4688     state = 0xdeadbee;
4689     action = 0xdeadbee;
4690     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
4691     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4692     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
4693     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4694
4695     state = 0xdeadbee;
4696     action = 0xdeadbee;
4697     r = MsiGetComponentState(hpkg, "iota", &state, &action);
4698     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4699     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4700     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4701
4702     state = 0xdeadbee;
4703     action = 0xdeadbee;
4704     r = MsiGetComponentState(hpkg, "eta", &state, &action);
4705     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4706     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
4707     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
4708
4709     state = 0xdeadbee;
4710     action = 0xdeadbee;
4711     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
4712     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4713     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4714     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4715
4716     state = 0xdeadbee;
4717     action = 0xdeadbee;
4718     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
4719     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4720     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4721     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4722
4723     state = 0xdeadbee;
4724     action = 0xdeadbee;
4725     r = MsiGetComponentState(hpkg, "mu", &state, &action);
4726     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4727     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4728     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4729
4730     state = 0xdeadbee;
4731     action = 0xdeadbee;
4732     r = MsiGetComponentState(hpkg, "nu", &state, &action);
4733     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4734     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4735     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4736
4737     state = 0xdeadbee;
4738     action = 0xdeadbee;
4739     r = MsiGetComponentState(hpkg, "xi", &state, &action);
4740     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4741     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4742     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4743
4744     state = 0xdeadbee;
4745     action = 0xdeadbee;
4746     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
4747     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4748     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4749     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4750
4751     state = 0xdeadbee;
4752     action = 0xdeadbee;
4753     r = MsiGetComponentState(hpkg, "pi", &state, &action);
4754     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4755     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4756     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4757
4758     state = 0xdeadbee;
4759     action = 0xdeadbee;
4760     r = MsiGetComponentState(hpkg, "rho", &state, &action);
4761     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4762     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4763     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4764
4765     state = 0xdeadbee;
4766     action = 0xdeadbee;
4767     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
4768     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4769     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4770     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4771
4772     state = 0xdeadbee;
4773     action = 0xdeadbee;
4774     r = MsiGetComponentState(hpkg, "tau", &state, &action);
4775     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4776     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4777     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4778
4779     state = 0xdeadbee;
4780     action = 0xdeadbee;
4781     r = MsiGetComponentState(hpkg, "phi", &state, &action);
4782     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4783     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4784     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4785
4786     state = 0xdeadbee;
4787     action = 0xdeadbee;
4788     r = MsiGetComponentState(hpkg, "chi", &state, &action);
4789     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4790     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4791     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4792
4793     state = 0xdeadbee;
4794     action = 0xdeadbee;
4795     r = MsiGetComponentState(hpkg, "psi", &state, &action);
4796     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
4797     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
4798     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
4799
4800     MsiCloseHandle(hpkg);
4801
4802     /* uninstall the product */
4803     r = MsiInstallProduct(msifile, "REMOVE=ALL");
4804     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
4805
4806     /* all features installed locally */
4807     r = MsiInstallProduct(msifile2, "ADDLOCAL=ALL");
4808     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
4809
4810     r = MsiOpenDatabase(msifile2, MSIDBOPEN_DIRECT, &hdb);
4811     ok(r == ERROR_SUCCESS, "failed to open database: %d\n", r);
4812
4813     /* these properties must not be in the saved msi file */
4814     r = add_property_entry( hdb, "'ADDLOCAL', 'one,two,three,four,five,six,seven,eight,nine,ten'");
4815     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
4816
4817     r = package_from_db( hdb, &hpkg );
4818     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
4819
4820     state = 0xdeadbee;
4821     action = 0xdeadbee;
4822     r = MsiGetFeatureState(hpkg, "one", &state, &action);
4823     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4824     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4825     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4826
4827     state = 0xdeadbee;
4828     action = 0xdeadbee;
4829     r = MsiGetFeatureState(hpkg, "two", &state, &action);
4830     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4831     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4832     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4833
4834     state = 0xdeadbee;
4835     action = 0xdeadbee;
4836     r = MsiGetFeatureState(hpkg, "three", &state, &action);
4837     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4838     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4839     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4840
4841     state = 0xdeadbee;
4842     action = 0xdeadbee;
4843     r = MsiGetFeatureState(hpkg, "four", &state, &action);
4844     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4845     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4846     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4847
4848     state = 0xdeadbee;
4849     action = 0xdeadbee;
4850     r = MsiGetFeatureState(hpkg, "five", &state, &action);
4851     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4852     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4853     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4854
4855     state = 0xdeadbee;
4856     action = 0xdeadbee;
4857     r = MsiGetFeatureState(hpkg, "six", &state, &action);
4858     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4859     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4860     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4861
4862     state = 0xdeadbee;
4863     action = 0xdeadbee;
4864     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
4865     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4866     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4867     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4868
4869     state = 0xdeadbee;
4870     action = 0xdeadbee;
4871     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
4872     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4873     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4874     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4875
4876     state = 0xdeadbee;
4877     action = 0xdeadbee;
4878     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
4879     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4880     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4881     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4882
4883     state = 0xdeadbee;
4884     action = 0xdeadbee;
4885     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
4886     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4887     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4888     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4889
4890     state = 0xdeadbee;
4891     action = 0xdeadbee;
4892     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
4893     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
4894     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4895     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4896
4897     state = 0xdeadbee;
4898     action = 0xdeadbee;
4899     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
4900     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4901     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4902     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4903
4904     state = 0xdeadbee;
4905     action = 0xdeadbee;
4906     r = MsiGetComponentState(hpkg, "beta", &state, &action);
4907     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4908     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4909     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4910
4911     state = 0xdeadbee;
4912     action = 0xdeadbee;
4913     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
4914     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4915     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4916     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4917
4918     state = 0xdeadbee;
4919     action = 0xdeadbee;
4920     r = MsiGetComponentState(hpkg, "theta", &state, &action);
4921     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4922     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4923     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4924
4925     state = 0xdeadbee;
4926     action = 0xdeadbee;
4927     r = MsiGetComponentState(hpkg, "delta", &state, &action);
4928     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4929     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4930     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4931
4932     state = 0xdeadbee;
4933     action = 0xdeadbee;
4934     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
4935     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4936     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4937     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4938
4939     state = 0xdeadbee;
4940     action = 0xdeadbee;
4941     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
4942     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4943     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4944     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4945
4946     state = 0xdeadbee;
4947     action = 0xdeadbee;
4948     r = MsiGetComponentState(hpkg, "iota", &state, &action);
4949     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4950     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4951     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4952
4953     state = 0xdeadbee;
4954     action = 0xdeadbee;
4955     r = MsiGetComponentState(hpkg, "eta", &state, &action);
4956     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4957     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4958     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4959
4960     state = 0xdeadbee;
4961     action = 0xdeadbee;
4962     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
4963     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4964     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4965     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4966
4967     state = 0xdeadbee;
4968     action = 0xdeadbee;
4969     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
4970     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4971     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4972     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4973
4974     state = 0xdeadbee;
4975     action = 0xdeadbee;
4976     r = MsiGetComponentState(hpkg, "mu", &state, &action);
4977     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4978     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4979     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4980
4981     state = 0xdeadbee;
4982     action = 0xdeadbee;
4983     r = MsiGetComponentState(hpkg, "nu", &state, &action);
4984     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4985     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4986     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4987
4988     state = 0xdeadbee;
4989     action = 0xdeadbee;
4990     r = MsiGetComponentState(hpkg, "xi", &state, &action);
4991     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4992     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
4993     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
4994
4995     state = 0xdeadbee;
4996     action = 0xdeadbee;
4997     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
4998     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
4999     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5000     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5001
5002     state = 0xdeadbee;
5003     action = 0xdeadbee;
5004     r = MsiGetComponentState(hpkg, "pi", &state, &action);
5005     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5006     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5007     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5008
5009     state = 0xdeadbee;
5010     action = 0xdeadbee;
5011     r = MsiGetComponentState(hpkg, "rho", &state, &action);
5012     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5013     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5014     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5015
5016     state = 0xdeadbee;
5017     action = 0xdeadbee;
5018     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
5019     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5020     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5021     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5022
5023     state = 0xdeadbee;
5024     action = 0xdeadbee;
5025     r = MsiGetComponentState(hpkg, "tau", &state, &action);
5026     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5027     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5028     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5029
5030     state = 0xdeadbee;
5031     action = 0xdeadbee;
5032     r = MsiGetComponentState(hpkg, "phi", &state, &action);
5033     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5034     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5035     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5036
5037     state = 0xdeadbee;
5038     action = 0xdeadbee;
5039     r = MsiGetComponentState(hpkg, "chi", &state, &action);
5040     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5041     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5042     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5043
5044     state = 0xdeadbee;
5045     action = 0xdeadbee;
5046     r = MsiGetComponentState(hpkg, "psi", &state, &action);
5047     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5048     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5049     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5050
5051     r = MsiDoAction( hpkg, "CostInitialize");
5052     ok( r == ERROR_SUCCESS, "cost init failed\n");
5053
5054     state = 0xdeadbee;
5055     action = 0xdeadbee;
5056     r = MsiGetFeatureState(hpkg, "one", &state, &action);
5057     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5058     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5059     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5060
5061     state = 0xdeadbee;
5062     action = 0xdeadbee;
5063     r = MsiGetFeatureState(hpkg, "two", &state, &action);
5064     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5065     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5066     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5067
5068     state = 0xdeadbee;
5069     action = 0xdeadbee;
5070     r = MsiGetFeatureState(hpkg, "three", &state, &action);
5071     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5072     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5073     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5074
5075     state = 0xdeadbee;
5076     action = 0xdeadbee;
5077     r = MsiGetFeatureState(hpkg, "four", &state, &action);
5078     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5079     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5080     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5081
5082     state = 0xdeadbee;
5083     action = 0xdeadbee;
5084     r = MsiGetFeatureState(hpkg, "five", &state, &action);
5085     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5086     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5087     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5088
5089     state = 0xdeadbee;
5090     action = 0xdeadbee;
5091     r = MsiGetFeatureState(hpkg, "six", &state, &action);
5092     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5093     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5094     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5095
5096     state = 0xdeadbee;
5097     action = 0xdeadbee;
5098     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
5099     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5100     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5101     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5102
5103     state = 0xdeadbee;
5104     action = 0xdeadbee;
5105     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
5106     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5107     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5108     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5109
5110     state = 0xdeadbee;
5111     action = 0xdeadbee;
5112     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
5113     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5114     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5115     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5116
5117     state = 0xdeadbee;
5118     action = 0xdeadbee;
5119     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
5120     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5121     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5122     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5123
5124     state = 0xdeadbee;
5125     action = 0xdeadbee;
5126     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
5127     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5128     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5129     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5130
5131     state = 0xdeadbee;
5132     action = 0xdeadbee;
5133     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
5134     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5135     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5136     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5137
5138     state = 0xdeadbee;
5139     action = 0xdeadbee;
5140     r = MsiGetComponentState(hpkg, "beta", &state, &action);
5141     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5142     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5143     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5144
5145     state = 0xdeadbee;
5146     action = 0xdeadbee;
5147     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
5148     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5149     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5150     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5151
5152     state = 0xdeadbee;
5153     action = 0xdeadbee;
5154     r = MsiGetComponentState(hpkg, "theta", &state, &action);
5155     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5156     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5157     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5158
5159     state = 0xdeadbee;
5160     action = 0xdeadbee;
5161     r = MsiGetComponentState(hpkg, "delta", &state, &action);
5162     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5163     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5164     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5165
5166     state = 0xdeadbee;
5167     action = 0xdeadbee;
5168     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
5169     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5170     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5171     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5172
5173     state = 0xdeadbee;
5174     action = 0xdeadbee;
5175     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
5176     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5177     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5178     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5179
5180     state = 0xdeadbee;
5181     action = 0xdeadbee;
5182     r = MsiGetComponentState(hpkg, "iota", &state, &action);
5183     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5184     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5185     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5186
5187     state = 0xdeadbee;
5188     action = 0xdeadbee;
5189     r = MsiGetComponentState(hpkg, "eta", &state, &action);
5190     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5191     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5192     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5193
5194     state = 0xdeadbee;
5195     action = 0xdeadbee;
5196     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
5197     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5198     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5199     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5200
5201     state = 0xdeadbee;
5202     action = 0xdeadbee;
5203     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
5204     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5205     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5206     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5207
5208     state = 0xdeadbee;
5209     action = 0xdeadbee;
5210     r = MsiGetComponentState(hpkg, "mu", &state, &action);
5211     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5212     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5213     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5214
5215     state = 0xdeadbee;
5216     action = 0xdeadbee;
5217     r = MsiGetComponentState(hpkg, "nu", &state, &action);
5218     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5219     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5220     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5221
5222     state = 0xdeadbee;
5223     action = 0xdeadbee;
5224     r = MsiGetComponentState(hpkg, "xi", &state, &action);
5225     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5226     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5227     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5228
5229     state = 0xdeadbee;
5230     action = 0xdeadbee;
5231     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
5232     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5233     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5234     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5235
5236     state = 0xdeadbee;
5237     action = 0xdeadbee;
5238     r = MsiGetComponentState(hpkg, "pi", &state, &action);
5239     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5240     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5241     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5242
5243     state = 0xdeadbee;
5244     action = 0xdeadbee;
5245     r = MsiGetComponentState(hpkg, "rho", &state, &action);
5246     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5247     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5248     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5249
5250     state = 0xdeadbee;
5251     action = 0xdeadbee;
5252     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
5253     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5254     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5255     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5256
5257     state = 0xdeadbee;
5258     action = 0xdeadbee;
5259     r = MsiGetComponentState(hpkg, "tau", &state, &action);
5260     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5261     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5262     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5263
5264     state = 0xdeadbee;
5265     action = 0xdeadbee;
5266     r = MsiGetComponentState(hpkg, "phi", &state, &action);
5267     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5268     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5269     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5270
5271     state = 0xdeadbee;
5272     action = 0xdeadbee;
5273     r = MsiGetComponentState(hpkg, "chi", &state, &action);
5274     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5275     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5276     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5277
5278     state = 0xdeadbee;
5279     action = 0xdeadbee;
5280     r = MsiGetComponentState(hpkg, "psi", &state, &action);
5281     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5282     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5283     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5284
5285     r = MsiDoAction( hpkg, "FileCost");
5286     ok( r == ERROR_SUCCESS, "file cost failed\n");
5287
5288     state = 0xdeadbee;
5289     action = 0xdeadbee;
5290     r = MsiGetFeatureState(hpkg, "one", &state, &action);
5291     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5292     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5293     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5294
5295     state = 0xdeadbee;
5296     action = 0xdeadbee;
5297     r = MsiGetFeatureState(hpkg, "two", &state, &action);
5298     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5299     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5300     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5301
5302     state = 0xdeadbee;
5303     action = 0xdeadbee;
5304     r = MsiGetFeatureState(hpkg, "three", &state, &action);
5305     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5306     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5307     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5308
5309     state = 0xdeadbee;
5310     action = 0xdeadbee;
5311     r = MsiGetFeatureState(hpkg, "four", &state, &action);
5312     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5313     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5314     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5315
5316     state = 0xdeadbee;
5317     action = 0xdeadbee;
5318     r = MsiGetFeatureState(hpkg, "five", &state, &action);
5319     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5320     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5321     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5322
5323     state = 0xdeadbee;
5324     action = 0xdeadbee;
5325     r = MsiGetFeatureState(hpkg, "six", &state, &action);
5326     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5327     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5328     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5329
5330     state = 0xdeadbee;
5331     action = 0xdeadbee;
5332     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
5333     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5334     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5335     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5336
5337     state = 0xdeadbee;
5338     action = 0xdeadbee;
5339     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
5340     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5341     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5342     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5343
5344     state = 0xdeadbee;
5345     action = 0xdeadbee;
5346     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
5347     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5348     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5349     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5350
5351     state = 0xdeadbee;
5352     action = 0xdeadbee;
5353     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
5354     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5355     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5356     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5357
5358     state = 0xdeadbee;
5359     action = 0xdeadbee;
5360     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
5361     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5362     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5363     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5364
5365     state = 0xdeadbee;
5366     action = 0xdeadbee;
5367     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
5368     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5369     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5370     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5371
5372     state = 0xdeadbee;
5373     action = 0xdeadbee;
5374     r = MsiGetComponentState(hpkg, "beta", &state, &action);
5375     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5376     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5377     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5378
5379     state = 0xdeadbee;
5380     action = 0xdeadbee;
5381     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
5382     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5383     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5384     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5385
5386     state = 0xdeadbee;
5387     action = 0xdeadbee;
5388     r = MsiGetComponentState(hpkg, "theta", &state, &action);
5389     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5390     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5391     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5392
5393     state = 0xdeadbee;
5394     action = 0xdeadbee;
5395     r = MsiGetComponentState(hpkg, "delta", &state, &action);
5396     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5397     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5398     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5399
5400     state = 0xdeadbee;
5401     action = 0xdeadbee;
5402     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
5403     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5404     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5405     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5406
5407     state = 0xdeadbee;
5408     action = 0xdeadbee;
5409     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
5410     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5411     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5412     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5413
5414     state = 0xdeadbee;
5415     action = 0xdeadbee;
5416     r = MsiGetComponentState(hpkg, "iota", &state, &action);
5417     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5418     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5419     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5420
5421     state = 0xdeadbee;
5422     action = 0xdeadbee;
5423     r = MsiGetComponentState(hpkg, "eta", &state, &action);
5424     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5425     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5426     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5427
5428     state = 0xdeadbee;
5429     action = 0xdeadbee;
5430     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
5431     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5432     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5433     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5434
5435     state = 0xdeadbee;
5436     action = 0xdeadbee;
5437     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
5438     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5439     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5440     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5441
5442     state = 0xdeadbee;
5443     action = 0xdeadbee;
5444     r = MsiGetComponentState(hpkg, "mu", &state, &action);
5445     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5446     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5447     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5448
5449     state = 0xdeadbee;
5450     action = 0xdeadbee;
5451     r = MsiGetComponentState(hpkg, "nu", &state, &action);
5452     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5453     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5454     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5455
5456     state = 0xdeadbee;
5457     action = 0xdeadbee;
5458     r = MsiGetComponentState(hpkg, "xi", &state, &action);
5459     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5460     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5461     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5462
5463     state = 0xdeadbee;
5464     action = 0xdeadbee;
5465     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
5466     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5467     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5468     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5469
5470     state = 0xdeadbee;
5471     action = 0xdeadbee;
5472     r = MsiGetComponentState(hpkg, "pi", &state, &action);
5473     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5474     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5475     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5476
5477     state = 0xdeadbee;
5478     action = 0xdeadbee;
5479     r = MsiGetComponentState(hpkg, "rho", &state, &action);
5480     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5481     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5482     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5483
5484     state = 0xdeadbee;
5485     action = 0xdeadbee;
5486     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
5487     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5488     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5489     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5490
5491     state = 0xdeadbee;
5492     action = 0xdeadbee;
5493     r = MsiGetComponentState(hpkg, "tau", &state, &action);
5494     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5495     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5496     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5497
5498     state = 0xdeadbee;
5499     action = 0xdeadbee;
5500     r = MsiGetComponentState(hpkg, "phi", &state, &action);
5501     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5502     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5503     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5504
5505     state = 0xdeadbee;
5506     action = 0xdeadbee;
5507     r = MsiGetComponentState(hpkg, "chi", &state, &action);
5508     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5509     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5510     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5511
5512     state = 0xdeadbee;
5513     action = 0xdeadbee;
5514     r = MsiGetComponentState(hpkg, "psi", &state, &action);
5515     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5516     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
5517     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5518
5519     r = MsiDoAction( hpkg, "CostFinalize");
5520     ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
5521
5522     state = 0xdeadbee;
5523     action = 0xdeadbee;
5524     r = MsiGetFeatureState(hpkg, "one", &state, &action);
5525     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5526     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5527     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5528
5529     state = 0xdeadbee;
5530     action = 0xdeadbee;
5531     r = MsiGetFeatureState(hpkg, "two", &state, &action);
5532     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5533     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5534     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5535
5536     state = 0xdeadbee;
5537     action = 0xdeadbee;
5538     r = MsiGetFeatureState(hpkg, "three", &state, &action);
5539     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5540     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5541     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5542
5543     state = 0xdeadbee;
5544     action = 0xdeadbee;
5545     r = MsiGetFeatureState(hpkg, "four", &state, &action);
5546     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5547     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5548     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5549
5550     state = 0xdeadbee;
5551     action = 0xdeadbee;
5552     r = MsiGetFeatureState(hpkg, "five", &state, &action);
5553     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5554     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
5555     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5556
5557     state = 0xdeadbee;
5558     action = 0xdeadbee;
5559     r = MsiGetFeatureState(hpkg, "six", &state, &action);
5560     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5561     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5562     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5563
5564     state = 0xdeadbee;
5565     action = 0xdeadbee;
5566     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
5567     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5568     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5569     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5570
5571     state = 0xdeadbee;
5572     action = 0xdeadbee;
5573     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
5574     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5575     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5576     todo_wine ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
5577
5578     state = 0xdeadbee;
5579     action = 0xdeadbee;
5580     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
5581     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5582     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5583     todo_wine ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
5584
5585     state = 0xdeadbee;
5586     action = 0xdeadbee;
5587     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
5588     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5589     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5590     todo_wine ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
5591
5592     state = 0xdeadbee;
5593     action = 0xdeadbee;
5594     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
5595     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5596     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5597     todo_wine ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5598
5599     state = 0xdeadbee;
5600     action = 0xdeadbee;
5601     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
5602     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5603     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5604     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5605
5606     state = 0xdeadbee;
5607     action = 0xdeadbee;
5608     r = MsiGetComponentState(hpkg, "beta", &state, &action);
5609     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5610     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5611     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
5612
5613     state = 0xdeadbee;
5614     action = 0xdeadbee;
5615     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
5616     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5617     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5618     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5619
5620     state = 0xdeadbee;
5621     action = 0xdeadbee;
5622     r = MsiGetComponentState(hpkg, "theta", &state, &action);
5623     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5624     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5625     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5626
5627     state = 0xdeadbee;
5628     action = 0xdeadbee;
5629     r = MsiGetComponentState(hpkg, "delta", &state, &action);
5630     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5631     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5632     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5633
5634     state = 0xdeadbee;
5635     action = 0xdeadbee;
5636     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
5637     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5638     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5639     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
5640
5641     state = 0xdeadbee;
5642     action = 0xdeadbee;
5643     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
5644     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5645     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5646     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5647
5648     state = 0xdeadbee;
5649     action = 0xdeadbee;
5650     r = MsiGetComponentState(hpkg, "iota", &state, &action);
5651     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5652     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5653     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5654
5655     state = 0xdeadbee;
5656     action = 0xdeadbee;
5657     r = MsiGetComponentState(hpkg, "eta", &state, &action);
5658     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5659     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5660     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5661
5662     state = 0xdeadbee;
5663     action = 0xdeadbee;
5664     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
5665     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5666     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
5667     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5668
5669     state = 0xdeadbee;
5670     action = 0xdeadbee;
5671     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
5672     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5673     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5674     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5675
5676     state = 0xdeadbee;
5677     action = 0xdeadbee;
5678     r = MsiGetComponentState(hpkg, "mu", &state, &action);
5679     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5680     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5681     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
5682
5683     state = 0xdeadbee;
5684     action = 0xdeadbee;
5685     r = MsiGetComponentState(hpkg, "nu", &state, &action);
5686     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5687     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5688     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5689
5690     state = 0xdeadbee;
5691     action = 0xdeadbee;
5692     r = MsiGetComponentState(hpkg, "xi", &state, &action);
5693     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5694     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5695     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5696
5697     state = 0xdeadbee;
5698     action = 0xdeadbee;
5699     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
5700     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5701     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5702     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5703
5704     state = 0xdeadbee;
5705     action = 0xdeadbee;
5706     r = MsiGetComponentState(hpkg, "pi", &state, &action);
5707     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5708     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5709     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
5710
5711     state = 0xdeadbee;
5712     action = 0xdeadbee;
5713     r = MsiGetComponentState(hpkg, "rho", &state, &action);
5714     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5715     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5716     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5717
5718     state = 0xdeadbee;
5719     action = 0xdeadbee;
5720     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
5721     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5722     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
5723     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
5724
5725     state = 0xdeadbee;
5726     action = 0xdeadbee;
5727     r = MsiGetComponentState(hpkg, "tau", &state, &action);
5728     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5729     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5730     todo_wine ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5731
5732     state = 0xdeadbee;
5733     action = 0xdeadbee;
5734     r = MsiGetComponentState(hpkg, "phi", &state, &action);
5735     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5736     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5737     todo_wine ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5738
5739     state = 0xdeadbee;
5740     action = 0xdeadbee;
5741     r = MsiGetComponentState(hpkg, "chi", &state, &action);
5742     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5743     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5744     todo_wine ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5745
5746     state = 0xdeadbee;
5747     action = 0xdeadbee;
5748     r = MsiGetComponentState(hpkg, "psi", &state, &action);
5749     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
5750     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
5751     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
5752
5753     MsiCloseHandle(hpkg);
5754
5755     /* uninstall the product */
5756     r = MsiInstallProduct(msifile2, "REMOVE=ALL");
5757     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
5758
5759     /* all features installed from source */
5760     r = MsiInstallProduct(msifile3, "ADDSOURCE=ALL");
5761     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
5762
5763     r = MsiOpenDatabase(msifile3, MSIDBOPEN_DIRECT, &hdb);
5764     ok(r == ERROR_SUCCESS, "failed to open database: %d\n", r);
5765
5766     /* this property must not be in the saved msi file */
5767     r = add_property_entry( hdb, "'ADDSOURCE', 'one,two,three,four,five,six,seven,eight,nine,ten'");
5768     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
5769
5770     r = package_from_db( hdb, &hpkg );
5771     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
5772
5773     state = 0xdeadbee;
5774     action = 0xdeadbee;
5775     r = MsiGetFeatureState(hpkg, "one", &state, &action);
5776     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5777     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5778     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5779
5780     state = 0xdeadbee;
5781     action = 0xdeadbee;
5782     r = MsiGetFeatureState(hpkg, "two", &state, &action);
5783     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5784     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5785     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5786
5787     state = 0xdeadbee;
5788     action = 0xdeadbee;
5789     r = MsiGetFeatureState(hpkg, "three", &state, &action);
5790     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5791     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5792     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5793
5794     state = 0xdeadbee;
5795     action = 0xdeadbee;
5796     r = MsiGetFeatureState(hpkg, "four", &state, &action);
5797     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5798     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5799     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5800
5801     state = 0xdeadbee;
5802     action = 0xdeadbee;
5803     r = MsiGetFeatureState(hpkg, "five", &state, &action);
5804     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5805     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5806     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5807
5808     state = 0xdeadbee;
5809     action = 0xdeadbee;
5810     r = MsiGetFeatureState(hpkg, "six", &state, &action);
5811     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5812     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5813     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5814
5815     state = 0xdeadbee;
5816     action = 0xdeadbee;
5817     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
5818     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5819     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5820     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5821
5822     state = 0xdeadbee;
5823     action = 0xdeadbee;
5824     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
5825     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5826     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5827     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5828
5829     state = 0xdeadbee;
5830     action = 0xdeadbee;
5831     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
5832     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5833     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5834     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5835
5836     state = 0xdeadbee;
5837     action = 0xdeadbee;
5838     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
5839     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5840     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5841     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5842
5843     state = 0xdeadbee;
5844     action = 0xdeadbee;
5845     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
5846     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
5847     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5848     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5849
5850     state = 0xdeadbee;
5851     action = 0xdeadbee;
5852     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
5853     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5854     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5855     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5856
5857     state = 0xdeadbee;
5858     action = 0xdeadbee;
5859     r = MsiGetComponentState(hpkg, "beta", &state, &action);
5860     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5861     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5862     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5863
5864     state = 0xdeadbee;
5865     action = 0xdeadbee;
5866     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
5867     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5868     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5869     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5870
5871     state = 0xdeadbee;
5872     action = 0xdeadbee;
5873     r = MsiGetComponentState(hpkg, "theta", &state, &action);
5874     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5875     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5876     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5877
5878     state = 0xdeadbee;
5879     action = 0xdeadbee;
5880     r = MsiGetComponentState(hpkg, "delta", &state, &action);
5881     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5882     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5883     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5884
5885     state = 0xdeadbee;
5886     action = 0xdeadbee;
5887     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
5888     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5889     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5890     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5891
5892     state = 0xdeadbee;
5893     action = 0xdeadbee;
5894     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
5895     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5896     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5897     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5898
5899     state = 0xdeadbee;
5900     action = 0xdeadbee;
5901     r = MsiGetComponentState(hpkg, "iota", &state, &action);
5902     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5903     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5904     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5905
5906     state = 0xdeadbee;
5907     action = 0xdeadbee;
5908     r = MsiGetComponentState(hpkg, "eta", &state, &action);
5909     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5910     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5911     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5912
5913     state = 0xdeadbee;
5914     action = 0xdeadbee;
5915     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
5916     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5917     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5918     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5919
5920     state = 0xdeadbee;
5921     action = 0xdeadbee;
5922     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
5923     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5924     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5925     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5926
5927     state = 0xdeadbee;
5928     action = 0xdeadbee;
5929     r = MsiGetComponentState(hpkg, "mu", &state, &action);
5930     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5931     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5932     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5933
5934     state = 0xdeadbee;
5935     action = 0xdeadbee;
5936     r = MsiGetComponentState(hpkg, "nu", &state, &action);
5937     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5938     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5939     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5940
5941     state = 0xdeadbee;
5942     action = 0xdeadbee;
5943     r = MsiGetComponentState(hpkg, "xi", &state, &action);
5944     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5945     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5946     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5947
5948     state = 0xdeadbee;
5949     action = 0xdeadbee;
5950     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
5951     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5952     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5953     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5954
5955     state = 0xdeadbee;
5956     action = 0xdeadbee;
5957     r = MsiGetComponentState(hpkg, "pi", &state, &action);
5958     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5959     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5960     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5961
5962     state = 0xdeadbee;
5963     action = 0xdeadbee;
5964     r = MsiGetComponentState(hpkg, "rho", &state, &action);
5965     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5966     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5967     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5968
5969     state = 0xdeadbee;
5970     action = 0xdeadbee;
5971     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
5972     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5973     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5974     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5975
5976     state = 0xdeadbee;
5977     action = 0xdeadbee;
5978     r = MsiGetComponentState(hpkg, "tau", &state, &action);
5979     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5980     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5981     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5982
5983     state = 0xdeadbee;
5984     action = 0xdeadbee;
5985     r = MsiGetComponentState(hpkg, "phi", &state, &action);
5986     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5987     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5988     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5989
5990     state = 0xdeadbee;
5991     action = 0xdeadbee;
5992     r = MsiGetComponentState(hpkg, "chi", &state, &action);
5993     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
5994     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
5995     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
5996
5997     state = 0xdeadbee;
5998     action = 0xdeadbee;
5999     r = MsiGetComponentState(hpkg, "psi", &state, &action);
6000     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6001     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6002     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6003
6004     r = MsiDoAction( hpkg, "CostInitialize");
6005     ok( r == ERROR_SUCCESS, "cost init failed\n");
6006
6007     state = 0xdeadbee;
6008     action = 0xdeadbee;
6009     r = MsiGetFeatureState(hpkg, "one", &state, &action);
6010     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6011     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6012     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6013
6014     state = 0xdeadbee;
6015     action = 0xdeadbee;
6016     r = MsiGetFeatureState(hpkg, "two", &state, &action);
6017     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6018     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6019     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6020
6021     state = 0xdeadbee;
6022     action = 0xdeadbee;
6023     r = MsiGetFeatureState(hpkg, "three", &state, &action);
6024     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6025     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6026     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6027
6028     state = 0xdeadbee;
6029     action = 0xdeadbee;
6030     r = MsiGetFeatureState(hpkg, "four", &state, &action);
6031     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6032     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6033     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6034
6035     state = 0xdeadbee;
6036     action = 0xdeadbee;
6037     r = MsiGetFeatureState(hpkg, "five", &state, &action);
6038     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6039     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6040     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6041
6042     state = 0xdeadbee;
6043     action = 0xdeadbee;
6044     r = MsiGetFeatureState(hpkg, "six", &state, &action);
6045     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6046     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6047     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6048
6049     state = 0xdeadbee;
6050     action = 0xdeadbee;
6051     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
6052     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6053     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6054     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6055
6056     state = 0xdeadbee;
6057     action = 0xdeadbee;
6058     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
6059     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6060     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6061     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6062
6063     state = 0xdeadbee;
6064     action = 0xdeadbee;
6065     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
6066     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6067     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6068     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6069
6070     state = 0xdeadbee;
6071     action = 0xdeadbee;
6072     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
6073     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6074     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6075     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6076
6077     state = 0xdeadbee;
6078     action = 0xdeadbee;
6079     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
6080     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6081     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6082     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6083
6084     state = 0xdeadbee;
6085     action = 0xdeadbee;
6086     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
6087     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6088     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6089     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6090
6091     state = 0xdeadbee;
6092     action = 0xdeadbee;
6093     r = MsiGetComponentState(hpkg, "beta", &state, &action);
6094     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6095     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6096     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6097
6098     state = 0xdeadbee;
6099     action = 0xdeadbee;
6100     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
6101     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6102     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6103     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6104
6105     state = 0xdeadbee;
6106     action = 0xdeadbee;
6107     r = MsiGetComponentState(hpkg, "theta", &state, &action);
6108     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6109     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6110     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6111
6112     state = 0xdeadbee;
6113     action = 0xdeadbee;
6114     r = MsiGetComponentState(hpkg, "delta", &state, &action);
6115     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6116     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6117     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6118
6119     state = 0xdeadbee;
6120     action = 0xdeadbee;
6121     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
6122     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6123     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6124     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6125
6126     state = 0xdeadbee;
6127     action = 0xdeadbee;
6128     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
6129     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6130     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6131     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6132
6133     state = 0xdeadbee;
6134     action = 0xdeadbee;
6135     r = MsiGetComponentState(hpkg, "iota", &state, &action);
6136     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6137     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6138     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6139
6140     state = 0xdeadbee;
6141     action = 0xdeadbee;
6142     r = MsiGetComponentState(hpkg, "eta", &state, &action);
6143     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6144     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6145     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6146
6147     state = 0xdeadbee;
6148     action = 0xdeadbee;
6149     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
6150     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6151     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6152     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6153
6154     state = 0xdeadbee;
6155     action = 0xdeadbee;
6156     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
6157     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6158     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6159     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6160
6161     state = 0xdeadbee;
6162     action = 0xdeadbee;
6163     r = MsiGetComponentState(hpkg, "mu", &state, &action);
6164     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6165     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6166     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6167
6168     state = 0xdeadbee;
6169     action = 0xdeadbee;
6170     r = MsiGetComponentState(hpkg, "nu", &state, &action);
6171     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6172     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6173     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6174
6175     state = 0xdeadbee;
6176     action = 0xdeadbee;
6177     r = MsiGetComponentState(hpkg, "xi", &state, &action);
6178     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6179     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6180     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6181
6182     state = 0xdeadbee;
6183     action = 0xdeadbee;
6184     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
6185     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6186     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6187     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6188
6189     state = 0xdeadbee;
6190     action = 0xdeadbee;
6191     r = MsiGetComponentState(hpkg, "pi", &state, &action);
6192     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6193     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6194     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6195
6196     state = 0xdeadbee;
6197     action = 0xdeadbee;
6198     r = MsiGetComponentState(hpkg, "rho", &state, &action);
6199     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6200     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6201     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6202
6203     state = 0xdeadbee;
6204     action = 0xdeadbee;
6205     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
6206     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6207     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6208     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6209
6210     state = 0xdeadbee;
6211     action = 0xdeadbee;
6212     r = MsiGetComponentState(hpkg, "tau", &state, &action);
6213     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6214     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6215     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6216
6217     state = 0xdeadbee;
6218     action = 0xdeadbee;
6219     r = MsiGetComponentState(hpkg, "phi", &state, &action);
6220     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6221     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6222     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6223
6224     state = 0xdeadbee;
6225     action = 0xdeadbee;
6226     r = MsiGetComponentState(hpkg, "chi", &state, &action);
6227     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6228     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6229     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6230
6231     state = 0xdeadbee;
6232     action = 0xdeadbee;
6233     r = MsiGetComponentState(hpkg, "psi", &state, &action);
6234     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6235     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6236     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6237
6238     r = MsiDoAction( hpkg, "FileCost");
6239     ok( r == ERROR_SUCCESS, "file cost failed\n");
6240
6241     state = 0xdeadbee;
6242     action = 0xdeadbee;
6243     r = MsiGetFeatureState(hpkg, "one", &state, &action);
6244     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6245     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6246     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6247
6248     state = 0xdeadbee;
6249     action = 0xdeadbee;
6250     r = MsiGetFeatureState(hpkg, "two", &state, &action);
6251     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6252     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6253     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6254
6255     state = 0xdeadbee;
6256     action = 0xdeadbee;
6257     r = MsiGetFeatureState(hpkg, "three", &state, &action);
6258     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6259     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6260     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6261
6262     state = 0xdeadbee;
6263     action = 0xdeadbee;
6264     r = MsiGetFeatureState(hpkg, "four", &state, &action);
6265     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6266     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6267     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6268
6269     state = 0xdeadbee;
6270     action = 0xdeadbee;
6271     r = MsiGetFeatureState(hpkg, "five", &state, &action);
6272     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6273     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6274     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6275
6276     state = 0xdeadbee;
6277     action = 0xdeadbee;
6278     r = MsiGetFeatureState(hpkg, "six", &state, &action);
6279     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6280     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6281     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6282
6283     state = 0xdeadbee;
6284     action = 0xdeadbee;
6285     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
6286     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6287     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6288     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6289
6290     state = 0xdeadbee;
6291     action = 0xdeadbee;
6292     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
6293     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6294     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6295     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6296
6297     state = 0xdeadbee;
6298     action = 0xdeadbee;
6299     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
6300     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6301     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6302     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6303
6304     state = 0xdeadbee;
6305     action = 0xdeadbee;
6306     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
6307     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6308     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6309     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6310
6311     state = 0xdeadbee;
6312     action = 0xdeadbee;
6313     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
6314     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6315     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6316     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6317
6318     state = 0xdeadbee;
6319     action = 0xdeadbee;
6320     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
6321     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6322     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6323     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6324
6325     state = 0xdeadbee;
6326     action = 0xdeadbee;
6327     r = MsiGetComponentState(hpkg, "beta", &state, &action);
6328     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6329     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6330     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6331
6332     state = 0xdeadbee;
6333     action = 0xdeadbee;
6334     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
6335     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6336     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6337     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6338
6339     state = 0xdeadbee;
6340     action = 0xdeadbee;
6341     r = MsiGetComponentState(hpkg, "theta", &state, &action);
6342     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6343     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6344     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6345
6346     state = 0xdeadbee;
6347     action = 0xdeadbee;
6348     r = MsiGetComponentState(hpkg, "delta", &state, &action);
6349     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6350     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6351     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6352
6353     state = 0xdeadbee;
6354     action = 0xdeadbee;
6355     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
6356     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6357     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6358     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6359
6360     state = 0xdeadbee;
6361     action = 0xdeadbee;
6362     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
6363     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6364     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6365     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6366
6367     state = 0xdeadbee;
6368     action = 0xdeadbee;
6369     r = MsiGetComponentState(hpkg, "iota", &state, &action);
6370     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6371     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6372     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6373
6374     state = 0xdeadbee;
6375     action = 0xdeadbee;
6376     r = MsiGetComponentState(hpkg, "eta", &state, &action);
6377     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6378     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6379     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6380
6381     state = 0xdeadbee;
6382     action = 0xdeadbee;
6383     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
6384     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6385     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6386     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6387
6388     state = 0xdeadbee;
6389     action = 0xdeadbee;
6390     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
6391     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6392     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6393     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6394
6395     state = 0xdeadbee;
6396     action = 0xdeadbee;
6397     r = MsiGetComponentState(hpkg, "mu", &state, &action);
6398     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6399     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6400     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6401
6402     state = 0xdeadbee;
6403     action = 0xdeadbee;
6404     r = MsiGetComponentState(hpkg, "nu", &state, &action);
6405     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6406     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6407     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6408
6409     state = 0xdeadbee;
6410     action = 0xdeadbee;
6411     r = MsiGetComponentState(hpkg, "xi", &state, &action);
6412     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6413     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6414     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6415
6416     state = 0xdeadbee;
6417     action = 0xdeadbee;
6418     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
6419     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6420     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6421     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6422
6423     state = 0xdeadbee;
6424     action = 0xdeadbee;
6425     r = MsiGetComponentState(hpkg, "pi", &state, &action);
6426     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6427     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6428     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6429
6430     state = 0xdeadbee;
6431     action = 0xdeadbee;
6432     r = MsiGetComponentState(hpkg, "rho", &state, &action);
6433     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6434     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6435     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6436
6437     state = 0xdeadbee;
6438     action = 0xdeadbee;
6439     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
6440     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6441     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6442     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6443
6444     state = 0xdeadbee;
6445     action = 0xdeadbee;
6446     r = MsiGetComponentState(hpkg, "tau", &state, &action);
6447     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6448     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6449     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6450
6451     state = 0xdeadbee;
6452     action = 0xdeadbee;
6453     r = MsiGetComponentState(hpkg, "phi", &state, &action);
6454     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6455     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6456     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6457
6458     state = 0xdeadbee;
6459     action = 0xdeadbee;
6460     r = MsiGetComponentState(hpkg, "chi", &state, &action);
6461     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6462     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6463     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6464
6465     state = 0xdeadbee;
6466     action = 0xdeadbee;
6467     r = MsiGetComponentState(hpkg, "psi", &state, &action);
6468     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6469     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6470     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6471
6472     r = MsiDoAction( hpkg, "CostFinalize");
6473     ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
6474
6475     state = 0xdeadbee;
6476     action = 0xdeadbee;
6477     r = MsiGetFeatureState(hpkg, "one", &state, &action);
6478     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6479     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6480     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
6481
6482     state = 0xdeadbee;
6483     action = 0xdeadbee;
6484     r = MsiGetFeatureState(hpkg, "two", &state, &action);
6485     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6486     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6487     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
6488
6489     state = 0xdeadbee;
6490     action = 0xdeadbee;
6491     r = MsiGetFeatureState(hpkg, "three", &state, &action);
6492     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6493     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6494     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6495
6496     state = 0xdeadbee;
6497     action = 0xdeadbee;
6498     r = MsiGetFeatureState(hpkg, "four", &state, &action);
6499     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6500     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6501     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6502
6503     state = 0xdeadbee;
6504     action = 0xdeadbee;
6505     r = MsiGetFeatureState(hpkg, "five", &state, &action);
6506     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6507     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
6508     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6509
6510     state = 0xdeadbee;
6511     action = 0xdeadbee;
6512     r = MsiGetFeatureState(hpkg, "six", &state, &action);
6513     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6514     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6515     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
6516
6517     state = 0xdeadbee;
6518     action = 0xdeadbee;
6519     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
6520     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6521     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6522     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
6523
6524     state = 0xdeadbee;
6525     action = 0xdeadbee;
6526     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
6527     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6528     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6529     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
6530
6531     state = 0xdeadbee;
6532     action = 0xdeadbee;
6533     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
6534     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6535     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6536     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
6537
6538     state = 0xdeadbee;
6539     action = 0xdeadbee;
6540     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
6541     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6542     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6543     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
6544
6545     state = 0xdeadbee;
6546     action = 0xdeadbee;
6547     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
6548     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6549     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6550     todo_wine ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6551
6552     state = 0xdeadbee;
6553     action = 0xdeadbee;
6554     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
6555     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6556     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6557     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6558
6559     state = 0xdeadbee;
6560     action = 0xdeadbee;
6561     r = MsiGetComponentState(hpkg, "beta", &state, &action);
6562     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6563     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6564     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6565
6566     state = 0xdeadbee;
6567     action = 0xdeadbee;
6568     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
6569     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6570     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6571     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6572
6573     state = 0xdeadbee;
6574     action = 0xdeadbee;
6575     r = MsiGetComponentState(hpkg, "theta", &state, &action);
6576     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6577     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6578     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6579
6580     state = 0xdeadbee;
6581     action = 0xdeadbee;
6582     r = MsiGetComponentState(hpkg, "delta", &state, &action);
6583     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6584     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6585     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6586
6587     state = 0xdeadbee;
6588     action = 0xdeadbee;
6589     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
6590     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6591     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6592     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6593
6594     state = 0xdeadbee;
6595     action = 0xdeadbee;
6596     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
6597     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6598     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6599     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6600
6601     state = 0xdeadbee;
6602     action = 0xdeadbee;
6603     r = MsiGetComponentState(hpkg, "iota", &state, &action);
6604     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6605     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6606     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6607
6608     state = 0xdeadbee;
6609     action = 0xdeadbee;
6610     r = MsiGetComponentState(hpkg, "eta", &state, &action);
6611     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6612     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6613     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6614
6615     state = 0xdeadbee;
6616     action = 0xdeadbee;
6617     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
6618     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6619     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
6620     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6621
6622     state = 0xdeadbee;
6623     action = 0xdeadbee;
6624     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
6625     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6626     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6627     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6628
6629     state = 0xdeadbee;
6630     action = 0xdeadbee;
6631     r = MsiGetComponentState(hpkg, "mu", &state, &action);
6632     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6633     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6634     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6635
6636     state = 0xdeadbee;
6637     action = 0xdeadbee;
6638     r = MsiGetComponentState(hpkg, "nu", &state, &action);
6639     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6640     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6641     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6642
6643     state = 0xdeadbee;
6644     action = 0xdeadbee;
6645     r = MsiGetComponentState(hpkg, "xi", &state, &action);
6646     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6647     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6648     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6649
6650     state = 0xdeadbee;
6651     action = 0xdeadbee;
6652     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
6653     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6654     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6655     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6656
6657     state = 0xdeadbee;
6658     action = 0xdeadbee;
6659     r = MsiGetComponentState(hpkg, "pi", &state, &action);
6660     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6661     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6662     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6663
6664     state = 0xdeadbee;
6665     action = 0xdeadbee;
6666     r = MsiGetComponentState(hpkg, "rho", &state, &action);
6667     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6668     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6669     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6670
6671     state = 0xdeadbee;
6672     action = 0xdeadbee;
6673     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
6674     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6675     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
6676     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
6677
6678     state = 0xdeadbee;
6679     action = 0xdeadbee;
6680     r = MsiGetComponentState(hpkg, "tau", &state, &action);
6681     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6682     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6683     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6684
6685     state = 0xdeadbee;
6686     action = 0xdeadbee;
6687     r = MsiGetComponentState(hpkg, "phi", &state, &action);
6688     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6689     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6690     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6691
6692     state = 0xdeadbee;
6693     action = 0xdeadbee;
6694     r = MsiGetComponentState(hpkg, "chi", &state, &action);
6695     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6696     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6697     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6698
6699     state = 0xdeadbee;
6700     action = 0xdeadbee;
6701     r = MsiGetComponentState(hpkg, "psi", &state, &action);
6702     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6703     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
6704     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6705
6706     MsiCloseHandle(hpkg);
6707
6708     /* reinstall the product */
6709     r = MsiInstallProduct(msifile3, "REINSTALL=ALL");
6710     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
6711
6712     r = MsiOpenDatabase(msifile4, MSIDBOPEN_DIRECT, &hdb);
6713     ok(r == ERROR_SUCCESS, "failed to open database: %d\n", r);
6714
6715     /* this property must not be in the saved msi file */
6716     r = add_property_entry( hdb, "'ADDSOURCE', 'one,two,three,four,five,six,seven,eight,nine,ten'");
6717     ok( r == ERROR_SUCCESS, "cannot add property: %d\n", r );
6718
6719     r = package_from_db( hdb, &hpkg );
6720     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
6721
6722     state = 0xdeadbee;
6723     action = 0xdeadbee;
6724     r = MsiGetFeatureState(hpkg, "one", &state, &action);
6725     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6726     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6727     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6728
6729     state = 0xdeadbee;
6730     action = 0xdeadbee;
6731     r = MsiGetFeatureState(hpkg, "two", &state, &action);
6732     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6733     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6734     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6735
6736     state = 0xdeadbee;
6737     action = 0xdeadbee;
6738     r = MsiGetFeatureState(hpkg, "three", &state, &action);
6739     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6740     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6741     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6742
6743     state = 0xdeadbee;
6744     action = 0xdeadbee;
6745     r = MsiGetFeatureState(hpkg, "four", &state, &action);
6746     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6747     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6748     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6749
6750     state = 0xdeadbee;
6751     action = 0xdeadbee;
6752     r = MsiGetFeatureState(hpkg, "five", &state, &action);
6753     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6754     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6755     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6756
6757     state = 0xdeadbee;
6758     action = 0xdeadbee;
6759     r = MsiGetFeatureState(hpkg, "six", &state, &action);
6760     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6761     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6762     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6763
6764     state = 0xdeadbee;
6765     action = 0xdeadbee;
6766     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
6767     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6768     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6769     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6770
6771     state = 0xdeadbee;
6772     action = 0xdeadbee;
6773     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
6774     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6775     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6776     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6777
6778     state = 0xdeadbee;
6779     action = 0xdeadbee;
6780     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
6781     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6782     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6783     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6784
6785     state = 0xdeadbee;
6786     action = 0xdeadbee;
6787     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
6788     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6789     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6790     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6791
6792     state = 0xdeadbee;
6793     action = 0xdeadbee;
6794     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
6795     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
6796     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6797     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6798
6799     state = 0xdeadbee;
6800     action = 0xdeadbee;
6801     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
6802     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6803     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6804     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6805
6806     state = 0xdeadbee;
6807     action = 0xdeadbee;
6808     r = MsiGetComponentState(hpkg, "beta", &state, &action);
6809     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6810     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6811     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6812
6813     state = 0xdeadbee;
6814     action = 0xdeadbee;
6815     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
6816     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6817     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6818     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6819
6820     state = 0xdeadbee;
6821     action = 0xdeadbee;
6822     r = MsiGetComponentState(hpkg, "theta", &state, &action);
6823     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6824     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6825     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6826
6827     state = 0xdeadbee;
6828     action = 0xdeadbee;
6829     r = MsiGetComponentState(hpkg, "delta", &state, &action);
6830     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6831     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6832     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6833
6834     state = 0xdeadbee;
6835     action = 0xdeadbee;
6836     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
6837     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6838     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6839     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6840
6841     state = 0xdeadbee;
6842     action = 0xdeadbee;
6843     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
6844     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6845     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6846     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6847
6848     state = 0xdeadbee;
6849     action = 0xdeadbee;
6850     r = MsiGetComponentState(hpkg, "iota", &state, &action);
6851     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6852     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6853     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6854
6855     state = 0xdeadbee;
6856     action = 0xdeadbee;
6857     r = MsiGetComponentState(hpkg, "eta", &state, &action);
6858     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6859     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6860     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6861
6862     state = 0xdeadbee;
6863     action = 0xdeadbee;
6864     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
6865     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6866     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6867     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6868
6869     state = 0xdeadbee;
6870     action = 0xdeadbee;
6871     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
6872     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6873     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6874     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6875
6876     state = 0xdeadbee;
6877     action = 0xdeadbee;
6878     r = MsiGetComponentState(hpkg, "mu", &state, &action);
6879     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6880     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6881     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6882
6883     state = 0xdeadbee;
6884     action = 0xdeadbee;
6885     r = MsiGetComponentState(hpkg, "nu", &state, &action);
6886     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6887     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6888     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6889
6890     state = 0xdeadbee;
6891     action = 0xdeadbee;
6892     r = MsiGetComponentState(hpkg, "xi", &state, &action);
6893     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6894     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6895     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6896
6897     state = 0xdeadbee;
6898     action = 0xdeadbee;
6899     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
6900     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6901     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6902     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6903
6904     state = 0xdeadbee;
6905     action = 0xdeadbee;
6906     r = MsiGetComponentState(hpkg, "pi", &state, &action);
6907     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6908     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6909     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6910
6911     state = 0xdeadbee;
6912     action = 0xdeadbee;
6913     r = MsiGetComponentState(hpkg, "rho", &state, &action);
6914     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6915     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6916     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6917
6918     state = 0xdeadbee;
6919     action = 0xdeadbee;
6920     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
6921     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6922     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6923     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6924
6925     state = 0xdeadbee;
6926     action = 0xdeadbee;
6927     r = MsiGetComponentState(hpkg, "tau", &state, &action);
6928     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6929     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6930     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6931
6932     state = 0xdeadbee;
6933     action = 0xdeadbee;
6934     r = MsiGetComponentState(hpkg, "phi", &state, &action);
6935     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6936     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6937     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6938
6939     state = 0xdeadbee;
6940     action = 0xdeadbee;
6941     r = MsiGetComponentState(hpkg, "chi", &state, &action);
6942     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6943     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6944     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6945
6946     state = 0xdeadbee;
6947     action = 0xdeadbee;
6948     r = MsiGetComponentState(hpkg, "psi", &state, &action);
6949     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
6950     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
6951     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
6952
6953     r = MsiDoAction( hpkg, "CostInitialize");
6954     ok( r == ERROR_SUCCESS, "cost init failed\n");
6955
6956     state = 0xdeadbee;
6957     action = 0xdeadbee;
6958     r = MsiGetFeatureState(hpkg, "one", &state, &action);
6959     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6960     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6961     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6962
6963     state = 0xdeadbee;
6964     action = 0xdeadbee;
6965     r = MsiGetFeatureState(hpkg, "two", &state, &action);
6966     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6967     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6968     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6969
6970     state = 0xdeadbee;
6971     action = 0xdeadbee;
6972     r = MsiGetFeatureState(hpkg, "three", &state, &action);
6973     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6974     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6975     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6976
6977     state = 0xdeadbee;
6978     action = 0xdeadbee;
6979     r = MsiGetFeatureState(hpkg, "four", &state, &action);
6980     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6981     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6982     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6983
6984     state = 0xdeadbee;
6985     action = 0xdeadbee;
6986     r = MsiGetFeatureState(hpkg, "five", &state, &action);
6987     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6988     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6989     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6990
6991     state = 0xdeadbee;
6992     action = 0xdeadbee;
6993     r = MsiGetFeatureState(hpkg, "six", &state, &action);
6994     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
6995     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
6996     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
6997
6998     state = 0xdeadbee;
6999     action = 0xdeadbee;
7000     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
7001     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7002     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7003     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7004
7005     state = 0xdeadbee;
7006     action = 0xdeadbee;
7007     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
7008     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7009     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7010     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7011
7012     state = 0xdeadbee;
7013     action = 0xdeadbee;
7014     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
7015     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7016     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7017     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7018
7019     state = 0xdeadbee;
7020     action = 0xdeadbee;
7021     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
7022     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7023     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7024     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7025
7026     state = 0xdeadbee;
7027     action = 0xdeadbee;
7028     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
7029     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7030     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7031     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7032
7033     state = 0xdeadbee;
7034     action = 0xdeadbee;
7035     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
7036     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7037     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7038     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7039
7040     state = 0xdeadbee;
7041     action = 0xdeadbee;
7042     r = MsiGetComponentState(hpkg, "beta", &state, &action);
7043     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7044     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7045     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7046
7047     state = 0xdeadbee;
7048     action = 0xdeadbee;
7049     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
7050     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7051     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7052     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7053
7054     state = 0xdeadbee;
7055     action = 0xdeadbee;
7056     r = MsiGetComponentState(hpkg, "theta", &state, &action);
7057     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7058     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7059     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7060
7061     state = 0xdeadbee;
7062     action = 0xdeadbee;
7063     r = MsiGetComponentState(hpkg, "delta", &state, &action);
7064     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7065     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7066     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7067
7068     state = 0xdeadbee;
7069     action = 0xdeadbee;
7070     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
7071     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7072     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7073     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7074
7075     state = 0xdeadbee;
7076     action = 0xdeadbee;
7077     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
7078     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7079     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7080     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7081
7082     state = 0xdeadbee;
7083     action = 0xdeadbee;
7084     r = MsiGetComponentState(hpkg, "iota", &state, &action);
7085     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7086     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7087     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7088
7089     state = 0xdeadbee;
7090     action = 0xdeadbee;
7091     r = MsiGetComponentState(hpkg, "eta", &state, &action);
7092     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7093     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7094     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7095
7096     state = 0xdeadbee;
7097     action = 0xdeadbee;
7098     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
7099     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7100     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7101     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7102
7103     state = 0xdeadbee;
7104     action = 0xdeadbee;
7105     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
7106     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7107     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7108     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7109
7110     state = 0xdeadbee;
7111     action = 0xdeadbee;
7112     r = MsiGetComponentState(hpkg, "mu", &state, &action);
7113     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7114     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7115     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7116
7117     state = 0xdeadbee;
7118     action = 0xdeadbee;
7119     r = MsiGetComponentState(hpkg, "nu", &state, &action);
7120     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7121     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7122     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7123
7124     state = 0xdeadbee;
7125     action = 0xdeadbee;
7126     r = MsiGetComponentState(hpkg, "xi", &state, &action);
7127     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7128     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7129     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7130
7131     state = 0xdeadbee;
7132     action = 0xdeadbee;
7133     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
7134     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7135     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7136     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7137
7138     state = 0xdeadbee;
7139     action = 0xdeadbee;
7140     r = MsiGetComponentState(hpkg, "pi", &state, &action);
7141     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7142     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7143     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7144
7145     state = 0xdeadbee;
7146     action = 0xdeadbee;
7147     r = MsiGetComponentState(hpkg, "rho", &state, &action);
7148     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7149     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7150     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7151
7152     state = 0xdeadbee;
7153     action = 0xdeadbee;
7154     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
7155     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7156     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7157     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7158
7159     state = 0xdeadbee;
7160     action = 0xdeadbee;
7161     r = MsiGetComponentState(hpkg, "tau", &state, &action);
7162     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7163     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7164     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7165
7166     state = 0xdeadbee;
7167     action = 0xdeadbee;
7168     r = MsiGetComponentState(hpkg, "phi", &state, &action);
7169     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7170     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7171     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7172
7173     state = 0xdeadbee;
7174     action = 0xdeadbee;
7175     r = MsiGetComponentState(hpkg, "chi", &state, &action);
7176     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7177     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7178     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7179
7180     state = 0xdeadbee;
7181     action = 0xdeadbee;
7182     r = MsiGetComponentState(hpkg, "psi", &state, &action);
7183     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7184     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7185     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7186
7187     r = MsiDoAction( hpkg, "FileCost");
7188     ok( r == ERROR_SUCCESS, "file cost failed\n");
7189
7190     state = 0xdeadbee;
7191     action = 0xdeadbee;
7192     r = MsiGetFeatureState(hpkg, "one", &state, &action);
7193     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7194     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7195     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7196
7197     state = 0xdeadbee;
7198     action = 0xdeadbee;
7199     r = MsiGetFeatureState(hpkg, "two", &state, &action);
7200     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7201     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7202     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7203
7204     state = 0xdeadbee;
7205     action = 0xdeadbee;
7206     r = MsiGetFeatureState(hpkg, "three", &state, &action);
7207     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7208     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7209     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7210
7211     state = 0xdeadbee;
7212     action = 0xdeadbee;
7213     r = MsiGetFeatureState(hpkg, "four", &state, &action);
7214     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7215     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7216     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7217
7218     state = 0xdeadbee;
7219     action = 0xdeadbee;
7220     r = MsiGetFeatureState(hpkg, "five", &state, &action);
7221     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7222     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7223     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7224
7225     state = 0xdeadbee;
7226     action = 0xdeadbee;
7227     r = MsiGetFeatureState(hpkg, "six", &state, &action);
7228     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7229     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7230     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7231
7232     state = 0xdeadbee;
7233     action = 0xdeadbee;
7234     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
7235     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7236     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7237     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7238
7239     state = 0xdeadbee;
7240     action = 0xdeadbee;
7241     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
7242     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7243     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7244     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7245
7246     state = 0xdeadbee;
7247     action = 0xdeadbee;
7248     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
7249     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7250     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7251     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7252
7253     state = 0xdeadbee;
7254     action = 0xdeadbee;
7255     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
7256     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7257     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7258     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7259
7260     state = 0xdeadbee;
7261     action = 0xdeadbee;
7262     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
7263     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7264     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7265     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7266
7267     state = 0xdeadbee;
7268     action = 0xdeadbee;
7269     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
7270     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7271     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7272     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7273
7274     state = 0xdeadbee;
7275     action = 0xdeadbee;
7276     r = MsiGetComponentState(hpkg, "beta", &state, &action);
7277     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7278     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7279     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7280
7281     state = 0xdeadbee;
7282     action = 0xdeadbee;
7283     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
7284     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7285     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7286     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7287
7288     state = 0xdeadbee;
7289     action = 0xdeadbee;
7290     r = MsiGetComponentState(hpkg, "theta", &state, &action);
7291     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7292     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7293     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7294
7295     state = 0xdeadbee;
7296     action = 0xdeadbee;
7297     r = MsiGetComponentState(hpkg, "delta", &state, &action);
7298     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7299     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7300     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7301
7302     state = 0xdeadbee;
7303     action = 0xdeadbee;
7304     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
7305     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7306     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7307     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7308
7309     state = 0xdeadbee;
7310     action = 0xdeadbee;
7311     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
7312     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7313     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7314     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7315
7316     state = 0xdeadbee;
7317     action = 0xdeadbee;
7318     r = MsiGetComponentState(hpkg, "iota", &state, &action);
7319     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7320     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7321     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7322
7323     state = 0xdeadbee;
7324     action = 0xdeadbee;
7325     r = MsiGetComponentState(hpkg, "eta", &state, &action);
7326     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7327     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7328     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7329
7330     state = 0xdeadbee;
7331     action = 0xdeadbee;
7332     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
7333     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7334     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7335     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7336
7337     state = 0xdeadbee;
7338     action = 0xdeadbee;
7339     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
7340     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7341     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7342     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7343
7344     state = 0xdeadbee;
7345     action = 0xdeadbee;
7346     r = MsiGetComponentState(hpkg, "mu", &state, &action);
7347     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7348     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7349     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7350
7351     state = 0xdeadbee;
7352     action = 0xdeadbee;
7353     r = MsiGetComponentState(hpkg, "nu", &state, &action);
7354     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7355     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7356     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7357
7358     state = 0xdeadbee;
7359     action = 0xdeadbee;
7360     r = MsiGetComponentState(hpkg, "xi", &state, &action);
7361     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7362     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7363     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7364
7365     state = 0xdeadbee;
7366     action = 0xdeadbee;
7367     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
7368     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7369     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7370     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7371
7372     state = 0xdeadbee;
7373     action = 0xdeadbee;
7374     r = MsiGetComponentState(hpkg, "pi", &state, &action);
7375     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7376     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7377     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7378
7379     state = 0xdeadbee;
7380     action = 0xdeadbee;
7381     r = MsiGetComponentState(hpkg, "rho", &state, &action);
7382     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7383     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7384     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7385
7386     state = 0xdeadbee;
7387     action = 0xdeadbee;
7388     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
7389     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7390     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7391     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7392
7393     state = 0xdeadbee;
7394     action = 0xdeadbee;
7395     r = MsiGetComponentState(hpkg, "tau", &state, &action);
7396     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7397     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7398     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7399
7400     state = 0xdeadbee;
7401     action = 0xdeadbee;
7402     r = MsiGetComponentState(hpkg, "phi", &state, &action);
7403     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7404     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7405     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7406
7407     state = 0xdeadbee;
7408     action = 0xdeadbee;
7409     r = MsiGetComponentState(hpkg, "chi", &state, &action);
7410     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7411     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7412     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7413
7414     state = 0xdeadbee;
7415     action = 0xdeadbee;
7416     r = MsiGetComponentState(hpkg, "psi", &state, &action);
7417     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7418     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
7419     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7420
7421     r = MsiDoAction( hpkg, "CostFinalize");
7422     ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
7423
7424     state = 0xdeadbee;
7425     action = 0xdeadbee;
7426     r = MsiGetFeatureState(hpkg, "one", &state, &action);
7427     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7428     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7429     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
7430
7431     state = 0xdeadbee;
7432     action = 0xdeadbee;
7433     r = MsiGetFeatureState(hpkg, "two", &state, &action);
7434     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7435     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7436     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
7437
7438     state = 0xdeadbee;
7439     action = 0xdeadbee;
7440     r = MsiGetFeatureState(hpkg, "three", &state, &action);
7441     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7442     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7443     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7444
7445     state = 0xdeadbee;
7446     action = 0xdeadbee;
7447     r = MsiGetFeatureState(hpkg, "four", &state, &action);
7448     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7449     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7450     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7451
7452     state = 0xdeadbee;
7453     action = 0xdeadbee;
7454     r = MsiGetFeatureState(hpkg, "five", &state, &action);
7455     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7456     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
7457     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7458
7459     state = 0xdeadbee;
7460     action = 0xdeadbee;
7461     r = MsiGetFeatureState(hpkg, "six", &state, &action);
7462     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7463     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7464     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
7465
7466     state = 0xdeadbee;
7467     action = 0xdeadbee;
7468     r = MsiGetFeatureState(hpkg, "seven", &state, &action);
7469     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7470     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7471     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
7472
7473     state = 0xdeadbee;
7474     action = 0xdeadbee;
7475     r = MsiGetFeatureState(hpkg, "eight", &state, &action);
7476     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7477     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7478     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
7479
7480     state = 0xdeadbee;
7481     action = 0xdeadbee;
7482     r = MsiGetFeatureState(hpkg, "nine", &state, &action);
7483     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7484     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7485     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
7486
7487     state = 0xdeadbee;
7488     action = 0xdeadbee;
7489     r = MsiGetFeatureState(hpkg, "ten", &state, &action);
7490     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7491     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7492     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
7493
7494     state = 0xdeadbee;
7495     action = 0xdeadbee;
7496     r = MsiGetFeatureState(hpkg, "eleven", &state, &action);
7497     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7498     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7499     todo_wine ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7500
7501     state = 0xdeadbee;
7502     action = 0xdeadbee;
7503     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
7504     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7505     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7506     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7507
7508     state = 0xdeadbee;
7509     action = 0xdeadbee;
7510     r = MsiGetComponentState(hpkg, "beta", &state, &action);
7511     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7512     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7513     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7514
7515     state = 0xdeadbee;
7516     action = 0xdeadbee;
7517     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
7518     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7519     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7520     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7521
7522     state = 0xdeadbee;
7523     action = 0xdeadbee;
7524     r = MsiGetComponentState(hpkg, "theta", &state, &action);
7525     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7526     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7527     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7528
7529     state = 0xdeadbee;
7530     action = 0xdeadbee;
7531     r = MsiGetComponentState(hpkg, "delta", &state, &action);
7532     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7533     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7534     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7535
7536     state = 0xdeadbee;
7537     action = 0xdeadbee;
7538     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
7539     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7540     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7541     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7542
7543     state = 0xdeadbee;
7544     action = 0xdeadbee;
7545     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
7546     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7547     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7548     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7549
7550     state = 0xdeadbee;
7551     action = 0xdeadbee;
7552     r = MsiGetComponentState(hpkg, "iota", &state, &action);
7553     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7554     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7555     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7556
7557     state = 0xdeadbee;
7558     action = 0xdeadbee;
7559     r = MsiGetComponentState(hpkg, "eta", &state, &action);
7560     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7561     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7562     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7563
7564     state = 0xdeadbee;
7565     action = 0xdeadbee;
7566     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
7567     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7568     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
7569     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7570
7571     state = 0xdeadbee;
7572     action = 0xdeadbee;
7573     r = MsiGetComponentState(hpkg, "lambda", &state, &action);
7574     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7575     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7576     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7577
7578     state = 0xdeadbee;
7579     action = 0xdeadbee;
7580     r = MsiGetComponentState(hpkg, "mu", &state, &action);
7581     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7582     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7583     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7584
7585     state = 0xdeadbee;
7586     action = 0xdeadbee;
7587     r = MsiGetComponentState(hpkg, "nu", &state, &action);
7588     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7589     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7590     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7591
7592     state = 0xdeadbee;
7593     action = 0xdeadbee;
7594     r = MsiGetComponentState(hpkg, "xi", &state, &action);
7595     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7596     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7597     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7598
7599     state = 0xdeadbee;
7600     action = 0xdeadbee;
7601     r = MsiGetComponentState(hpkg, "omicron", &state, &action);
7602     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7603     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7604     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7605
7606     state = 0xdeadbee;
7607     action = 0xdeadbee;
7608     r = MsiGetComponentState(hpkg, "pi", &state, &action);
7609     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7610     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7611     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7612
7613     state = 0xdeadbee;
7614     action = 0xdeadbee;
7615     r = MsiGetComponentState(hpkg, "rho", &state, &action);
7616     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7617     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7618     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7619
7620     state = 0xdeadbee;
7621     action = 0xdeadbee;
7622     r = MsiGetComponentState(hpkg, "sigma", &state, &action);
7623     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7624     ok( state == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", state);
7625     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
7626
7627     state = 0xdeadbee;
7628     action = 0xdeadbee;
7629     r = MsiGetComponentState(hpkg, "tau", &state, &action);
7630     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7631     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7632     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7633
7634     state = 0xdeadbee;
7635     action = 0xdeadbee;
7636     r = MsiGetComponentState(hpkg, "phi", &state, &action);
7637     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7638     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7639     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7640
7641     state = 0xdeadbee;
7642     action = 0xdeadbee;
7643     r = MsiGetComponentState(hpkg, "chi", &state, &action);
7644     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7645     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7646     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7647
7648     state = 0xdeadbee;
7649     action = 0xdeadbee;
7650     r = MsiGetComponentState(hpkg, "psi", &state, &action);
7651     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
7652     ok( state == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", state);
7653     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
7654
7655     MsiCloseHandle(hpkg);
7656
7657     /* uninstall the product */
7658     r = MsiInstallProduct(msifile4, "REMOVE=ALL");
7659     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
7660
7661     DeleteFileA(msifile);
7662     DeleteFileA(msifile2);
7663     DeleteFileA(msifile3);
7664     DeleteFileA(msifile4);
7665 }
7666
7667 static void test_getproperty(void)
7668 {
7669     MSIHANDLE hPackage = 0;
7670     char prop[100];
7671     static CHAR empty[] = "";
7672     DWORD size;
7673     UINT r;
7674
7675     r = package_from_db(create_package_db(), &hPackage);
7676     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
7677     {
7678         skip("Not enough rights to perform tests\n");
7679         DeleteFile(msifile);
7680         return;
7681     }
7682     ok( r == ERROR_SUCCESS, "Failed to create package %u\n", r );
7683
7684     /* set the property */
7685     r = MsiSetProperty(hPackage, "Name", "Value");
7686     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
7687
7688     /* retrieve the size, NULL pointer */
7689     size = 0;
7690     r = MsiGetProperty(hPackage, "Name", NULL, &size);
7691     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
7692     ok( size == 5, "Expected 5, got %d\n", size);
7693
7694     /* retrieve the size, empty string */
7695     size = 0;
7696     r = MsiGetProperty(hPackage, "Name", empty, &size);
7697     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
7698     ok( size == 5, "Expected 5, got %d\n", size);
7699
7700     /* don't change size */
7701     r = MsiGetProperty(hPackage, "Name", prop, &size);
7702     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
7703     ok( size == 5, "Expected 5, got %d\n", size);
7704     ok( !lstrcmp(prop, "Valu"), "Expected Valu, got %s\n", prop);
7705
7706     /* increase the size by 1 */
7707     size++;
7708     r = MsiGetProperty(hPackage, "Name", prop, &size);
7709     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
7710     ok( size == 5, "Expected 5, got %d\n", size);
7711     ok( !lstrcmp(prop, "Value"), "Expected Value, got %s\n", prop);
7712
7713     r = MsiCloseHandle( hPackage);
7714     ok( r == ERROR_SUCCESS , "Failed to close package\n" );
7715     DeleteFile(msifile);
7716 }
7717
7718 static void test_removefiles(void)
7719 {
7720     MSIHANDLE hpkg;
7721     UINT r;
7722     MSIHANDLE hdb;
7723     INSTALLSTATE installed, action;
7724
7725     hdb = create_package_db();
7726     ok ( hdb, "failed to create package database\n" );
7727
7728     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
7729     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
7730
7731     r = create_feature_table( hdb );
7732     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
7733
7734     r = create_component_table( hdb );
7735     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
7736
7737     r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
7738     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
7739
7740     r = add_component_entry( hdb, "'hydrogen', '', 'TARGETDIR', 0, '', 'hydrogen_file'" );
7741     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
7742
7743     r = add_component_entry( hdb, "'helium', '', 'TARGETDIR', 0, '', 'helium_file'" );
7744     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
7745
7746     r = add_component_entry( hdb, "'lithium', '', 'TARGETDIR', 0, '', 'lithium_file'" );
7747     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
7748
7749     r = add_component_entry( hdb, "'beryllium', '', 'TARGETDIR', 0, '', 'beryllium_file'" );
7750     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
7751
7752     r = add_component_entry( hdb, "'boron', '', 'TARGETDIR', 0, '', 'boron_file'" );
7753     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
7754
7755     r = add_component_entry( hdb, "'carbon', '', 'TARGETDIR', 0, '', 'carbon_file'" );
7756     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
7757
7758     r = add_component_entry( hdb, "'oxygen', '', 'TARGETDIR', 0, '0', 'oxygen_file'" );
7759     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
7760
7761     r = create_feature_components_table( hdb );
7762     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
7763
7764     r = add_feature_components_entry( hdb, "'one', 'hydrogen'" );
7765     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
7766
7767     r = add_feature_components_entry( hdb, "'one', 'helium'" );
7768     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
7769
7770     r = add_feature_components_entry( hdb, "'one', 'lithium'" );
7771     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
7772
7773     r = add_feature_components_entry( hdb, "'one', 'beryllium'" );
7774     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
7775
7776     r = add_feature_components_entry( hdb, "'one', 'boron'" );
7777     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
7778
7779     r = add_feature_components_entry( hdb, "'one', 'carbon'" );
7780     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
7781
7782     r = add_feature_components_entry( hdb, "'one', 'oxygen'" );
7783     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
7784
7785     r = create_file_table( hdb );
7786     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
7787
7788     r = add_file_entry( hdb, "'hydrogen_file', 'hydrogen', 'hydrogen.txt', 0, '', '1033', 8192, 1" );
7789     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
7790
7791     r = add_file_entry( hdb, "'helium_file', 'helium', 'helium.txt', 0, '', '1033', 8192, 1" );
7792     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
7793
7794     r = add_file_entry( hdb, "'lithium_file', 'lithium', 'lithium.txt', 0, '', '1033', 8192, 1" );
7795     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
7796
7797     r = add_file_entry( hdb, "'beryllium_file', 'beryllium', 'beryllium.txt', 0, '', '1033', 16384, 1" );
7798     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
7799
7800     r = add_file_entry( hdb, "'boron_file', 'boron', 'boron.txt', 0, '', '1033', 16384, 1" );
7801     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
7802
7803     r = add_file_entry( hdb, "'carbon_file', 'carbon', 'carbon.txt', 0, '', '1033', 16384, 1" );
7804     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
7805
7806     r = add_file_entry( hdb, "'oxygen_file', 'oxygen', 'oxygen.txt', 0, '', '1033', 16384, 1" );
7807     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
7808
7809     r = create_remove_file_table( hdb );
7810     ok( r == ERROR_SUCCESS, "cannot create Remove File table: %d\n", r);
7811
7812     r = package_from_db( hdb, &hpkg );
7813     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
7814     {
7815         skip("Not enough rights to perform tests\n");
7816         DeleteFile(msifile);
7817         return;
7818     }
7819     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
7820
7821     MsiCloseHandle( hdb );
7822
7823     create_test_file( "hydrogen.txt" );
7824     create_test_file( "helium.txt" );
7825     create_test_file( "lithium.txt" );
7826     create_test_file( "beryllium.txt" );
7827     create_test_file( "boron.txt" );
7828     create_test_file( "carbon.txt" );
7829     create_test_file( "oxygen.txt" );
7830
7831     r = MsiSetProperty( hpkg, "TARGETDIR", CURR_DIR );
7832     ok( r == ERROR_SUCCESS, "set property failed\n");
7833
7834     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
7835
7836     r = MsiGetComponentState( hpkg, "oxygen", &installed, &action );
7837     ok( r == ERROR_UNKNOWN_COMPONENT, "expected ERROR_UNKNOWN_COMPONENT, got %u\n", r );
7838
7839     r = MsiDoAction( hpkg, "CostInitialize");
7840     ok( r == ERROR_SUCCESS, "cost init failed\n");
7841
7842     r = MsiDoAction( hpkg, "FileCost");
7843     ok( r == ERROR_SUCCESS, "file cost failed\n");
7844
7845     installed = action = 0xdeadbeef;
7846     r = MsiGetComponentState( hpkg, "oxygen", &installed, &action );
7847     ok( r == ERROR_SUCCESS, "failed to get component state %u\n", r );
7848     ok( installed == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", installed );
7849     ok( action == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", action );
7850
7851     r = MsiDoAction( hpkg, "CostFinalize");
7852     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
7853
7854     r = MsiDoAction( hpkg, "InstallValidate");
7855     ok( r == ERROR_SUCCESS, "install validate failed\n");
7856
7857     r = MsiSetComponentState( hpkg, "hydrogen", INSTALLSTATE_ABSENT );
7858     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
7859
7860     installed = action = 0xdeadbeef;
7861     r = MsiGetComponentState( hpkg, "hydrogen", &installed, &action );
7862     ok( r == ERROR_SUCCESS, "failed to get component state %u\n", r );
7863     ok( installed == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", installed );
7864     todo_wine ok( action == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", action );
7865
7866     r = MsiSetComponentState( hpkg, "helium", INSTALLSTATE_LOCAL );
7867     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
7868
7869     r = MsiSetComponentState( hpkg, "lithium", INSTALLSTATE_SOURCE );
7870     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
7871
7872     r = MsiSetComponentState( hpkg, "beryllium", INSTALLSTATE_ABSENT );
7873     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
7874
7875     r = MsiSetComponentState( hpkg, "boron", INSTALLSTATE_LOCAL );
7876     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
7877
7878     r = MsiSetComponentState( hpkg, "carbon", INSTALLSTATE_SOURCE );
7879     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
7880
7881     installed = action = 0xdeadbeef;
7882     r = MsiGetComponentState( hpkg, "oxygen", &installed, &action );
7883     ok( r == ERROR_SUCCESS, "failed to get component state %u\n", r );
7884     ok( installed == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", installed );
7885     ok( action == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", action );
7886
7887     r = MsiSetComponentState( hpkg, "oxygen", INSTALLSTATE_ABSENT );
7888     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
7889
7890     installed = action = 0xdeadbeef;
7891     r = MsiGetComponentState( hpkg, "oxygen", &installed, &action );
7892     ok( r == ERROR_SUCCESS, "failed to get component state %u\n", r );
7893     ok( installed == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", installed );
7894     ok( action == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", action );
7895
7896     r = MsiDoAction( hpkg, "RemoveFiles");
7897     ok( r == ERROR_SUCCESS, "remove files failed\n");
7898
7899     installed = action = 0xdeadbeef;
7900     r = MsiGetComponentState( hpkg, "oxygen", &installed, &action );
7901     ok( r == ERROR_SUCCESS, "failed to get component state %u\n", r );
7902     ok( installed == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", installed );
7903     ok( action == INSTALLSTATE_UNKNOWN, "expected INSTALLSTATE_UNKNOWN, got %d\n", action );
7904
7905     ok(DeleteFileA("hydrogen.txt"), "Expected hydrogen.txt to exist\n");
7906     ok(DeleteFileA("lithium.txt"), "Expected lithium.txt to exist\n");    
7907     ok(DeleteFileA("beryllium.txt"), "Expected beryllium.txt to exist\n");
7908     ok(DeleteFileA("carbon.txt"), "Expected carbon.txt to exist\n");
7909     ok(DeleteFileA("helium.txt"), "Expected helium.txt to exist\n");
7910     ok(DeleteFileA("boron.txt"), "Expected boron.txt to exist\n");
7911     ok(DeleteFileA("oxygen.txt"), "Expected oxygen.txt to exist\n");
7912
7913     MsiCloseHandle( hpkg );
7914     DeleteFileA(msifile);
7915 }
7916
7917 static void test_appsearch(void)
7918 {
7919     MSIHANDLE hpkg;
7920     UINT r;
7921     MSIHANDLE hdb;
7922     CHAR prop[MAX_PATH];
7923     DWORD size;
7924
7925     hdb = create_package_db();
7926     ok ( hdb, "failed to create package database\n" );
7927
7928     r = create_appsearch_table( hdb );
7929     ok( r == ERROR_SUCCESS, "cannot create AppSearch table: %d\n", r );
7930
7931     r = add_appsearch_entry( hdb, "'WEBBROWSERPROG', 'NewSignature1'" );
7932     ok( r == ERROR_SUCCESS, "cannot add entry: %d\n", r );
7933
7934     r = add_appsearch_entry( hdb, "'NOTEPAD', 'NewSignature2'" );
7935     ok( r == ERROR_SUCCESS, "cannot add entry: %d\n", r );
7936
7937     r = create_reglocator_table( hdb );
7938     ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
7939
7940     r = add_reglocator_entry( hdb, "NewSignature1", 0, "htmlfile\\shell\\open\\command", "", 1 );
7941     ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
7942
7943     r = create_drlocator_table( hdb );
7944     ok( r == ERROR_SUCCESS, "cannot create DrLocator table: %d\n", r );
7945
7946     r = add_drlocator_entry( hdb, "'NewSignature2', 0, 'c:\\windows\\system32', 0" );
7947     ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
7948
7949     r = create_signature_table( hdb );
7950     ok( r == ERROR_SUCCESS, "cannot create Signature table: %d\n", r );
7951
7952     r = add_signature_entry( hdb, "'NewSignature1', 'FileName', '', '', '', '', '', '', ''" );
7953     ok( r == ERROR_SUCCESS, "cannot add signature: %d\n", r );
7954
7955     r = add_signature_entry( hdb, "'NewSignature2', 'NOTEPAD.EXE|notepad.exe', '', '', '', '', '', '', ''" );
7956     ok( r == ERROR_SUCCESS, "cannot add signature: %d\n", r );
7957
7958     r = package_from_db( hdb, &hpkg );
7959     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
7960     {
7961         skip("Not enough rights to perform tests\n");
7962         DeleteFile(msifile);
7963         return;
7964     }
7965     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
7966     MsiCloseHandle( hdb );
7967     if (r != ERROR_SUCCESS)
7968         goto done;
7969
7970     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
7971
7972     r = MsiDoAction( hpkg, "AppSearch" );
7973     ok( r == ERROR_SUCCESS, "AppSearch failed: %d\n", r);
7974
7975     size = sizeof(prop);
7976     r = MsiGetPropertyA( hpkg, "WEBBROWSERPROG", prop, &size );
7977     ok( r == ERROR_SUCCESS, "get property failed: %d\n", r);
7978     todo_wine
7979     {
7980         ok( lstrlenA(prop) != 0, "Expected non-zero length\n");
7981     }
7982
7983     size = sizeof(prop);
7984     r = MsiGetPropertyA( hpkg, "NOTEPAD", prop, &size );
7985     ok( r == ERROR_SUCCESS, "get property failed: %d\n", r);
7986
7987 done:
7988     MsiCloseHandle( hpkg );
7989     DeleteFileA(msifile);
7990 }
7991
7992 static void test_appsearch_complocator(void)
7993 {
7994     MSIHANDLE hpkg, hdb;
7995     CHAR path[MAX_PATH];
7996     CHAR prop[MAX_PATH];
7997     LPSTR usersid;
7998     DWORD size;
7999     UINT r;
8000
8001     if (!(usersid = get_user_sid()))
8002         return;
8003
8004     if (is_process_limited())
8005     {
8006         skip("process is limited\n");
8007         return;
8008     }
8009
8010     create_test_file("FileName1");
8011     create_test_file("FileName4");
8012     set_component_path("FileName1", MSIINSTALLCONTEXT_MACHINE,
8013                        "{A8AE6692-96BA-4198-8399-145D7D1D0D0E}", NULL, FALSE);
8014
8015     create_test_file("FileName2");
8016     set_component_path("FileName2", MSIINSTALLCONTEXT_USERUNMANAGED,
8017                        "{1D2CE6F3-E81C-4949-AB81-78D7DAD2AF2E}", usersid, FALSE);
8018
8019     create_test_file("FileName3");
8020     set_component_path("FileName3", MSIINSTALLCONTEXT_USERMANAGED,
8021                        "{19E0B999-85F5-4973-A61B-DBE4D66ECB1D}", usersid, FALSE);
8022
8023     create_test_file("FileName5");
8024     set_component_path("FileName5", MSIINSTALLCONTEXT_MACHINE,
8025                        "{F0CCA976-27A3-4808-9DDD-1A6FD50A0D5A}", NULL, TRUE);
8026
8027     create_test_file("FileName6");
8028     set_component_path("FileName6", MSIINSTALLCONTEXT_MACHINE,
8029                        "{C0ECD96F-7898-4410-9667-194BD8C1B648}", NULL, TRUE);
8030
8031     create_test_file("FileName7");
8032     set_component_path("FileName7", MSIINSTALLCONTEXT_MACHINE,
8033                        "{DB20F535-9C26-4127-9C2B-CC45A8B51DA1}", NULL, FALSE);
8034
8035     /* dir is FALSE, but we're pretending it's a directory */
8036     set_component_path("IDontExist\\", MSIINSTALLCONTEXT_MACHINE,
8037                        "{91B7359B-07F2-4221-AA8D-DE102BB87A5F}", NULL, FALSE);
8038
8039     create_file_with_version("FileName8.dll", MAKELONG(2, 1), MAKELONG(4, 3));
8040     set_component_path("FileName8.dll", MSIINSTALLCONTEXT_MACHINE,
8041                        "{4A2E1B5B-4034-4177-833B-8CC35F1B3EF1}", NULL, FALSE);
8042
8043     create_file_with_version("FileName9.dll", MAKELONG(1, 2), MAKELONG(3, 4));
8044     set_component_path("FileName9.dll", MSIINSTALLCONTEXT_MACHINE,
8045                        "{A204DF48-7346-4635-BA2E-66247DBAC9DF}", NULL, FALSE);
8046
8047     create_file_with_version("FileName10.dll", MAKELONG(2, 1), MAKELONG(4, 3));
8048     set_component_path("FileName10.dll", MSIINSTALLCONTEXT_MACHINE,
8049                        "{EC30CE73-4CF9-4908-BABD-1ED82E1515FD}", NULL, FALSE);
8050
8051     hdb = create_package_db();
8052     ok(hdb, "Expected a valid database handle\n");
8053
8054     r = create_appsearch_table(hdb);
8055     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8056
8057     r = add_appsearch_entry(hdb, "'SIGPROP1', 'NewSignature1'");
8058     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8059
8060     r = add_appsearch_entry(hdb, "'SIGPROP2', 'NewSignature2'");
8061     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8062
8063     r = add_appsearch_entry(hdb, "'SIGPROP3', 'NewSignature3'");
8064     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8065
8066     r = add_appsearch_entry(hdb, "'SIGPROP4', 'NewSignature4'");
8067     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8068
8069     r = add_appsearch_entry(hdb, "'SIGPROP5', 'NewSignature5'");
8070     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8071
8072     r = add_appsearch_entry(hdb, "'SIGPROP6', 'NewSignature6'");
8073     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8074
8075     r = add_appsearch_entry(hdb, "'SIGPROP7', 'NewSignature7'");
8076     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8077
8078     r = add_appsearch_entry(hdb, "'SIGPROP8', 'NewSignature8'");
8079     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8080
8081     r = add_appsearch_entry(hdb, "'SIGPROP9', 'NewSignature9'");
8082     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8083
8084     r = add_appsearch_entry(hdb, "'SIGPROP10', 'NewSignature10'");
8085     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8086
8087     r = add_appsearch_entry(hdb, "'SIGPROP11', 'NewSignature11'");
8088     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8089
8090     r = add_appsearch_entry(hdb, "'SIGPROP12', 'NewSignature12'");
8091     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8092
8093     r = create_complocator_table(hdb);
8094     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8095
8096     /* published component, machine, file, signature, misdbLocatorTypeFile */
8097     r = add_complocator_entry(hdb, "'NewSignature1', '{A8AE6692-96BA-4198-8399-145D7D1D0D0E}', 1");
8098     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8099
8100     /* published component, user-unmanaged, file, signature, misdbLocatorTypeFile */
8101     r = add_complocator_entry(hdb, "'NewSignature2', '{1D2CE6F3-E81C-4949-AB81-78D7DAD2AF2E}', 1");
8102     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8103
8104     /* published component, user-managed, file, signature, misdbLocatorTypeFile */
8105     r = add_complocator_entry(hdb, "'NewSignature3', '{19E0B999-85F5-4973-A61B-DBE4D66ECB1D}', 1");
8106     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8107
8108     /* published component, machine, file, signature, misdbLocatorTypeDirectory */
8109     r = add_complocator_entry(hdb, "'NewSignature4', '{A8AE6692-96BA-4198-8399-145D7D1D0D0E}', 0");
8110     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8111
8112     /* published component, machine, dir, signature, misdbLocatorTypeDirectory */
8113     r = add_complocator_entry(hdb, "'NewSignature5', '{F0CCA976-27A3-4808-9DDD-1A6FD50A0D5A}', 0");
8114     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8115
8116     /* published component, machine, dir, no signature, misdbLocatorTypeDirectory */
8117     r = add_complocator_entry(hdb, "'NewSignature6', '{C0ECD96F-7898-4410-9667-194BD8C1B648}', 0");
8118     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8119
8120     /* published component, machine, file, no signature, misdbLocatorTypeFile */
8121     r = add_complocator_entry(hdb, "'NewSignature7', '{DB20F535-9C26-4127-9C2B-CC45A8B51DA1}', 1");
8122     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8123
8124     /* unpublished component, no signature, misdbLocatorTypeDir */
8125     r = add_complocator_entry(hdb, "'NewSignature8', '{FB671D5B-5083-4048-90E0-481C48D8F3A5}', 0");
8126     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8127
8128     /* published component, no signature, dir does not exist misdbLocatorTypeDir */
8129     r = add_complocator_entry(hdb, "'NewSignature9', '{91B7359B-07F2-4221-AA8D-DE102BB87A5F}', 0");
8130     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8131
8132     /* published component, signature w/ ver, misdbLocatorTypeFile */
8133     r = add_complocator_entry(hdb, "'NewSignature10', '{4A2E1B5B-4034-4177-833B-8CC35F1B3EF1}', 1");
8134     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8135
8136     /* published component, signature w/ ver, ver > max, misdbLocatorTypeFile */
8137     r = add_complocator_entry(hdb, "'NewSignature11', '{A204DF48-7346-4635-BA2E-66247DBAC9DF}', 1");
8138     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8139
8140     /* published component, signature w/ ver, sig->name ignored, misdbLocatorTypeFile */
8141     r = add_complocator_entry(hdb, "'NewSignature12', '{EC30CE73-4CF9-4908-BABD-1ED82E1515FD}', 1");
8142     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8143
8144     r = create_signature_table(hdb);
8145     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8146
8147     r = add_signature_entry(hdb, "'NewSignature1', 'FileName1', '', '', '', '', '', '', ''");
8148     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8149
8150     r = add_signature_entry(hdb, "'NewSignature2', 'FileName2', '', '', '', '', '', '', ''");
8151     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8152
8153     r = add_signature_entry(hdb, "'NewSignature3', 'FileName3', '', '', '', '', '', '', ''");
8154     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8155
8156     r = add_signature_entry(hdb, "'NewSignature4', 'FileName4', '', '', '', '', '', '', ''");
8157     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8158
8159     r = add_signature_entry(hdb, "'NewSignature5', 'FileName5', '', '', '', '', '', '', ''");
8160     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8161
8162     r = add_signature_entry(hdb, "'NewSignature10', 'FileName8.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''");
8163     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8164
8165     r = add_signature_entry(hdb, "'NewSignature11', 'FileName9.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''");
8166     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8167
8168     r = add_signature_entry(hdb, "'NewSignature12', 'ignored', '1.1.1.1', '2.1.1.1', '', '', '', '', ''");
8169     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8170
8171     r = package_from_db(hdb, &hpkg);
8172     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
8173     {
8174         skip("Not enough rights to perform tests\n");
8175         goto error;
8176     }
8177     ok(r == ERROR_SUCCESS, "Expected a valid package handle %u\n", r);
8178
8179     r = MsiSetPropertyA(hpkg, "SIGPROP8", "october");
8180     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8181
8182     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
8183
8184     r = MsiDoAction(hpkg, "AppSearch");
8185     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8186
8187     size = MAX_PATH;
8188     sprintf(path, "%s\\FileName1", CURR_DIR);
8189     r = MsiGetPropertyA(hpkg, "SIGPROP1", prop, &size);
8190     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8191     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8192
8193     size = MAX_PATH;
8194     sprintf(path, "%s\\FileName2", CURR_DIR);
8195     r = MsiGetPropertyA(hpkg, "SIGPROP2", prop, &size);
8196     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8197     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8198
8199     size = MAX_PATH;
8200     sprintf(path, "%s\\FileName3", CURR_DIR);
8201     r = MsiGetPropertyA(hpkg, "SIGPROP3", prop, &size);
8202     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8203     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8204
8205     size = MAX_PATH;
8206     sprintf(path, "%s\\FileName4", CURR_DIR);
8207     r = MsiGetPropertyA(hpkg, "SIGPROP4", prop, &size);
8208     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8209     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8210
8211     size = MAX_PATH;
8212     sprintf(path, "%s\\FileName5", CURR_DIR);
8213     r = MsiGetPropertyA(hpkg, "SIGPROP5", prop, &size);
8214     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8215     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8216
8217     size = MAX_PATH;
8218     sprintf(path, "%s\\", CURR_DIR);
8219     r = MsiGetPropertyA(hpkg, "SIGPROP6", prop, &size);
8220     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8221     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8222
8223     size = MAX_PATH;
8224     sprintf(path, "%s\\", CURR_DIR);
8225     r = MsiGetPropertyA(hpkg, "SIGPROP7", prop, &size);
8226     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8227     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8228
8229     size = MAX_PATH;
8230     r = MsiGetPropertyA(hpkg, "SIGPROP8", prop, &size);
8231     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8232     ok(!lstrcmpA(prop, "october"), "Expected \"october\", got \"%s\"\n", prop);
8233
8234     size = MAX_PATH;
8235     r = MsiGetPropertyA(hpkg, "SIGPROP9", prop, &size);
8236     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8237     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8238
8239     size = MAX_PATH;
8240     sprintf(path, "%s\\FileName8.dll", CURR_DIR);
8241     r = MsiGetPropertyA(hpkg, "SIGPROP10", prop, &size);
8242     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8243     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8244
8245     size = MAX_PATH;
8246     r = MsiGetPropertyA(hpkg, "SIGPROP11", prop, &size);
8247     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8248     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8249
8250     size = MAX_PATH;
8251     sprintf(path, "%s\\FileName10.dll", CURR_DIR);
8252     r = MsiGetPropertyA(hpkg, "SIGPROP12", prop, &size);
8253     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8254     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8255
8256     delete_component_path("{A8AE6692-96BA-4198-8399-145D7D1D0D0E}",
8257                           MSIINSTALLCONTEXT_MACHINE, NULL);
8258     delete_component_path("{1D2CE6F3-E81C-4949-AB81-78D7DAD2AF2E}",
8259                           MSIINSTALLCONTEXT_USERUNMANAGED, usersid);
8260     delete_component_path("{19E0B999-85F5-4973-A61B-DBE4D66ECB1D}",
8261                           MSIINSTALLCONTEXT_USERMANAGED, usersid);
8262     delete_component_path("{F0CCA976-27A3-4808-9DDD-1A6FD50A0D5A}",
8263                           MSIINSTALLCONTEXT_MACHINE, NULL);
8264     delete_component_path("{C0ECD96F-7898-4410-9667-194BD8C1B648}",
8265                           MSIINSTALLCONTEXT_MACHINE, NULL);
8266     delete_component_path("{DB20F535-9C26-4127-9C2B-CC45A8B51DA1}",
8267                           MSIINSTALLCONTEXT_MACHINE, NULL);
8268     delete_component_path("{91B7359B-07F2-4221-AA8D-DE102BB87A5F}",
8269                           MSIINSTALLCONTEXT_MACHINE, NULL);
8270     delete_component_path("{4A2E1B5B-4034-4177-833B-8CC35F1B3EF1}",
8271                           MSIINSTALLCONTEXT_MACHINE, NULL);
8272     delete_component_path("{A204DF48-7346-4635-BA2E-66247DBAC9DF}",
8273                           MSIINSTALLCONTEXT_MACHINE, NULL);
8274     delete_component_path("{EC30CE73-4CF9-4908-BABD-1ED82E1515FD}",
8275                           MSIINSTALLCONTEXT_MACHINE, NULL);
8276
8277     MsiCloseHandle(hpkg);
8278
8279 error:
8280     DeleteFileA("FileName1");
8281     DeleteFileA("FileName2");
8282     DeleteFileA("FileName3");
8283     DeleteFileA("FileName4");
8284     DeleteFileA("FileName5");
8285     DeleteFileA("FileName6");
8286     DeleteFileA("FileName7");
8287     DeleteFileA("FileName8.dll");
8288     DeleteFileA("FileName9.dll");
8289     DeleteFileA("FileName10.dll");
8290     DeleteFileA(msifile);
8291     LocalFree(usersid);
8292 }
8293
8294 static void test_appsearch_reglocator(void)
8295 {
8296     MSIHANDLE hpkg, hdb;
8297     CHAR path[MAX_PATH], prop[MAX_PATH];
8298     DWORD binary[2], size, val;
8299     BOOL space, version, is_64bit = sizeof(void *) > sizeof(int);
8300     HKEY hklm, classes, hkcu, users;
8301     LPSTR pathdata, pathvar, ptr;
8302     LPCSTR str;
8303     LONG res;
8304     UINT r, type = 0;
8305     SYSTEM_INFO si;
8306
8307     version = TRUE;
8308     if (!create_file_with_version("test.dll", MAKELONG(2, 1), MAKELONG(4, 3)))
8309         version = FALSE;
8310
8311     DeleteFileA("test.dll");
8312
8313     res = RegCreateKeyA(HKEY_CLASSES_ROOT, "Software\\Wine", &classes);
8314     if (res == ERROR_ACCESS_DENIED)
8315     {
8316         skip("Not enough rights to perform tests\n");
8317         return;
8318     }
8319     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8320
8321     res = RegSetValueExA(classes, "Value1", 0, REG_SZ,
8322                          (const BYTE *)"regszdata", 10);
8323     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8324
8325     res = RegCreateKeyA(HKEY_CURRENT_USER, "Software\\Wine", &hkcu);
8326     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8327
8328     res = RegSetValueExA(hkcu, "Value1", 0, REG_SZ,
8329                          (const BYTE *)"regszdata", 10);
8330     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8331
8332     users = 0;
8333     res = RegCreateKeyA(HKEY_USERS, "S-1-5-18\\Software\\Wine", &users);
8334     ok(res == ERROR_SUCCESS ||
8335        broken(res == ERROR_INVALID_PARAMETER),
8336        "Expected ERROR_SUCCESS, got %d\n", res);
8337
8338     if (res == ERROR_SUCCESS)
8339     {
8340         res = RegSetValueExA(users, "Value1", 0, REG_SZ,
8341                              (const BYTE *)"regszdata", 10);
8342         ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8343     }
8344
8345     res = RegCreateKeyA(HKEY_LOCAL_MACHINE, "Software\\Wine", &hklm);
8346     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8347
8348     res = RegSetValueA(hklm, NULL, REG_SZ, "defvalue", 8);
8349     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8350
8351     res = RegSetValueExA(hklm, "Value1", 0, REG_SZ,
8352                          (const BYTE *)"regszdata", 10);
8353     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8354
8355     val = 42;
8356     res = RegSetValueExA(hklm, "Value2", 0, REG_DWORD,
8357                          (const BYTE *)&val, sizeof(DWORD));
8358     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8359
8360     val = -42;
8361     res = RegSetValueExA(hklm, "Value3", 0, REG_DWORD,
8362                          (const BYTE *)&val, sizeof(DWORD));
8363     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8364
8365     res = RegSetValueExA(hklm, "Value4", 0, REG_EXPAND_SZ,
8366                          (const BYTE *)"%PATH%", 7);
8367     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8368
8369     res = RegSetValueExA(hklm, "Value5", 0, REG_EXPAND_SZ,
8370                          (const BYTE *)"my%NOVAR%", 10);
8371     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8372
8373     res = RegSetValueExA(hklm, "Value6", 0, REG_MULTI_SZ,
8374                          (const BYTE *)"one\0two\0", 9);
8375     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8376
8377     binary[0] = 0x1234abcd;
8378     binary[1] = 0x567890ef;
8379     res = RegSetValueExA(hklm, "Value7", 0, REG_BINARY,
8380                          (const BYTE *)binary, sizeof(binary));
8381     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8382
8383     res = RegSetValueExA(hklm, "Value8", 0, REG_SZ,
8384                          (const BYTE *)"#regszdata", 11);
8385     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8386
8387     create_test_file("FileName1");
8388     sprintf(path, "%s\\FileName1", CURR_DIR);
8389     res = RegSetValueExA(hklm, "Value9", 0, REG_SZ,
8390                          (const BYTE *)path, lstrlenA(path) + 1);
8391     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8392
8393     sprintf(path, "%s\\FileName2", CURR_DIR);
8394     res = RegSetValueExA(hklm, "Value10", 0, REG_SZ,
8395                          (const BYTE *)path, lstrlenA(path) + 1);
8396     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8397
8398     lstrcpyA(path, CURR_DIR);
8399     res = RegSetValueExA(hklm, "Value11", 0, REG_SZ,
8400                          (const BYTE *)path, lstrlenA(path) + 1);
8401     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8402
8403     res = RegSetValueExA(hklm, "Value12", 0, REG_SZ,
8404                          (const BYTE *)"", 1);
8405     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8406
8407     create_file_with_version("FileName3.dll", MAKELONG(2, 1), MAKELONG(4, 3));
8408     sprintf(path, "%s\\FileName3.dll", CURR_DIR);
8409     res = RegSetValueExA(hklm, "Value13", 0, REG_SZ,
8410                          (const BYTE *)path, lstrlenA(path) + 1);
8411     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8412
8413     create_file_with_version("FileName4.dll", MAKELONG(1, 2), MAKELONG(3, 4));
8414     sprintf(path, "%s\\FileName4.dll", CURR_DIR);
8415     res = RegSetValueExA(hklm, "Value14", 0, REG_SZ,
8416                          (const BYTE *)path, lstrlenA(path) + 1);
8417     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8418
8419     create_file_with_version("FileName5.dll", MAKELONG(2, 1), MAKELONG(4, 3));
8420     sprintf(path, "%s\\FileName5.dll", CURR_DIR);
8421     res = RegSetValueExA(hklm, "Value15", 0, REG_SZ,
8422                          (const BYTE *)path, lstrlenA(path) + 1);
8423     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
8424
8425     sprintf(path, "\"%s\\FileName1\" -option", CURR_DIR);
8426     res = RegSetValueExA(hklm, "value16", 0, REG_SZ,
8427                          (const BYTE *)path, lstrlenA(path) + 1);
8428     ok( res == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", res);
8429
8430     space = (strchr(CURR_DIR, ' ')) ? TRUE : FALSE;
8431     sprintf(path, "%s\\FileName1 -option", CURR_DIR);
8432     res = RegSetValueExA(hklm, "value17", 0, REG_SZ,
8433                          (const BYTE *)path, lstrlenA(path) + 1);
8434     ok( res == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", res);
8435
8436     hdb = create_package_db();
8437     ok(hdb, "Expected a valid database handle\n");
8438
8439     r = create_appsearch_table(hdb);
8440     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8441
8442     r = add_appsearch_entry(hdb, "'SIGPROP1', 'NewSignature1'");
8443     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8444
8445     r = add_appsearch_entry(hdb, "'SIGPROP2', 'NewSignature2'");
8446     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8447
8448     r = add_appsearch_entry(hdb, "'SIGPROP3', 'NewSignature3'");
8449     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8450
8451     r = add_appsearch_entry(hdb, "'SIGPROP4', 'NewSignature4'");
8452     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8453
8454     r = add_appsearch_entry(hdb, "'SIGPROP5', 'NewSignature5'");
8455     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8456
8457     r = add_appsearch_entry(hdb, "'SIGPROP6', 'NewSignature6'");
8458     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8459
8460     r = add_appsearch_entry(hdb, "'SIGPROP7', 'NewSignature7'");
8461     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8462
8463     r = add_appsearch_entry(hdb, "'SIGPROP8', 'NewSignature8'");
8464     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8465
8466     r = add_appsearch_entry(hdb, "'SIGPROP9', 'NewSignature9'");
8467     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8468
8469     r = add_appsearch_entry(hdb, "'SIGPROP10', 'NewSignature10'");
8470     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8471
8472     r = add_appsearch_entry(hdb, "'SIGPROP11', 'NewSignature11'");
8473     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8474
8475     r = add_appsearch_entry(hdb, "'SIGPROP12', 'NewSignature12'");
8476     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8477
8478     r = add_appsearch_entry(hdb, "'SIGPROP13', 'NewSignature13'");
8479     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8480
8481     r = add_appsearch_entry(hdb, "'SIGPROP14', 'NewSignature14'");
8482     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8483
8484     r = add_appsearch_entry(hdb, "'SIGPROP15', 'NewSignature15'");
8485     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8486
8487     r = add_appsearch_entry(hdb, "'SIGPROP16', 'NewSignature16'");
8488     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8489
8490     r = add_appsearch_entry(hdb, "'SIGPROP17', 'NewSignature17'");
8491     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8492
8493     r = add_appsearch_entry(hdb, "'SIGPROP18', 'NewSignature18'");
8494     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8495
8496     r = add_appsearch_entry(hdb, "'SIGPROP19', 'NewSignature19'");
8497     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8498
8499     r = add_appsearch_entry(hdb, "'SIGPROP20', 'NewSignature20'");
8500     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8501
8502     r = add_appsearch_entry(hdb, "'SIGPROP21', 'NewSignature21'");
8503     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8504
8505     r = add_appsearch_entry(hdb, "'SIGPROP22', 'NewSignature22'");
8506     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8507
8508     r = add_appsearch_entry(hdb, "'SIGPROP23', 'NewSignature23'");
8509     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8510
8511     r = add_appsearch_entry(hdb, "'SIGPROP24', 'NewSignature24'");
8512     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8513
8514     r = add_appsearch_entry(hdb, "'SIGPROP25', 'NewSignature25'");
8515     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8516
8517     r = add_appsearch_entry(hdb, "'SIGPROP26', 'NewSignature26'");
8518     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8519
8520     r = add_appsearch_entry(hdb, "'SIGPROP27', 'NewSignature27'");
8521     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8522
8523     r = add_appsearch_entry(hdb, "'SIGPROP28', 'NewSignature28'");
8524     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8525
8526     r = add_appsearch_entry(hdb, "'SIGPROP29', 'NewSignature29'");
8527     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8528
8529     r = add_appsearch_entry(hdb, "'SIGPROP30', 'NewSignature30'");
8530     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8531
8532     r = create_reglocator_table(hdb);
8533     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8534
8535     type = msidbLocatorTypeRawValue;
8536     if (is_64bit)
8537         type |= msidbLocatorType64bit;
8538
8539     /* HKLM, msidbLocatorTypeRawValue, REG_SZ */
8540     r = add_reglocator_entry(hdb, "NewSignature1", 2, "Software\\Wine", "Value1", type);
8541     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8542
8543     /* HKLM, msidbLocatorTypeRawValue, positive DWORD */
8544     r = add_reglocator_entry(hdb, "NewSignature2", 2, "Software\\Wine", "Value2", type);
8545     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8546
8547     /* HKLM, msidbLocatorTypeRawValue, negative DWORD */
8548     r = add_reglocator_entry(hdb, "NewSignature3", 2, "Software\\Wine", "Value3", type);
8549     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8550
8551     /* HKLM, msidbLocatorTypeRawValue, REG_EXPAND_SZ */
8552     r = add_reglocator_entry(hdb, "NewSignature4", 2, "Software\\Wine", "Value4", type);
8553     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8554
8555     /* HKLM, msidbLocatorTypeRawValue, REG_EXPAND_SZ */
8556     r = add_reglocator_entry(hdb, "NewSignature5", 2, "Software\\Wine", "Value5", type);
8557     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8558
8559     /* HKLM, msidbLocatorTypeRawValue, REG_MULTI_SZ */
8560     r = add_reglocator_entry(hdb, "NewSignature6", 2, "Software\\Wine", "Value6", type);
8561     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8562
8563     /* HKLM, msidbLocatorTypeRawValue, REG_BINARY */
8564     r = add_reglocator_entry(hdb, "NewSignature7", 2, "Software\\Wine", "Value7", type);
8565     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8566
8567     /* HKLM, msidbLocatorTypeRawValue, REG_SZ first char is # */
8568     r = add_reglocator_entry(hdb, "NewSignature8", 2, "Software\\Wine", "Value8", type);
8569     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8570
8571     type = msidbLocatorTypeFileName;
8572     if (is_64bit)
8573         type |= msidbLocatorType64bit;
8574
8575     /* HKLM, msidbLocatorTypeFileName, signature, file exists */
8576     r = add_reglocator_entry(hdb, "NewSignature9", 2, "Software\\Wine", "Value9", type);
8577     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8578
8579     /* HKLM, msidbLocatorTypeFileName, signature, file does not exist */
8580     r = add_reglocator_entry(hdb, "NewSignature10", 2, "Software\\Wine", "Value10", type);
8581     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8582
8583     /* HKLM, msidbLocatorTypeFileName, no signature */
8584     r = add_reglocator_entry(hdb, "NewSignature11", 2, "Software\\Wine", "Value9", type);
8585     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8586
8587     type = msidbLocatorTypeDirectory;
8588     if (is_64bit)
8589         type |= msidbLocatorType64bit;
8590
8591     /* HKLM, msidbLocatorTypeDirectory, no signature, file exists */
8592     r = add_reglocator_entry(hdb, "NewSignature12", 2, "Software\\Wine", "Value9", type);
8593     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8594
8595     /* HKLM, msidbLocatorTypeDirectory, no signature, directory exists */
8596     r = add_reglocator_entry(hdb, "NewSignature13", 2, "Software\\Wine", "Value11", type);
8597     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8598
8599     /* HKLM, msidbLocatorTypeDirectory, signature, file exists */
8600     r = add_reglocator_entry(hdb, "NewSignature14", 2, "Software\\Wine", "Value9", type);
8601     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8602
8603     type = msidbLocatorTypeRawValue;
8604     if (is_64bit)
8605         type |= msidbLocatorType64bit;
8606
8607     /* HKCR, msidbLocatorTypeRawValue, REG_SZ */
8608     r = add_reglocator_entry(hdb, "NewSignature15", 0, "Software\\Wine", "Value1", type);
8609     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8610
8611     /* HKCU, msidbLocatorTypeRawValue, REG_SZ */
8612     r = add_reglocator_entry(hdb, "NewSignature16", 1, "Software\\Wine", "Value1", type);
8613     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8614
8615     /* HKU, msidbLocatorTypeRawValue, REG_SZ */
8616     r = add_reglocator_entry(hdb, "NewSignature17", 3, "S-1-5-18\\Software\\Wine", "Value1", type);
8617     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8618
8619     /* HKLM, msidbLocatorTypeRawValue, REG_SZ, NULL Name */
8620     r = add_reglocator_entry(hdb, "NewSignature18", 2, "Software\\Wine", "", type);
8621     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8622
8623     /* HKLM, msidbLocatorTypeRawValue, REG_SZ, key does not exist */
8624     r = add_reglocator_entry(hdb, "NewSignature19", 2, "Software\\IDontExist", "", type);
8625     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8626
8627     /* HKLM, msidbLocatorTypeRawValue, REG_SZ, value is empty */
8628     r = add_reglocator_entry(hdb, "NewSignature20", 2, "Software\\Wine", "Value12", type);
8629     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8630
8631     type = msidbLocatorTypeFileName;
8632     if (is_64bit)
8633         type |= msidbLocatorType64bit;
8634
8635     /* HKLM, msidbLocatorTypeFileName, signature, file exists w/ version */
8636     r = add_reglocator_entry(hdb, "NewSignature21", 2, "Software\\Wine", "Value13", type);
8637     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8638
8639     /* HKLM, msidbLocatorTypeFileName, file exists w/ version, version > max */
8640     r = add_reglocator_entry(hdb, "NewSignature22", 2, "Software\\Wine", "Value14", type);
8641     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8642
8643     /* HKLM, msidbLocatorTypeFileName, file exists w/ version, sig->name ignored */
8644     r = add_reglocator_entry(hdb, "NewSignature23", 2, "Software\\Wine", "Value15", type);
8645     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8646
8647     /* HKLM, msidbLocatorTypeFileName, no signature, directory exists */
8648     r = add_reglocator_entry(hdb, "NewSignature24", 2, "Software\\Wine", "Value11", type);
8649     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8650
8651     /* HKLM, msidbLocatorTypeFileName, no signature, file does not exist */
8652     r = add_reglocator_entry(hdb, "NewSignature25", 2, "Software\\Wine", "Value10", type);
8653     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8654
8655     type = msidbLocatorTypeDirectory;
8656     if (is_64bit)
8657         type |= msidbLocatorType64bit;
8658
8659     /* HKLM, msidbLocatorTypeDirectory, signature, directory exists */
8660     r = add_reglocator_entry(hdb, "NewSignature26", 2, "Software\\Wine", "Value11", type);
8661     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8662
8663     /* HKLM, msidbLocatorTypeDirectory, signature, file does not exist */
8664     r = add_reglocator_entry(hdb, "NewSignature27", 2, "Software\\Wine", "Value10", type);
8665     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8666
8667     /* HKLM, msidbLocatorTypeDirectory, no signature, file does not exist */
8668     r = add_reglocator_entry(hdb, "NewSignature28", 2, "Software\\Wine", "Value10", type);
8669     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8670
8671     type = msidbLocatorTypeFileName;
8672     if (is_64bit)
8673         type |= msidbLocatorType64bit;
8674
8675     /* HKLM, msidbLocatorTypeFile, file exists, in quotes */
8676     r = add_reglocator_entry(hdb, "NewSignature29", 2, "Software\\Wine", "Value16", type);
8677     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8678
8679     /* HKLM, msidbLocatorTypeFile, file exists, no quotes */
8680     r = add_reglocator_entry(hdb, "NewSignature30", 2, "Software\\Wine", "Value17", type);
8681     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8682
8683     r = create_signature_table(hdb);
8684     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8685
8686     str = "'NewSignature9', 'FileName1', '', '', '', '', '', '', ''";
8687     r = add_signature_entry(hdb, str);
8688     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8689
8690     str = "'NewSignature10', 'FileName2', '', '', '', '', '', '', ''";
8691     r = add_signature_entry(hdb, str);
8692     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8693
8694     str = "'NewSignature14', 'FileName1', '', '', '', '', '', '', ''";
8695     r = add_signature_entry(hdb, str);
8696     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8697
8698     str = "'NewSignature21', 'FileName3.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''";
8699     r = add_signature_entry(hdb, str);
8700     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8701
8702     str = "'NewSignature22', 'FileName4.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''";
8703     r = add_signature_entry(hdb, str);
8704     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8705
8706     str = "'NewSignature23', 'ignored', '1.1.1.1', '2.1.1.1', '', '', '', '', ''";
8707     r = add_signature_entry(hdb, str);
8708     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8709
8710     ptr = strrchr(CURR_DIR, '\\') + 1;
8711     sprintf(path, "'NewSignature26', '%s', '', '', '', '', '', '', ''", ptr);
8712     r = add_signature_entry(hdb, path);
8713     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8714
8715     str = "'NewSignature27', 'FileName2', '', '', '', '', '', '', ''";
8716     r = add_signature_entry(hdb, str);
8717     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8718
8719     str = "'NewSignature29', 'FileName1', '', '', '', '', '', '', ''";
8720     r = add_signature_entry(hdb, str);
8721     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8722
8723     str = "'NewSignature30', 'FileName1', '', '', '', '', '', '', ''";
8724     r = add_signature_entry(hdb, str);
8725     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8726
8727     r = package_from_db(hdb, &hpkg);
8728     ok(r == ERROR_SUCCESS, "Expected a valid package handle %u\n", r);
8729
8730     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
8731
8732     r = MsiDoAction(hpkg, "AppSearch");
8733     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8734
8735     size = MAX_PATH;
8736     r = MsiGetPropertyA(hpkg, "SIGPROP1", prop, &size);
8737     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8738     ok(!lstrcmpA(prop, "regszdata"),
8739        "Expected \"regszdata\", got \"%s\"\n", prop);
8740
8741     size = MAX_PATH;
8742     r = MsiGetPropertyA(hpkg, "SIGPROP2", prop, &size);
8743     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8744     ok(!lstrcmpA(prop, "#42"), "Expected \"#42\", got \"%s\"\n", prop);
8745
8746     size = MAX_PATH;
8747     r = MsiGetPropertyA(hpkg, "SIGPROP3", prop, &size);
8748     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8749     ok(!lstrcmpA(prop, "#-42"), "Expected \"#-42\", got \"%s\"\n", prop);
8750
8751     memset(&si, 0, sizeof(si));
8752     if (pGetNativeSystemInfo) pGetNativeSystemInfo(&si);
8753
8754     if (S(U(si)).wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
8755     {
8756         size = ExpandEnvironmentStringsA("%PATH%", NULL, 0);
8757         pathvar = HeapAlloc(GetProcessHeap(), 0, size);
8758         ExpandEnvironmentStringsA("%PATH%", pathvar, size);
8759
8760         size = 0;
8761         r = MsiGetPropertyA(hpkg, "SIGPROP4", NULL, &size);
8762         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8763
8764         pathdata = HeapAlloc(GetProcessHeap(), 0, ++size);
8765         r = MsiGetPropertyA(hpkg, "SIGPROP4", pathdata, &size);
8766         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8767         ok(!lstrcmpA(pathdata, pathvar),
8768             "Expected \"%s\", got \"%s\"\n", pathvar, pathdata);
8769
8770         HeapFree(GetProcessHeap(), 0, pathvar);
8771         HeapFree(GetProcessHeap(), 0, pathdata);
8772     }
8773
8774     size = MAX_PATH;
8775     r = MsiGetPropertyA(hpkg, "SIGPROP5", prop, &size);
8776     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8777     ok(!lstrcmpA(prop,
8778        "my%NOVAR%"), "Expected \"my%%NOVAR%%\", got \"%s\"\n", prop);
8779
8780     size = MAX_PATH;
8781     r = MsiGetPropertyA(hpkg, "SIGPROP6", prop, &size);
8782     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8783     todo_wine
8784     {
8785         ok(!memcmp(prop, "\0one\0two\0\0", 10),
8786            "Expected \"\\0one\\0two\\0\\0\"\n");
8787     }
8788
8789     size = MAX_PATH;
8790     lstrcpyA(path, "#xCDAB3412EF907856");
8791     r = MsiGetPropertyA(hpkg, "SIGPROP7", prop, &size);
8792     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8793     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8794
8795     size = MAX_PATH;
8796     r = MsiGetPropertyA(hpkg, "SIGPROP8", prop, &size);
8797     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8798     ok(!lstrcmpA(prop, "##regszdata"),
8799        "Expected \"##regszdata\", got \"%s\"\n", prop);
8800
8801     size = MAX_PATH;
8802     sprintf(path, "%s\\FileName1", CURR_DIR);
8803     r = MsiGetPropertyA(hpkg, "SIGPROP9", prop, &size);
8804     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8805     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8806
8807     size = MAX_PATH;
8808     r = MsiGetPropertyA(hpkg, "SIGPROP10", prop, &size);
8809     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8810     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8811
8812     size = MAX_PATH;
8813     sprintf(path, "%s\\", CURR_DIR);
8814     r = MsiGetPropertyA(hpkg, "SIGPROP11", prop, &size);
8815     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8816     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8817
8818     size = MAX_PATH;
8819     r = MsiGetPropertyA(hpkg, "SIGPROP12", prop, &size);
8820     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8821     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8822
8823     size = MAX_PATH;
8824     sprintf(path, "%s\\", CURR_DIR);
8825     r = MsiGetPropertyA(hpkg, "SIGPROP13", prop, &size);
8826     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8827     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8828
8829     size = MAX_PATH;
8830     r = MsiGetPropertyA(hpkg, "SIGPROP14", prop, &size);
8831     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8832     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8833
8834     size = MAX_PATH;
8835     r = MsiGetPropertyA(hpkg, "SIGPROP15", prop, &size);
8836     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8837     ok(!lstrcmpA(prop, "regszdata"),
8838        "Expected \"regszdata\", got \"%s\"\n", prop);
8839
8840     size = MAX_PATH;
8841     r = MsiGetPropertyA(hpkg, "SIGPROP16", prop, &size);
8842     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8843     ok(!lstrcmpA(prop, "regszdata"),
8844        "Expected \"regszdata\", got \"%s\"\n", prop);
8845
8846     if (users)
8847     {
8848         size = MAX_PATH;
8849         r = MsiGetPropertyA(hpkg, "SIGPROP17", prop, &size);
8850         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8851         ok(!lstrcmpA(prop, "regszdata"),
8852            "Expected \"regszdata\", got \"%s\"\n", prop);
8853     }
8854
8855     size = MAX_PATH;
8856     r = MsiGetPropertyA(hpkg, "SIGPROP18", prop, &size);
8857     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8858     ok(!lstrcmpA(prop, "defvalue"),
8859        "Expected \"defvalue\", got \"%s\"\n", prop);
8860
8861     size = MAX_PATH;
8862     r = MsiGetPropertyA(hpkg, "SIGPROP19", prop, &size);
8863     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8864     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8865
8866     size = MAX_PATH;
8867     r = MsiGetPropertyA(hpkg, "SIGPROP20", prop, &size);
8868     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8869     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8870
8871     if (version)
8872     {
8873         size = MAX_PATH;
8874         sprintf(path, "%s\\FileName3.dll", CURR_DIR);
8875         r = MsiGetPropertyA(hpkg, "SIGPROP21", prop, &size);
8876         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8877         ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8878
8879         size = MAX_PATH;
8880         r = MsiGetPropertyA(hpkg, "SIGPROP22", prop, &size);
8881         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8882         ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8883
8884         size = MAX_PATH;
8885         sprintf(path, "%s\\FileName5.dll", CURR_DIR);
8886         r = MsiGetPropertyA(hpkg, "SIGPROP23", prop, &size);
8887         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8888         ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8889     }
8890
8891     size = MAX_PATH;
8892     lstrcpyA(path, CURR_DIR);
8893     ptr = strrchr(path, '\\') + 1;
8894     *ptr = '\0';
8895     r = MsiGetPropertyA(hpkg, "SIGPROP24", prop, &size);
8896     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8897     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8898
8899     size = MAX_PATH;
8900     sprintf(path, "%s\\", CURR_DIR);
8901     r = MsiGetPropertyA(hpkg, "SIGPROP25", prop, &size);
8902     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8903     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8904
8905     size = MAX_PATH;
8906     r = MsiGetPropertyA(hpkg, "SIGPROP26", prop, &size);
8907     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8908     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8909
8910     size = MAX_PATH;
8911     r = MsiGetPropertyA(hpkg, "SIGPROP27", prop, &size);
8912     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8913     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8914
8915     size = MAX_PATH;
8916     r = MsiGetPropertyA(hpkg, "SIGPROP28", prop, &size);
8917     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8918     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8919
8920     size = MAX_PATH;
8921     sprintf(path, "%s\\FileName1", CURR_DIR);
8922     r = MsiGetPropertyA(hpkg, "SIGPROP29", prop, &size);
8923     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8924     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8925
8926     size = MAX_PATH;
8927     sprintf(path, "%s\\FileName1", CURR_DIR);
8928     r = MsiGetPropertyA(hpkg, "SIGPROP30", prop, &size);
8929     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
8930     if (space)
8931         ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
8932     else
8933         todo_wine ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
8934
8935     RegSetValueA(hklm, NULL, REG_SZ, "", 0);
8936     RegDeleteValueA(hklm, "Value1");
8937     RegDeleteValueA(hklm, "Value2");
8938     RegDeleteValueA(hklm, "Value3");
8939     RegDeleteValueA(hklm, "Value4");
8940     RegDeleteValueA(hklm, "Value5");
8941     RegDeleteValueA(hklm, "Value6");
8942     RegDeleteValueA(hklm, "Value7");
8943     RegDeleteValueA(hklm, "Value8");
8944     RegDeleteValueA(hklm, "Value9");
8945     RegDeleteValueA(hklm, "Value10");
8946     RegDeleteValueA(hklm, "Value11");
8947     RegDeleteValueA(hklm, "Value12");
8948     RegDeleteValueA(hklm, "Value13");
8949     RegDeleteValueA(hklm, "Value14");
8950     RegDeleteValueA(hklm, "Value15");
8951     RegDeleteValueA(hklm, "Value16");
8952     RegDeleteValueA(hklm, "Value17");
8953     RegDeleteKey(hklm, "");
8954     RegCloseKey(hklm);
8955
8956     RegDeleteValueA(classes, "Value1");
8957     RegDeleteKeyA(classes, "");
8958     RegCloseKey(classes);
8959
8960     RegDeleteValueA(hkcu, "Value1");
8961     RegDeleteKeyA(hkcu, "");
8962     RegCloseKey(hkcu);
8963
8964     RegDeleteValueA(users, "Value1");
8965     RegDeleteKeyA(users, "");
8966     RegCloseKey(users);
8967
8968     DeleteFileA("FileName1");
8969     DeleteFileA("FileName3.dll");
8970     DeleteFileA("FileName4.dll");
8971     DeleteFileA("FileName5.dll");
8972     MsiCloseHandle(hpkg);
8973     DeleteFileA(msifile);
8974 }
8975
8976 static void delete_win_ini(LPCSTR file)
8977 {
8978     CHAR path[MAX_PATH];
8979
8980     GetWindowsDirectoryA(path, MAX_PATH);
8981     lstrcatA(path, "\\");
8982     lstrcatA(path, file);
8983
8984     DeleteFileA(path);
8985 }
8986
8987 static void test_appsearch_inilocator(void)
8988 {
8989     MSIHANDLE hpkg, hdb;
8990     CHAR path[MAX_PATH];
8991     CHAR prop[MAX_PATH];
8992     BOOL version;
8993     LPCSTR str;
8994     LPSTR ptr;
8995     DWORD size;
8996     UINT r;
8997
8998     version = TRUE;
8999     if (!create_file_with_version("test.dll", MAKELONG(2, 1), MAKELONG(4, 3)))
9000         version = FALSE;
9001
9002     DeleteFileA("test.dll");
9003
9004     WritePrivateProfileStringA("Section", "Key", "keydata,field2", "IniFile.ini");
9005
9006     create_test_file("FileName1");
9007     sprintf(path, "%s\\FileName1", CURR_DIR);
9008     WritePrivateProfileStringA("Section", "Key2", path, "IniFile.ini");
9009
9010     WritePrivateProfileStringA("Section", "Key3", CURR_DIR, "IniFile.ini");
9011
9012     sprintf(path, "%s\\IDontExist", CURR_DIR);
9013     WritePrivateProfileStringA("Section", "Key4", path, "IniFile.ini");
9014
9015     create_file_with_version("FileName2.dll", MAKELONG(2, 1), MAKELONG(4, 3));
9016     sprintf(path, "%s\\FileName2.dll", CURR_DIR);
9017     WritePrivateProfileStringA("Section", "Key5", path, "IniFile.ini");
9018
9019     create_file_with_version("FileName3.dll", MAKELONG(1, 2), MAKELONG(3, 4));
9020     sprintf(path, "%s\\FileName3.dll", CURR_DIR);
9021     WritePrivateProfileStringA("Section", "Key6", path, "IniFile.ini");
9022
9023     create_file_with_version("FileName4.dll", MAKELONG(2, 1), MAKELONG(4, 3));
9024     sprintf(path, "%s\\FileName4.dll", CURR_DIR);
9025     WritePrivateProfileStringA("Section", "Key7", path, "IniFile.ini");
9026
9027     hdb = create_package_db();
9028     ok(hdb, "Expected a valid database handle\n");
9029
9030     r = create_appsearch_table(hdb);
9031     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9032
9033     r = add_appsearch_entry(hdb, "'SIGPROP1', 'NewSignature1'");
9034     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9035
9036     r = add_appsearch_entry(hdb, "'SIGPROP2', 'NewSignature2'");
9037     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9038
9039     r = add_appsearch_entry(hdb, "'SIGPROP3', 'NewSignature3'");
9040     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9041
9042     r = add_appsearch_entry(hdb, "'SIGPROP4', 'NewSignature4'");
9043     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9044
9045     r = add_appsearch_entry(hdb, "'SIGPROP5', 'NewSignature5'");
9046     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9047
9048     r = add_appsearch_entry(hdb, "'SIGPROP6', 'NewSignature6'");
9049     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9050
9051     r = add_appsearch_entry(hdb, "'SIGPROP7', 'NewSignature7'");
9052     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9053
9054     r = add_appsearch_entry(hdb, "'SIGPROP8', 'NewSignature8'");
9055     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9056
9057     r = add_appsearch_entry(hdb, "'SIGPROP9', 'NewSignature9'");
9058     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9059
9060     r = add_appsearch_entry(hdb, "'SIGPROP10', 'NewSignature10'");
9061     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9062
9063     r = add_appsearch_entry(hdb, "'SIGPROP11', 'NewSignature11'");
9064     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9065
9066     r = add_appsearch_entry(hdb, "'SIGPROP12', 'NewSignature12'");
9067     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9068
9069     r = create_inilocator_table(hdb);
9070     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9071
9072     /* msidbLocatorTypeRawValue, field 1 */
9073     str = "'NewSignature1', 'IniFile.ini', 'Section', 'Key', 1, 2";
9074     r = add_inilocator_entry(hdb, str);
9075     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9076
9077     /* msidbLocatorTypeRawValue, field 2 */
9078     str = "'NewSignature2', 'IniFile.ini', 'Section', 'Key', 2, 2";
9079     r = add_inilocator_entry(hdb, str);
9080     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9081
9082     /* msidbLocatorTypeRawValue, entire field */
9083     str = "'NewSignature3', 'IniFile.ini', 'Section', 'Key', 0, 2";
9084     r = add_inilocator_entry(hdb, str);
9085     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9086
9087     /* msidbLocatorTypeFile */
9088     str = "'NewSignature4', 'IniFile.ini', 'Section', 'Key2', 1, 1";
9089     r = add_inilocator_entry(hdb, str);
9090     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9091
9092     /* msidbLocatorTypeDirectory, file */
9093     str = "'NewSignature5', 'IniFile.ini', 'Section', 'Key2', 1, 0";
9094     r = add_inilocator_entry(hdb, str);
9095     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9096
9097     /* msidbLocatorTypeDirectory, directory */
9098     str = "'NewSignature6', 'IniFile.ini', 'Section', 'Key3', 1, 0";
9099     r = add_inilocator_entry(hdb, str);
9100     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9101
9102     /* msidbLocatorTypeFile, file, no signature */
9103     str = "'NewSignature7', 'IniFile.ini', 'Section', 'Key2', 1, 1";
9104     r = add_inilocator_entry(hdb, str);
9105     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9106
9107     /* msidbLocatorTypeFile, dir, no signature */
9108     str = "'NewSignature8', 'IniFile.ini', 'Section', 'Key3', 1, 1";
9109     r = add_inilocator_entry(hdb, str);
9110     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9111
9112     /* msidbLocatorTypeFile, file does not exist */
9113     str = "'NewSignature9', 'IniFile.ini', 'Section', 'Key4', 1, 1";
9114     r = add_inilocator_entry(hdb, str);
9115     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9116
9117     /* msidbLocatorTypeFile, signature with version */
9118     str = "'NewSignature10', 'IniFile.ini', 'Section', 'Key5', 1, 1";
9119     r = add_inilocator_entry(hdb, str);
9120     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9121
9122     /* msidbLocatorTypeFile, signature with version, ver > max */
9123     str = "'NewSignature11', 'IniFile.ini', 'Section', 'Key6', 1, 1";
9124     r = add_inilocator_entry(hdb, str);
9125     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9126
9127     /* msidbLocatorTypeFile, signature with version, sig->name ignored */
9128     str = "'NewSignature12', 'IniFile.ini', 'Section', 'Key7', 1, 1";
9129     r = add_inilocator_entry(hdb, str);
9130     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9131
9132     r = create_signature_table(hdb);
9133     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9134
9135     r = add_signature_entry(hdb, "'NewSignature4', 'FileName1', '', '', '', '', '', '', ''");
9136     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9137
9138     r = add_signature_entry(hdb, "'NewSignature9', 'IDontExist', '', '', '', '', '', '', ''");
9139     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9140
9141     r = add_signature_entry(hdb, "'NewSignature10', 'FileName2.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''");
9142     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9143
9144     r = add_signature_entry(hdb, "'NewSignature11', 'FileName3.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''");
9145     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9146
9147     r = add_signature_entry(hdb, "'NewSignature12', 'ignored', '1.1.1.1', '2.1.1.1', '', '', '', '', ''");
9148     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9149
9150     r = package_from_db(hdb, &hpkg);
9151     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
9152     {
9153         skip("Not enough rights to perform tests\n");
9154         goto error;
9155     }
9156     ok(r == ERROR_SUCCESS, "Expected a valid package handle %u\n", r);
9157
9158     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
9159
9160     r = MsiDoAction(hpkg, "AppSearch");
9161     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9162
9163     size = MAX_PATH;
9164     r = MsiGetPropertyA(hpkg, "SIGPROP1", prop, &size);
9165     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9166     ok(!lstrcmpA(prop, "keydata"), "Expected \"keydata\", got \"%s\"\n", prop);
9167
9168     size = MAX_PATH;
9169     r = MsiGetPropertyA(hpkg, "SIGPROP2", prop, &size);
9170     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9171     ok(!lstrcmpA(prop, "field2"), "Expected \"field2\", got \"%s\"\n", prop);
9172
9173     size = MAX_PATH;
9174     r = MsiGetPropertyA(hpkg, "SIGPROP3", prop, &size);
9175     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9176     ok(!lstrcmpA(prop, "keydata,field2"),
9177        "Expected \"keydata,field2\", got \"%s\"\n", prop);
9178
9179     size = MAX_PATH;
9180     sprintf(path, "%s\\FileName1", CURR_DIR);
9181     r = MsiGetPropertyA(hpkg, "SIGPROP4", prop, &size);
9182     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9183     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9184
9185     size = MAX_PATH;
9186     r = MsiGetPropertyA(hpkg, "SIGPROP5", prop, &size);
9187     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9188     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
9189
9190     size = MAX_PATH;
9191     sprintf(path, "%s\\", CURR_DIR);
9192     r = MsiGetPropertyA(hpkg, "SIGPROP6", prop, &size);
9193     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9194     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9195
9196     size = MAX_PATH;
9197     sprintf(path, "%s\\", CURR_DIR);
9198     r = MsiGetPropertyA(hpkg, "SIGPROP7", prop, &size);
9199     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9200     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9201
9202     size = MAX_PATH;
9203     lstrcpyA(path, CURR_DIR);
9204     ptr = strrchr(path, '\\');
9205     *(ptr + 1) = '\0';
9206     r = MsiGetPropertyA(hpkg, "SIGPROP8", prop, &size);
9207     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9208     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9209
9210     size = MAX_PATH;
9211     r = MsiGetPropertyA(hpkg, "SIGPROP9", prop, &size);
9212     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9213     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
9214
9215     if (version)
9216     {
9217         size = MAX_PATH;
9218         sprintf(path, "%s\\FileName2.dll", CURR_DIR);
9219         r = MsiGetPropertyA(hpkg, "SIGPROP10", prop, &size);
9220         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9221         ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9222
9223         size = MAX_PATH;
9224         r = MsiGetPropertyA(hpkg, "SIGPROP11", prop, &size);
9225         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9226         ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
9227
9228         size = MAX_PATH;
9229         sprintf(path, "%s\\FileName4.dll", CURR_DIR);
9230         r = MsiGetPropertyA(hpkg, "SIGPROP12", prop, &size);
9231         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9232         ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9233     }
9234
9235     MsiCloseHandle(hpkg);
9236
9237 error:
9238     delete_win_ini("IniFile.ini");
9239     DeleteFileA("FileName1");
9240     DeleteFileA("FileName2.dll");
9241     DeleteFileA("FileName3.dll");
9242     DeleteFileA("FileName4.dll");
9243     DeleteFileA(msifile);
9244 }
9245
9246 /*
9247  * MSI AppSearch action on DrLocator table always returns absolute paths.
9248  * If a relative path was set, it returns the first absolute path that
9249  * matches or an empty string if it didn't find anything.
9250  * This helper function replicates this behaviour.
9251  */
9252 static void search_absolute_directory(LPSTR absolute, LPCSTR relative)
9253 {
9254     int i, size;
9255     DWORD attr, drives;
9256
9257     size = lstrlenA(relative);
9258     drives = GetLogicalDrives();
9259     lstrcpyA(absolute, "A:\\");
9260     for (i = 0; i < 26; absolute[0] = '\0', i++)
9261     {
9262         if (!(drives & (1 << i)))
9263             continue;
9264
9265         absolute[0] = 'A' + i;
9266         if (GetDriveType(absolute) != DRIVE_FIXED)
9267             continue;
9268
9269         lstrcpynA(absolute + 3, relative, size + 1);
9270         attr = GetFileAttributesA(absolute);
9271         if (attr != INVALID_FILE_ATTRIBUTES &&
9272             (attr & FILE_ATTRIBUTE_DIRECTORY))
9273         {
9274             if (absolute[3 + size - 1] != '\\')
9275                 lstrcatA(absolute, "\\");
9276             break;
9277         }
9278         absolute[3] = '\0';
9279     }
9280 }
9281
9282 static void test_appsearch_drlocator(void)
9283 {
9284     MSIHANDLE hpkg, hdb;
9285     CHAR path[MAX_PATH];
9286     CHAR prop[MAX_PATH];
9287     BOOL version;
9288     LPCSTR str;
9289     DWORD size;
9290     UINT r;
9291
9292     version = TRUE;
9293     if (!create_file_with_version("test.dll", MAKELONG(2, 1), MAKELONG(4, 3)))
9294         version = FALSE;
9295
9296     DeleteFileA("test.dll");
9297
9298     create_test_file("FileName1");
9299     CreateDirectoryA("one", NULL);
9300     CreateDirectoryA("one\\two", NULL);
9301     CreateDirectoryA("one\\two\\three", NULL);
9302     create_test_file("one\\two\\three\\FileName2");
9303     CreateDirectoryA("another", NULL);
9304     create_file_with_version("FileName3.dll", MAKELONG(2, 1), MAKELONG(4, 3));
9305     create_file_with_version("FileName4.dll", MAKELONG(1, 2), MAKELONG(3, 4));
9306     create_file_with_version("FileName5.dll", MAKELONG(2, 1), MAKELONG(4, 3));
9307
9308     hdb = create_package_db();
9309     ok(hdb, "Expected a valid database handle\n");
9310
9311     r = create_appsearch_table(hdb);
9312     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9313
9314     r = add_appsearch_entry(hdb, "'SIGPROP1', 'NewSignature1'");
9315     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9316
9317     r = add_appsearch_entry(hdb, "'SIGPROP2', 'NewSignature2'");
9318     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9319
9320     r = add_appsearch_entry(hdb, "'SIGPROP3', 'NewSignature3'");
9321     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9322
9323     r = add_appsearch_entry(hdb, "'SIGPROP4', 'NewSignature4'");
9324     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9325
9326     r = add_appsearch_entry(hdb, "'SIGPROP5', 'NewSignature5'");
9327     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9328
9329     r = add_appsearch_entry(hdb, "'SIGPROP6', 'NewSignature6'");
9330     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9331
9332     r = add_appsearch_entry(hdb, "'SIGPROP7', 'NewSignature7'");
9333     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9334
9335     r = add_appsearch_entry(hdb, "'SIGPROP8', 'NewSignature8'");
9336     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9337
9338     r = add_appsearch_entry(hdb, "'SIGPROP9', 'NewSignature9'");
9339     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9340
9341     r = add_appsearch_entry(hdb, "'SIGPROP10', 'NewSignature10'");
9342     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9343
9344     r = add_appsearch_entry(hdb, "'SIGPROP11', 'NewSignature11'");
9345     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9346
9347     r = add_appsearch_entry(hdb, "'SIGPROP13', 'NewSignature13'");
9348     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9349
9350     r = create_drlocator_table(hdb);
9351     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9352
9353     /* no parent, full path, depth 0, signature */
9354     sprintf(path, "'NewSignature1', '', '%s', 0", CURR_DIR);
9355     r = add_drlocator_entry(hdb, path);
9356     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9357
9358     /* no parent, full path, depth 0, no signature */
9359     sprintf(path, "'NewSignature2', '', '%s', 0", CURR_DIR);
9360     r = add_drlocator_entry(hdb, path);
9361     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9362
9363     /* no parent, relative path, depth 0, no signature */
9364     sprintf(path, "'NewSignature3', '', '%s', 0", CURR_DIR + 3);
9365     r = add_drlocator_entry(hdb, path);
9366     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9367
9368     /* no parent, full path, depth 2, signature */
9369     sprintf(path, "'NewSignature4', '', '%s', 2", CURR_DIR);
9370     r = add_drlocator_entry(hdb, path);
9371     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9372
9373     /* no parent, full path, depth 3, signature */
9374     sprintf(path, "'NewSignature5', '', '%s', 3", CURR_DIR);
9375     r = add_drlocator_entry(hdb, path);
9376     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9377
9378     /* no parent, full path, depth 1, signature is dir */
9379     sprintf(path, "'NewSignature6', '', '%s', 1", CURR_DIR);
9380     r = add_drlocator_entry(hdb, path);
9381     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9382
9383     /* parent is in DrLocator, relative path, depth 0, signature */
9384     sprintf(path, "'NewSignature7', 'NewSignature1', 'one\\two\\three', 1");
9385     r = add_drlocator_entry(hdb, path);
9386     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9387
9388     /* no parent, full path, depth 0, signature w/ version */
9389     sprintf(path, "'NewSignature8', '', '%s', 0", CURR_DIR);
9390     r = add_drlocator_entry(hdb, path);
9391     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9392
9393     /* no parent, full path, depth 0, signature w/ version, ver > max */
9394     sprintf(path, "'NewSignature9', '', '%s', 0", CURR_DIR);
9395     r = add_drlocator_entry(hdb, path);
9396     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9397
9398     /* no parent, full path, depth 0, signature w/ version, sig->name not ignored */
9399     sprintf(path, "'NewSignature10', '', '%s', 0", CURR_DIR);
9400     r = add_drlocator_entry(hdb, path);
9401     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9402
9403     /* no parent, relative empty path, depth 0, no signature */
9404     sprintf(path, "'NewSignature11', '', '', 0");
9405     r = add_drlocator_entry(hdb, path);
9406     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9407
9408     r = create_reglocator_table(hdb);
9409     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9410
9411     /* parent */
9412     r = add_reglocator_entry(hdb, "NewSignature12", 2, "htmlfile\\shell\\open\\nonexistent", "", 1);
9413     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9414
9415     /* parent is in RegLocator, no path, depth 0, no signature */
9416     sprintf(path, "'NewSignature13', 'NewSignature12', '', 0");
9417     r = add_drlocator_entry(hdb, path);
9418     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9419
9420     r = create_signature_table(hdb);
9421     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9422
9423     str = "'NewSignature1', 'FileName1', '', '', '', '', '', '', ''";
9424     r = add_signature_entry(hdb, str);
9425     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9426
9427     str = "'NewSignature4', 'FileName2', '', '', '', '', '', '', ''";
9428     r = add_signature_entry(hdb, str);
9429     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9430
9431     str = "'NewSignature5', 'FileName2', '', '', '', '', '', '', ''";
9432     r = add_signature_entry(hdb, str);
9433     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9434
9435     str = "'NewSignature6', 'another', '', '', '', '', '', '', ''";
9436     r = add_signature_entry(hdb, str);
9437     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9438
9439     str = "'NewSignature7', 'FileName2', '', '', '', '', '', '', ''";
9440     r = add_signature_entry(hdb, str);
9441     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9442
9443     str = "'NewSignature8', 'FileName3.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''";
9444     r = add_signature_entry(hdb, str);
9445     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9446
9447     str = "'NewSignature9', 'FileName4.dll', '1.1.1.1', '2.1.1.1', '', '', '', '', ''";
9448     r = add_signature_entry(hdb, str);
9449     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9450
9451     str = "'NewSignature10', 'necessary', '1.1.1.1', '2.1.1.1', '', '', '', '', ''";
9452     r = add_signature_entry(hdb, str);
9453     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9454
9455     r = package_from_db(hdb, &hpkg);
9456     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
9457     {
9458         skip("Not enough rights to perform tests\n");
9459         goto error;
9460     }
9461     ok(r == ERROR_SUCCESS, "Expected a valid package handle %u\n", r);
9462
9463     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
9464
9465     r = MsiDoAction(hpkg, "AppSearch");
9466     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9467
9468     size = MAX_PATH;
9469     sprintf(path, "%s\\FileName1", CURR_DIR);
9470     r = MsiGetPropertyA(hpkg, "SIGPROP1", prop, &size);
9471     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9472     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9473
9474     size = MAX_PATH;
9475     sprintf(path, "%s\\", CURR_DIR);
9476     r = MsiGetPropertyA(hpkg, "SIGPROP2", prop, &size);
9477     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9478     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9479
9480     size = MAX_PATH;
9481     search_absolute_directory(path, CURR_DIR + 3);
9482     r = MsiGetPropertyA(hpkg, "SIGPROP3", prop, &size);
9483     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9484     ok(!lstrcmpiA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9485
9486     size = MAX_PATH;
9487     r = MsiGetPropertyA(hpkg, "SIGPROP4", prop, &size);
9488     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9489     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
9490
9491     size = MAX_PATH;
9492     sprintf(path, "%s\\one\\two\\three\\FileName2", CURR_DIR);
9493     r = MsiGetPropertyA(hpkg, "SIGPROP5", prop, &size);
9494     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9495     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9496
9497     size = MAX_PATH;
9498     r = MsiGetPropertyA(hpkg, "SIGPROP6", prop, &size);
9499     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9500     ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
9501
9502     size = MAX_PATH;
9503     sprintf(path, "%s\\one\\two\\three\\FileName2", CURR_DIR);
9504     r = MsiGetPropertyA(hpkg, "SIGPROP7", prop, &size);
9505     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9506     ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9507
9508     if (version)
9509     {
9510         size = MAX_PATH;
9511         sprintf(path, "%s\\FileName3.dll", CURR_DIR);
9512         r = MsiGetPropertyA(hpkg, "SIGPROP8", prop, &size);
9513         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9514         ok(!lstrcmpA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9515
9516         size = MAX_PATH;
9517         r = MsiGetPropertyA(hpkg, "SIGPROP9", prop, &size);
9518         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9519         ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
9520
9521         size = MAX_PATH;
9522         r = MsiGetPropertyA(hpkg, "SIGPROP10", prop, &size);
9523         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9524         ok(!lstrcmpA(prop, ""), "Expected \"\", got \"%s\"\n", prop);
9525     }
9526
9527     size = MAX_PATH;
9528     search_absolute_directory(path, "");
9529     r = MsiGetPropertyA(hpkg, "SIGPROP11", prop, &size);
9530     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9531     ok(!lstrcmpiA(prop, path), "Expected \"%s\", got \"%s\"\n", path, prop);
9532
9533     size = MAX_PATH;
9534     strcpy(path, "c:\\");
9535     r = MsiGetPropertyA(hpkg, "SIGPROP13", prop, &size);
9536     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
9537     ok(!prop[0], "Expected \"\", got \"%s\"\n", prop);
9538
9539     MsiCloseHandle(hpkg);
9540
9541 error:
9542     DeleteFileA("FileName1");
9543     DeleteFileA("FileName3.dll");
9544     DeleteFileA("FileName4.dll");
9545     DeleteFileA("FileName5.dll");
9546     DeleteFileA("one\\two\\three\\FileName2");
9547     RemoveDirectoryA("one\\two\\three");
9548     RemoveDirectoryA("one\\two");
9549     RemoveDirectoryA("one");
9550     RemoveDirectoryA("another");
9551     DeleteFileA(msifile);
9552 }
9553
9554 static void test_featureparents(void)
9555 {
9556     MSIHANDLE hpkg;
9557     UINT r;
9558     MSIHANDLE hdb;
9559     INSTALLSTATE state, action;
9560
9561     hdb = create_package_db();
9562     ok ( hdb, "failed to create package database\n" );
9563
9564     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
9565     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
9566
9567     r = create_feature_table( hdb );
9568     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
9569
9570     r = create_component_table( hdb );
9571     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
9572
9573     r = create_feature_components_table( hdb );
9574     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
9575
9576     r = create_file_table( hdb );
9577     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
9578
9579     /* msidbFeatureAttributesFavorLocal */
9580     r = add_feature_entry( hdb, "'zodiac', '', '', '', 2, 1, '', 0" );
9581     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
9582
9583     /* msidbFeatureAttributesFavorSource */
9584     r = add_feature_entry( hdb, "'perseus', '', '', '', 2, 1, '', 1" );
9585     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
9586
9587     /* msidbFeatureAttributesFavorLocal */
9588     r = add_feature_entry( hdb, "'orion', '', '', '', 2, 1, '', 0" );
9589     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
9590
9591     /* msidbFeatureAttributesUIDisallowAbsent */
9592     r = add_feature_entry( hdb, "'lyra', '', '', '', 2, 1, '', 16" );
9593     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
9594
9595     /* disabled because of install level */
9596     r = add_feature_entry( hdb, "'waters', '', '', '', 15, 101, '', 9" );
9597     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
9598
9599     /* child feature of disabled feature */
9600     r = add_feature_entry( hdb, "'bayer', 'waters', '', '', 14, 1, '', 9" );
9601     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
9602
9603     /* component of disabled feature (install level) */
9604     r = add_component_entry( hdb, "'delphinus', '', 'TARGETDIR', 0, '', 'delphinus_file'" );
9605     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9606
9607     /* component of disabled child feature (install level) */
9608     r = add_component_entry( hdb, "'hydrus', '', 'TARGETDIR', 0, '', 'hydrus_file'" );
9609     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9610
9611     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
9612     r = add_component_entry( hdb, "'leo', '', 'TARGETDIR', 0, '', 'leo_file'" );
9613     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9614
9615     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
9616     r = add_component_entry( hdb, "'virgo', '', 'TARGETDIR', 1, '', 'virgo_file'" );
9617     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9618
9619     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
9620     r = add_component_entry( hdb, "'libra', '', 'TARGETDIR', 2, '', 'libra_file'" );
9621     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9622
9623     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
9624     r = add_component_entry( hdb, "'cassiopeia', '', 'TARGETDIR', 0, '', 'cassiopeia_file'" );
9625     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9626
9627     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
9628     r = add_component_entry( hdb, "'cepheus', '', 'TARGETDIR', 1, '', 'cepheus_file'" );
9629     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9630
9631     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
9632     r = add_component_entry( hdb, "'andromeda', '', 'TARGETDIR', 2, '', 'andromeda_file'" );
9633     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9634
9635     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
9636     r = add_component_entry( hdb, "'canis', '', 'TARGETDIR', 0, '', 'canis_file'" );
9637     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9638
9639     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
9640     r = add_component_entry( hdb, "'monoceros', '', 'TARGETDIR', 1, '', 'monoceros_file'" );
9641     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
9642
9643     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
9644     r = add_component_entry( hdb, "'lepus', '', 'TARGETDIR', 2, '', 'lepus_file'" );
9645     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
9646
9647     r = add_feature_components_entry( hdb, "'zodiac', 'leo'" );
9648     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9649
9650     r = add_feature_components_entry( hdb, "'zodiac', 'virgo'" );
9651     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9652
9653     r = add_feature_components_entry( hdb, "'zodiac', 'libra'" );
9654     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9655
9656     r = add_feature_components_entry( hdb, "'perseus', 'cassiopeia'" );
9657     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9658
9659     r = add_feature_components_entry( hdb, "'perseus', 'cepheus'" );
9660     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9661
9662     r = add_feature_components_entry( hdb, "'perseus', 'andromeda'" );
9663     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9664
9665     r = add_feature_components_entry( hdb, "'orion', 'leo'" );
9666     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9667
9668     r = add_feature_components_entry( hdb, "'orion', 'virgo'" );
9669     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9670
9671     r = add_feature_components_entry( hdb, "'orion', 'libra'" );
9672     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9673
9674     r = add_feature_components_entry( hdb, "'orion', 'cassiopeia'" );
9675     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9676
9677     r = add_feature_components_entry( hdb, "'orion', 'cepheus'" );
9678     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9679
9680     r = add_feature_components_entry( hdb, "'orion', 'andromeda'" );
9681     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9682
9683     r = add_feature_components_entry( hdb, "'orion', 'canis'" );
9684     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9685
9686     r = add_feature_components_entry( hdb, "'orion', 'monoceros'" );
9687     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9688
9689     r = add_feature_components_entry( hdb, "'orion', 'lepus'" );
9690     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9691
9692     r = add_feature_components_entry( hdb, "'waters', 'delphinus'" );
9693     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9694
9695     r = add_feature_components_entry( hdb, "'bayer', 'hydrus'" );
9696     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
9697
9698     r = add_file_entry( hdb, "'leo_file', 'leo', 'leo.txt', 100, '', '1033', 8192, 1" );
9699     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9700
9701     r = add_file_entry( hdb, "'virgo_file', 'virgo', 'virgo.txt', 0, '', '1033', 8192, 1" );
9702     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9703
9704     r = add_file_entry( hdb, "'libra_file', 'libra', 'libra.txt', 0, '', '1033', 8192, 1" );
9705     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9706
9707     r = add_file_entry( hdb, "'cassiopeia_file', 'cassiopeia', 'cassiopeia.txt', 0, '', '1033', 8192, 1" );
9708     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9709
9710     r = add_file_entry( hdb, "'cepheus_file', 'cepheus', 'cepheus.txt', 0, '', '1033', 8192, 1" );
9711     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9712
9713     r = add_file_entry( hdb, "'andromeda_file', 'andromeda', 'andromeda.txt', 0, '', '1033', 8192, 1" );
9714     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9715
9716     r = add_file_entry( hdb, "'canis_file', 'canis', 'canis.txt', 0, '', '1033', 8192, 1" );
9717     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9718
9719     r = add_file_entry( hdb, "'monoceros_file', 'monoceros', 'monoceros.txt', 0, '', '1033', 8192, 1" );
9720     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9721
9722     r = add_file_entry( hdb, "'lepus_file', 'lepus', 'lepus.txt', 0, '', '1033', 8192, 1" );
9723     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9724
9725     r = add_file_entry( hdb, "'delphinus_file', 'delphinus', 'delphinus.txt', 0, '', '1033', 8192, 1" );
9726     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9727
9728     r = add_file_entry( hdb, "'hydrus_file', 'hydrus', 'hydrus.txt', 0, '', '1033', 8192, 1" );
9729     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
9730
9731     r = package_from_db( hdb, &hpkg );
9732     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
9733     {
9734         skip("Not enough rights to perform tests\n");
9735         DeleteFile(msifile);
9736         return;
9737     }
9738     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
9739
9740     MsiCloseHandle( hdb );
9741
9742     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
9743
9744     r = MsiDoAction( hpkg, "CostInitialize");
9745     ok( r == ERROR_SUCCESS, "cost init failed\n");
9746
9747     r = MsiDoAction( hpkg, "FileCost");
9748     ok( r == ERROR_SUCCESS, "file cost failed\n");
9749
9750     r = MsiDoAction( hpkg, "CostFinalize");
9751     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
9752
9753     state = 0xdeadbee;
9754     action = 0xdeadbee;
9755     r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
9756     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9757     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
9758     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
9759
9760     state = 0xdeadbee;
9761     action = 0xdeadbee;
9762     r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
9763     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9764     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
9765     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
9766
9767     state = 0xdeadbee;
9768     action = 0xdeadbee;
9769     r = MsiGetFeatureState(hpkg, "orion", &state, &action);
9770     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9771     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
9772     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
9773
9774     state = 0xdeadbee;
9775     action = 0xdeadbee;
9776     r = MsiGetFeatureState(hpkg, "lyra", &state, &action);
9777     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9778     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
9779     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
9780
9781     state = 0xdeadbee;
9782     action = 0xdeadbee;
9783     r = MsiGetFeatureState(hpkg, "waters", &state, &action);
9784     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9785     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
9786     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
9787
9788     state = 0xdeadbee;
9789     action = 0xdeadbee;
9790     r = MsiGetFeatureState(hpkg, "bayer", &state, &action);
9791     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9792     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
9793     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
9794
9795     state = 0xdeadbee;
9796     action = 0xdeadbee;
9797     r = MsiGetComponentState(hpkg, "leo", &state, &action);
9798     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9799     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
9800     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
9801
9802     state = 0xdeadbee;
9803     action = 0xdeadbee;
9804     r = MsiGetComponentState(hpkg, "virgo", &state, &action);
9805     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9806     ok( state == INSTALLSTATE_UNKNOWN, "Expected virgo INSTALLSTATE_UNKNOWN, got %d\n", state);
9807     ok( action == INSTALLSTATE_SOURCE, "Expected virgo INSTALLSTATE_SOURCE, got %d\n", action);
9808
9809     state = 0xdeadbee;
9810     action = 0xdeadbee;
9811     r = MsiGetComponentState(hpkg, "libra", &state, &action);
9812     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9813     ok( state == INSTALLSTATE_UNKNOWN, "Expected libra INSTALLSTATE_UNKNOWN, got %d\n", state);
9814     ok( action == INSTALLSTATE_LOCAL, "Expected libra INSTALLSTATE_LOCAL, got %d\n", action);
9815
9816     state = 0xdeadbee;
9817     action = 0xdeadbee;
9818     r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
9819     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9820     ok( state == INSTALLSTATE_UNKNOWN, "Expected cassiopeia INSTALLSTATE_UNKNOWN, got %d\n", state);
9821     ok( action == INSTALLSTATE_LOCAL, "Expected cassiopeia INSTALLSTATE_LOCAL, got %d\n", action);
9822
9823     state = 0xdeadbee;
9824     action = 0xdeadbee;
9825     r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
9826     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9827     ok( state == INSTALLSTATE_UNKNOWN, "Expected cepheus INSTALLSTATE_UNKNOWN, got %d\n", state);
9828     ok( action == INSTALLSTATE_SOURCE, "Expected cepheus INSTALLSTATE_SOURCE, got %d\n", action);
9829
9830     state = 0xdeadbee;
9831     action = 0xdeadbee;
9832     r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
9833     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9834     ok( state == INSTALLSTATE_UNKNOWN, "Expected andromeda INSTALLSTATE_UNKNOWN, got %d\n", state);
9835     ok( action == INSTALLSTATE_LOCAL, "Expected andromeda INSTALLSTATE_LOCAL, got %d\n", action);
9836
9837     state = 0xdeadbee;
9838     action = 0xdeadbee;
9839     r = MsiGetComponentState(hpkg, "canis", &state, &action);
9840     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9841     ok( state == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", state);
9842     ok( action == INSTALLSTATE_LOCAL, "Expected canis INSTALLSTATE_LOCAL, got %d\n", action);
9843
9844     state = 0xdeadbee;
9845     action = 0xdeadbee;
9846     r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
9847     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9848     ok( state == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", state);
9849     ok( action == INSTALLSTATE_SOURCE, "Expected monoceros INSTALLSTATE_SOURCE, got %d\n", action);
9850
9851     state = 0xdeadbee;
9852     action = 0xdeadbee;
9853     r = MsiGetComponentState(hpkg, "lepus", &state, &action);
9854     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9855     ok( state == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", state);
9856     ok( action == INSTALLSTATE_LOCAL, "Expected lepus INSTALLSTATE_LOCAL, got %d\n", action);
9857
9858     state = 0xdeadbee;
9859     action = 0xdeadbee;
9860     r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
9861     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9862     ok( state == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", state);
9863     ok( action == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", action);
9864
9865     state = 0xdeadbee;
9866     action = 0xdeadbee;
9867     r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
9868     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9869     ok( state == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", state);
9870     ok( action == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", action);
9871
9872     r = MsiSetFeatureState(hpkg, "orion", INSTALLSTATE_ABSENT);
9873     ok( r == ERROR_SUCCESS, "failed to set feature state: %d\n", r);
9874
9875     r = MsiSetFeatureState(hpkg, "lyra", INSTALLSTATE_ABSENT);
9876     ok( r == ERROR_SUCCESS, "failed to set feature state: %d\n", r);
9877
9878     r = MsiSetFeatureState(hpkg, "nosuchfeature", INSTALLSTATE_ABSENT);
9879     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %u\n", r);
9880
9881     state = 0xdeadbee;
9882     action = 0xdeadbee;
9883     r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
9884     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9885     ok( state == INSTALLSTATE_ABSENT, "Expected zodiac INSTALLSTATE_ABSENT, got %d\n", state);
9886     ok( action == INSTALLSTATE_LOCAL, "Expected zodiac INSTALLSTATE_LOCAL, got %d\n", action);
9887
9888     state = 0xdeadbee;
9889     action = 0xdeadbee;
9890     r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
9891     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9892     ok( state == INSTALLSTATE_ABSENT, "Expected perseus INSTALLSTATE_ABSENT, got %d\n", state);
9893     ok( action == INSTALLSTATE_SOURCE, "Expected perseus INSTALLSTATE_SOURCE, got %d\n", action);
9894
9895     state = 0xdeadbee;
9896     action = 0xdeadbee;
9897     r = MsiGetFeatureState(hpkg, "orion", &state, &action);
9898     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9899     ok( state == INSTALLSTATE_ABSENT, "Expected orion INSTALLSTATE_ABSENT, got %d\n", state);
9900     ok( action == INSTALLSTATE_ABSENT, "Expected orion INSTALLSTATE_ABSENT, got %d\n", action);
9901
9902     state = 0xdeadbee;
9903     action = 0xdeadbee;
9904     r = MsiGetFeatureState(hpkg, "lyra", &state, &action);
9905     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9906     ok( state == INSTALLSTATE_ABSENT, "Expected lyra INSTALLSTATE_ABSENT, got %d\n", state);
9907     ok( action == INSTALLSTATE_ABSENT, "Expected lyra INSTALLSTATE_ABSENT, got %d\n", action);
9908
9909     state = 0xdeadbee;
9910     action = 0xdeadbee;
9911     r = MsiGetComponentState(hpkg, "leo", &state, &action);
9912     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9913     ok( state == INSTALLSTATE_UNKNOWN, "Expected leo INSTALLSTATE_UNKNOWN, got %d\n", state);
9914     ok( action == INSTALLSTATE_LOCAL, "Expected leo INSTALLSTATE_LOCAL, got %d\n", action);
9915
9916     state = 0xdeadbee;
9917     action = 0xdeadbee;
9918     r = MsiGetComponentState(hpkg, "virgo", &state, &action);
9919     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9920     ok( state == INSTALLSTATE_UNKNOWN, "Expected virgo INSTALLSTATE_UNKNOWN, got %d\n", state);
9921     ok( action == INSTALLSTATE_SOURCE, "Expected virgo INSTALLSTATE_SOURCE, got %d\n", action);
9922
9923     state = 0xdeadbee;
9924     action = 0xdeadbee;
9925     r = MsiGetComponentState(hpkg, "libra", &state, &action);
9926     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9927     ok( state == INSTALLSTATE_UNKNOWN, "Expected libra INSTALLSTATE_UNKNOWN, got %d\n", state);
9928     ok( action == INSTALLSTATE_LOCAL, "Expected libra INSTALLSTATE_LOCAL, got %d\n", action);
9929
9930     state = 0xdeadbee;
9931     action = 0xdeadbee;
9932     r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
9933     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9934     ok( state == INSTALLSTATE_UNKNOWN, "Expected cassiopeia INSTALLSTATE_UNKNOWN, got %d\n", state);
9935     ok( action == INSTALLSTATE_LOCAL, "Expected cassiopeia INSTALLSTATE_LOCAL, got %d\n", action);
9936
9937     state = 0xdeadbee;
9938     action = 0xdeadbee;
9939     r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
9940     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9941     ok( state == INSTALLSTATE_UNKNOWN, "Expected cepheus INSTALLSTATE_UNKNOWN, got %d\n", state);
9942     ok( action == INSTALLSTATE_SOURCE, "Expected cepheus INSTALLSTATE_SOURCE, got %d\n", action);
9943
9944     state = 0xdeadbee;
9945     action = 0xdeadbee;
9946     r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
9947     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9948     ok( state == INSTALLSTATE_UNKNOWN, "Expected andromeda INSTALLSTATE_UNKNOWN, got %d\n", state);
9949     ok( action == INSTALLSTATE_SOURCE, "Expected andromeda INSTALLSTATE_SOURCE, got %d\n", action);
9950
9951     state = 0xdeadbee;
9952     action = 0xdeadbee;
9953     r = MsiGetComponentState(hpkg, "canis", &state, &action);
9954     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9955     ok( state == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", state);
9956     ok( action == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", action);
9957
9958     state = 0xdeadbee;
9959     action = 0xdeadbee;
9960     r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
9961     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9962     ok( state == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", state);
9963     ok( action == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", action);
9964
9965     state = 0xdeadbee;
9966     action = 0xdeadbee;
9967     r = MsiGetComponentState(hpkg, "lepus", &state, &action);
9968     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9969     ok( state == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", state);
9970     ok( action == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", action);
9971
9972     state = 0xdeadbee;
9973     action = 0xdeadbee;
9974     r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
9975     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9976     ok( state == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", state);
9977     ok( action == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", action);
9978
9979     state = 0xdeadbee;
9980     action = 0xdeadbee;
9981     r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
9982     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
9983     ok( state == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", state);
9984     ok( action == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", action);
9985     
9986     MsiCloseHandle(hpkg);
9987     DeleteFileA(msifile);
9988 }
9989
9990 static void test_installprops(void)
9991 {
9992     MSIHANDLE hpkg, hdb;
9993     CHAR path[MAX_PATH], buf[MAX_PATH];
9994     DWORD size, type;
9995     LANGID langid;
9996     HKEY hkey1, hkey2;
9997     int res;
9998     UINT r;
9999     REGSAM access = KEY_ALL_ACCESS;
10000     SYSTEM_INFO si;
10001
10002     if (is_wow64)
10003         access |= KEY_WOW64_64KEY;
10004
10005     GetCurrentDirectory(MAX_PATH, path);
10006     lstrcat(path, "\\");
10007     lstrcat(path, msifile);
10008
10009     hdb = create_package_db();
10010     ok( hdb, "failed to create database\n");
10011
10012     r = package_from_db(hdb, &hpkg);
10013     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
10014     {
10015         skip("Not enough rights to perform tests\n");
10016         DeleteFile(msifile);
10017         return;
10018     }
10019     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
10020
10021     MsiCloseHandle(hdb);
10022
10023     size = MAX_PATH;
10024     r = MsiGetProperty(hpkg, "DATABASE", buf, &size);
10025     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10026     ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
10027
10028     RegOpenKey(HKEY_CURRENT_USER, "SOFTWARE\\Microsoft\\MS Setup (ACME)\\User Info", &hkey1);
10029     RegOpenKeyEx(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", 0, access, &hkey2);
10030
10031     size = MAX_PATH;
10032     type = REG_SZ;
10033     *path = '\0';
10034     if (RegQueryValueEx(hkey1, "DefName", NULL, &type, (LPBYTE)path, &size) != ERROR_SUCCESS)
10035     {
10036         size = MAX_PATH;
10037         type = REG_SZ;
10038         RegQueryValueEx(hkey2, "RegisteredOwner", NULL, &type, (LPBYTE)path, &size);
10039     }
10040
10041     size = MAX_PATH;
10042     r = MsiGetProperty(hpkg, "USERNAME", buf, &size);
10043     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10044     ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
10045
10046     size = MAX_PATH;
10047     type = REG_SZ;
10048     *path = '\0';
10049     if (RegQueryValueEx(hkey1, "DefCompany", NULL, &type, (LPBYTE)path, &size) != ERROR_SUCCESS)
10050     {
10051         size = MAX_PATH;
10052         type = REG_SZ;
10053         RegQueryValueEx(hkey2, "RegisteredOrganization", NULL, &type, (LPBYTE)path, &size);
10054     }
10055
10056     if (*path)
10057     {
10058         size = MAX_PATH;
10059         r = MsiGetProperty(hpkg, "COMPANYNAME", buf, &size);
10060         ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10061         ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
10062     }
10063
10064     size = MAX_PATH;
10065     r = MsiGetProperty(hpkg, "VersionDatabase", buf, &size);
10066     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10067     trace("VersionDatabase = %s\n", buf);
10068
10069     size = MAX_PATH;
10070     r = MsiGetProperty(hpkg, "VersionMsi", buf, &size);
10071     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10072     trace("VersionMsi = %s\n", buf);
10073
10074     size = MAX_PATH;
10075     r = MsiGetProperty(hpkg, "Date", buf, &size);
10076     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10077     trace("Date = %s\n", buf);
10078
10079     size = MAX_PATH;
10080     r = MsiGetProperty(hpkg, "Time", buf, &size);
10081     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10082     trace("Time = %s\n", buf);
10083
10084     size = MAX_PATH;
10085     r = MsiGetProperty(hpkg, "PackageCode", buf, &size);
10086     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10087     trace("PackageCode = %s\n", buf);
10088
10089     langid = GetUserDefaultLangID();
10090     sprintf(path, "%d", langid);
10091
10092     size = MAX_PATH;
10093     r = MsiGetProperty(hpkg, "UserLanguageID", buf, &size);
10094     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
10095     ok( !lstrcmpA(buf, path), "Expected \"%s\", got \"%s\"\n", path, buf);
10096
10097     res = GetSystemMetrics(SM_CXSCREEN);
10098     size = MAX_PATH;
10099     r = MsiGetProperty(hpkg, "ScreenX", buf, &size);
10100     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
10101     ok(atol(buf) == res, "Expected %d, got %ld\n", res, atol(buf));
10102
10103     res = GetSystemMetrics(SM_CYSCREEN);
10104     size = MAX_PATH;
10105     r = MsiGetProperty(hpkg, "ScreenY", buf, &size);
10106     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS< got %d\n", r);
10107     ok(atol(buf) == res, "Expected %d, got %ld\n", res, atol(buf));
10108
10109     if (pGetSystemInfo && pSHGetFolderPathA)
10110     {
10111         pGetSystemInfo(&si);
10112         if (S(U(si)).wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64)
10113         {
10114             buf[0] = 0;
10115             size = MAX_PATH;
10116             r = MsiGetProperty(hpkg, "MsiAMD64", buf, &size);
10117             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10118             ok(buf[0], "property not set\n");
10119
10120             buf[0] = 0;
10121             size = MAX_PATH;
10122             r = MsiGetProperty(hpkg, "Msix64", buf, &size);
10123             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10124             ok(buf[0], "property not set\n");
10125
10126             buf[0] = 0;
10127             size = MAX_PATH;
10128             r = MsiGetProperty(hpkg, "System64Folder", buf, &size);
10129             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10130             GetSystemDirectoryA(path, MAX_PATH);
10131             if (size) buf[size - 1] = 0;
10132             ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10133
10134             buf[0] = 0;
10135             size = MAX_PATH;
10136             r = MsiGetProperty(hpkg, "SystemFolder", buf, &size);
10137             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10138             pGetSystemWow64DirectoryA(path, MAX_PATH);
10139             if (size) buf[size - 1] = 0;
10140             ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10141
10142             buf[0] = 0;
10143             size = MAX_PATH;
10144             r = MsiGetProperty(hpkg, "ProgramFiles64Folder", buf, &size);
10145             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10146             pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILES, NULL, 0, path);
10147             if (size) buf[size - 1] = 0;
10148             ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10149
10150             buf[0] = 0;
10151             size = MAX_PATH;
10152             r = MsiGetProperty(hpkg, "ProgramFilesFolder", buf, &size);
10153             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10154             pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILESX86, NULL, 0, path);
10155             if (size) buf[size - 1] = 0;
10156             ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10157
10158             buf[0] = 0;
10159             size = MAX_PATH;
10160             r = MsiGetProperty(hpkg, "CommonFiles64Folder", buf, &size);
10161             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10162             pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILES_COMMON, NULL, 0, path);
10163             if (size) buf[size - 1] = 0;
10164             ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10165
10166             buf[0] = 0;
10167             size = MAX_PATH;
10168             r = MsiGetProperty(hpkg, "CommonFilesFolder", buf, &size);
10169             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10170             pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILES_COMMONX86, NULL, 0, path);
10171             if (size) buf[size - 1] = 0;
10172             ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10173
10174             buf[0] = 0;
10175             size = MAX_PATH;
10176             r = MsiGetProperty(hpkg, "VersionNT64", buf, &size);
10177             ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10178             ok(buf[0], "property not set\n");
10179         }
10180         else if (S(U(si)).wProcessorArchitecture == PROCESSOR_ARCHITECTURE_INTEL)
10181         {
10182             if (!is_wow64)
10183             {
10184                 buf[0] = 0;
10185                 size = MAX_PATH;
10186                 r = MsiGetProperty(hpkg, "MsiAMD64", buf, &size);
10187                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10188                 ok(!buf[0], "property set\n");
10189
10190                 buf[0] = 0;
10191                 size = MAX_PATH;
10192                 r = MsiGetProperty(hpkg, "Msix64", buf, &size);
10193                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10194                 ok(!buf[0], "property set\n");
10195
10196                 buf[0] = 0;
10197                 size = MAX_PATH;
10198                 r = MsiGetProperty(hpkg, "System64Folder", buf, &size);
10199                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10200                 ok(!buf[0], "property set\n");
10201
10202                 buf[0] = 0;
10203                 size = MAX_PATH;
10204                 r = MsiGetProperty(hpkg, "SystemFolder", buf, &size);
10205                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10206                 GetSystemDirectoryA(path, MAX_PATH);
10207                 if (size) buf[size - 1] = 0;
10208                 ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10209
10210                 buf[0] = 0;
10211                 size = MAX_PATH;
10212                 r = MsiGetProperty(hpkg, "ProgramFiles64Folder", buf, &size);
10213                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10214                 ok(!buf[0], "property set\n");
10215
10216                 buf[0] = 0;
10217                 size = MAX_PATH;
10218                 r = MsiGetProperty(hpkg, "ProgramFilesFolder", buf, &size);
10219                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10220                 pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILES, NULL, 0, path);
10221                 if (size) buf[size - 1] = 0;
10222                 ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10223
10224                 buf[0] = 0;
10225                 size = MAX_PATH;
10226                 r = MsiGetProperty(hpkg, "CommonFiles64Folder", buf, &size);
10227                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10228                 ok(!buf[0], "property set\n");
10229
10230                 buf[0] = 0;
10231                 size = MAX_PATH;
10232                 r = MsiGetProperty(hpkg, "CommonFilesFolder", buf, &size);
10233                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10234                 pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILES_COMMON, NULL, 0, path);
10235                 if (size) buf[size - 1] = 0;
10236                 ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10237
10238                 buf[0] = 0;
10239                 size = MAX_PATH;
10240                 r = MsiGetProperty(hpkg, "VersionNT64", buf, &size);
10241                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10242                 ok(!buf[0], "property set\n");
10243             }
10244             else
10245             {
10246                 buf[0] = 0;
10247                 size = MAX_PATH;
10248                 r = MsiGetProperty(hpkg, "MsiAMD64", buf, &size);
10249                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10250                 ok(buf[0], "property not set\n");
10251
10252                 buf[0] = 0;
10253                 size = MAX_PATH;
10254                 r = MsiGetProperty(hpkg, "Msix64", buf, &size);
10255                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10256                 ok(buf[0], "property not set\n");
10257
10258                 buf[0] = 0;
10259                 size = MAX_PATH;
10260                 r = MsiGetProperty(hpkg, "System64Folder", buf, &size);
10261                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10262                 GetSystemDirectoryA(path, MAX_PATH);
10263                 if (size) buf[size - 1] = 0;
10264                 ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10265
10266                 buf[0] = 0;
10267                 size = MAX_PATH;
10268                 r = MsiGetProperty(hpkg, "SystemFolder", buf, &size);
10269                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10270                 pGetSystemWow64DirectoryA(path, MAX_PATH);
10271                 if (size) buf[size - 1] = 0;
10272                 ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10273
10274                 buf[0] = 0;
10275                 size = MAX_PATH;
10276                 r = MsiGetProperty(hpkg, "ProgramFilesFolder64", buf, &size);
10277                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10278                 ok(!buf[0], "property set\n");
10279
10280                 buf[0] = 0;
10281                 size = MAX_PATH;
10282                 r = MsiGetProperty(hpkg, "ProgramFilesFolder", buf, &size);
10283                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10284                 pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILESX86, NULL, 0, path);
10285                 if (size) buf[size - 1] = 0;
10286                 ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10287
10288                 buf[0] = 0;
10289                 size = MAX_PATH;
10290                 r = MsiGetProperty(hpkg, "CommonFilesFolder64", buf, &size);
10291                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10292                 ok(!buf[0], "property set\n");
10293
10294                 buf[0] = 0;
10295                 size = MAX_PATH;
10296                 r = MsiGetProperty(hpkg, "CommonFilesFolder", buf, &size);
10297                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10298                 pSHGetFolderPathA(NULL, CSIDL_PROGRAM_FILES_COMMONX86, NULL, 0, path);
10299                 if (size) buf[size - 1] = 0;
10300                 ok(!lstrcmpiA(path, buf), "expected \"%s\", got \"%s\"\n", path, buf);
10301
10302                 buf[0] = 0;
10303                 size = MAX_PATH;
10304                 r = MsiGetProperty(hpkg, "VersionNT64", buf, &size);
10305                 ok(r == ERROR_SUCCESS, "failed to get property: %d\n", r);
10306                 ok(buf[0], "property not set\n");
10307             }
10308         }
10309     }
10310
10311     CloseHandle(hkey1);
10312     CloseHandle(hkey2);
10313     MsiCloseHandle(hpkg);
10314     DeleteFile(msifile);
10315 }
10316
10317 static void test_launchconditions(void)
10318 {
10319     MSIHANDLE hpkg;
10320     MSIHANDLE hdb;
10321     UINT r;
10322
10323     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
10324
10325     hdb = create_package_db();
10326     ok( hdb, "failed to create package database\n" );
10327
10328     r = create_launchcondition_table( hdb );
10329     ok( r == ERROR_SUCCESS, "cannot create LaunchCondition table: %d\n", r );
10330
10331     r = add_launchcondition_entry( hdb, "'X = \"1\"', 'one'" );
10332     ok( r == ERROR_SUCCESS, "cannot add launch condition: %d\n", r );
10333
10334     /* invalid condition */
10335     r = add_launchcondition_entry( hdb, "'X != \"1\"', 'one'" );
10336     ok( r == ERROR_SUCCESS, "cannot add launch condition: %d\n", r );
10337
10338     r = package_from_db( hdb, &hpkg );
10339     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
10340     {
10341         skip("Not enough rights to perform tests\n");
10342         DeleteFile(msifile);
10343         return;
10344     }
10345     ok( r == ERROR_SUCCESS, "failed to create package %u\n", r );
10346
10347     MsiCloseHandle( hdb );
10348
10349     r = MsiSetProperty( hpkg, "X", "1" );
10350     ok( r == ERROR_SUCCESS, "failed to set property\n" );
10351
10352     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
10353
10354     /* invalid conditions are ignored */
10355     r = MsiDoAction( hpkg, "LaunchConditions" );
10356     ok( r == ERROR_SUCCESS, "cost init failed\n" );
10357
10358     /* verify LaunchConditions still does some verification */
10359     r = MsiSetProperty( hpkg, "X", "2" );
10360     ok( r == ERROR_SUCCESS, "failed to set property\n" );
10361
10362     r = MsiDoAction( hpkg, "LaunchConditions" );
10363     ok( r == ERROR_INSTALL_FAILURE, "Expected ERROR_INSTALL_FAILURE, got %d\n", r );
10364
10365     MsiCloseHandle( hpkg );
10366     DeleteFile( msifile );
10367 }
10368
10369 static void test_ccpsearch(void)
10370 {
10371     MSIHANDLE hdb, hpkg;
10372     CHAR prop[MAX_PATH];
10373     DWORD size = MAX_PATH;
10374     UINT r;
10375
10376     hdb = create_package_db();
10377     ok(hdb, "failed to create package database\n");
10378
10379     r = create_ccpsearch_table(hdb);
10380     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10381
10382     r = add_ccpsearch_entry(hdb, "'CCP_random'");
10383     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10384
10385     r = add_ccpsearch_entry(hdb, "'RMCCP_random'");
10386     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10387
10388     r = create_reglocator_table(hdb);
10389     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10390
10391     r = add_reglocator_entry(hdb, "CCP_random", 0, "htmlfile\\shell\\open\\nonexistent", "", 1);
10392     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10393
10394     r = create_drlocator_table(hdb);
10395     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10396
10397     r = add_drlocator_entry(hdb, "'RMCCP_random', '', 'C:\\', '0'");
10398     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10399
10400     r = create_signature_table(hdb);
10401     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10402
10403     r = package_from_db(hdb, &hpkg);
10404     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
10405     {
10406         skip("Not enough rights to perform tests\n");
10407         DeleteFile(msifile);
10408         return;
10409     }
10410     ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
10411
10412     MsiCloseHandle(hdb);
10413
10414     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
10415
10416     r = MsiDoAction(hpkg, "CCPSearch");
10417     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10418
10419     r = MsiGetPropertyA(hpkg, "CCP_Success", prop, &size);
10420     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10421     ok(!lstrcmpA(prop, "1"), "Expected 1, got %s\n", prop);
10422
10423     MsiCloseHandle(hpkg);
10424     DeleteFileA(msifile);
10425 }
10426
10427 static void test_complocator(void)
10428 {
10429     MSIHANDLE hdb, hpkg;
10430     UINT r;
10431     CHAR prop[MAX_PATH];
10432     CHAR expected[MAX_PATH];
10433     DWORD size = MAX_PATH;
10434
10435     hdb = create_package_db();
10436     ok(hdb, "failed to create package database\n");
10437
10438     r = create_appsearch_table(hdb);
10439     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10440
10441     r = add_appsearch_entry(hdb, "'ABELISAURUS', 'abelisaurus'");
10442     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10443
10444     r = add_appsearch_entry(hdb, "'BACTROSAURUS', 'bactrosaurus'");
10445     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10446
10447     r = add_appsearch_entry(hdb, "'CAMELOTIA', 'camelotia'");
10448     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10449
10450     r = add_appsearch_entry(hdb, "'DICLONIUS', 'diclonius'");
10451     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10452
10453     r = add_appsearch_entry(hdb, "'ECHINODON', 'echinodon'");
10454     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10455
10456     r = add_appsearch_entry(hdb, "'FALCARIUS', 'falcarius'");
10457     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10458
10459     r = add_appsearch_entry(hdb, "'GALLIMIMUS', 'gallimimus'");
10460     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10461
10462     r = add_appsearch_entry(hdb, "'HAGRYPHUS', 'hagryphus'");
10463     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10464
10465     r = add_appsearch_entry(hdb, "'IGUANODON', 'iguanodon'");
10466     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10467
10468     r = add_appsearch_entry(hdb, "'JOBARIA', 'jobaria'");
10469     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10470
10471     r = add_appsearch_entry(hdb, "'KAKURU', 'kakuru'");
10472     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10473
10474     r = add_appsearch_entry(hdb, "'LABOCANIA', 'labocania'");
10475     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10476
10477     r = add_appsearch_entry(hdb, "'MEGARAPTOR', 'megaraptor'");
10478     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10479
10480     r = add_appsearch_entry(hdb, "'NEOSODON', 'neosodon'");
10481     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10482
10483     r = add_appsearch_entry(hdb, "'OLOROTITAN', 'olorotitan'");
10484     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10485
10486     r = add_appsearch_entry(hdb, "'PANTYDRACO', 'pantydraco'");
10487     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10488
10489     r = create_complocator_table(hdb);
10490     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10491
10492     r = add_complocator_entry(hdb, "'abelisaurus', '{E3619EED-305A-418C-B9C7-F7D7377F0934}', 1");
10493     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10494
10495     r = add_complocator_entry(hdb, "'bactrosaurus', '{D56B688D-542F-42Ef-90FD-B6DA76EE8119}', 0");
10496     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10497
10498     r = add_complocator_entry(hdb, "'camelotia', '{8211BE36-2466-47E3-AFB7-6AC72E51AED2}', 1");
10499     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10500
10501     r = add_complocator_entry(hdb, "'diclonius', '{5C767B20-A33C-45A4-B80B-555E512F01AE}', 0");
10502     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10503
10504     r = add_complocator_entry(hdb, "'echinodon', '{A19E16C5-C75D-4699-8111-C4338C40C3CB}', 1");
10505     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10506
10507     r = add_complocator_entry(hdb, "'falcarius', '{17762FA1-A7AE-4CC6-8827-62873C35361D}', 0");
10508     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10509
10510     r = add_complocator_entry(hdb, "'gallimimus', '{75EBF568-C959-41E0-A99E-9050638CF5FB}', 1");
10511     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10512
10513     r = add_complocator_entry(hdb, "'hagrphus', '{D4969B72-17D9-4AB6-BE49-78F2FEE857AC}', 0");
10514     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10515
10516     r = add_complocator_entry(hdb, "'iguanodon', '{8E0DA02E-F6A7-4A8F-B25D-6F564C492308}', 1");
10517     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10518
10519     r = add_complocator_entry(hdb, "'jobaria', '{243C22B1-8C51-4151-B9D1-1AE5265E079E}', 0");
10520     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10521
10522     r = add_complocator_entry(hdb, "'kakuru', '{5D0F03BA-50BC-44F2-ABB1-72C972F4E514}', 1");
10523     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10524
10525     r = add_complocator_entry(hdb, "'labocania', '{C7DDB60C-7828-4046-A6F8-699D5E92F1ED}', 0");
10526     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10527
10528     r = add_complocator_entry(hdb, "'megaraptor', '{8B1034B7-BD5E-41ac-B52C-0105D3DFD74D}', 1");
10529     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10530
10531     r = add_complocator_entry(hdb, "'neosodon', '{0B499649-197A-48EF-93D2-AF1C17ED6E90}', 0");
10532     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10533
10534     r = add_complocator_entry(hdb, "'olorotitan', '{54E9E91F-AED2-46D5-A25A-7E50AFA24513}', 1");
10535     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10536
10537     r = add_complocator_entry(hdb, "'pantydraco', '{2A989951-5565-4FA7-93A7-E800A3E67D71}', 0");
10538     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10539
10540     r = create_signature_table(hdb);
10541     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10542
10543     r = add_signature_entry(hdb, "'abelisaurus', 'abelisaurus', '', '', '', '', '', '', ''");
10544     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10545
10546     r = add_signature_entry(hdb, "'bactrosaurus', 'bactrosaurus', '', '', '', '', '', '', ''");
10547     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10548
10549     r = add_signature_entry(hdb, "'camelotia', 'camelotia', '', '', '', '', '', '', ''");
10550     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10551
10552     r = add_signature_entry(hdb, "'diclonius', 'diclonius', '', '', '', '', '', '', ''");
10553     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10554
10555     r = add_signature_entry(hdb, "'iguanodon', 'iguanodon', '', '', '', '', '', '', ''");
10556     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10557
10558     r = add_signature_entry(hdb, "'jobaria', 'jobaria', '', '', '', '', '', '', ''");
10559     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10560
10561     r = add_signature_entry(hdb, "'kakuru', 'kakuru', '', '', '', '', '', '', ''");
10562     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10563
10564     r = add_signature_entry(hdb, "'labocania', 'labocania', '', '', '', '', '', '', ''");
10565     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10566
10567     r = package_from_db(hdb, &hpkg);
10568     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
10569     {
10570         skip("Not enough rights to perform tests\n");
10571         DeleteFile(msifile);
10572         return;
10573     }
10574     ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
10575
10576     MsiCloseHandle(hdb);
10577
10578     create_test_file("abelisaurus");
10579     create_test_file("bactrosaurus");
10580     create_test_file("camelotia");
10581     create_test_file("diclonius");
10582     create_test_file("echinodon");
10583     create_test_file("falcarius");
10584     create_test_file("gallimimus");
10585     create_test_file("hagryphus");
10586     CreateDirectoryA("iguanodon", NULL);
10587     CreateDirectoryA("jobaria", NULL);
10588     CreateDirectoryA("kakuru", NULL);
10589     CreateDirectoryA("labocania", NULL);
10590     CreateDirectoryA("megaraptor", NULL);
10591     CreateDirectoryA("neosodon", NULL);
10592     CreateDirectoryA("olorotitan", NULL);
10593     CreateDirectoryA("pantydraco", NULL);
10594
10595     set_component_path("abelisaurus", MSIINSTALLCONTEXT_MACHINE,
10596                        "{E3619EED-305A-418C-B9C7-F7D7377F0934}", NULL, FALSE);
10597     set_component_path("bactrosaurus", MSIINSTALLCONTEXT_MACHINE,
10598                        "{D56B688D-542F-42Ef-90FD-B6DA76EE8119}", NULL, FALSE);
10599     set_component_path("echinodon", MSIINSTALLCONTEXT_MACHINE,
10600                        "{A19E16C5-C75D-4699-8111-C4338C40C3CB}", NULL, FALSE);
10601     set_component_path("falcarius", MSIINSTALLCONTEXT_MACHINE,
10602                        "{17762FA1-A7AE-4CC6-8827-62873C35361D}", NULL, FALSE);
10603     set_component_path("iguanodon", MSIINSTALLCONTEXT_MACHINE,
10604                        "{8E0DA02E-F6A7-4A8F-B25D-6F564C492308}", NULL, FALSE);
10605     set_component_path("jobaria", MSIINSTALLCONTEXT_MACHINE,
10606                        "{243C22B1-8C51-4151-B9D1-1AE5265E079E}", NULL, FALSE);
10607     set_component_path("megaraptor", MSIINSTALLCONTEXT_MACHINE,
10608                        "{8B1034B7-BD5E-41ac-B52C-0105D3DFD74D}", NULL, FALSE);
10609     set_component_path("neosodon", MSIINSTALLCONTEXT_MACHINE,
10610                        "{0B499649-197A-48EF-93D2-AF1C17ED6E90}", NULL, FALSE);
10611
10612     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
10613
10614     r = MsiDoAction(hpkg, "AppSearch");
10615     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10616
10617     size = MAX_PATH;
10618     r = MsiGetPropertyA(hpkg, "ABELISAURUS", prop, &size);
10619     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10620
10621     lstrcpyA(expected, CURR_DIR);
10622     lstrcatA(expected, "\\abelisaurus");
10623     ok(!lstrcmpA(prop, expected) || !lstrcmpA(prop, ""),
10624        "Expected %s or empty string, got %s\n", expected, prop);
10625
10626     size = MAX_PATH;
10627     r = MsiGetPropertyA(hpkg, "BACTROSAURUS", prop, &size);
10628     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10629     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10630
10631     size = MAX_PATH;
10632     r = MsiGetPropertyA(hpkg, "CAMELOTIA", prop, &size);
10633     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10634     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10635
10636     size = MAX_PATH;
10637     r = MsiGetPropertyA(hpkg, "DICLONIUS", prop, &size);
10638     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10639     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10640
10641     size = MAX_PATH;
10642     r = MsiGetPropertyA(hpkg, "ECHINODON", prop, &size);
10643     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10644
10645     lstrcpyA(expected, CURR_DIR);
10646     lstrcatA(expected, "\\");
10647     ok(!lstrcmpA(prop, expected) || !lstrcmpA(prop, ""),
10648        "Expected %s or empty string, got %s\n", expected, prop);
10649
10650     size = MAX_PATH;
10651     r = MsiGetPropertyA(hpkg, "FALCARIUS", prop, &size);
10652     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10653     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10654
10655     size = MAX_PATH;
10656     r = MsiGetPropertyA(hpkg, "GALLIMIMUS", prop, &size);
10657     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10658     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10659
10660     size = MAX_PATH;
10661     r = MsiGetPropertyA(hpkg, "HAGRYPHUS", prop, &size);
10662     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10663     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10664
10665     size = MAX_PATH;
10666     r = MsiGetPropertyA(hpkg, "IGUANODON", prop, &size);
10667     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10668     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10669
10670     size = MAX_PATH;
10671     r = MsiGetPropertyA(hpkg, "JOBARIA", prop, &size);
10672     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10673     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10674
10675     size = MAX_PATH;
10676     r = MsiGetPropertyA(hpkg, "KAKURU", prop, &size);
10677     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10678     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10679
10680     size = MAX_PATH;
10681     r = MsiGetPropertyA(hpkg, "LABOCANIA", prop, &size);
10682     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10683     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10684
10685     size = MAX_PATH;
10686     r = MsiGetPropertyA(hpkg, "MEGARAPTOR", prop, &size);
10687     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10688
10689     lstrcpyA(expected, CURR_DIR);
10690     lstrcatA(expected, "\\");
10691     ok(!lstrcmpA(prop, expected) || !lstrcmpA(prop, ""),
10692        "Expected %s or empty string, got %s\n", expected, prop);
10693
10694     size = MAX_PATH;
10695     r = MsiGetPropertyA(hpkg, "NEOSODON", prop, &size);
10696     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10697
10698     lstrcpyA(expected, CURR_DIR);
10699     lstrcatA(expected, "\\neosodon\\");
10700     ok(!lstrcmpA(prop, expected) || !lstrcmpA(prop, ""),
10701        "Expected %s or empty string, got %s\n", expected, prop);
10702
10703     size = MAX_PATH;
10704     r = MsiGetPropertyA(hpkg, "OLOROTITAN", prop, &size);
10705     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10706     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10707
10708     size = MAX_PATH;
10709     r = MsiGetPropertyA(hpkg, "PANTYDRACO", prop, &size);
10710     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10711     ok(!lstrcmpA(prop, ""), "Expected , got %s\n", prop);
10712
10713     MsiCloseHandle(hpkg);
10714     DeleteFileA("abelisaurus");
10715     DeleteFileA("bactrosaurus");
10716     DeleteFileA("camelotia");
10717     DeleteFileA("diclonius");
10718     DeleteFileA("echinodon");
10719     DeleteFileA("falcarius");
10720     DeleteFileA("gallimimus");
10721     DeleteFileA("hagryphus");
10722     RemoveDirectoryA("iguanodon");
10723     RemoveDirectoryA("jobaria");
10724     RemoveDirectoryA("kakuru");
10725     RemoveDirectoryA("labocania");
10726     RemoveDirectoryA("megaraptor");
10727     RemoveDirectoryA("neosodon");
10728     RemoveDirectoryA("olorotitan");
10729     RemoveDirectoryA("pantydraco");
10730     delete_component_path("{E3619EED-305A-418C-B9C7-F7D7377F0934}",
10731                           MSIINSTALLCONTEXT_MACHINE, NULL);
10732     delete_component_path("{D56B688D-542F-42Ef-90FD-B6DA76EE8119}",
10733                           MSIINSTALLCONTEXT_MACHINE, NULL);
10734     delete_component_path("{A19E16C5-C75D-4699-8111-C4338C40C3CB}",
10735                           MSIINSTALLCONTEXT_MACHINE, NULL);
10736     delete_component_path("{17762FA1-A7AE-4CC6-8827-62873C35361D}",
10737                           MSIINSTALLCONTEXT_MACHINE, NULL);
10738     delete_component_path("{8E0DA02E-F6A7-4A8F-B25D-6F564C492308}",
10739                           MSIINSTALLCONTEXT_MACHINE, NULL);
10740     delete_component_path("{243C22B1-8C51-4151-B9D1-1AE5265E079E}",
10741                           MSIINSTALLCONTEXT_MACHINE, NULL);
10742     delete_component_path("{8B1034B7-BD5E-41ac-B52C-0105D3DFD74D}",
10743                           MSIINSTALLCONTEXT_MACHINE, NULL);
10744     delete_component_path("{0B499649-197A-48EF-93D2-AF1C17ED6E90}",
10745                           MSIINSTALLCONTEXT_MACHINE, NULL);
10746     DeleteFileA(msifile);
10747 }
10748
10749 static void set_suminfo_prop(MSIHANDLE db, DWORD prop, DWORD val)
10750 {
10751     MSIHANDLE summary;
10752     UINT r;
10753
10754     r = MsiGetSummaryInformationA(db, NULL, 1, &summary);
10755     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10756
10757     r = MsiSummaryInfoSetPropertyA(summary, prop, VT_I4, val, NULL, NULL);
10758     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10759
10760     r = MsiSummaryInfoPersist(summary);
10761     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
10762
10763     MsiCloseHandle(summary);
10764 }
10765
10766 static void test_MsiGetSourcePath(void)
10767 {
10768     MSIHANDLE hdb, hpkg;
10769     CHAR path[MAX_PATH];
10770     CHAR cwd[MAX_PATH];
10771     CHAR subsrc[MAX_PATH];
10772     CHAR sub2[MAX_PATH];
10773     DWORD size;
10774     UINT r;
10775
10776     lstrcpyA(cwd, CURR_DIR);
10777     lstrcatA(cwd, "\\");
10778
10779     lstrcpyA(subsrc, cwd);
10780     lstrcatA(subsrc, "subsource");
10781     lstrcatA(subsrc, "\\");
10782
10783     lstrcpyA(sub2, subsrc);
10784     lstrcatA(sub2, "sub2");
10785     lstrcatA(sub2, "\\");
10786
10787     /* uncompressed source */
10788
10789     hdb = create_package_db();
10790     ok( hdb, "failed to create database\n");
10791
10792     set_suminfo_prop(hdb, PID_WORDCOUNT, 0);
10793
10794     r = add_directory_entry(hdb, "'TARGETDIR', '', 'SourceDir'");
10795     ok(r == S_OK, "failed\n");
10796
10797     r = add_directory_entry(hdb, "'SubDir', 'TARGETDIR', 'subtarget:subsource'");
10798     ok(r == S_OK, "failed\n");
10799
10800     r = add_directory_entry(hdb, "'SubDir2', 'SubDir', 'sub2'");
10801     ok(r == S_OK, "failed\n");
10802
10803     r = MsiDatabaseCommit(hdb);
10804     ok(r == ERROR_SUCCESS , "Failed to commit database\n");
10805
10806     r = package_from_db(hdb, &hpkg);
10807     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
10808     {
10809         skip("Not enough rights to perform tests\n");
10810         DeleteFile(msifile);
10811         return;
10812     }
10813     ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
10814
10815     MsiCloseHandle(hdb);
10816
10817     /* invalid database handle */
10818     size = MAX_PATH;
10819     lstrcpyA(path, "kiwi");
10820     r = MsiGetSourcePath(-1, "TARGETDIR", path, &size);
10821     ok(r == ERROR_INVALID_HANDLE,
10822        "Expected ERROR_INVALID_HANDLE, got %d\n", r);
10823     ok(!lstrcmpA(path, "kiwi"),
10824        "Expected path to be unchanged, got \"%s\"\n", path);
10825     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10826
10827     /* NULL szFolder */
10828     size = MAX_PATH;
10829     lstrcpyA(path, "kiwi");
10830     r = MsiGetSourcePath(hpkg, NULL, path, &size);
10831     ok(r == ERROR_INVALID_PARAMETER,
10832        "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
10833     ok(!lstrcmpA(path, "kiwi"),
10834        "Expected path to be unchanged, got \"%s\"\n", path);
10835     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10836
10837     /* empty szFolder */
10838     size = MAX_PATH;
10839     lstrcpyA(path, "kiwi");
10840     r = MsiGetSourcePath(hpkg, "", path, &size);
10841     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
10842     ok(!lstrcmpA(path, "kiwi"),
10843        "Expected path to be unchanged, got \"%s\"\n", path);
10844     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10845
10846     /* try TARGETDIR */
10847     size = MAX_PATH;
10848     lstrcpyA(path, "kiwi");
10849     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
10850     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
10851     ok(!lstrcmpA(path, "kiwi"),
10852        "Expected path to be unchanged, got \"%s\"\n", path);
10853     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10854
10855     size = MAX_PATH;
10856     lstrcpyA(path, "kiwi");
10857     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
10858     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10859     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
10860     ok(size == 0, "Expected 0, got %d\n", size);
10861
10862     size = MAX_PATH;
10863     lstrcpyA(path, "kiwi");
10864     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
10865     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10866     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
10867     ok(size == 0, "Expected 0, got %d\n", size);
10868
10869     /* try SourceDir */
10870     size = MAX_PATH;
10871     lstrcpyA(path, "kiwi");
10872     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
10873     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
10874     ok(!lstrcmpA(path, "kiwi"),
10875        "Expected path to be unchanged, got \"%s\"\n", path);
10876     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10877
10878     /* try SOURCEDIR */
10879     size = MAX_PATH;
10880     lstrcpyA(path, "kiwi");
10881     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
10882     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
10883     ok(!lstrcmpA(path, "kiwi"),
10884        "Expected path to be unchanged, got \"%s\"\n", path);
10885     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10886
10887     /* source path does not exist, but the property exists */
10888     size = MAX_PATH;
10889     lstrcpyA(path, "kiwi");
10890     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
10891     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10892     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
10893     ok(size == 0, "Expected 0, got %d\n", size);
10894
10895     size = MAX_PATH;
10896     lstrcpyA(path, "kiwi");
10897     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
10898     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10899     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
10900     ok(size == 0, "Expected 0, got %d\n", size);
10901
10902     /* try SubDir */
10903     size = MAX_PATH;
10904     lstrcpyA(path, "kiwi");
10905     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
10906     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
10907     ok(!lstrcmpA(path, "kiwi"),
10908        "Expected path to be unchanged, got \"%s\"\n", path);
10909     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10910
10911     /* try SubDir2 */
10912     size = MAX_PATH;
10913     lstrcpyA(path, "kiwi");
10914     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
10915     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
10916     ok(!lstrcmpA(path, "kiwi"),
10917        "Expected path to be unchanged, got \"%s\"\n", path);
10918     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10919
10920     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
10921
10922     r = MsiDoAction(hpkg, "CostInitialize");
10923     ok(r == ERROR_SUCCESS, "cost init failed\n");
10924
10925     /* try TARGETDIR after CostInitialize */
10926     size = MAX_PATH;
10927     lstrcpyA(path, "kiwi");
10928     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
10929     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10930     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
10931     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
10932
10933     /* try SourceDir after CostInitialize */
10934     size = MAX_PATH;
10935     lstrcpyA(path, "kiwi");
10936     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
10937     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10938     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
10939     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
10940
10941     /* try SOURCEDIR after CostInitialize */
10942     size = MAX_PATH;
10943     lstrcpyA(path, "kiwi");
10944     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
10945     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
10946     ok(!lstrcmpA(path, "kiwi"),
10947        "Expected path to be unchanged, got \"%s\"\n", path);
10948     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
10949
10950     /* source path does not exist, but the property exists */
10951     size = MAX_PATH;
10952     lstrcpyA(path, "kiwi");
10953     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
10954     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10955     todo_wine
10956     {
10957         ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
10958         ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
10959     }
10960
10961     /* try SubDir after CostInitialize */
10962     size = MAX_PATH;
10963     lstrcpyA(path, "kiwi");
10964     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
10965     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10966     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
10967     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
10968
10969     /* try SubDir2 after CostInitialize */
10970     size = MAX_PATH;
10971     lstrcpyA(path, "kiwi");
10972     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
10973     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10974     ok(!lstrcmpA(path, sub2), "Expected \"%s\", got \"%s\"\n", sub2, path);
10975     ok(size == lstrlenA(sub2), "Expected %d, got %d\n", lstrlenA(sub2), size);
10976
10977     r = MsiDoAction(hpkg, "ResolveSource");
10978     ok(r == ERROR_SUCCESS, "file cost failed\n");
10979
10980     /* try TARGETDIR after ResolveSource */
10981     size = MAX_PATH;
10982     lstrcpyA(path, "kiwi");
10983     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
10984     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10985     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
10986     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
10987
10988     /* try SourceDir after ResolveSource */
10989     size = MAX_PATH;
10990     lstrcpyA(path, "kiwi");
10991     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
10992     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
10993     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
10994     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
10995
10996     /* try SOURCEDIR after ResolveSource */
10997     size = MAX_PATH;
10998     lstrcpyA(path, "kiwi");
10999     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11000     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11001     ok(!lstrcmpA(path, "kiwi"),
11002        "Expected path to be unchanged, got \"%s\"\n", path);
11003     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11004
11005     /* source path does not exist, but the property exists */
11006     size = MAX_PATH;
11007     lstrcpyA(path, "kiwi");
11008     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11009     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11010     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11011     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11012
11013     /* try SubDir after ResolveSource */
11014     size = MAX_PATH;
11015     lstrcpyA(path, "kiwi");
11016     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11017     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11018     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11019     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11020
11021     /* try SubDir2 after ResolveSource */
11022     size = MAX_PATH;
11023     lstrcpyA(path, "kiwi");
11024     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11025     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11026     ok(!lstrcmpA(path, sub2), "Expected \"%s\", got \"%s\"\n", sub2, path);
11027     ok(size == lstrlenA(sub2), "Expected %d, got %d\n", lstrlenA(sub2), size);
11028
11029     r = MsiDoAction(hpkg, "FileCost");
11030     ok(r == ERROR_SUCCESS, "file cost failed\n");
11031
11032     /* try TARGETDIR after FileCost */
11033     size = MAX_PATH;
11034     lstrcpyA(path, "kiwi");
11035     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
11036     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11037     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11038     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11039
11040     /* try SourceDir after FileCost */
11041     size = MAX_PATH;
11042     lstrcpyA(path, "kiwi");
11043     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11044     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11045     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11046     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11047
11048     /* try SOURCEDIR after FileCost */
11049     size = MAX_PATH;
11050     lstrcpyA(path, "kiwi");
11051     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11052     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11053     ok(!lstrcmpA(path, "kiwi"),
11054        "Expected path to be unchanged, got \"%s\"\n", path);
11055     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11056
11057     /* source path does not exist, but the property exists */
11058     size = MAX_PATH;
11059     lstrcpyA(path, "kiwi");
11060     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11061     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11062     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11063     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11064
11065     /* try SubDir after FileCost */
11066     size = MAX_PATH;
11067     lstrcpyA(path, "kiwi");
11068     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11069     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11070     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11071     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11072
11073     /* try SubDir2 after FileCost */
11074     size = MAX_PATH;
11075     lstrcpyA(path, "kiwi");
11076     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11077     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11078     ok(!lstrcmpA(path, sub2), "Expected \"%s\", got \"%s\"\n", sub2, path);
11079     ok(size == lstrlenA(sub2), "Expected %d, got %d\n", lstrlenA(sub2), size);
11080
11081     r = MsiDoAction(hpkg, "CostFinalize");
11082     ok(r == ERROR_SUCCESS, "file cost failed\n");
11083
11084     /* try TARGETDIR after CostFinalize */
11085     size = MAX_PATH;
11086     lstrcpyA(path, "kiwi");
11087     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
11088     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11089     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11090     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11091
11092     /* try SourceDir after CostFinalize */
11093     size = MAX_PATH;
11094     lstrcpyA(path, "kiwi");
11095     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11096     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11097     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11098     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11099
11100     /* try SOURCEDIR after CostFinalize */
11101     size = MAX_PATH;
11102     lstrcpyA(path, "kiwi");
11103     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11104     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11105     ok(!lstrcmpA(path, "kiwi"),
11106        "Expected path to be unchanged, got \"%s\"\n", path);
11107     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11108
11109     /* source path does not exist, but the property exists */
11110     size = MAX_PATH;
11111     lstrcpyA(path, "kiwi");
11112     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11113     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11114     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11115     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11116
11117     /* try SubDir after CostFinalize */
11118     size = MAX_PATH;
11119     lstrcpyA(path, "kiwi");
11120     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11121     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11122     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11123     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11124
11125     /* try SubDir2 after CostFinalize */
11126     size = MAX_PATH;
11127     lstrcpyA(path, "kiwi");
11128     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11129     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11130     ok(!lstrcmpA(path, sub2), "Expected \"%s\", got \"%s\"\n", sub2, path);
11131     ok(size == lstrlenA(sub2), "Expected %d, got %d\n", lstrlenA(sub2), size);
11132
11133     /* nonexistent directory */
11134     size = MAX_PATH;
11135     lstrcpyA(path, "kiwi");
11136     r = MsiGetSourcePath(hpkg, "IDontExist", path, &size);
11137     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11138     ok(!lstrcmpA(path, "kiwi"),
11139        "Expected path to be unchanged, got \"%s\"\n", path);
11140     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11141
11142     /* NULL szPathBuf */
11143     size = MAX_PATH;
11144     r = MsiGetSourcePath(hpkg, "SourceDir", NULL, &size);
11145     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11146     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11147
11148     /* NULL pcchPathBuf */
11149     lstrcpyA(path, "kiwi");
11150     r = MsiGetSourcePath(hpkg, "SourceDir", path, NULL);
11151     ok(r == ERROR_INVALID_PARAMETER,
11152        "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
11153     ok(!lstrcmpA(path, "kiwi"),
11154        "Expected path to be unchanged, got \"%s\"\n", path);
11155
11156     /* pcchPathBuf is 0 */
11157     size = 0;
11158     lstrcpyA(path, "kiwi");
11159     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11160     ok(r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
11161     ok(!lstrcmpA(path, "kiwi"),
11162        "Expected path to be unchanged, got \"%s\"\n", path);
11163     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11164
11165     /* pcchPathBuf does not have room for NULL terminator */
11166     size = lstrlenA(cwd);
11167     lstrcpyA(path, "kiwi");
11168     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11169     ok(r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
11170     ok(!strncmp(path, cwd, lstrlenA(cwd) - 1),
11171        "Expected path with no backslash, got \"%s\"\n", path);
11172     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11173
11174     /* pcchPathBuf has room for NULL terminator */
11175     size = lstrlenA(cwd) + 1;
11176     lstrcpyA(path, "kiwi");
11177     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11178     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11179     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11180     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11181
11182     /* remove property */
11183     r = MsiSetProperty(hpkg, "SourceDir", NULL);
11184     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11185
11186     /* try SourceDir again */
11187     size = MAX_PATH;
11188     lstrcpyA(path, "kiwi");
11189     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11190     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11191     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11192     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11193
11194     /* set property to a valid directory */
11195     r = MsiSetProperty(hpkg, "SOURCEDIR", cwd);
11196     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11197
11198     /* try SOURCEDIR again */
11199     size = MAX_PATH;
11200     lstrcpyA(path, "kiwi");
11201     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11202     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11203     ok(!lstrcmpA(path, "kiwi"),
11204        "Expected path to be unchanged, got \"%s\"\n", path);
11205     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11206
11207     MsiCloseHandle(hpkg);
11208
11209     /* compressed source */
11210
11211     r = MsiOpenDatabase(msifile, MSIDBOPEN_DIRECT, &hdb);
11212     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11213
11214     set_suminfo_prop(hdb, PID_WORDCOUNT, msidbSumInfoSourceTypeCompressed);
11215
11216     r = package_from_db(hdb, &hpkg);
11217     ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
11218
11219     /* try TARGETDIR */
11220     size = MAX_PATH;
11221     lstrcpyA(path, "kiwi");
11222     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
11223     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11224     ok(!lstrcmpA(path, "kiwi"),
11225        "Expected path to be unchanged, got \"%s\"\n", path);
11226     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11227
11228     /* try SourceDir */
11229     size = MAX_PATH;
11230     lstrcpyA(path, "kiwi");
11231     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11232     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11233     ok(!lstrcmpA(path, "kiwi"),
11234        "Expected path to be unchanged, got \"%s\"\n", path);
11235     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11236
11237     /* try SOURCEDIR */
11238     size = MAX_PATH;
11239     lstrcpyA(path, "kiwi");
11240     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11241     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11242     ok(!lstrcmpA(path, "kiwi"),
11243        "Expected path to be unchanged, got \"%s\"\n", path);
11244     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11245
11246     /* source path nor the property exist */
11247     size = MAX_PATH;
11248     lstrcpyA(path, "kiwi");
11249     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11250     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11251     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11252     ok(size == 0, "Expected 0, got %d\n", size);
11253
11254     /* try SubDir */
11255     size = MAX_PATH;
11256     lstrcpyA(path, "kiwi");
11257     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11258     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11259     ok(!lstrcmpA(path, "kiwi"),
11260        "Expected path to be unchanged, got \"%s\"\n", path);
11261     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11262
11263     /* try SubDir2 */
11264     size = MAX_PATH;
11265     lstrcpyA(path, "kiwi");
11266     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11267     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11268     ok(!lstrcmpA(path, "kiwi"),
11269        "Expected path to be unchanged, got \"%s\"\n", path);
11270     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
11271
11272     r = MsiDoAction(hpkg, "CostInitialize");
11273     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11274
11275     /* try TARGETDIR after CostInitialize */
11276     size = MAX_PATH;
11277     lstrcpyA(path, "kiwi");
11278     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
11279     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11280     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11281     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11282
11283     /* try SourceDir after CostInitialize */
11284     size = MAX_PATH;
11285     lstrcpyA(path, "kiwi");
11286     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11287     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11288     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11289     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11290
11291     /* try SOURCEDIR after CostInitialize */
11292     size = MAX_PATH;
11293     lstrcpyA(path, "kiwi");
11294     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11295     todo_wine
11296     {
11297         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11298         ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11299         ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11300     }
11301
11302     /* source path does not exist, but the property exists */
11303     size = MAX_PATH;
11304     lstrcpyA(path, "kiwi");
11305     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11306     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11307     todo_wine
11308     {
11309         ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11310         ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11311     }
11312
11313     /* try SubDir after CostInitialize */
11314     size = MAX_PATH;
11315     lstrcpyA(path, "kiwi");
11316     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11317     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11318     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11319     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11320
11321     /* try SubDir2 after CostInitialize */
11322     size = MAX_PATH;
11323     lstrcpyA(path, "kiwi");
11324     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11325     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11326     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11327     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11328
11329     r = MsiDoAction(hpkg, "ResolveSource");
11330     ok(r == ERROR_SUCCESS, "file cost failed\n");
11331
11332     /* try TARGETDIR after ResolveSource */
11333     size = MAX_PATH;
11334     lstrcpyA(path, "kiwi");
11335     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
11336     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11337     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11338     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11339
11340     /* try SourceDir after ResolveSource */
11341     size = MAX_PATH;
11342     lstrcpyA(path, "kiwi");
11343     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11344     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11345     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11346     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11347
11348     /* try SOURCEDIR after ResolveSource */
11349     size = MAX_PATH;
11350     lstrcpyA(path, "kiwi");
11351     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11352     todo_wine
11353     {
11354         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11355         ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11356         ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11357     }
11358
11359     /* source path and the property exist */
11360     size = MAX_PATH;
11361     lstrcpyA(path, "kiwi");
11362     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11363     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11364     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11365     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11366
11367     /* try SubDir after ResolveSource */
11368     size = MAX_PATH;
11369     lstrcpyA(path, "kiwi");
11370     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11371     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11372     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11373     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11374
11375     /* try SubDir2 after ResolveSource */
11376     size = MAX_PATH;
11377     lstrcpyA(path, "kiwi");
11378     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11379     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11380     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11381     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11382
11383     r = MsiDoAction(hpkg, "FileCost");
11384     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11385
11386     /* try TARGETDIR after CostFinalize */
11387     size = MAX_PATH;
11388     lstrcpyA(path, "kiwi");
11389     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
11390     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11391     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11392     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11393
11394     /* try SourceDir after CostFinalize */
11395     size = MAX_PATH;
11396     lstrcpyA(path, "kiwi");
11397     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11398     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11399     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11400     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11401
11402     /* try SOURCEDIR after CostFinalize */
11403     size = MAX_PATH;
11404     lstrcpyA(path, "kiwi");
11405     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11406     todo_wine
11407     {
11408         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11409         ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11410         ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11411     }
11412
11413     /* source path and the property exist */
11414     size = MAX_PATH;
11415     lstrcpyA(path, "kiwi");
11416     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11417     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11418     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11419     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11420
11421     /* try SubDir after CostFinalize */
11422     size = MAX_PATH;
11423     lstrcpyA(path, "kiwi");
11424     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11425     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11426     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11427     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11428
11429     /* try SubDir2 after CostFinalize */
11430     size = MAX_PATH;
11431     lstrcpyA(path, "kiwi");
11432     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11433     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11434     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11435     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11436
11437     r = MsiDoAction(hpkg, "CostFinalize");
11438     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11439
11440     /* try TARGETDIR after CostFinalize */
11441     size = MAX_PATH;
11442     lstrcpyA(path, "kiwi");
11443     r = MsiGetSourcePath(hpkg, "TARGETDIR", path, &size);
11444     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11445     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11446     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11447
11448     /* try SourceDir after CostFinalize */
11449     size = MAX_PATH;
11450     lstrcpyA(path, "kiwi");
11451     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
11452     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11453     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11454     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11455
11456     /* try SOURCEDIR after CostFinalize */
11457     size = MAX_PATH;
11458     lstrcpyA(path, "kiwi");
11459     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11460     todo_wine
11461     {
11462         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11463         ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11464         ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11465     }
11466
11467     /* source path and the property exist */
11468     size = MAX_PATH;
11469     lstrcpyA(path, "kiwi");
11470     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11471     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11472     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11473     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11474
11475     /* try SubDir after CostFinalize */
11476     size = MAX_PATH;
11477     lstrcpyA(path, "kiwi");
11478     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11479     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11480     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11481     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11482
11483     /* try SubDir2 after CostFinalize */
11484     size = MAX_PATH;
11485     lstrcpyA(path, "kiwi");
11486     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11487     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11488     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11489     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11490
11491     MsiCloseHandle(hpkg);
11492     DeleteFile(msifile);
11493 }
11494
11495 static void test_shortlongsource(void)
11496 {
11497     MSIHANDLE hdb, hpkg;
11498     CHAR path[MAX_PATH];
11499     CHAR cwd[MAX_PATH];
11500     CHAR subsrc[MAX_PATH];
11501     DWORD size;
11502     UINT r;
11503
11504     lstrcpyA(cwd, CURR_DIR);
11505     lstrcatA(cwd, "\\");
11506
11507     lstrcpyA(subsrc, cwd);
11508     lstrcatA(subsrc, "long");
11509     lstrcatA(subsrc, "\\");
11510
11511     /* long file names */
11512
11513     hdb = create_package_db();
11514     ok( hdb, "failed to create database\n");
11515
11516     set_suminfo_prop(hdb, PID_WORDCOUNT, 0);
11517
11518     r = add_directory_entry(hdb, "'TARGETDIR', '', 'SourceDir'");
11519     ok(r == S_OK, "failed\n");
11520
11521     r = add_directory_entry(hdb, "'SubDir', 'TARGETDIR', 'short|long'");
11522     ok(r == S_OK, "failed\n");
11523
11524     /* CostInitialize:short */
11525     r = add_directory_entry(hdb, "'SubDir2', 'TARGETDIR', 'one|two'");
11526     ok(r == S_OK, "failed\n");
11527
11528     /* CostInitialize:long */
11529     r = add_directory_entry(hdb, "'SubDir3', 'TARGETDIR', 'three|four'");
11530     ok(r == S_OK, "failed\n");
11531
11532     /* FileCost:short */
11533     r = add_directory_entry(hdb, "'SubDir4', 'TARGETDIR', 'five|six'");
11534     ok(r == S_OK, "failed\n");
11535
11536     /* FileCost:long */
11537     r = add_directory_entry(hdb, "'SubDir5', 'TARGETDIR', 'seven|eight'");
11538     ok(r == S_OK, "failed\n");
11539
11540     /* CostFinalize:short */
11541     r = add_directory_entry(hdb, "'SubDir6', 'TARGETDIR', 'nine|ten'");
11542     ok(r == S_OK, "failed\n");
11543
11544     /* CostFinalize:long */
11545     r = add_directory_entry(hdb, "'SubDir7', 'TARGETDIR', 'eleven|twelve'");
11546     ok(r == S_OK, "failed\n");
11547
11548     MsiDatabaseCommit(hdb);
11549
11550     r = package_from_db(hdb, &hpkg);
11551     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
11552     {
11553         skip("Not enough rights to perform tests\n");
11554         DeleteFile(msifile);
11555         return;
11556     }
11557     ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
11558
11559     MsiCloseHandle(hdb);
11560
11561     CreateDirectoryA("one", NULL);
11562     CreateDirectoryA("four", NULL);
11563
11564     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
11565
11566     r = MsiDoAction(hpkg, "CostInitialize");
11567     ok(r == ERROR_SUCCESS, "file cost failed\n");
11568
11569     CreateDirectory("five", NULL);
11570     CreateDirectory("eight", NULL);
11571
11572     r = MsiDoAction(hpkg, "FileCost");
11573     ok(r == ERROR_SUCCESS, "file cost failed\n");
11574
11575     CreateDirectory("nine", NULL);
11576     CreateDirectory("twelve", NULL);
11577
11578     r = MsiDoAction(hpkg, "CostFinalize");
11579     ok(r == ERROR_SUCCESS, "file cost failed\n");
11580
11581     /* neither short nor long source directories exist */
11582     size = MAX_PATH;
11583     lstrcpyA(path, "kiwi");
11584     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11585     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11586     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11587     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11588
11589     CreateDirectoryA("short", NULL);
11590
11591     /* short source directory exists */
11592     size = MAX_PATH;
11593     lstrcpyA(path, "kiwi");
11594     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11595     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11596     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11597     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11598
11599     CreateDirectoryA("long", NULL);
11600
11601     /* both short and long source directories exist */
11602     size = MAX_PATH;
11603     lstrcpyA(path, "kiwi");
11604     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11605     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11606     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11607     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11608
11609     lstrcpyA(subsrc, cwd);
11610     lstrcatA(subsrc, "two");
11611     lstrcatA(subsrc, "\\");
11612
11613     /* short dir exists before CostInitialize */
11614     size = MAX_PATH;
11615     lstrcpyA(path, "kiwi");
11616     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11617     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11618     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11619     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11620
11621     lstrcpyA(subsrc, cwd);
11622     lstrcatA(subsrc, "four");
11623     lstrcatA(subsrc, "\\");
11624
11625     /* long dir exists before CostInitialize */
11626     size = MAX_PATH;
11627     lstrcpyA(path, "kiwi");
11628     r = MsiGetSourcePath(hpkg, "SubDir3", path, &size);
11629     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11630     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11631     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11632
11633     lstrcpyA(subsrc, cwd);
11634     lstrcatA(subsrc, "six");
11635     lstrcatA(subsrc, "\\");
11636
11637     /* short dir exists before FileCost */
11638     size = MAX_PATH;
11639     lstrcpyA(path, "kiwi");
11640     r = MsiGetSourcePath(hpkg, "SubDir4", path, &size);
11641     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11642     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11643     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11644
11645     lstrcpyA(subsrc, cwd);
11646     lstrcatA(subsrc, "eight");
11647     lstrcatA(subsrc, "\\");
11648
11649     /* long dir exists before FileCost */
11650     size = MAX_PATH;
11651     lstrcpyA(path, "kiwi");
11652     r = MsiGetSourcePath(hpkg, "SubDir5", path, &size);
11653     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11654     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11655     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11656
11657     lstrcpyA(subsrc, cwd);
11658     lstrcatA(subsrc, "ten");
11659     lstrcatA(subsrc, "\\");
11660
11661     /* short dir exists before CostFinalize */
11662     size = MAX_PATH;
11663     lstrcpyA(path, "kiwi");
11664     r = MsiGetSourcePath(hpkg, "SubDir6", path, &size);
11665     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11666     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11667     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11668
11669     lstrcpyA(subsrc, cwd);
11670     lstrcatA(subsrc, "twelve");
11671     lstrcatA(subsrc, "\\");
11672
11673     /* long dir exists before CostFinalize */
11674     size = MAX_PATH;
11675     lstrcpyA(path, "kiwi");
11676     r = MsiGetSourcePath(hpkg, "SubDir7", path, &size);
11677     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11678     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11679     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11680
11681     MsiCloseHandle(hpkg);
11682     RemoveDirectoryA("short");
11683     RemoveDirectoryA("long");
11684     RemoveDirectoryA("one");
11685     RemoveDirectoryA("four");
11686     RemoveDirectoryA("five");
11687     RemoveDirectoryA("eight");
11688     RemoveDirectoryA("nine");
11689     RemoveDirectoryA("twelve");
11690
11691     /* short file names */
11692
11693     r = MsiOpenDatabase(msifile, MSIDBOPEN_DIRECT, &hdb);
11694     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11695
11696     set_suminfo_prop(hdb, PID_WORDCOUNT, msidbSumInfoSourceTypeSFN);
11697
11698     r = package_from_db(hdb, &hpkg);
11699     ok(r == ERROR_SUCCESS, "failed to create package %u\n", r);
11700
11701     MsiCloseHandle(hdb);
11702
11703     CreateDirectoryA("one", NULL);
11704     CreateDirectoryA("four", NULL);
11705
11706     r = MsiDoAction(hpkg, "CostInitialize");
11707     ok(r == ERROR_SUCCESS, "file cost failed\n");
11708
11709     CreateDirectory("five", NULL);
11710     CreateDirectory("eight", NULL);
11711
11712     r = MsiDoAction(hpkg, "FileCost");
11713     ok(r == ERROR_SUCCESS, "file cost failed\n");
11714
11715     CreateDirectory("nine", NULL);
11716     CreateDirectory("twelve", NULL);
11717
11718     r = MsiDoAction(hpkg, "CostFinalize");
11719     ok(r == ERROR_SUCCESS, "file cost failed\n");
11720
11721     lstrcpyA(subsrc, cwd);
11722     lstrcatA(subsrc, "short");
11723     lstrcatA(subsrc, "\\");
11724
11725     /* neither short nor long source directories exist */
11726     size = MAX_PATH;
11727     lstrcpyA(path, "kiwi");
11728     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11729     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11730     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11731     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11732
11733     CreateDirectoryA("short", NULL);
11734
11735     /* short source directory exists */
11736     size = MAX_PATH;
11737     lstrcpyA(path, "kiwi");
11738     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11739     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11740     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11741     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11742
11743     CreateDirectoryA("long", NULL);
11744
11745     /* both short and long source directories exist */
11746     size = MAX_PATH;
11747     lstrcpyA(path, "kiwi");
11748     r = MsiGetSourcePath(hpkg, "SubDir", path, &size);
11749     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11750     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11751     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11752
11753     lstrcpyA(subsrc, cwd);
11754     lstrcatA(subsrc, "one");
11755     lstrcatA(subsrc, "\\");
11756
11757     /* short dir exists before CostInitialize */
11758     size = MAX_PATH;
11759     lstrcpyA(path, "kiwi");
11760     r = MsiGetSourcePath(hpkg, "SubDir2", path, &size);
11761     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11762     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11763     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11764
11765     lstrcpyA(subsrc, cwd);
11766     lstrcatA(subsrc, "three");
11767     lstrcatA(subsrc, "\\");
11768
11769     /* long dir exists before CostInitialize */
11770     size = MAX_PATH;
11771     lstrcpyA(path, "kiwi");
11772     r = MsiGetSourcePath(hpkg, "SubDir3", path, &size);
11773     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11774     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11775     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11776
11777     lstrcpyA(subsrc, cwd);
11778     lstrcatA(subsrc, "five");
11779     lstrcatA(subsrc, "\\");
11780
11781     /* short dir exists before FileCost */
11782     size = MAX_PATH;
11783     lstrcpyA(path, "kiwi");
11784     r = MsiGetSourcePath(hpkg, "SubDir4", path, &size);
11785     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11786     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11787     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11788
11789     lstrcpyA(subsrc, cwd);
11790     lstrcatA(subsrc, "seven");
11791     lstrcatA(subsrc, "\\");
11792
11793     /* long dir exists before FileCost */
11794     size = MAX_PATH;
11795     lstrcpyA(path, "kiwi");
11796     r = MsiGetSourcePath(hpkg, "SubDir5", path, &size);
11797     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11798     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11799     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11800
11801     lstrcpyA(subsrc, cwd);
11802     lstrcatA(subsrc, "nine");
11803     lstrcatA(subsrc, "\\");
11804
11805     /* short dir exists before CostFinalize */
11806     size = MAX_PATH;
11807     lstrcpyA(path, "kiwi");
11808     r = MsiGetSourcePath(hpkg, "SubDir6", path, &size);
11809     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11810     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11811     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11812
11813     lstrcpyA(subsrc, cwd);
11814     lstrcatA(subsrc, "eleven");
11815     lstrcatA(subsrc, "\\");
11816
11817     /* long dir exists before CostFinalize */
11818     size = MAX_PATH;
11819     lstrcpyA(path, "kiwi");
11820     r = MsiGetSourcePath(hpkg, "SubDir7", path, &size);
11821     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11822     ok(!lstrcmpA(path, subsrc), "Expected \"%s\", got \"%s\"\n", subsrc, path);
11823     ok(size == lstrlenA(subsrc), "Expected %d, got %d\n", lstrlenA(subsrc), size);
11824
11825     MsiCloseHandle(hpkg);
11826     RemoveDirectoryA("short");
11827     RemoveDirectoryA("long");
11828     RemoveDirectoryA("one");
11829     RemoveDirectoryA("four");
11830     RemoveDirectoryA("five");
11831     RemoveDirectoryA("eight");
11832     RemoveDirectoryA("nine");
11833     RemoveDirectoryA("twelve");
11834     DeleteFileA(msifile);
11835 }
11836
11837 static void test_sourcedir(void)
11838 {
11839     MSIHANDLE hdb, hpkg;
11840     CHAR package[12];
11841     CHAR path[MAX_PATH];
11842     CHAR cwd[MAX_PATH];
11843     CHAR subsrc[MAX_PATH];
11844     DWORD size;
11845     UINT r;
11846
11847     lstrcpyA(cwd, CURR_DIR);
11848     lstrcatA(cwd, "\\");
11849
11850     lstrcpyA(subsrc, cwd);
11851     lstrcatA(subsrc, "long");
11852     lstrcatA(subsrc, "\\");
11853
11854     hdb = create_package_db();
11855     ok( hdb, "failed to create database\n");
11856
11857     r = add_directory_entry(hdb, "'TARGETDIR', '', 'SourceDir'");
11858     ok(r == S_OK, "failed\n");
11859
11860     sprintf(package, "#%u", hdb);
11861     r = MsiOpenPackage(package, &hpkg);
11862     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
11863     {
11864         skip("Not enough rights to perform tests\n");
11865         goto error;
11866     }
11867     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11868
11869     /* properties only */
11870
11871     /* SourceDir prop */
11872     size = MAX_PATH;
11873     lstrcpyA(path, "kiwi");
11874     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
11875     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11876     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11877     ok(size == 0, "Expected 0, got %d\n", size);
11878
11879     /* SOURCEDIR prop */
11880     size = MAX_PATH;
11881     lstrcpyA(path, "kiwi");
11882     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11883     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11884     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11885     ok(size == 0, "Expected 0, got %d\n", size);
11886
11887     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
11888
11889     r = MsiDoAction(hpkg, "CostInitialize");
11890     ok(r == ERROR_SUCCESS, "file cost failed\n");
11891
11892     /* SourceDir after CostInitialize */
11893     size = MAX_PATH;
11894     lstrcpyA(path, "kiwi");
11895     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
11896     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11897     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11898     ok(size == 0, "Expected 0, got %d\n", size);
11899
11900     /* SOURCEDIR after CostInitialize */
11901     size = MAX_PATH;
11902     lstrcpyA(path, "kiwi");
11903     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11904     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11905     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11906     ok(size == 0, "Expected 0, got %d\n", size);
11907
11908     r = MsiDoAction(hpkg, "FileCost");
11909     ok(r == ERROR_SUCCESS, "file cost failed\n");
11910
11911     /* SourceDir after FileCost */
11912     size = MAX_PATH;
11913     lstrcpyA(path, "kiwi");
11914     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
11915     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11916     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11917     ok(size == 0, "Expected 0, got %d\n", size);
11918
11919     /* SOURCEDIR after FileCost */
11920     size = MAX_PATH;
11921     lstrcpyA(path, "kiwi");
11922     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11923     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11924     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11925     ok(size == 0, "Expected 0, got %d\n", size);
11926
11927     r = MsiDoAction(hpkg, "CostFinalize");
11928     ok(r == ERROR_SUCCESS, "file cost failed\n");
11929
11930     /* SourceDir after CostFinalize */
11931     size = MAX_PATH;
11932     lstrcpyA(path, "kiwi");
11933     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
11934     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11935     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11936     ok(size == 0, "Expected 0, got %d\n", size);
11937
11938     /* SOURCEDIR after CostFinalize */
11939     size = MAX_PATH;
11940     lstrcpyA(path, "kiwi");
11941     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11942     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11943     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11944     ok(size == 0, "Expected 0, got %d\n", size);
11945
11946     size = MAX_PATH;
11947     lstrcpyA(path, "kiwi");
11948     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
11949     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
11950     ok(!lstrcmpA(path, "kiwi"), "Expected \"kiwi\", got \"%s\"\n", path);
11951     ok(size == MAX_PATH, "Expected %d, got %d\n", MAX_PATH, size);
11952
11953     /* SOURCEDIR after calling MsiGetSourcePath */
11954     size = MAX_PATH;
11955     lstrcpyA(path, "kiwi");
11956     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11957     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11958     todo_wine {
11959     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11960     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11961     }
11962
11963     r = MsiDoAction(hpkg, "ResolveSource");
11964     ok(r == ERROR_SUCCESS, "file cost failed\n");
11965
11966     /* SourceDir after ResolveSource */
11967     size = MAX_PATH;
11968     lstrcpyA(path, "kiwi");
11969     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
11970     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11971     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11972     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11973
11974     /* SOURCEDIR after ResolveSource */
11975     size = MAX_PATH;
11976     lstrcpyA(path, "kiwi");
11977     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
11978     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11979     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
11980     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
11981
11982     /* random casing */
11983     size = MAX_PATH;
11984     lstrcpyA(path, "kiwi");
11985     r = MsiGetProperty(hpkg, "SoUrCeDiR", path, &size);
11986     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11987     ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
11988     ok(size == 0, "Expected 0, got %d\n", size);
11989
11990     MsiCloseHandle(hpkg);
11991
11992     /* reset the package state */
11993     sprintf(package, "#%i", hdb);
11994     r = MsiOpenPackage(package, &hpkg);
11995     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
11996
11997     /* test how MsiGetSourcePath affects the properties */
11998
11999     /* SourceDir prop */
12000     size = MAX_PATH;
12001     lstrcpyA(path, "kiwi");
12002     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
12003     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12004     todo_wine
12005     {
12006         ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
12007         ok(size == 0, "Expected 0, got %d\n", size);
12008     }
12009
12010     size = MAX_PATH;
12011     lstrcpyA(path, "kiwi");
12012     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
12013     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
12014     ok(!lstrcmpA(path, "kiwi"),
12015        "Expected path to be unchanged, got \"%s\"\n", path);
12016     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12017
12018     /* SourceDir after MsiGetSourcePath */
12019     size = MAX_PATH;
12020     lstrcpyA(path, "kiwi");
12021     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
12022     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12023     todo_wine
12024     {
12025         ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
12026         ok(size == 0, "Expected 0, got %d\n", size);
12027     }
12028
12029     /* SOURCEDIR prop */
12030     size = MAX_PATH;
12031     lstrcpyA(path, "kiwi");
12032     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
12033     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12034     todo_wine
12035     {
12036         ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
12037         ok(size == 0, "Expected 0, got %d\n", size);
12038     }
12039
12040     size = MAX_PATH;
12041     lstrcpyA(path, "kiwi");
12042     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
12043     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
12044     ok(!lstrcmpA(path, "kiwi"),
12045        "Expected path to be unchanged, got \"%s\"\n", path);
12046     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12047
12048     /* SOURCEDIR prop after MsiGetSourcePath */
12049     size = MAX_PATH;
12050     lstrcpyA(path, "kiwi");
12051     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
12052     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12053     todo_wine
12054     {
12055         ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
12056         ok(size == 0, "Expected 0, got %d\n", size);
12057     }
12058
12059     r = MsiDoAction(hpkg, "CostInitialize");
12060     ok(r == ERROR_SUCCESS, "file cost failed\n");
12061
12062     /* SourceDir after CostInitialize */
12063     size = MAX_PATH;
12064     lstrcpyA(path, "kiwi");
12065     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
12066     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12067     todo_wine
12068     {
12069         ok(!lstrcmpA(path, ""), "Expected \"\", got \"%s\"\n", path);
12070         ok(size == 0, "Expected 0, got %d\n", size);
12071     }
12072
12073     size = MAX_PATH;
12074     lstrcpyA(path, "kiwi");
12075     r = MsiGetSourcePath(hpkg, "SourceDir", path, &size);
12076     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12077     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12078     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12079
12080     /* SourceDir after MsiGetSourcePath */
12081     size = MAX_PATH;
12082     lstrcpyA(path, "kiwi");
12083     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
12084     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12085     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12086     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12087
12088     /* SOURCEDIR after CostInitialize */
12089     size = MAX_PATH;
12090     lstrcpyA(path, "kiwi");
12091     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
12092     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12093     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12094     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12095
12096     /* SOURCEDIR source path still does not exist */
12097     size = MAX_PATH;
12098     lstrcpyA(path, "kiwi");
12099     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
12100     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
12101     ok(!lstrcmpA(path, "kiwi"),
12102        "Expected path to be unchanged, got \"%s\"\n", path);
12103     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12104
12105     r = MsiDoAction(hpkg, "FileCost");
12106     ok(r == ERROR_SUCCESS, "file cost failed\n");
12107
12108     /* SourceDir after FileCost */
12109     size = MAX_PATH;
12110     lstrcpyA(path, "kiwi");
12111     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
12112     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12113     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12114     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12115
12116     /* SOURCEDIR after FileCost */
12117     size = MAX_PATH;
12118     lstrcpyA(path, "kiwi");
12119     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
12120     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12121     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12122     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12123
12124     /* SOURCEDIR source path still does not exist */
12125     size = MAX_PATH;
12126     lstrcpyA(path, "kiwi");
12127     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
12128     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
12129     ok(!lstrcmpA(path, "kiwi"),
12130        "Expected path to be unchanged, got \"%s\"\n", path);
12131     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12132
12133     r = MsiDoAction(hpkg, "CostFinalize");
12134     ok(r == ERROR_SUCCESS, "file cost failed\n");
12135
12136     /* SourceDir after CostFinalize */
12137     size = MAX_PATH;
12138     lstrcpyA(path, "kiwi");
12139     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
12140     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12141     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12142     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12143
12144     /* SOURCEDIR after CostFinalize */
12145     size = MAX_PATH;
12146     lstrcpyA(path, "kiwi");
12147     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
12148     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12149     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12150     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12151
12152     /* SOURCEDIR source path still does not exist */
12153     size = MAX_PATH;
12154     lstrcpyA(path, "kiwi");
12155     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
12156     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
12157     ok(!lstrcmpA(path, "kiwi"),
12158        "Expected path to be unchanged, got \"%s\"\n", path);
12159     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12160
12161     r = MsiDoAction(hpkg, "ResolveSource");
12162     ok(r == ERROR_SUCCESS, "file cost failed\n");
12163
12164     /* SourceDir after ResolveSource */
12165     size = MAX_PATH;
12166     lstrcpyA(path, "kiwi");
12167     r = MsiGetProperty(hpkg, "SourceDir", path, &size);
12168     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12169     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12170     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12171
12172     /* SOURCEDIR after ResolveSource */
12173     size = MAX_PATH;
12174     lstrcpyA(path, "kiwi");
12175     r = MsiGetProperty(hpkg, "SOURCEDIR", path, &size);
12176     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12177     ok(!lstrcmpA(path, cwd), "Expected \"%s\", got \"%s\"\n", cwd, path);
12178     ok(size == lstrlenA(cwd), "Expected %d, got %d\n", lstrlenA(cwd), size);
12179
12180     /* SOURCEDIR source path still does not exist */
12181     size = MAX_PATH;
12182     lstrcpyA(path, "kiwi");
12183     r = MsiGetSourcePath(hpkg, "SOURCEDIR", path, &size);
12184     ok(r == ERROR_DIRECTORY, "Expected ERROR_DIRECTORY, got %d\n", r);
12185     ok(!lstrcmpA(path, "kiwi"),
12186        "Expected path to be unchanged, got \"%s\"\n", path);
12187     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12188
12189     MsiCloseHandle(hpkg);
12190
12191 error:
12192     MsiCloseHandle(hdb);
12193     DeleteFileA(msifile);
12194 }
12195
12196 struct access_res
12197 {
12198     BOOL gothandle;
12199     DWORD lasterr;
12200     BOOL ignore;
12201 };
12202
12203 static const struct access_res create[16] =
12204 {
12205     { TRUE, ERROR_SUCCESS, TRUE },
12206     { TRUE, ERROR_SUCCESS, TRUE },
12207     { TRUE, ERROR_SUCCESS, FALSE },
12208     { TRUE, ERROR_SUCCESS, FALSE },
12209     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12210     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12211     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12212     { TRUE, ERROR_SUCCESS, FALSE },
12213     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12214     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12215     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12216     { TRUE, ERROR_SUCCESS, TRUE },
12217     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12218     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12219     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12220     { TRUE, ERROR_SUCCESS, TRUE }
12221 };
12222
12223 static const struct access_res create_commit[16] =
12224 {
12225     { TRUE, ERROR_SUCCESS, TRUE },
12226     { TRUE, ERROR_SUCCESS, TRUE },
12227     { TRUE, ERROR_SUCCESS, FALSE },
12228     { TRUE, ERROR_SUCCESS, FALSE },
12229     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12230     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12231     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12232     { TRUE, ERROR_SUCCESS, FALSE },
12233     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12234     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12235     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12236     { TRUE, ERROR_SUCCESS, TRUE },
12237     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12238     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12239     { FALSE, ERROR_SHARING_VIOLATION, FALSE },
12240     { TRUE, ERROR_SUCCESS, TRUE }
12241 };
12242
12243 static const struct access_res create_close[16] =
12244 {
12245     { TRUE, ERROR_SUCCESS, FALSE },
12246     { TRUE, ERROR_SUCCESS, FALSE },
12247     { TRUE, ERROR_SUCCESS, FALSE },
12248     { TRUE, ERROR_SUCCESS, FALSE },
12249     { TRUE, ERROR_SUCCESS, FALSE },
12250     { TRUE, ERROR_SUCCESS, FALSE },
12251     { TRUE, ERROR_SUCCESS, FALSE },
12252     { TRUE, ERROR_SUCCESS, FALSE },
12253     { TRUE, ERROR_SUCCESS, FALSE },
12254     { TRUE, ERROR_SUCCESS, FALSE },
12255     { TRUE, ERROR_SUCCESS, FALSE },
12256     { TRUE, ERROR_SUCCESS, FALSE },
12257     { TRUE, ERROR_SUCCESS, FALSE },
12258     { TRUE, ERROR_SUCCESS, FALSE },
12259     { TRUE, ERROR_SUCCESS, FALSE },
12260     { TRUE, ERROR_SUCCESS }
12261 };
12262
12263 static void _test_file_access(LPCSTR file, const struct access_res *ares, DWORD line)
12264 {
12265     DWORD access = 0, share = 0;
12266     DWORD lasterr;
12267     HANDLE hfile;
12268     int i, j, idx = 0;
12269
12270     for (i = 0; i < 4; i++)
12271     {
12272         if (i == 0) access = 0;
12273         if (i == 1) access = GENERIC_READ;
12274         if (i == 2) access = GENERIC_WRITE;
12275         if (i == 3) access = GENERIC_READ | GENERIC_WRITE;
12276
12277         for (j = 0; j < 4; j++)
12278         {
12279             if (ares[idx].ignore)
12280                 continue;
12281
12282             if (j == 0) share = 0;
12283             if (j == 1) share = FILE_SHARE_READ;
12284             if (j == 2) share = FILE_SHARE_WRITE;
12285             if (j == 3) share = FILE_SHARE_READ | FILE_SHARE_WRITE;
12286
12287             SetLastError(0xdeadbeef);
12288             hfile = CreateFileA(file, access, share, NULL, OPEN_EXISTING,
12289                                 FILE_ATTRIBUTE_NORMAL, 0);
12290             lasterr = GetLastError();
12291
12292             ok((hfile != INVALID_HANDLE_VALUE) == ares[idx].gothandle,
12293                "(%d, handle, %d): Expected %d, got %d\n",
12294                line, idx, ares[idx].gothandle,
12295                (hfile != INVALID_HANDLE_VALUE));
12296
12297             ok(lasterr == ares[idx].lasterr, "(%d, lasterr, %d): Expected %d, got %d\n",
12298                line, idx, ares[idx].lasterr, lasterr);
12299
12300             CloseHandle(hfile);
12301             idx++;
12302         }
12303     }
12304 }
12305
12306 #define test_file_access(file, ares) _test_file_access(file, ares, __LINE__)
12307
12308 static void test_access(void)
12309 {
12310     MSIHANDLE hdb;
12311     UINT r;
12312
12313     r = MsiOpenDatabaseA(msifile, MSIDBOPEN_CREATE, &hdb);
12314     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12315
12316     test_file_access(msifile, create);
12317
12318     r = MsiDatabaseCommit(hdb);
12319     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12320
12321     test_file_access(msifile, create_commit);
12322     MsiCloseHandle(hdb);
12323
12324     test_file_access(msifile, create_close);
12325     DeleteFileA(msifile);
12326
12327     r = MsiOpenDatabaseA(msifile, MSIDBOPEN_CREATEDIRECT, &hdb);
12328     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12329
12330     test_file_access(msifile, create);
12331
12332     r = MsiDatabaseCommit(hdb);
12333     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12334
12335     test_file_access(msifile, create_commit);
12336     MsiCloseHandle(hdb);
12337
12338     test_file_access(msifile, create_close);
12339     DeleteFileA(msifile);
12340 }
12341
12342 static void test_emptypackage(void)
12343 {
12344     MSIHANDLE hpkg = 0, hdb = 0, hsuminfo = 0;
12345     MSIHANDLE hview = 0, hrec = 0;
12346     MSICONDITION condition;
12347     CHAR buffer[MAX_PATH];
12348     DWORD size;
12349     UINT r;
12350
12351     r = MsiOpenPackageA("", &hpkg);
12352     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
12353     {
12354         skip("Not enough rights to perform tests\n");
12355         return;
12356     }
12357     todo_wine
12358     {
12359         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12360     }
12361
12362     hdb = MsiGetActiveDatabase(hpkg);
12363     todo_wine
12364     {
12365         ok(hdb != 0, "Expected a valid database handle\n");
12366     }
12367
12368     r = MsiDatabaseOpenView(hdb, "SELECT * FROM `_Tables`", &hview);
12369     todo_wine
12370     {
12371         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12372     }
12373     r = MsiViewExecute(hview, 0);
12374     todo_wine
12375     {
12376         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12377     }
12378
12379     r = MsiViewFetch(hview, &hrec);
12380     todo_wine
12381     {
12382         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12383     }
12384
12385     buffer[0] = 0;
12386     size = MAX_PATH;
12387     r = MsiRecordGetString(hrec, 1, buffer, &size);
12388     todo_wine
12389     {
12390         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12391         ok(!lstrcmpA(buffer, "_Property"),
12392            "Expected \"_Property\", got \"%s\"\n", buffer);
12393     }
12394
12395     MsiCloseHandle(hrec);
12396
12397     r = MsiViewFetch(hview, &hrec);
12398     todo_wine
12399     {
12400         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12401     }
12402
12403     size = MAX_PATH;
12404     r = MsiRecordGetString(hrec, 1, buffer, &size);
12405     todo_wine
12406     {
12407         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12408         ok(!lstrcmpA(buffer, "#_FolderCache"),
12409            "Expected \"_Property\", got \"%s\"\n", buffer);
12410     }
12411
12412     MsiCloseHandle(hrec);
12413     MsiViewClose(hview);
12414     MsiCloseHandle(hview);
12415
12416     condition = MsiDatabaseIsTablePersistentA(hdb, "_Property");
12417     todo_wine
12418     {
12419         ok(condition == MSICONDITION_FALSE,
12420            "Expected MSICONDITION_FALSE, got %d\n", condition);
12421     }
12422
12423     r = MsiDatabaseOpenView(hdb, "SELECT * FROM `_Property`", &hview);
12424     todo_wine
12425     {
12426         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12427     }
12428     r = MsiViewExecute(hview, 0);
12429     todo_wine
12430     {
12431         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12432     }
12433
12434     /* _Property table is not empty */
12435     r = MsiViewFetch(hview, &hrec);
12436     todo_wine
12437     {
12438         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12439     }
12440
12441     MsiCloseHandle(hrec);
12442     MsiViewClose(hview);
12443     MsiCloseHandle(hview);
12444
12445     condition = MsiDatabaseIsTablePersistentA(hdb, "#_FolderCache");
12446     todo_wine
12447     {
12448         ok(condition == MSICONDITION_FALSE,
12449            "Expected MSICONDITION_FALSE, got %d\n", condition);
12450     }
12451
12452     r = MsiDatabaseOpenView(hdb, "SELECT * FROM `#_FolderCache`", &hview);
12453     todo_wine
12454     {
12455         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12456     }
12457     r = MsiViewExecute(hview, 0);
12458     todo_wine
12459     {
12460         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12461     }
12462
12463     /* #_FolderCache is not empty */
12464     r = MsiViewFetch(hview, &hrec);
12465     todo_wine
12466     {
12467         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12468     }
12469
12470     MsiCloseHandle(hrec);
12471     MsiViewClose(hview);
12472     MsiCloseHandle(hview);
12473
12474     r = MsiDatabaseOpenView(hdb, "SELECT * FROM `_Streams`", &hview);
12475     todo_wine
12476     {
12477         ok(r == ERROR_BAD_QUERY_SYNTAX,
12478            "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
12479     }
12480
12481     r = MsiDatabaseOpenView(hdb, "SELECT * FROM `_Storages`", &hview);
12482     todo_wine
12483     {
12484         ok(r == ERROR_BAD_QUERY_SYNTAX,
12485            "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
12486     }
12487
12488     r = MsiGetSummaryInformationA(hdb, NULL, 0, &hsuminfo);
12489     todo_wine
12490     {
12491         ok(r == ERROR_INSTALL_PACKAGE_INVALID,
12492            "Expected ERROR_INSTALL_PACKAGE_INVALID, got %d\n", r);
12493     }
12494
12495     MsiCloseHandle(hsuminfo);
12496
12497     r = MsiDatabaseCommit(hdb);
12498     todo_wine
12499     {
12500         ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12501     }
12502
12503     MsiCloseHandle(hdb);
12504     MsiCloseHandle(hpkg);
12505 }
12506
12507 static void test_MsiGetProductProperty(void)
12508 {
12509     MSIHANDLE hprod, hdb;
12510     CHAR val[MAX_PATH];
12511     CHAR path[MAX_PATH];
12512     CHAR query[MAX_PATH];
12513     CHAR keypath[MAX_PATH*2];
12514     CHAR prodcode[MAX_PATH];
12515     CHAR prod_squashed[MAX_PATH];
12516     HKEY prodkey, userkey, props;
12517     DWORD size;
12518     LONG res;
12519     UINT r;
12520     REGSAM access = KEY_ALL_ACCESS;
12521
12522     GetCurrentDirectoryA(MAX_PATH, path);
12523     lstrcatA(path, "\\");
12524
12525     create_test_guid(prodcode, prod_squashed);
12526
12527     if (is_wow64)
12528         access |= KEY_WOW64_64KEY;
12529
12530     r = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb);
12531     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12532
12533     r = MsiDatabaseCommit(hdb);
12534     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12535
12536     r = set_summary_info(hdb);
12537     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12538
12539     r = run_query(hdb,
12540             "CREATE TABLE `Directory` ( "
12541             "`Directory` CHAR(255) NOT NULL, "
12542             "`Directory_Parent` CHAR(255), "
12543             "`DefaultDir` CHAR(255) NOT NULL "
12544             "PRIMARY KEY `Directory`)");
12545     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12546
12547     r = run_query(hdb,
12548             "CREATE TABLE `Property` ( "
12549             "`Property` CHAR(72) NOT NULL, "
12550             "`Value` CHAR(255) "
12551             "PRIMARY KEY `Property`)");
12552     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12553
12554     sprintf(query, "INSERT INTO `Property` "
12555             "(`Property`, `Value`) "
12556             "VALUES( 'ProductCode', '%s' )", prodcode);
12557     r = run_query(hdb, query);
12558     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12559
12560     r = MsiDatabaseCommit(hdb);
12561     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12562
12563     MsiCloseHandle(hdb);
12564
12565     lstrcpyA(keypath, "Software\\Classes\\Installer\\Products\\");
12566     lstrcatA(keypath, prod_squashed);
12567
12568     res = RegCreateKeyExA(HKEY_LOCAL_MACHINE, keypath, 0, NULL, 0, access, NULL, &prodkey, NULL);
12569     if (res == ERROR_ACCESS_DENIED)
12570     {
12571         skip("Not enough rights to perform tests\n");
12572         DeleteFile(msifile);
12573         return;
12574     }
12575     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
12576
12577     lstrcpyA(keypath, "Software\\Microsoft\\Windows\\CurrentVersion\\");
12578     lstrcatA(keypath, "Installer\\UserData\\S-1-5-18\\Products\\");
12579     lstrcatA(keypath, prod_squashed);
12580
12581     res = RegCreateKeyExA(HKEY_LOCAL_MACHINE, keypath, 0, NULL, 0, access, NULL, &userkey, NULL);
12582     if (res == ERROR_ACCESS_DENIED)
12583     {
12584         skip("Not enough rights to perform tests\n");
12585         RegDeleteKeyA(prodkey, "");
12586         RegCloseKey(prodkey);
12587         return;
12588     }
12589     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
12590
12591     res = RegCreateKeyExA(userkey, "InstallProperties", 0, NULL, 0, access, NULL, &props, NULL);
12592     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
12593
12594     lstrcpyA(val, path);
12595     lstrcatA(val, "\\");
12596     lstrcatA(val, msifile);
12597     res = RegSetValueExA(props, "LocalPackage", 0, REG_SZ,
12598                          (const BYTE *)val, lstrlenA(val) + 1);
12599     ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
12600
12601     hprod = 0xdeadbeef;
12602     r = MsiOpenProductA(prodcode, &hprod);
12603     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12604     ok(hprod != 0 && hprod != 0xdeadbeef, "Expected a valid product handle\n");
12605
12606     /* hProduct is invalid */
12607     size = MAX_PATH;
12608     lstrcpyA(val, "apple");
12609     r = MsiGetProductPropertyA(0xdeadbeef, "ProductCode", val, &size);
12610     ok(r == ERROR_INVALID_HANDLE,
12611        "Expected ERROR_INVALID_HANDLE, got %d\n", r);
12612     ok(!lstrcmpA(val, "apple"),
12613        "Expected val to be unchanged, got \"%s\"\n", val);
12614     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12615
12616     /* szProperty is NULL */
12617     size = MAX_PATH;
12618     lstrcpyA(val, "apple");
12619     r = MsiGetProductPropertyA(hprod, NULL, val, &size);
12620     ok(r == ERROR_INVALID_PARAMETER,
12621        "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
12622     ok(!lstrcmpA(val, "apple"),
12623        "Expected val to be unchanged, got \"%s\"\n", val);
12624     ok(size == MAX_PATH, "Expected size to be unchanged, got %d\n", size);
12625
12626     /* szProperty is empty */
12627     size = MAX_PATH;
12628     lstrcpyA(val, "apple");
12629     r = MsiGetProductPropertyA(hprod, "", val, &size);
12630     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12631     ok(!lstrcmpA(val, ""), "Expected \"\", got \"%s\"\n", val);
12632     ok(size == 0, "Expected 0, got %d\n", size);
12633
12634     /* get the property */
12635     size = MAX_PATH;
12636     lstrcpyA(val, "apple");
12637     r = MsiGetProductPropertyA(hprod, "ProductCode", val, &size);
12638     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12639     ok(!lstrcmpA(val, prodcode),
12640        "Expected \"%s\", got \"%s\"\n", prodcode, val);
12641     ok(size == lstrlenA(prodcode),
12642        "Expected %d, got %d\n", lstrlenA(prodcode), size);
12643
12644     /* lpValueBuf is NULL */
12645     size = MAX_PATH;
12646     r = MsiGetProductPropertyA(hprod, "ProductCode", NULL, &size);
12647     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12648     ok(size == lstrlenA(prodcode),
12649        "Expected %d, got %d\n", lstrlenA(prodcode), size);
12650
12651     /* pcchValueBuf is NULL */
12652     lstrcpyA(val, "apple");
12653     r = MsiGetProductPropertyA(hprod, "ProductCode", val, NULL);
12654     ok(r == ERROR_INVALID_PARAMETER,
12655        "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
12656     ok(!lstrcmpA(val, "apple"),
12657        "Expected val to be unchanged, got \"%s\"\n", val);
12658     ok(size == lstrlenA(prodcode),
12659        "Expected %d, got %d\n", lstrlenA(prodcode), size);
12660
12661     /* pcchValueBuf is too small */
12662     size = 4;
12663     lstrcpyA(val, "apple");
12664     r = MsiGetProductPropertyA(hprod, "ProductCode", val, &size);
12665     ok(r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
12666     ok(!strncmp(val, prodcode, 3),
12667        "Expected first 3 chars of \"%s\", got \"%s\"\n", prodcode, val);
12668     ok(size == lstrlenA(prodcode),
12669        "Expected %d, got %d\n", lstrlenA(prodcode), size);
12670
12671     /* pcchValueBuf does not leave room for NULL terminator */
12672     size = lstrlenA(prodcode);
12673     lstrcpyA(val, "apple");
12674     r = MsiGetProductPropertyA(hprod, "ProductCode", val, &size);
12675     ok(r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
12676     ok(!strncmp(val, prodcode, lstrlenA(prodcode) - 1),
12677        "Expected first 37 chars of \"%s\", got \"%s\"\n", prodcode, val);
12678     ok(size == lstrlenA(prodcode),
12679        "Expected %d, got %d\n", lstrlenA(prodcode), size);
12680
12681     /* pcchValueBuf has enough room for NULL terminator */
12682     size = lstrlenA(prodcode) + 1;
12683     lstrcpyA(val, "apple");
12684     r = MsiGetProductPropertyA(hprod, "ProductCode", val, &size);
12685     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12686     ok(!lstrcmpA(val, prodcode),
12687        "Expected \"%s\", got \"%s\"\n", prodcode, val);
12688     ok(size == lstrlenA(prodcode),
12689        "Expected %d, got %d\n", lstrlenA(prodcode), size);
12690
12691     /* nonexistent property */
12692     size = MAX_PATH;
12693     lstrcpyA(val, "apple");
12694     r = MsiGetProductPropertyA(hprod, "IDontExist", val, &size);
12695     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12696     ok(!lstrcmpA(val, ""), "Expected \"\", got \"%s\"\n", val);
12697     ok(size == 0, "Expected 0, got %d\n", size);
12698
12699     r = MsiSetPropertyA(hprod, "NewProperty", "value");
12700     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12701
12702     /* non-product property set */
12703     size = MAX_PATH;
12704     lstrcpyA(val, "apple");
12705     r = MsiGetProductPropertyA(hprod, "NewProperty", val, &size);
12706     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12707     ok(!lstrcmpA(val, ""), "Expected \"\", got \"%s\"\n", val);
12708     ok(size == 0, "Expected 0, got %d\n", size);
12709
12710     r = MsiSetPropertyA(hprod, "ProductCode", "value");
12711     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12712
12713     /* non-product property that is also a product property set */
12714     size = MAX_PATH;
12715     lstrcpyA(val, "apple");
12716     r = MsiGetProductPropertyA(hprod, "ProductCode", val, &size);
12717     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12718     ok(!lstrcmpA(val, prodcode),
12719        "Expected \"%s\", got \"%s\"\n", prodcode, val);
12720     ok(size == lstrlenA(prodcode),
12721        "Expected %d, got %d\n", lstrlenA(prodcode), size);
12722
12723     MsiCloseHandle(hprod);
12724
12725     RegDeleteValueA(props, "LocalPackage");
12726     delete_key(props, "", access);
12727     RegCloseKey(props);
12728     delete_key(userkey, "", access);
12729     RegCloseKey(userkey);
12730     delete_key(prodkey, "", access);
12731     RegCloseKey(prodkey);
12732     DeleteFileA(msifile);
12733 }
12734
12735 static void test_MsiSetProperty(void)
12736 {
12737     MSIHANDLE hpkg, hdb, hrec;
12738     CHAR buf[MAX_PATH];
12739     LPCSTR query;
12740     DWORD size;
12741     UINT r;
12742
12743     r = package_from_db(create_package_db(), &hpkg);
12744     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
12745     {
12746         skip("Not enough rights to perform tests\n");
12747         DeleteFile(msifile);
12748         return;
12749     }
12750     ok(r == ERROR_SUCCESS, "Expected a valid package %u\n", r);
12751
12752     /* invalid hInstall */
12753     r = MsiSetPropertyA(0, "Prop", "Val");
12754     ok(r == ERROR_INVALID_HANDLE,
12755        "Expected ERROR_INVALID_HANDLE, got %d\n", r);
12756
12757     /* invalid hInstall */
12758     r = MsiSetPropertyA(0xdeadbeef, "Prop", "Val");
12759     ok(r == ERROR_INVALID_HANDLE,
12760        "Expected ERROR_INVALID_HANDLE, got %d\n", r);
12761
12762     /* szName is NULL */
12763     r = MsiSetPropertyA(hpkg, NULL, "Val");
12764     ok(r == ERROR_INVALID_PARAMETER,
12765        "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
12766
12767     /* both szName and szValue are NULL */
12768     r = MsiSetPropertyA(hpkg, NULL, NULL);
12769     ok(r == ERROR_INVALID_PARAMETER,
12770        "Expected ERROR_INVALID_PARAMETER, got %d\n", r);
12771
12772     /* szName is empty */
12773     r = MsiSetPropertyA(hpkg, "", "Val");
12774     ok(r == ERROR_FUNCTION_FAILED,
12775        "Expected ERROR_FUNCTION_FAILED, got %d\n", r);
12776
12777     /* szName is empty and szValue is NULL */
12778     r = MsiSetPropertyA(hpkg, "", NULL);
12779     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12780
12781     /* set a property */
12782     r = MsiSetPropertyA(hpkg, "Prop", "Val");
12783     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12784
12785     /* get the property */
12786     size = MAX_PATH;
12787     r = MsiGetPropertyA(hpkg, "Prop", buf, &size);
12788     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12789     ok(!lstrcmpA(buf, "Val"), "Expected \"Val\", got \"%s\"\n", buf);
12790     ok(size == 3, "Expected 3, got %d\n", size);
12791
12792     /* update the property */
12793     r = MsiSetPropertyA(hpkg, "Prop", "Nuvo");
12794     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12795
12796     /* get the property */
12797     size = MAX_PATH;
12798     r = MsiGetPropertyA(hpkg, "Prop", buf, &size);
12799     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12800     ok(!lstrcmpA(buf, "Nuvo"), "Expected \"Nuvo\", got \"%s\"\n", buf);
12801     ok(size == 4, "Expected 4, got %d\n", size);
12802
12803     hdb = MsiGetActiveDatabase(hpkg);
12804     ok(hdb != 0, "Expected a valid database handle\n");
12805
12806     /* set prop is not in the _Property table */
12807     query = "SELECT * FROM `_Property` WHERE `Property` = 'Prop'";
12808     r = do_query(hdb, query, &hrec);
12809     ok(r == ERROR_BAD_QUERY_SYNTAX,
12810        "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
12811
12812     /* set prop is not in the Property table */
12813     query = "SELECT * FROM `Property` WHERE `Property` = 'Prop'";
12814     r = do_query(hdb, query, &hrec);
12815     ok(r == ERROR_BAD_QUERY_SYNTAX,
12816        "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
12817
12818     MsiCloseHandle(hdb);
12819
12820     /* szValue is an empty string */
12821     r = MsiSetPropertyA(hpkg, "Prop", "");
12822     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12823
12824     /* try to get the property */
12825     size = MAX_PATH;
12826     r = MsiGetPropertyA(hpkg, "Prop", buf, &size);
12827     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12828     ok(!lstrcmpA(buf, ""), "Expected \"\", got \"%s\"\n", buf);
12829     ok(size == 0, "Expected 0, got %d\n", size);
12830
12831     /* reset the property */
12832     r = MsiSetPropertyA(hpkg, "Prop", "BlueTap");
12833     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12834
12835     /* delete the property */
12836     r = MsiSetPropertyA(hpkg, "Prop", NULL);
12837     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12838
12839     /* try to get the property */
12840     size = MAX_PATH;
12841     r = MsiGetPropertyA(hpkg, "Prop", buf, &size);
12842     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
12843     ok(!lstrcmpA(buf, ""), "Expected \"\", got \"%s\"\n", buf);
12844     ok(size == 0, "Expected 0, got %d\n", size);
12845
12846     MsiCloseHandle(hpkg);
12847     DeleteFileA(msifile);
12848 }
12849
12850 static void test_MsiApplyMultiplePatches(void)
12851 {
12852     UINT r, type = GetDriveType(NULL);
12853
12854     if (!pMsiApplyMultiplePatchesA) {
12855         win_skip("MsiApplyMultiplePatchesA not found\n");
12856         return;
12857     }
12858
12859     r = pMsiApplyMultiplePatchesA(NULL, NULL, NULL);
12860     ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r);
12861
12862     r = pMsiApplyMultiplePatchesA("", NULL, NULL);
12863     ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r);
12864
12865     r = pMsiApplyMultiplePatchesA(";", NULL, NULL);
12866     if (type == DRIVE_FIXED)
12867         todo_wine ok(r == ERROR_PATH_NOT_FOUND, "Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
12868     else
12869         ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
12870
12871     r = pMsiApplyMultiplePatchesA("  ;", NULL, NULL);
12872     if (type == DRIVE_FIXED)
12873         todo_wine ok(r == ERROR_PATCH_PACKAGE_OPEN_FAILED, "Expected ERROR_PATCH_PACKAGE_OPEN_FAILED, got %u\n", r);
12874     else
12875         ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
12876
12877     r = pMsiApplyMultiplePatchesA(";;", NULL, NULL);
12878     if (type == DRIVE_FIXED)
12879         todo_wine ok(r == ERROR_PATH_NOT_FOUND, "Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
12880     else
12881         ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
12882
12883     r = pMsiApplyMultiplePatchesA("nosuchpatchpackage;", NULL, NULL);
12884     todo_wine ok(r == ERROR_FILE_NOT_FOUND, "Expected ERROR_FILE_NOT_FOUND, got %u\n", r);
12885
12886     r = pMsiApplyMultiplePatchesA(";nosuchpatchpackage", NULL, NULL);
12887     if (type == DRIVE_FIXED)
12888         todo_wine ok(r == ERROR_PATH_NOT_FOUND, "Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
12889     else
12890         ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
12891
12892     r = pMsiApplyMultiplePatchesA("nosuchpatchpackage;nosuchpatchpackage", NULL, NULL);
12893     todo_wine ok(r == ERROR_FILE_NOT_FOUND, "Expected ERROR_FILE_NOT_FOUND, got %u\n", r);
12894
12895     r = pMsiApplyMultiplePatchesA("  nosuchpatchpackage  ;  nosuchpatchpackage  ", NULL, NULL);
12896     todo_wine ok(r == ERROR_FILE_NOT_FOUND, "Expected ERROR_FILE_NOT_FOUND, got %u\n", r);
12897 }
12898
12899 static void test_MsiApplyPatch(void)
12900 {
12901     UINT r;
12902
12903     r = MsiApplyPatch(NULL, NULL, INSTALLTYPE_DEFAULT, NULL);
12904     ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r);
12905
12906     r = MsiApplyPatch("", NULL, INSTALLTYPE_DEFAULT, NULL);
12907     ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r);
12908 }
12909
12910 static void test_MsiEnumComponentCosts(void)
12911 {
12912     MSIHANDLE hdb, hpkg;
12913     char package[12], drive[3];
12914     DWORD len;
12915     UINT r;
12916     int cost, temp;
12917
12918     hdb = create_package_db();
12919     ok( hdb, "failed to create database\n" );
12920
12921     r = create_property_table( hdb );
12922     ok( r == ERROR_SUCCESS, "cannot create Property table %u\n", r );
12923
12924     r = add_property_entry( hdb, "'ProductCode', '{379B1C47-40C1-42FA-A9BB-BEBB6F1B0172}'" );
12925     ok( r == ERROR_SUCCESS, "cannot add property entry %u\n", r );
12926
12927     r = add_property_entry( hdb, "'MSIFASTINSTALL', '1'" );
12928     ok( r == ERROR_SUCCESS, "cannot add property entry %u\n", r );
12929
12930     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'" );
12931     ok( r == ERROR_SUCCESS, "failed to add directory entry %u\n" , r );
12932
12933     r = create_media_table( hdb );
12934     ok( r == ERROR_SUCCESS, "cannot create Media table %u\n", r );
12935
12936     r = add_media_entry( hdb, "'1', '2', 'cabinet', '', '', ''");
12937     ok( r == ERROR_SUCCESS, "cannot add media entry %u\n", r );
12938
12939     r = create_file_table( hdb );
12940     ok( r == ERROR_SUCCESS, "cannot create File table %u\n", r );
12941
12942     r = add_file_entry( hdb, "'one.txt', 'one', 'one.txt', 4096, '', '', 8192, 1" );
12943     ok( r == ERROR_SUCCESS, "cannot add file %u\n", r );
12944
12945     r = add_file_entry( hdb, "'two.txt', 'two', 'two.txt', 8192, '', '', 8192, 2" );
12946     ok( r == ERROR_SUCCESS, "cannot add file %u\n", r );
12947
12948     r = create_component_table( hdb );
12949     ok( r == ERROR_SUCCESS, "cannot create Component table %u\n", r );
12950
12951     r = add_component_entry( hdb, "'one', '{B2F86B9D-8447-4BC5-8883-750C45AA31CA}', 'TARGETDIR', 0, '', 'one.txt'" );
12952     ok( r == ERROR_SUCCESS, "cannot add component %u\n", r );
12953
12954     r = add_component_entry( hdb, "'two', '{62A09F6E-0B74-4829-BDB7-CAB66F42CCE8}', 'TARGETDIR', 0, '', 'two.txt'" );
12955     ok( r == ERROR_SUCCESS, "cannot add component %u\n", r );
12956
12957     r = create_feature_table( hdb );
12958     ok( r == ERROR_SUCCESS, "cannot create Feature table %u\n", r );
12959
12960     r = add_feature_entry( hdb, "'one', '', '', '', 0, 1, '', 0" );
12961     ok( r == ERROR_SUCCESS, "cannot add feature %u\n", r );
12962
12963     r = add_feature_entry( hdb, "'two', '', '', '', 0, 1, '', 0" );
12964     ok( r == ERROR_SUCCESS, "cannot add feature %u\n", r );
12965
12966     r = create_feature_components_table( hdb );
12967     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table %u\n", r );
12968
12969     r = add_feature_components_entry( hdb, "'one', 'one'" );
12970     ok( r == ERROR_SUCCESS, "cannot add feature/component pair %u\n", r );
12971
12972     r = add_feature_components_entry( hdb, "'two', 'two'" );
12973     ok( r == ERROR_SUCCESS, "cannot add feature/component pair %u\n", r );
12974
12975     r = create_install_execute_sequence_table( hdb );
12976     ok( r == ERROR_SUCCESS, "cannot create InstallExecuteSequence table %u\n", r );
12977
12978     r = add_install_execute_sequence_entry( hdb, "'CostInitialize', '', '800'" );
12979     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry %u\n", r );
12980
12981     r = add_install_execute_sequence_entry( hdb, "'FileCost', '', '900'" );
12982     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry %u\n", r );
12983
12984     r = add_install_execute_sequence_entry( hdb, "'CostFinalize', '', '1000'" );
12985     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry %u\n", r );
12986
12987     r = add_install_execute_sequence_entry( hdb, "'InstallValidate', '', '1100'" );
12988     ok( r == ERROR_SUCCESS, "cannot add install execute sequence entry %u\n", r );
12989
12990     MsiDatabaseCommit( hdb );
12991
12992     sprintf( package, "#%u", hdb );
12993     r = MsiOpenPackageA( package, &hpkg );
12994     if (r == ERROR_INSTALL_PACKAGE_REJECTED)
12995     {
12996         skip("Not enough rights to perform tests\n");
12997         goto error;
12998     }
12999     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
13000
13001     r = MsiEnumComponentCostsA( 0, NULL, 0, INSTALLSTATE_UNKNOWN, NULL, NULL, NULL, NULL );
13002     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13003
13004     r = MsiEnumComponentCostsA( hpkg, NULL, 0, INSTALLSTATE_UNKNOWN, NULL, NULL, NULL, NULL );
13005     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13006
13007     r = MsiEnumComponentCostsA( hpkg, NULL, 0, INSTALLSTATE_UNKNOWN, NULL, NULL, NULL, NULL );
13008     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13009
13010     r = MsiEnumComponentCostsA( hpkg, "", 0, INSTALLSTATE_UNKNOWN, NULL, NULL, NULL, NULL );
13011     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13012
13013     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_UNKNOWN, NULL, NULL, NULL, NULL );
13014     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13015
13016     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, NULL, NULL, NULL, NULL );
13017     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13018
13019     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, NULL, NULL, NULL );
13020     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13021
13022     len = sizeof(drive);
13023     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, NULL, NULL );
13024     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13025
13026     len = sizeof(drive);
13027     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, NULL );
13028     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13029
13030     len = sizeof(drive);
13031     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13032     todo_wine ok( r == ERROR_INVALID_HANDLE_STATE, "Expected ERROR_INVALID_HANDLE_STATE, got %u\n", r );
13033
13034     len = sizeof(drive);
13035     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, NULL, &len, &cost, &temp );
13036     ok( r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r );
13037
13038     MsiSetInternalUI( INSTALLUILEVEL_NONE, NULL );
13039
13040     r = MsiDoAction( hpkg, "CostInitialize" );
13041     ok( r == ERROR_SUCCESS, "CostInitialize failed %u\n", r );
13042
13043     r = MsiDoAction( hpkg, "FileCost" );
13044     ok( r == ERROR_SUCCESS, "FileCost failed %u\n", r );
13045
13046     len = sizeof(drive);
13047     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13048     ok( r == ERROR_FUNCTION_NOT_CALLED, "Expected ERROR_FUNCTION_NOT_CALLED, got %u\n", r );
13049
13050     r = MsiDoAction( hpkg, "CostFinalize" );
13051     ok( r == ERROR_SUCCESS, "CostFinalize failed %u\n", r );
13052
13053     /* contrary to what msdn says InstallValidate must be called too */
13054     len = sizeof(drive);
13055     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13056     todo_wine ok( r == ERROR_FUNCTION_NOT_CALLED, "Expected ERROR_FUNCTION_NOT_CALLED, got %u\n", r );
13057
13058     r = MsiDoAction( hpkg, "InstallValidate" );
13059     ok( r == ERROR_SUCCESS, "InstallValidate failed %u\n", r );
13060
13061     len = 0;
13062     r = MsiEnumComponentCostsA( hpkg, "three", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13063     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %u\n", r );
13064
13065     len = 0;
13066     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13067     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %u\n", r );
13068     ok( len == 2, "expected len == 2, got %u\n", len );
13069
13070     len = 2;
13071     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13072     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %u\n", r );
13073     ok( len == 2, "expected len == 2, got %u\n", len );
13074
13075     len = 2;
13076     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_UNKNOWN, drive, &len, &cost, &temp );
13077     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %u\n", r );
13078     ok( len == 2, "expected len == 2, got %u\n", len );
13079
13080     /* install state doesn't seem to matter */
13081     len = sizeof(drive);
13082     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_UNKNOWN, drive, &len, &cost, &temp );
13083     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
13084
13085     len = sizeof(drive);
13086     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_ABSENT, drive, &len, &cost, &temp );
13087     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
13088
13089     len = sizeof(drive);
13090     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_SOURCE, drive, &len, &cost, &temp );
13091     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
13092
13093     len = sizeof(drive);
13094     drive[0] = 0;
13095     cost = temp = 0xdead;
13096     r = MsiEnumComponentCostsA( hpkg, "one", 0, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13097     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
13098     ok( len == 2, "expected len == 2, got %u\n", len );
13099     ok( drive[0], "expected a drive\n" );
13100     ok( cost && cost != 0xdead, "expected cost > 0, got %d\n", cost );
13101     ok( !temp, "expected temp == 0, got %d\n", temp );
13102
13103     len = sizeof(drive);
13104     drive[0] = 0;
13105     cost = temp = 0xdead;
13106     r = MsiEnumComponentCostsA( hpkg, "", 0, INSTALLSTATE_UNKNOWN, drive, &len, &cost, &temp );
13107     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
13108     ok( len == 2, "expected len == 2, got %u\n", len );
13109     ok( drive[0], "expected a drive\n" );
13110     ok( !cost, "expected cost == 0, got %d\n", cost );
13111     ok( temp && temp != 0xdead, "expected temp > 0, got %d\n", temp );
13112
13113     /* increased index */
13114     len = sizeof(drive);
13115     r = MsiEnumComponentCostsA( hpkg, "one", 1, INSTALLSTATE_LOCAL, drive, &len, &cost, &temp );
13116     ok( r == ERROR_NO_MORE_ITEMS, "Expected ERROR_NO_MORE_ITEMS, got %u\n", r );
13117
13118     len = sizeof(drive);
13119     r = MsiEnumComponentCostsA( hpkg, "", 1, INSTALLSTATE_UNKNOWN, drive, &len, &cost, &temp );
13120     ok( r == ERROR_NO_MORE_ITEMS, "Expected ERROR_NO_MORE_ITEMS, got %u\n", r );
13121
13122     MsiCloseHandle( hpkg );
13123 error:
13124     MsiCloseHandle( hdb );
13125     DeleteFileA( msifile );
13126 }
13127
13128 START_TEST(package)
13129 {
13130     STATEMGRSTATUS status;
13131     BOOL ret = FALSE;
13132
13133     init_functionpointers();
13134
13135     if (pIsWow64Process)
13136         pIsWow64Process(GetCurrentProcess(), &is_wow64);
13137
13138     GetCurrentDirectoryA(MAX_PATH, CURR_DIR);
13139
13140     /* Create a restore point ourselves so we circumvent the multitude of restore points
13141      * that would have been created by all the installation and removal tests.
13142      *
13143      * This is not needed on version 5.0 where setting MSIFASTINSTALL prevents the
13144      * creation of restore points.
13145      */
13146     if (pSRSetRestorePointA && !pMsiGetComponentPathExA)
13147     {
13148         memset(&status, 0, sizeof(status));
13149         ret = notify_system_change(BEGIN_NESTED_SYSTEM_CHANGE, &status);
13150     }
13151
13152     test_createpackage();
13153     test_doaction();
13154     test_gettargetpath_bad();
13155     test_settargetpath();
13156     test_props();
13157     test_property_table();
13158     test_condition();
13159     test_msipackage();
13160     test_formatrecord2();
13161     test_states();
13162     test_getproperty();
13163     test_removefiles();
13164     test_appsearch();
13165     test_appsearch_complocator();
13166     test_appsearch_reglocator();
13167     test_appsearch_inilocator();
13168     test_appsearch_drlocator();
13169     test_featureparents();
13170     test_installprops();
13171     test_launchconditions();
13172     test_ccpsearch();
13173     test_complocator();
13174     test_MsiGetSourcePath();
13175     test_shortlongsource();
13176     test_sourcedir();
13177     test_access();
13178     test_emptypackage();
13179     test_MsiGetProductProperty();
13180     test_MsiSetProperty();
13181     test_MsiApplyMultiplePatches();
13182     test_MsiApplyPatch();
13183     test_MsiEnumComponentCosts();
13184
13185     if (pSRSetRestorePointA && !pMsiGetComponentPathExA && ret)
13186     {
13187         ret = notify_system_change(END_NESTED_SYSTEM_CHANGE, &status);
13188         if (ret)
13189             remove_restore_point(status.llSequenceNumber);
13190     }
13191 }