msi: Implement MsiDatabaseImport.
[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 <msi.h>
27 #include <msiquery.h>
28
29 #include "wine/test.h"
30
31 static const char msifile[] = "winetest.msi";
32
33 static UINT run_query( MSIHANDLE hdb, const char *query )
34 {
35     MSIHANDLE hview = 0;
36     UINT r;
37
38     r = MsiDatabaseOpenView(hdb, query, &hview);
39     if( r != ERROR_SUCCESS )
40         return r;
41
42     r = MsiViewExecute(hview, 0);
43     if( r == ERROR_SUCCESS )
44         r = MsiViewClose(hview);
45     MsiCloseHandle(hview);
46     return r;
47 }
48
49 static UINT create_component_table( MSIHANDLE hdb )
50 {
51     return run_query( hdb,
52             "CREATE TABLE `Component` ( "
53             "`Component` CHAR(72) NOT NULL, "
54             "`ComponentId` CHAR(38), "
55             "`Directory_` CHAR(72) NOT NULL, "
56             "`Attributes` SHORT NOT NULL, "
57             "`Condition` CHAR(255), "
58             "`KeyPath` CHAR(72) "
59             "PRIMARY KEY `Component`)" );
60 }
61
62 static UINT create_feature_table( MSIHANDLE hdb )
63 {
64     return run_query( hdb,
65             "CREATE TABLE `Feature` ( "
66             "`Feature` CHAR(38) NOT NULL, "
67             "`Feature_Parent` CHAR(38), "
68             "`Title` CHAR(64), "
69             "`Description` CHAR(255), "
70             "`Display` SHORT NOT NULL, "
71             "`Level` SHORT NOT NULL, "
72             "`Directory_` CHAR(72), "
73             "`Attributes` SHORT NOT NULL "
74             "PRIMARY KEY `Feature`)" );
75 }
76
77 static UINT create_feature_components_table( MSIHANDLE hdb )
78 {
79     return run_query( hdb,
80             "CREATE TABLE `FeatureComponents` ( "
81             "`Feature_` CHAR(38) NOT NULL, "
82             "`Component_` CHAR(72) NOT NULL "
83             "PRIMARY KEY `Feature_`, `Component_` )" );
84 }
85
86 static UINT create_file_table( MSIHANDLE hdb )
87 {
88     return run_query( hdb,
89             "CREATE TABLE `File` ("
90             "`File` CHAR(72) NOT NULL, "
91             "`Component_` CHAR(72) NOT NULL, "
92             "`FileName` CHAR(255) NOT NULL, "
93             "`FileSize` LONG NOT NULL, "
94             "`Version` CHAR(72), "
95             "`Language` CHAR(20), "
96             "`Attributes` SHORT, "
97             "`Sequence` SHORT NOT NULL "
98             "PRIMARY KEY `File`)" );
99 }
100
101 static UINT create_remove_file_table( MSIHANDLE hdb )
102 {
103     return run_query( hdb,
104             "CREATE TABLE `RemoveFile` ("
105             "`FileKey` CHAR(72) NOT NULL, "
106             "`Component_` CHAR(72) NOT NULL, "
107             "`FileName` CHAR(255) LOCALIZABLE, "
108             "`DirProperty` CHAR(72) NOT NULL, "
109             "`InstallMode` SHORT NOT NULL "
110             "PRIMARY KEY `FileKey`)" );
111 }
112
113 static UINT create_appsearch_table( MSIHANDLE hdb )
114 {
115     return run_query( hdb,
116             "CREATE TABLE `AppSearch` ("
117             "`Property` CHAR(72) NOT NULL, "
118             "`Signature_` CHAR(72) NOT NULL "
119             "PRIMARY KEY `Property`, `Signature_`)" );
120 }
121
122 static UINT create_reglocator_table( MSIHANDLE hdb )
123 {
124     return run_query( hdb,
125             "CREATE TABLE `RegLocator` ("
126             "`Signature_` CHAR(72) NOT NULL, "
127             "`Root` SHORT NOT NULL, "
128             "`Key` CHAR(255) NOT NULL, "
129             "`Name` CHAR(255), "
130             "`Type` SHORT "
131             "PRIMARY KEY `Signature_`)" );
132 }
133
134 static UINT create_signature_table( MSIHANDLE hdb )
135 {
136     return run_query( hdb,
137             "CREATE TABLE `Signature` ("
138             "`Signature` CHAR(72) NOT NULL, "
139             "`FileName` CHAR(255) NOT NULL, "
140             "`MinVersion` CHAR(20), "
141             "`MaxVersion` CHAR(20), "
142             "`MinSize` LONG, "
143             "`MaxSize` LONG, "
144             "`MinDate` LONG, "
145             "`MaxDate` LONG, "
146             "`Languages` CHAR(255) "
147             "PRIMARY KEY `Signature`)" );
148 }
149
150 static UINT add_component_entry( MSIHANDLE hdb, const char *values )
151 {
152     char insert[] = "INSERT INTO `Component`  "
153             "(`Component`, `ComponentId`, `Directory_`, `Attributes`, `Condition`, `KeyPath`) "
154             "VALUES( %s )";
155     char *query;
156     UINT sz, r;
157
158     sz = strlen(values) + sizeof insert;
159     query = HeapAlloc(GetProcessHeap(),0,sz);
160     sprintf(query,insert,values);
161     r = run_query( hdb, query );
162     HeapFree(GetProcessHeap(), 0, query);
163     return r;
164 }
165
166 static UINT add_feature_entry( MSIHANDLE hdb, const char *values )
167 {
168     char insert[] = "INSERT INTO `Feature` (`Feature`, `Feature_Parent`, "
169                     "`Title`, `Description`, `Display`, `Level`, `Directory_`, `Attributes`) VALUES( %s )";
170     char *query;
171     UINT sz, r;
172
173     sz = strlen(values) + sizeof insert;
174     query = HeapAlloc(GetProcessHeap(),0,sz);
175     sprintf(query,insert,values);
176     r = run_query( hdb, query );
177     HeapFree(GetProcessHeap(), 0, query);
178     return r;
179 }
180
181 static UINT add_feature_components_entry( MSIHANDLE hdb, const char *values )
182 {
183     char insert[] = "INSERT INTO `FeatureComponents` "
184             "(`Feature_`, `Component_`) "
185             "VALUES( %s )";
186     char *query;
187     UINT sz, r;
188
189     sz = strlen(values) + sizeof insert;
190     query = HeapAlloc(GetProcessHeap(),0,sz);
191     sprintf(query,insert,values);
192     r = run_query( hdb, query );
193     HeapFree(GetProcessHeap(), 0, query);
194     return r;
195 }
196
197 static UINT add_file_entry( MSIHANDLE hdb, const char *values )
198 {
199     char insert[] = "INSERT INTO `File` "
200             "(`File`, `Component_`, `FileName`, `FileSize`, `Version`, `Language`, `Attributes`, `Sequence`) "
201             "VALUES( %s )";
202     char *query;
203     UINT sz, r;
204
205     sz = strlen(values) + sizeof insert;
206     query = HeapAlloc(GetProcessHeap(),0,sz);
207     sprintf(query,insert,values);
208     r = run_query( hdb, query );
209     HeapFree(GetProcessHeap(), 0, query);
210     return r;
211 }
212
213 static UINT add_appsearch_entry( MSIHANDLE hdb, const char *values )
214 {
215     char insert[] = "INSERT INTO `AppSearch` "
216             "(`Property`, `Signature_`) "
217             "VALUES( %s )";
218     char *query;
219     UINT sz, r;
220
221     sz = strlen(values) + sizeof insert;
222     query = HeapAlloc(GetProcessHeap(),0,sz);
223     sprintf(query,insert,values);
224     r = run_query( hdb, query );
225     HeapFree(GetProcessHeap(), 0, query);
226     return r;
227 }
228
229 static UINT add_reglocator_entry( MSIHANDLE hdb, const char *values )
230 {
231     char insert[] = "INSERT INTO `RegLocator` "
232             "(`Signature_`, `Root`, `Key`, `Name`, `Type`) "
233             "VALUES( %s )";
234     char *query;
235     UINT sz, r;
236
237     sz = strlen(values) + sizeof insert;
238     query = HeapAlloc(GetProcessHeap(),0,sz);
239     sprintf(query,insert,values);
240     r = run_query( hdb, query );
241     HeapFree(GetProcessHeap(), 0, query);
242     return r;
243 }
244
245 static UINT add_signature_entry( MSIHANDLE hdb, const char *values )
246 {
247     char insert[] = "INSERT INTO `Signature` "
248             "(`Signature`, `FileName`, `MinVersion`, `MaxVersion`,"
249             " `MinSize`, `MaxSize`, `MinDate`, `MaxDate`, `Languages`) "
250             "VALUES( %s )";
251     char *query;
252     UINT sz, r;
253
254     sz = strlen(values) + sizeof insert;
255     query = HeapAlloc(GetProcessHeap(),0,sz);
256     sprintf(query,insert,values);
257     r = run_query( hdb, query );
258     HeapFree(GetProcessHeap(), 0, query);
259     return r;
260 }
261
262 static UINT set_summary_info(MSIHANDLE hdb)
263 {
264     UINT res;
265     MSIHANDLE suminfo;
266
267     /* build summmary info */
268     res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
269     ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );
270
271     res = MsiSummaryInfoSetProperty(suminfo,2, VT_LPSTR, 0,NULL,
272                         "Installation Database");
273     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
274
275     res = MsiSummaryInfoSetProperty(suminfo,3, VT_LPSTR, 0,NULL,
276                         "Installation Database");
277     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
278
279     res = MsiSummaryInfoSetProperty(suminfo,4, VT_LPSTR, 0,NULL,
280                         "Wine Hackers");
281     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
282
283     res = MsiSummaryInfoSetProperty(suminfo,7, VT_LPSTR, 0,NULL,
284                     ";1033");
285     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
286
287     res = MsiSummaryInfoSetProperty(suminfo,9, VT_LPSTR, 0,NULL,
288                     "{913B8D18-FBB6-4CAC-A239-C74C11E3FA74}");
289     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
290
291     res = MsiSummaryInfoSetProperty(suminfo, 14, VT_I4, 100, NULL, NULL);
292     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
293
294     res = MsiSummaryInfoSetProperty(suminfo, 15, VT_I4, 0, NULL, NULL);
295     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
296
297     res = MsiSummaryInfoPersist(suminfo);
298     ok( res == ERROR_SUCCESS , "Failed to make summary info persist\n" );
299
300     res = MsiCloseHandle( suminfo);
301     ok( res == ERROR_SUCCESS , "Failed to close suminfo\n" );
302
303     return res;
304 }
305
306
307 static MSIHANDLE create_package_db(void)
308 {
309     MSIHANDLE hdb = 0;
310     UINT res;
311
312     DeleteFile(msifile);
313
314     /* create an empty database */
315     res = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb );
316     ok( res == ERROR_SUCCESS , "Failed to create database\n" );
317     if( res != ERROR_SUCCESS )
318         return hdb;
319
320     res = MsiDatabaseCommit( hdb );
321     ok( res == ERROR_SUCCESS , "Failed to commit database\n" );
322
323     res = set_summary_info(hdb);
324
325     res = run_query( hdb,
326             "CREATE TABLE `Directory` ( "
327             "`Directory` CHAR(255) NOT NULL, "
328             "`Directory_Parent` CHAR(255), "
329             "`DefaultDir` CHAR(255) NOT NULL "
330             "PRIMARY KEY `Directory`)" );
331     ok( res == ERROR_SUCCESS , "Failed to create directory table\n" );
332
333     return hdb;
334 }
335
336 static MSIHANDLE package_from_db(MSIHANDLE hdb)
337 {
338     UINT res;
339     CHAR szPackage[10];
340     MSIHANDLE hPackage;
341
342     sprintf(szPackage,"#%li",hdb);
343     res = MsiOpenPackage(szPackage,&hPackage);
344     ok( res == ERROR_SUCCESS , "Failed to open package\n" );
345
346     res = MsiCloseHandle(hdb);
347     ok( res == ERROR_SUCCESS , "Failed to close db handle\n" );
348
349     return hPackage;
350 }
351
352 static void create_test_file(const CHAR *name)
353 {
354     HANDLE file;
355     DWORD written;
356
357     file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
358     ok(file != INVALID_HANDLE_VALUE, "Failure to open file %s\n", name);
359     WriteFile(file, name, strlen(name), &written, NULL);
360     WriteFile(file, "\n", strlen("\n"), &written, NULL);
361     CloseHandle(file);
362 }
363
364 static void test_createpackage(void)
365 {
366     MSIHANDLE hPackage = 0;
367     UINT res;
368
369     hPackage = package_from_db(create_package_db());
370     ok( hPackage != 0, " Failed to create package\n");
371
372     res = MsiCloseHandle( hPackage);
373     ok( res == ERROR_SUCCESS , "Failed to close package\n" );
374     DeleteFile(msifile);
375 }
376
377 static void test_getsourcepath_bad( void )
378 {
379     static const char str[] = { 0 };
380     char buffer[0x80];
381     DWORD sz;
382     UINT r;
383
384     r = MsiGetSourcePath( -1, NULL, NULL, NULL );
385     ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
386
387     sz = 0;
388     r = MsiGetSourcePath( -1, NULL, buffer, &sz );
389     ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
390
391     sz = 0;
392     r = MsiGetSourcePath( -1, str, NULL, &sz );
393     ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
394
395     sz = 0;
396     r = MsiGetSourcePath( -1, str, NULL, NULL );
397     ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
398
399     sz = 0;
400     r = MsiGetSourcePath( -1, str, buffer, &sz );
401     ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
402 }
403
404 static UINT add_directory_entry( MSIHANDLE hdb, const char *values )
405 {
406     char insert[] = "INSERT INTO `Directory` (`Directory`,`Directory_Parent`,`DefaultDir`) VALUES( %s )";
407     char *query;
408     UINT sz, r;
409
410     sz = strlen(values) + sizeof insert;
411     query = HeapAlloc(GetProcessHeap(),0,sz);
412     sprintf(query,insert,values);
413     r = run_query( hdb, query );
414     HeapFree(GetProcessHeap(), 0, query);
415     return r;
416 }
417
418 static void test_getsourcepath( void )
419 {
420     static const char str[] = { 0 };
421     char buffer[0x80];
422     DWORD sz;
423     UINT r;
424     MSIHANDLE hpkg, hdb;
425
426     hpkg = package_from_db(create_package_db());
427     ok( hpkg, "failed to create package\n");
428
429     sz = 0;
430     buffer[0] = 'x';
431     r = MsiGetSourcePath( hpkg, str, buffer, &sz );
432     ok( r == ERROR_DIRECTORY, "return value wrong\n");
433     ok( buffer[0] == 'x', "buffer modified\n");
434
435     sz = 1;
436     buffer[0] = 'x';
437     r = MsiGetSourcePath( hpkg, str, buffer, &sz );
438     ok( r == ERROR_DIRECTORY, "return value wrong\n");
439     ok( buffer[0] == 'x', "buffer modified\n");
440
441     MsiCloseHandle( hpkg );
442
443
444     /* another test but try create a directory this time */
445     hdb = create_package_db();
446     ok( hdb, "failed to create database\n");
447
448     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
449     ok( r == S_OK, "failed\n");
450
451     hpkg = package_from_db(hdb);
452     ok( hpkg, "failed to create package\n");
453
454     sz = sizeof buffer -1;
455     strcpy(buffer,"x bad");
456     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
457     ok( r == ERROR_DIRECTORY, "return value wrong\n");
458
459     r = MsiDoAction( hpkg, "CostInitialize");
460     ok( r == ERROR_SUCCESS, "cost init failed\n");
461     r = MsiDoAction( hpkg, "CostFinalize");
462     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
463
464     sz = sizeof buffer -1;
465     buffer[0] = 'x';
466     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
467     ok( r == ERROR_SUCCESS, "return value wrong\n");
468     ok( sz == strlen(buffer), "returned length wrong\n");
469
470     sz = 0;
471     strcpy(buffer,"x bad");
472     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
473     ok( r == ERROR_MORE_DATA, "return value wrong\n");
474     ok( buffer[0] == 'x', "buffer modified\n");
475
476     r = MsiGetSourcePath( hpkg, "TARGETDIR", NULL, NULL );
477     ok( r == ERROR_SUCCESS, "return value wrong\n");
478
479     r = MsiGetSourcePath( hpkg, "TARGETDIR ", NULL, NULL );
480     ok( r == ERROR_DIRECTORY, "return value wrong\n");
481
482     r = MsiGetSourcePath( hpkg, "targetdir", NULL, NULL );
483     ok( r == ERROR_DIRECTORY, "return value wrong\n");
484
485     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, NULL );
486     ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
487
488     r = MsiGetSourcePath( hpkg, "TARGETDIR", NULL, &sz );
489     ok( r == ERROR_SUCCESS, "return value wrong\n");
490
491     MsiCloseHandle( hpkg );
492     DeleteFile(msifile);
493 }
494
495 static void test_doaction( void )
496 {
497     MSIHANDLE hpkg;
498     UINT r;
499
500     r = MsiDoAction( -1, NULL );
501     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
502
503     hpkg = package_from_db(create_package_db());
504     ok( hpkg, "failed to create package\n");
505
506     r = MsiDoAction(hpkg, NULL);
507     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
508
509     r = MsiDoAction(0, "boo");
510     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
511
512     r = MsiDoAction(hpkg, "boo");
513     ok( r == ERROR_FUNCTION_NOT_CALLED, "wrong return val\n");
514
515     MsiCloseHandle( hpkg );
516     DeleteFile(msifile);
517 }
518
519 static void test_gettargetpath_bad(void)
520 {
521     char buffer[0x80];
522     MSIHANDLE hpkg;
523     DWORD sz;
524     UINT r;
525
526     hpkg = package_from_db(create_package_db());
527     ok( hpkg, "failed to create package\n");
528
529     r = MsiGetTargetPath( 0, NULL, NULL, NULL );
530     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
531
532     r = MsiGetTargetPath( 0, NULL, NULL, &sz );
533     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
534
535     r = MsiGetTargetPath( 0, "boo", NULL, NULL );
536     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
537
538     r = MsiGetTargetPath( 0, "boo", NULL, NULL );
539     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
540
541     r = MsiGetTargetPath( hpkg, "boo", NULL, NULL );
542     ok( r == ERROR_DIRECTORY, "wrong return val\n");
543
544     r = MsiGetTargetPath( hpkg, "boo", buffer, NULL );
545     ok( r == ERROR_DIRECTORY, "wrong return val\n");
546
547     MsiCloseHandle( hpkg );
548     DeleteFile(msifile);
549 }
550
551 static void query_file_path(MSIHANDLE hpkg, LPCSTR file, LPSTR buff)
552 {
553     UINT r;
554     DWORD size;
555     MSIHANDLE rec;
556
557     rec = MsiCreateRecord( 1 );
558     ok(rec, "MsiCreate record failed\n");
559
560     r = MsiRecordSetString( rec, 0, file );
561     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
562
563     size = MAX_PATH;
564     r = MsiFormatRecord( hpkg, rec, buff, &size );
565     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
566
567     MsiCloseHandle( rec );
568 }
569
570 static void test_settargetpath(void)
571 {
572     char tempdir[MAX_PATH+8], buffer[MAX_PATH], file[MAX_PATH];
573     DWORD sz;
574     MSIHANDLE hpkg;
575     UINT r;
576     MSIHANDLE hdb;
577
578     hdb = create_package_db();
579     ok ( hdb, "failed to create package database\n" );
580
581     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'" );
582     ok( r == S_OK, "failed to add directory entry: %d\n" , r );
583
584     r = create_component_table( hdb );
585     ok( r == S_OK, "cannot create Component table: %d\n", r );
586
587     r = add_component_entry( hdb, "'RootComp', '{83e2694d-0864-4124-9323-6d37630912a1}', 'TARGETDIR', 8, '', 'RootFile'" );
588     ok( r == S_OK, "cannot add dummy component: %d\n", r );
589
590     r = add_component_entry( hdb, "'TestComp', '{A3FB59C8-C293-4F7E-B8C5-F0E1D8EEE4E5}', 'TestDir', 0, '', 'TestFile'" );
591     ok( r == S_OK, "cannot add test component: %d\n", r );
592
593     r = create_feature_table( hdb );
594     ok( r == S_OK, "cannot create Feature table: %d\n", r );
595
596     r = add_feature_entry( hdb, "'TestFeature', '', '', '', 0, 1, '', 0" );
597     ok( r == ERROR_SUCCESS, "cannot add TestFeature to Feature table: %d\n", r );
598
599     r = create_feature_components_table( hdb );
600     ok( r == S_OK, "cannot create FeatureComponents table: %d\n", r );
601
602     r = add_feature_components_entry( hdb, "'TestFeature', 'RootComp'" );
603     ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
604
605     r = add_feature_components_entry( hdb, "'TestFeature', 'TestComp'" );
606     ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
607
608     add_directory_entry( hdb, "'TestParent', 'TARGETDIR', 'TestParent'" );
609     add_directory_entry( hdb, "'TestDir', 'TestParent', 'TestDir'" );
610
611     r = create_file_table( hdb );
612     ok( r == S_OK, "cannot create File table: %d\n", r );
613
614     r = add_file_entry( hdb, "'RootFile', 'RootComp', 'rootfile.txt', 0, '', '1033', 8192, 1" );
615     ok( r == S_OK, "cannot add file to the File table: %d\n", r );
616
617     r = add_file_entry( hdb, "'TestFile', 'TestComp', 'testfile.txt', 0, '', '1033', 8192, 1" );
618     ok( r == S_OK, "cannot add file to the File table: %d\n", r );
619
620     hpkg = package_from_db( hdb );
621     ok( hpkg, "failed to create package\n");
622
623     r = MsiDoAction( hpkg, "CostInitialize");
624     ok( r == ERROR_SUCCESS, "cost init failed\n");
625
626     r = MsiDoAction( hpkg, "FileCost");
627     ok( r == ERROR_SUCCESS, "file cost failed\n");
628
629     r = MsiDoAction( hpkg, "CostFinalize");
630     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
631
632     r = MsiSetTargetPath( 0, NULL, NULL );
633     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
634
635     r = MsiSetTargetPath( 0, "boo", "C:\\bogusx" );
636     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
637
638     r = MsiSetTargetPath( hpkg, "boo", NULL );
639     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
640
641     r = MsiSetTargetPath( hpkg, "boo", "c:\\bogusx" );
642     ok( r == ERROR_DIRECTORY, "wrong return val\n");
643
644     sz = sizeof tempdir - 1;
645     r = MsiGetTargetPath( hpkg, "TARGETDIR", tempdir, &sz );
646     sprintf( file, "%srootfile.txt", tempdir );
647     query_file_path( hpkg, "[#RootFile]", buffer );
648     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
649     ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer );
650
651     GetTempFileName( tempdir, "_wt", 0, buffer );
652     sprintf( tempdir, "%s\\subdir", buffer );
653
654     r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
655     ok( r == ERROR_SUCCESS, "MsiSetTargetPath on file returned %d\n", r );
656
657     r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
658     ok( r == ERROR_SUCCESS, "MsiSetTargetPath on 'subdir' of file returned %d\n", r );
659
660     DeleteFile( buffer );
661
662     r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
663     ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
664
665     r = GetFileAttributes( buffer );
666     ok ( r == INVALID_FILE_ATTRIBUTES, "file/directory exists after MsiSetTargetPath. Attributes: %08X\n", r );
667
668     r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
669     ok( r == ERROR_SUCCESS, "MsiSetTargetPath on subsubdir returned %d\n", r );
670
671     sz = sizeof buffer - 1;
672     lstrcat( tempdir, "\\" );
673     r = MsiGetTargetPath( hpkg, "TARGETDIR", buffer, &sz );
674     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
675     ok( !lstrcmp(buffer, tempdir), "Expected %s, got %s\n", tempdir, buffer);
676
677     sprintf( file, "%srootfile.txt", tempdir );
678     query_file_path( hpkg, "[#RootFile]", buffer );
679     ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer);
680
681     r = MsiSetTargetPath( hpkg, "TestParent", "C:\\one\\two" );
682     ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
683
684     query_file_path( hpkg, "[#TestFile]", buffer );
685     ok( !lstrcmp(buffer, "C:\\one\\two\\TestDir\\testfile.txt"),
686         "Expected C:\\one\\two\\TestDir\\testfile.txt, got %s\n", buffer );
687
688     sz = sizeof buffer - 1;
689     r = MsiGetTargetPath( hpkg, "TestParent", buffer, &sz );
690     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
691     ok( !lstrcmp(buffer, "C:\\one\\two\\"), "Expected C:\\one\\two\\, got %s\n", buffer);
692
693     MsiCloseHandle( hpkg );
694 }
695
696 static void test_condition(void)
697 {
698     MSICONDITION r;
699     MSIHANDLE hpkg;
700
701     hpkg = package_from_db(create_package_db());
702     ok( hpkg, "failed to create package\n");
703
704     r = MsiEvaluateCondition(0, NULL);
705     ok( r == MSICONDITION_ERROR, "wrong return val\n");
706
707     r = MsiEvaluateCondition(hpkg, NULL);
708     ok( r == MSICONDITION_NONE, "wrong return val\n");
709
710     r = MsiEvaluateCondition(hpkg, "");
711     ok( r == MSICONDITION_NONE, "wrong return val\n");
712
713     r = MsiEvaluateCondition(hpkg, "1");
714     ok( r == MSICONDITION_TRUE, "wrong return val\n");
715
716     r = MsiEvaluateCondition(hpkg, "0");
717     ok( r == MSICONDITION_FALSE, "wrong return val\n");
718
719     r = MsiEvaluateCondition(hpkg, "0 = 0");
720     ok( r == MSICONDITION_TRUE, "wrong return val\n");
721
722     r = MsiEvaluateCondition(hpkg, "0 <> 0");
723     ok( r == MSICONDITION_FALSE, "wrong return val\n");
724
725     r = MsiEvaluateCondition(hpkg, "0 = 1");
726     ok( r == MSICONDITION_FALSE, "wrong return val\n");
727
728     r = MsiEvaluateCondition(hpkg, "0 > 1");
729     ok( r == MSICONDITION_FALSE, "wrong return val\n");
730
731     r = MsiEvaluateCondition(hpkg, "0 ~> 1");
732     ok( r == MSICONDITION_FALSE, "wrong return val\n");
733
734     r = MsiEvaluateCondition(hpkg, "1 > 1");
735     ok( r == MSICONDITION_FALSE, "wrong return val\n");
736
737     r = MsiEvaluateCondition(hpkg, "1 ~> 1");
738     ok( r == MSICONDITION_FALSE, "wrong return val\n");
739
740     r = MsiEvaluateCondition(hpkg, "0 >= 1");
741     ok( r == MSICONDITION_FALSE, "wrong return val\n");
742
743     r = MsiEvaluateCondition(hpkg, "0 ~>= 1");
744     ok( r == MSICONDITION_FALSE, "wrong return val\n");
745
746     r = MsiEvaluateCondition(hpkg, "1 >= 1");
747     ok( r == MSICONDITION_TRUE, "wrong return val\n");
748
749     r = MsiEvaluateCondition(hpkg, "1 ~>= 1");
750     ok( r == MSICONDITION_TRUE, "wrong return val\n");
751
752     r = MsiEvaluateCondition(hpkg, "0 < 1");
753     ok( r == MSICONDITION_TRUE, "wrong return val\n");
754
755     r = MsiEvaluateCondition(hpkg, "0 ~< 1");
756     ok( r == MSICONDITION_TRUE, "wrong return val\n");
757
758     r = MsiEvaluateCondition(hpkg, "1 < 1");
759     ok( r == MSICONDITION_FALSE, "wrong return val\n");
760
761     r = MsiEvaluateCondition(hpkg, "1 ~< 1");
762     ok( r == MSICONDITION_FALSE, "wrong return val\n");
763
764     r = MsiEvaluateCondition(hpkg, "0 <= 1");
765     ok( r == MSICONDITION_TRUE, "wrong return val\n");
766
767     r = MsiEvaluateCondition(hpkg, "0 ~<= 1");
768     ok( r == MSICONDITION_TRUE, "wrong return val\n");
769
770     r = MsiEvaluateCondition(hpkg, "1 <= 1");
771     ok( r == MSICONDITION_TRUE, "wrong return val\n");
772
773     r = MsiEvaluateCondition(hpkg, "1 ~<= 1");
774     ok( r == MSICONDITION_TRUE, "wrong return val\n");
775
776     r = MsiEvaluateCondition(hpkg, "0 >=");
777     ok( r == MSICONDITION_ERROR, "wrong return val\n");
778
779     r = MsiEvaluateCondition(hpkg, " ");
780     ok( r == MSICONDITION_NONE, "wrong return val\n");
781
782     r = MsiEvaluateCondition(hpkg, "LicView <> \"1\"");
783     ok( r == MSICONDITION_TRUE, "wrong return val\n");
784
785     r = MsiEvaluateCondition(hpkg, "LicView <> \"0\"");
786     ok( r == MSICONDITION_TRUE, "wrong return val\n");
787
788     r = MsiEvaluateCondition(hpkg, "LicView <> LicView");
789     ok( r == MSICONDITION_FALSE, "wrong return val\n");
790
791     r = MsiEvaluateCondition(hpkg, "not 0");
792     ok( r == MSICONDITION_TRUE, "wrong return val\n");
793
794     r = MsiEvaluateCondition(hpkg, "not LicView");
795     ok( r == MSICONDITION_TRUE, "wrong return val\n");
796
797     r = MsiEvaluateCondition(hpkg, "not \"A\"");
798     ok( r == MSICONDITION_FALSE, "wrong return val\n");
799
800     r = MsiEvaluateCondition(hpkg, "~not \"A\"");
801     ok( r == MSICONDITION_ERROR, "wrong return val\n");
802
803     r = MsiEvaluateCondition(hpkg, "\"0\"");
804     ok( r == MSICONDITION_TRUE, "wrong return val\n");
805
806     r = MsiEvaluateCondition(hpkg, "1 and 2");
807     ok( r == MSICONDITION_TRUE, "wrong return val\n");
808
809     r = MsiEvaluateCondition(hpkg, "not 0 and 3");
810     ok( r == MSICONDITION_TRUE, "wrong return val\n");
811
812     r = MsiEvaluateCondition(hpkg, "not 0 and 0");
813     ok( r == MSICONDITION_FALSE, "wrong return val\n");
814
815     r = MsiEvaluateCondition(hpkg, "not 0 or 1");
816     ok( r == MSICONDITION_TRUE, "wrong return val\n");
817
818     r = MsiEvaluateCondition(hpkg, "(0)");
819     ok( r == MSICONDITION_FALSE, "wrong return val\n");
820
821     r = MsiEvaluateCondition(hpkg, "(((((1))))))");
822     ok( r == MSICONDITION_ERROR, "wrong return val\n");
823
824     r = MsiEvaluateCondition(hpkg, "(((((1)))))");
825     ok( r == MSICONDITION_TRUE, "wrong return val\n");
826
827     r = MsiEvaluateCondition(hpkg, " \"A\" < \"B\" ");
828     ok( r == MSICONDITION_TRUE, "wrong return val\n");
829
830     r = MsiEvaluateCondition(hpkg, " \"A\" > \"B\" ");
831     ok( r == MSICONDITION_FALSE, "wrong return val\n");
832
833     r = MsiEvaluateCondition(hpkg, " \"1\" > \"12\" ");
834     ok( r == MSICONDITION_FALSE, "wrong return val\n");
835
836     r = MsiEvaluateCondition(hpkg, " \"100\" < \"21\" ");
837     ok( r == MSICONDITION_TRUE, "wrong return val\n");
838
839     r = MsiEvaluateCondition(hpkg, "0 < > 0");
840     ok( r == MSICONDITION_ERROR, "wrong return val\n");
841
842     r = MsiEvaluateCondition(hpkg, "(1<<1) == 2");
843     ok( r == MSICONDITION_ERROR, "wrong return val\n");
844
845     r = MsiEvaluateCondition(hpkg, " \"A\" = \"a\" ");
846     ok( r == MSICONDITION_FALSE, "wrong return val\n");
847
848     r = MsiEvaluateCondition(hpkg, " \"A\" ~ = \"a\" ");
849     ok( r == MSICONDITION_ERROR, "wrong return val\n");
850
851     r = MsiEvaluateCondition(hpkg, " \"A\" ~= \"a\" ");
852     ok( r == MSICONDITION_TRUE, "wrong return val\n");
853
854     r = MsiEvaluateCondition(hpkg, " \"A\" ~= 1 ");
855     ok( r == MSICONDITION_FALSE, "wrong return val\n");
856
857     r = MsiEvaluateCondition(hpkg, " \"A\" = 1 ");
858     ok( r == MSICONDITION_FALSE, "wrong return val\n");
859
860     r = MsiEvaluateCondition(hpkg, " 1 ~= 1 ");
861     ok( r == MSICONDITION_TRUE, "wrong return val\n");
862
863     r = MsiEvaluateCondition(hpkg, " 1 ~= \"1\" ");
864     ok( r == MSICONDITION_FALSE, "wrong return val\n");
865
866     r = MsiEvaluateCondition(hpkg, " 1 = \"1\" ");
867     ok( r == MSICONDITION_FALSE, "wrong return val\n");
868
869     r = MsiEvaluateCondition(hpkg, " 0 = \"1\" ");
870     ok( r == MSICONDITION_FALSE, "wrong return val\n");
871
872     r = MsiEvaluateCondition(hpkg, " 0 < \"100\" ");
873     ok( r == MSICONDITION_FALSE, "wrong return val\n");
874
875     r = MsiEvaluateCondition(hpkg, " 100 > \"0\" ");
876     ok( r == MSICONDITION_FALSE, "wrong return val\n");
877
878     r = MsiEvaluateCondition(hpkg, "1 XOR 1");
879     ok( r == MSICONDITION_FALSE, "wrong return val\n");
880
881     r = MsiEvaluateCondition(hpkg, "1 IMP 1");
882     ok( r == MSICONDITION_TRUE, "wrong return val\n");
883
884     r = MsiEvaluateCondition(hpkg, "1 IMP 0");
885     ok( r == MSICONDITION_FALSE, "wrong return val\n");
886
887     r = MsiEvaluateCondition(hpkg, "0 IMP 0");
888     ok( r == MSICONDITION_TRUE, "wrong return val\n");
889
890     r = MsiEvaluateCondition(hpkg, "0 EQV 0");
891     ok( r == MSICONDITION_TRUE, "wrong return val\n");
892
893     r = MsiEvaluateCondition(hpkg, "0 EQV 1");
894     ok( r == MSICONDITION_FALSE, "wrong return val\n");
895
896     r = MsiEvaluateCondition(hpkg, "1 IMP 1 OR 0");
897     ok( r == MSICONDITION_TRUE, "wrong return val\n");
898
899     r = MsiEvaluateCondition(hpkg, "1 IMPL 1");
900     ok( r == MSICONDITION_ERROR, "wrong return val\n");
901
902     r = MsiEvaluateCondition(hpkg, "\"ASFD\" >< \"S\" ");
903     ok( r == MSICONDITION_TRUE, "wrong return val\n");
904
905     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"s\" ");
906     ok( r == MSICONDITION_TRUE, "wrong return val\n");
907
908     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"\" ");
909     ok( r == MSICONDITION_TRUE, "wrong return val\n");
910
911     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"sss\" ");
912     ok( r == MSICONDITION_FALSE, "wrong return val\n");
913
914     MsiSetProperty(hpkg, "mm", "5" );
915
916     r = MsiEvaluateCondition(hpkg, "mm = 5");
917     ok( r == MSICONDITION_TRUE, "wrong return val\n");
918
919     r = MsiEvaluateCondition(hpkg, "mm < 6");
920     ok( r == MSICONDITION_TRUE, "wrong return val\n");
921
922     r = MsiEvaluateCondition(hpkg, "mm <= 5");
923     ok( r == MSICONDITION_TRUE, "wrong return val\n");
924
925     r = MsiEvaluateCondition(hpkg, "mm > 4");
926     ok( r == MSICONDITION_TRUE, "wrong return val\n");
927
928     r = MsiEvaluateCondition(hpkg, "mm < 12");
929     ok( r == MSICONDITION_TRUE, "wrong return val\n");
930
931     r = MsiEvaluateCondition(hpkg, "mm = \"5\"");
932     ok( r == MSICONDITION_TRUE, "wrong return val\n");
933
934     r = MsiEvaluateCondition(hpkg, "0 = \"\"");
935     ok( r == MSICONDITION_FALSE, "wrong return val\n");
936
937     r = MsiEvaluateCondition(hpkg, "0 AND \"\"");
938     ok( r == MSICONDITION_FALSE, "wrong return val\n");
939
940     r = MsiEvaluateCondition(hpkg, "1 AND \"\"");
941     ok( r == MSICONDITION_FALSE, "wrong return val\n");
942
943     r = MsiEvaluateCondition(hpkg, "1 AND \"1\"");
944     ok( r == MSICONDITION_TRUE, "wrong return val\n");
945
946     r = MsiEvaluateCondition(hpkg, "3 >< 1");
947     ok( r == MSICONDITION_TRUE, "wrong return val\n");
948
949     r = MsiEvaluateCondition(hpkg, "3 >< 4");
950     ok( r == MSICONDITION_FALSE, "wrong return val\n");
951
952     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 0");
953     ok( r == MSICONDITION_FALSE, "wrong return val\n");
954
955     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1");
956     ok( r == MSICONDITION_TRUE, "wrong return val\n");
957
958     r = MsiEvaluateCondition(hpkg, "NOT 1 OR 0");
959     ok( r == MSICONDITION_FALSE, "wrong return val\n");
960
961     r = MsiEvaluateCondition(hpkg, "0 AND 1 OR 1");
962     ok( r == MSICONDITION_TRUE, "wrong return val\n");
963
964     r = MsiEvaluateCondition(hpkg, "0 AND 0 OR 1");
965     ok( r == MSICONDITION_TRUE, "wrong return val\n");
966
967     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1 OR 0");
968     ok( r == MSICONDITION_TRUE, "wrong return val\n");
969
970     r = MsiEvaluateCondition(hpkg, "_1 = _1");
971     ok( r == MSICONDITION_TRUE, "wrong return val\n");
972
973     r = MsiEvaluateCondition(hpkg, "( 1 AND 1 ) = 2");
974     ok( r == MSICONDITION_ERROR, "wrong return val\n");
975
976     r = MsiEvaluateCondition(hpkg, "NOT ( 1 AND 1 )");
977     ok( r == MSICONDITION_FALSE, "wrong return val\n");
978
979     r = MsiEvaluateCondition(hpkg, "NOT A AND (BBBBBBBBBB=2 OR CCC=1) AND Ddddddddd");
980     ok( r == MSICONDITION_FALSE, "wrong return val\n");
981
982     r = MsiEvaluateCondition(hpkg, "Installed<>\"\"");
983     ok( r == MSICONDITION_FALSE, "wrong return val\n");
984
985     r = MsiEvaluateCondition(hpkg, "NOT 1 AND 0");
986     ok( r == MSICONDITION_FALSE, "wrong return val\n");
987
988     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
989     ok( r == MSICONDITION_FALSE, "wrong return val\n");
990
991     r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
992     ok( r == MSICONDITION_TRUE, "wrong return val\n");
993
994     r = MsiEvaluateCondition(hpkg, "bandalmael<0");
995     ok( r == MSICONDITION_FALSE, "wrong return val\n");
996
997     r = MsiEvaluateCondition(hpkg, "bandalmael>0");
998     ok( r == MSICONDITION_FALSE, "wrong return val\n");
999
1000     r = MsiEvaluateCondition(hpkg, "bandalmael>=0");
1001     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1002
1003     r = MsiEvaluateCondition(hpkg, "bandalmael<=0");
1004     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1005
1006     r = MsiEvaluateCondition(hpkg, "bandalmael~<>0");
1007     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1008
1009     MsiSetProperty(hpkg, "bandalmael", "0" );
1010     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1011     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1012
1013     MsiSetProperty(hpkg, "bandalmael", "" );
1014     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1015     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1016
1017     MsiSetProperty(hpkg, "bandalmael", "asdf" );
1018     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1019     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1020
1021     MsiSetProperty(hpkg, "bandalmael", "0asdf" );
1022     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1023     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1024
1025     MsiSetProperty(hpkg, "bandalmael", "0 " );
1026     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1027     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1028
1029     MsiSetProperty(hpkg, "bandalmael", "-0" );
1030     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1031     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1032
1033     MsiSetProperty(hpkg, "bandalmael", "0000000000000" );
1034     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1035     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1036
1037     MsiSetProperty(hpkg, "bandalmael", "--0" );
1038     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1039     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1040
1041     MsiSetProperty(hpkg, "bandalmael", "0x00" );
1042     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1043     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1044
1045     MsiSetProperty(hpkg, "bandalmael", "-" );
1046     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1047     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1048
1049     MsiSetProperty(hpkg, "bandalmael", "+0" );
1050     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1051     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1052
1053     MsiSetProperty(hpkg, "bandalmael", "0.0" );
1054     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1055     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1056     r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
1057     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1058
1059     MsiSetProperty(hpkg, "one", "hi");
1060     MsiSetProperty(hpkg, "two", "hithere");
1061     r = MsiEvaluateCondition(hpkg, "one >< two");
1062     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1063
1064     MsiSetProperty(hpkg, "one", "hithere");
1065     MsiSetProperty(hpkg, "two", "hi");
1066     r = MsiEvaluateCondition(hpkg, "one >< two");
1067     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1068
1069     MsiSetProperty(hpkg, "one", "hello");
1070     MsiSetProperty(hpkg, "two", "hi");
1071     r = MsiEvaluateCondition(hpkg, "one >< two");
1072     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1073
1074     MsiSetProperty(hpkg, "one", "hellohithere");
1075     MsiSetProperty(hpkg, "two", "hi");
1076     r = MsiEvaluateCondition(hpkg, "one >< two");
1077     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1078
1079     MsiSetProperty(hpkg, "one", "");
1080     MsiSetProperty(hpkg, "two", "hi");
1081     r = MsiEvaluateCondition(hpkg, "one >< two");
1082     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1083
1084     MsiSetProperty(hpkg, "one", "hi");
1085     MsiSetProperty(hpkg, "two", "");
1086     r = MsiEvaluateCondition(hpkg, "one >< two");
1087     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1088
1089     MsiSetProperty(hpkg, "one", "");
1090     MsiSetProperty(hpkg, "two", "");
1091     r = MsiEvaluateCondition(hpkg, "one >< two");
1092     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1093
1094     MsiSetProperty(hpkg, "one", "1234");
1095     MsiSetProperty(hpkg, "two", "1");
1096     r = MsiEvaluateCondition(hpkg, "one >< two");
1097     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1098
1099     MsiSetProperty(hpkg, "one", "one 1234");
1100     MsiSetProperty(hpkg, "two", "1");
1101     r = MsiEvaluateCondition(hpkg, "one >< two");
1102     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1103
1104     MsiSetProperty(hpkg, "one", "hithere");
1105     MsiSetProperty(hpkg, "two", "hi");
1106     r = MsiEvaluateCondition(hpkg, "one << two");
1107     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1108
1109     MsiSetProperty(hpkg, "one", "hi");
1110     MsiSetProperty(hpkg, "two", "hithere");
1111     r = MsiEvaluateCondition(hpkg, "one << two");
1112     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1113
1114     MsiSetProperty(hpkg, "one", "hi");
1115     MsiSetProperty(hpkg, "two", "hi");
1116     r = MsiEvaluateCondition(hpkg, "one << two");
1117     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1118
1119     MsiSetProperty(hpkg, "one", "abcdhithere");
1120     MsiSetProperty(hpkg, "two", "hi");
1121     r = MsiEvaluateCondition(hpkg, "one << two");
1122     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1123
1124     MsiSetProperty(hpkg, "one", "");
1125     MsiSetProperty(hpkg, "two", "hi");
1126     r = MsiEvaluateCondition(hpkg, "one << two");
1127     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1128
1129     MsiSetProperty(hpkg, "one", "hithere");
1130     MsiSetProperty(hpkg, "two", "");
1131     r = MsiEvaluateCondition(hpkg, "one << two");
1132     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1133
1134     MsiSetProperty(hpkg, "one", "");
1135     MsiSetProperty(hpkg, "two", "");
1136     r = MsiEvaluateCondition(hpkg, "one << two");
1137     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1138
1139     MsiSetProperty(hpkg, "one", "1234");
1140     MsiSetProperty(hpkg, "two", "1");
1141     r = MsiEvaluateCondition(hpkg, "one << two");
1142     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1143
1144     MsiSetProperty(hpkg, "one", "1234 one");
1145     MsiSetProperty(hpkg, "two", "1");
1146     r = MsiEvaluateCondition(hpkg, "one << two");
1147     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1148
1149     MsiSetProperty(hpkg, "one", "hithere");
1150     MsiSetProperty(hpkg, "two", "there");
1151     r = MsiEvaluateCondition(hpkg, "one >> two");
1152     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1153
1154     MsiSetProperty(hpkg, "one", "hithere");
1155     MsiSetProperty(hpkg, "two", "hi");
1156     r = MsiEvaluateCondition(hpkg, "one >> two");
1157     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1158
1159     MsiSetProperty(hpkg, "one", "there");
1160     MsiSetProperty(hpkg, "two", "hithere");
1161     r = MsiEvaluateCondition(hpkg, "one >> two");
1162     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1163
1164     MsiSetProperty(hpkg, "one", "there");
1165     MsiSetProperty(hpkg, "two", "there");
1166     r = MsiEvaluateCondition(hpkg, "one >> two");
1167     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1168
1169     MsiSetProperty(hpkg, "one", "abcdhithere");
1170     MsiSetProperty(hpkg, "two", "hi");
1171     r = MsiEvaluateCondition(hpkg, "one >> two");
1172     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1173
1174     MsiSetProperty(hpkg, "one", "");
1175     MsiSetProperty(hpkg, "two", "there");
1176     r = MsiEvaluateCondition(hpkg, "one >> two");
1177     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1178
1179     MsiSetProperty(hpkg, "one", "there");
1180     MsiSetProperty(hpkg, "two", "");
1181     r = MsiEvaluateCondition(hpkg, "one >> two");
1182     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1183
1184     MsiSetProperty(hpkg, "one", "");
1185     MsiSetProperty(hpkg, "two", "");
1186     r = MsiEvaluateCondition(hpkg, "one >> two");
1187     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1188
1189     MsiSetProperty(hpkg, "one", "1234");
1190     MsiSetProperty(hpkg, "two", "4");
1191     r = MsiEvaluateCondition(hpkg, "one >> two");
1192     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1193
1194     MsiSetProperty(hpkg, "one", "one 1234");
1195     MsiSetProperty(hpkg, "two", "4");
1196     r = MsiEvaluateCondition(hpkg, "one >> two");
1197     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1198
1199     MsiCloseHandle( hpkg );
1200     DeleteFile(msifile);
1201 }
1202
1203 static BOOL check_prop_empty( MSIHANDLE hpkg, const char * prop)
1204 {
1205     UINT r;
1206     DWORD sz;
1207     char buffer[2];
1208
1209     sz = sizeof buffer;
1210     strcpy(buffer,"x");
1211     r = MsiGetProperty( hpkg, prop, buffer, &sz );
1212     return r == ERROR_SUCCESS && buffer[0] == 0 && sz == 0;
1213 }
1214
1215 static void test_props(void)
1216 {
1217     MSIHANDLE hpkg;
1218     UINT r;
1219     DWORD sz;
1220     char buffer[0x100];
1221
1222     hpkg = package_from_db(create_package_db());
1223     ok( hpkg, "failed to create package\n");
1224
1225     /* test invalid values */
1226     r = MsiGetProperty( 0, NULL, NULL, NULL );
1227     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1228
1229     r = MsiGetProperty( hpkg, NULL, NULL, NULL );
1230     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1231
1232     r = MsiGetProperty( hpkg, "boo", NULL, NULL );
1233     ok( r == ERROR_SUCCESS, "wrong return val\n");
1234
1235     r = MsiGetProperty( hpkg, "boo", buffer, NULL );
1236     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1237
1238     /* test retrieving an empty/nonexistent property */
1239     sz = sizeof buffer;
1240     r = MsiGetProperty( hpkg, "boo", NULL, &sz );
1241     ok( r == ERROR_SUCCESS, "wrong return val\n");
1242     ok( sz == 0, "wrong size returned\n");
1243
1244     check_prop_empty( hpkg, "boo");
1245     sz = 0;
1246     strcpy(buffer,"x");
1247     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1248     ok( r == ERROR_MORE_DATA, "wrong return val\n");
1249     ok( !strcmp(buffer,"x"), "buffer was changed\n");
1250     ok( sz == 0, "wrong size returned\n");
1251
1252     sz = 1;
1253     strcpy(buffer,"x");
1254     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1255     ok( r == ERROR_SUCCESS, "wrong return val\n");
1256     ok( buffer[0] == 0, "buffer was not changed\n");
1257     ok( sz == 0, "wrong size returned\n");
1258
1259     /* set the property to something */
1260     r = MsiSetProperty( 0, NULL, NULL );
1261     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
1262
1263     r = MsiSetProperty( hpkg, NULL, NULL );
1264     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1265
1266     r = MsiSetProperty( hpkg, "", NULL );
1267     ok( r == ERROR_SUCCESS, "wrong return val\n");
1268
1269     /* try set and get some illegal property identifiers */
1270     r = MsiSetProperty( hpkg, "", "asdf" );
1271     ok( r == ERROR_FUNCTION_FAILED, "wrong return val\n");
1272
1273     r = MsiSetProperty( hpkg, "=", "asdf" );
1274     ok( r == ERROR_SUCCESS, "wrong return val\n");
1275
1276     r = MsiSetProperty( hpkg, " ", "asdf" );
1277     ok( r == ERROR_SUCCESS, "wrong return val\n");
1278
1279     r = MsiSetProperty( hpkg, "'", "asdf" );
1280     ok( r == ERROR_SUCCESS, "wrong return val\n");
1281
1282     sz = sizeof buffer;
1283     buffer[0]=0;
1284     r = MsiGetProperty( hpkg, "'", buffer, &sz );
1285     ok( r == ERROR_SUCCESS, "wrong return val\n");
1286     ok( !strcmp(buffer,"asdf"), "buffer was not changed\n");
1287
1288     /* set empty values */
1289     r = MsiSetProperty( hpkg, "boo", NULL );
1290     ok( r == ERROR_SUCCESS, "wrong return val\n");
1291     ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
1292
1293     r = MsiSetProperty( hpkg, "boo", "" );
1294     ok( r == ERROR_SUCCESS, "wrong return val\n");
1295     ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
1296
1297     /* set a non-empty value */
1298     r = MsiSetProperty( hpkg, "boo", "xyz" );
1299     ok( r == ERROR_SUCCESS, "wrong return val\n");
1300
1301     sz = 1;
1302     strcpy(buffer,"x");
1303     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1304     ok( r == ERROR_MORE_DATA, "wrong return val\n");
1305     ok( buffer[0] == 0, "buffer was not changed\n");
1306     ok( sz == 3, "wrong size returned\n");
1307
1308     sz = 4;
1309     strcpy(buffer,"x");
1310     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1311     ok( r == ERROR_SUCCESS, "wrong return val\n");
1312     ok( !strcmp(buffer,"xyz"), "buffer was not changed\n");
1313     ok( sz == 3, "wrong size returned\n");
1314
1315     sz = 3;
1316     strcpy(buffer,"x");
1317     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1318     ok( r == ERROR_MORE_DATA, "wrong return val\n");
1319     ok( !strcmp(buffer,"xy"), "buffer was not changed\n");
1320     ok( sz == 3, "wrong size returned\n");
1321
1322     r = MsiSetProperty(hpkg, "SourceDir", "foo");
1323     ok( r == ERROR_SUCCESS, "wrong return val\n");
1324
1325     sz = 4;
1326     r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
1327     ok( r == ERROR_SUCCESS, "wrong return val\n");
1328     ok( !strcmp(buffer,""), "buffer wrong\n");
1329     ok( sz == 0, "wrong size returned\n");
1330
1331     sz = 4;
1332     r = MsiGetProperty(hpkg, "SOMERANDOMNAME", buffer, &sz);
1333     ok( r == ERROR_SUCCESS, "wrong return val\n");
1334     ok( !strcmp(buffer,""), "buffer wrong\n");
1335     ok( sz == 0, "wrong size returned\n");
1336
1337     sz = 4;
1338     r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
1339     ok( r == ERROR_SUCCESS, "wrong return val\n");
1340     ok( !strcmp(buffer,"foo"), "buffer wrong\n");
1341     ok( sz == 3, "wrong size returned\n");
1342
1343     MsiCloseHandle( hpkg );
1344     DeleteFile(msifile);
1345 }
1346
1347 static UINT try_query_param( MSIHANDLE hdb, LPCSTR szQuery, MSIHANDLE hrec )
1348 {
1349     MSIHANDLE htab = 0;
1350     UINT res;
1351
1352     res = MsiDatabaseOpenView( hdb, szQuery, &htab );
1353     if( res == ERROR_SUCCESS )
1354     {
1355         UINT r;
1356
1357         r = MsiViewExecute( htab, hrec );
1358         if( r != ERROR_SUCCESS )
1359         {
1360             res = r;
1361             fprintf(stderr,"MsiViewExecute failed %08x\n", res);
1362         }
1363
1364         r = MsiViewClose( htab );
1365         if( r != ERROR_SUCCESS )
1366             res = r;
1367
1368         r = MsiCloseHandle( htab );
1369         if( r != ERROR_SUCCESS )
1370             res = r;
1371     }
1372     return res;
1373 }
1374
1375 static UINT try_query( MSIHANDLE hdb, LPCSTR szQuery )
1376 {
1377     return try_query_param( hdb, szQuery, 0 );
1378 }
1379
1380 static void test_msipackage(void)
1381 {
1382     MSIHANDLE hdb = 0, hpack = 100;
1383     UINT r;
1384     const char *query;
1385     char name[10];
1386
1387     DeleteFile(msifile);
1388
1389     todo_wine {
1390     name[0] = 0;
1391     r = MsiOpenPackage(name, &hpack);
1392     ok(r == ERROR_SUCCESS, "failed to open package with no name\n");
1393     r = MsiCloseHandle(hpack);
1394     ok(r == ERROR_SUCCESS, "failed to close package\n");
1395     }
1396
1397     /* just MsiOpenDatabase should not create a file */
1398     r = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb);
1399     ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
1400
1401     name[0]='#';
1402     name[1]=0;
1403     r = MsiOpenPackage(name, &hpack);
1404     ok(r == ERROR_INVALID_HANDLE, "MsiOpenPackage returned wrong code\n");
1405
1406     todo_wine {
1407     /* now try again with our empty database */
1408     sprintf(name, "#%ld", hdb);
1409     r = MsiOpenPackage(name, &hpack);
1410     ok(r == ERROR_INSTALL_PACKAGE_INVALID, "MsiOpenPackage returned wrong code\n");
1411     if (!r)    MsiCloseHandle(hpack);
1412     }
1413
1414     /* create a table */
1415     query = "CREATE TABLE `Property` ( "
1416             "`Property` CHAR(72), `Value` CHAR(0) "
1417             "PRIMARY KEY `Property`)";
1418     r = try_query(hdb, query);
1419     ok(r == ERROR_SUCCESS, "failed to create Properties table\n");
1420
1421     todo_wine {
1422     query = "CREATE TABLE `InstallExecuteSequence` ("
1423             "`Action` CHAR(72), `Condition` CHAR(0), `Sequence` INTEGER "
1424             "PRIMARY KEY `Action`)";
1425     r = try_query(hdb, query);
1426     ok(r == ERROR_SUCCESS, "failed to create InstallExecuteSequence table\n");
1427
1428     sprintf(name, "#%ld", hdb);
1429     r = MsiOpenPackage(name, &hpack);
1430     ok(r == ERROR_INSTALL_PACKAGE_INVALID, "MsiOpenPackage returned wrong code\n");
1431     if (!r)    MsiCloseHandle(hpack);
1432     }
1433
1434     r = MsiCloseHandle(hdb);
1435     ok(r == ERROR_SUCCESS, "MsiCloseHandle(database) failed\n");
1436     DeleteFile(msifile);
1437 }
1438
1439 static void test_formatrecord2(void)
1440 {
1441     MSIHANDLE hpkg, hrec ;
1442     char buffer[0x100];
1443     DWORD sz;
1444     UINT r;
1445
1446     hpkg = package_from_db(create_package_db());
1447     ok( hpkg, "failed to create package\n");
1448
1449     r = MsiSetProperty(hpkg, "Manufacturer", " " );
1450     ok( r == ERROR_SUCCESS, "set property failed\n");
1451
1452     hrec = MsiCreateRecord(2);
1453     ok(hrec, "create record failed\n");
1454
1455     r = MsiRecordSetString( hrec, 0, "[ProgramFilesFolder][Manufacturer]\\asdf");
1456     ok( r == ERROR_SUCCESS, "format record failed\n");
1457
1458     buffer[0] = 0;
1459     sz = sizeof buffer;
1460     r = MsiFormatRecord( hpkg, hrec, buffer, &sz );
1461
1462     r = MsiRecordSetString(hrec, 0, "[foo][1]");
1463     r = MsiRecordSetString(hrec, 1, "hoo");
1464     sz = sizeof buffer;
1465     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1466     ok( sz == 3, "size wrong\n");
1467     ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
1468     ok( r == ERROR_SUCCESS, "format failed\n");
1469
1470     r = MsiRecordSetString(hrec, 0, "x[~]x");
1471     sz = sizeof buffer;
1472     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1473     ok( sz == 3, "size wrong\n");
1474     ok( 0 == strcmp(buffer,"x"), "wrong output %s\n",buffer);
1475     ok( r == ERROR_SUCCESS, "format failed\n");
1476
1477     r = MsiRecordSetString(hrec, 0, "[foo.$%}][1]");
1478     r = MsiRecordSetString(hrec, 1, "hoo");
1479     sz = sizeof buffer;
1480     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1481     ok( sz == 3, "size wrong\n");
1482     ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
1483     ok( r == ERROR_SUCCESS, "format failed\n");
1484
1485     r = MsiRecordSetString(hrec, 0, "[\\[]");
1486     sz = sizeof buffer;
1487     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1488     ok( sz == 1, "size wrong\n");
1489     ok( 0 == strcmp(buffer,"["), "wrong output %s\n",buffer);
1490     ok( r == ERROR_SUCCESS, "format failed\n");
1491
1492     SetEnvironmentVariable("FOO", "BAR");
1493     r = MsiRecordSetString(hrec, 0, "[%FOO]");
1494     sz = sizeof buffer;
1495     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1496     ok( sz == 3, "size wrong\n");
1497     ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
1498     ok( r == ERROR_SUCCESS, "format failed\n");
1499
1500     r = MsiRecordSetString(hrec, 0, "[[1]]");
1501     r = MsiRecordSetString(hrec, 1, "%FOO");
1502     sz = sizeof buffer;
1503     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1504     ok( sz == 3, "size wrong\n");
1505     ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
1506     ok( r == ERROR_SUCCESS, "format failed\n");
1507
1508     MsiCloseHandle( hrec );
1509     MsiCloseHandle( hpkg );
1510     DeleteFile(msifile);
1511 }
1512
1513 static void test_states(void)
1514 {
1515     MSIHANDLE hpkg;
1516     UINT r;
1517     MSIHANDLE hdb;
1518     INSTALLSTATE state, action;
1519
1520     hdb = create_package_db();
1521     ok ( hdb, "failed to create package database\n" );
1522
1523     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
1524     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
1525
1526     r = create_feature_table( hdb );
1527     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
1528
1529     r = create_component_table( hdb );
1530     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
1531
1532     /* msidbFeatureAttributesFavorLocal */
1533     r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
1534     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1535
1536     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
1537     r = add_component_entry( hdb, "'alpha', '{467EC132-739D-4784-A37B-677AA43DBC94}', 'TARGETDIR', 0, '', 'alpha_file'" );
1538     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1539
1540     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
1541     r = add_component_entry( hdb, "'beta', '{2C1F189C-24A6-4C34-B26B-994A6C026506}', 'TARGETDIR', 1, '', 'beta_file'" );
1542     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1543
1544     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
1545     r = add_component_entry( hdb, "'gamma', '{C271E2A4-DE2E-4F70-86D1-6984AF7DE2CA}', 'TARGETDIR', 2, '', 'gamma_file'" );
1546     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1547
1548     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSharedDllRefCount */
1549     r = add_component_entry( hdb, "'theta', '{4EB3129D-81A8-48D5-9801-75600FED3DD9}', 'TARGETDIR', 8, '', 'theta_file'" );
1550     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1551
1552     /* msidbFeatureAttributesFavorSource */
1553     r = add_feature_entry( hdb, "'two', '', '', '', 2, 1, '', 1" );
1554     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1555
1556     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
1557     r = add_component_entry( hdb, "'delta', '{938FD4F2-C648-4259-A03C-7AA3B45643F3}', 'TARGETDIR', 0, '', 'delta_file'" );
1558     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1559
1560     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
1561     r = add_component_entry( hdb, "'epsilon', '{D59713B6-C11D-47F2-A395-1E5321781190}', 'TARGETDIR', 1, '', 'epsilon_file'" );
1562     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1563
1564     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
1565     r = add_component_entry( hdb, "'zeta', '{377D33AB-2FAA-42B9-A629-0C0DAE9B9C7A}', 'TARGETDIR', 2, '', 'zeta_file'" );
1566     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1567
1568     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSharedDllRefCount */
1569     r = add_component_entry( hdb, "'iota', '{5D36F871-B5ED-4801-9E0F-C46B9E5C9669}', 'TARGETDIR', 8, '', 'iota_file'" );
1570     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1571
1572     /* msidbFeatureAttributesFavorSource */
1573     r = add_feature_entry( hdb, "'three', '', '', '', 2, 1, '', 1" );
1574     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1575
1576     /* msidbFeatureAttributesFavorLocal */
1577     r = add_feature_entry( hdb, "'four', '', '', '', 2, 1, '', 0" );
1578     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1579
1580     /* disabled */
1581     r = add_feature_entry( hdb, "'five', '', '', '', 2, 0, '', 1" );
1582     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1583
1584     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
1585     r = add_component_entry( hdb, "'eta', '{DD89003F-0DD4-41B8-81C0-3411A7DA2695}', 'TARGETDIR', 1, '', 'eta_file'" );
1586     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1587
1588     r = create_feature_components_table( hdb );
1589     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
1590
1591     r = add_feature_components_entry( hdb, "'one', 'alpha'" );
1592     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1593
1594     r = add_feature_components_entry( hdb, "'one', 'beta'" );
1595     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1596
1597     r = add_feature_components_entry( hdb, "'one', 'gamma'" );
1598     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1599
1600     r = add_feature_components_entry( hdb, "'one', 'theta'" );
1601     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1602
1603     r = add_feature_components_entry( hdb, "'two', 'delta'" );
1604     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1605
1606     r = add_feature_components_entry( hdb, "'two', 'epsilon'" );
1607     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1608
1609     r = add_feature_components_entry( hdb, "'two', 'zeta'" );
1610     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1611
1612     r = add_feature_components_entry( hdb, "'two', 'iota'" );
1613     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1614
1615     r = add_feature_components_entry( hdb, "'three', 'eta'" );
1616     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1617
1618     r = add_feature_components_entry( hdb, "'four', 'eta'" );
1619     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1620
1621     r = add_feature_components_entry( hdb, "'five', 'eta'" );
1622     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1623
1624     r = create_file_table( hdb );
1625     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
1626
1627     r = add_file_entry( hdb, "'alpha_file', 'alpha', 'alpha.txt', 100, '', '1033', 8192, 1" );
1628     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1629
1630     r = add_file_entry( hdb, "'beta_file', 'beta', 'beta.txt', 0, '', '1033', 8192, 1" );
1631     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1632
1633     r = add_file_entry( hdb, "'gamma_file', 'gamma', 'gamma.txt', 0, '', '1033', 8192, 1" );
1634     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1635
1636     r = add_file_entry( hdb, "'theta_file', 'theta', 'theta.txt', 0, '', '1033', 8192, 1" );
1637     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1638
1639     r = add_file_entry( hdb, "'delta_file', 'delta', 'delta.txt', 0, '', '1033', 8192, 1" );
1640     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1641
1642     r = add_file_entry( hdb, "'epsilon_file', 'epsilon', 'epsilon.txt', 0, '', '1033', 8192, 1" );
1643     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1644
1645     r = add_file_entry( hdb, "'zeta_file', 'zeta', 'zeta.txt', 0, '', '1033', 8192, 1" );
1646     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1647
1648     r = add_file_entry( hdb, "'iota_file', 'iota', 'iota.txt', 0, '', '1033', 8192, 1" );
1649     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1650
1651     /* compressed file */
1652     r = add_file_entry( hdb, "'eta_file', 'eta', 'eta.txt', 0, '', '1033', 16384, 1" );
1653     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1654
1655     hpkg = package_from_db( hdb );
1656     ok( hpkg, "failed to create package\n");
1657
1658     state = 0xdeadbee;
1659     action = 0xdeadbee;
1660     r = MsiGetFeatureState(hpkg, "one", &state, &action);
1661     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1662     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1663     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1664
1665     state = 0xdeadbee;
1666     action = 0xdeadbee;
1667     r = MsiGetFeatureState(hpkg, "two", &state, &action);
1668     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1669     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1670     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1671
1672     state = 0xdeadbee;
1673     action = 0xdeadbee;
1674     r = MsiGetFeatureState(hpkg, "three", &state, &action);
1675     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1676     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1677     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1678
1679     state = 0xdeadbee;
1680     action = 0xdeadbee;
1681     r = MsiGetFeatureState(hpkg, "four", &state, &action);
1682     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1683     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1684     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1685
1686     state = 0xdeadbee;
1687     action = 0xdeadbee;
1688     r = MsiGetFeatureState(hpkg, "five", &state, &action);
1689     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1690     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1691     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1692
1693     state = 0xdeadbee;
1694     action = 0xdeadbee;
1695     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
1696     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1697     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1698     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1699
1700     state = 0xdeadbee;
1701     action = 0xdeadbee;
1702     r = MsiGetComponentState(hpkg, "beta", &state, &action);
1703     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1704     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1705     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1706
1707     state = 0xdeadbee;
1708     action = 0xdeadbee;
1709     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
1710     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1711     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1712     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1713
1714     state = 0xdeadbee;
1715     action = 0xdeadbee;
1716     r = MsiGetComponentState(hpkg, "theta", &state, &action);
1717     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1718     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1719     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1720
1721     state = 0xdeadbee;
1722     action = 0xdeadbee;
1723     r = MsiGetComponentState(hpkg, "delta", &state, &action);
1724     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1725     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1726     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1727
1728     state = 0xdeadbee;
1729     action = 0xdeadbee;
1730     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
1731     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1732     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1733     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1734
1735     state = 0xdeadbee;
1736     action = 0xdeadbee;
1737     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
1738     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1739     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1740     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1741
1742     state = 0xdeadbee;
1743     action = 0xdeadbee;
1744     r = MsiGetComponentState(hpkg, "iota", &state, &action);
1745     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1746     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1747     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1748
1749     state = 0xdeadbee;
1750     action = 0xdeadbee;
1751     r = MsiGetComponentState(hpkg, "eta", &state, &action);
1752     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1753     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1754     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1755
1756     r = MsiDoAction( hpkg, "CostInitialize");
1757     ok( r == ERROR_SUCCESS, "cost init failed\n");
1758
1759     state = 0xdeadbee;
1760     action = 0xdeadbee;
1761     r = MsiGetFeatureState(hpkg, "one", &state, &action);
1762     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1763     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1764     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1765
1766     state = 0xdeadbee;
1767     action = 0xdeadbee;
1768     r = MsiGetFeatureState(hpkg, "two", &state, &action);
1769     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1770     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1771     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1772
1773     state = 0xdeadbee;
1774     action = 0xdeadbee;
1775     r = MsiGetFeatureState(hpkg, "three", &state, &action);
1776     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1777     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1778     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1779
1780     state = 0xdeadbee;
1781     action = 0xdeadbee;
1782     r = MsiGetFeatureState(hpkg, "four", &state, &action);
1783     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1784     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1785     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1786
1787     state = 0xdeadbee;
1788     action = 0xdeadbee;
1789     r = MsiGetFeatureState(hpkg, "five", &state, &action);
1790     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1791     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1792     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1793
1794     state = 0xdeadbee;
1795     action = 0xdeadbee;
1796     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
1797     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1798     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1799     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1800
1801     state = 0xdeadbee;
1802     action = 0xdeadbee;
1803     r = MsiGetComponentState(hpkg, "beta", &state, &action);
1804     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1805     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1806     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1807
1808     state = 0xdeadbee;
1809     action = 0xdeadbee;
1810     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
1811     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1812     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1813     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1814
1815     state = 0xdeadbee;
1816     action = 0xdeadbee;
1817     r = MsiGetComponentState(hpkg, "theta", &state, &action);
1818     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1819     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1820     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1821
1822     state = 0xdeadbee;
1823     action = 0xdeadbee;
1824     r = MsiGetComponentState(hpkg, "delta", &state, &action);
1825     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1826     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1827     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1828
1829     state = 0xdeadbee;
1830     action = 0xdeadbee;
1831     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
1832     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1833     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1834     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1835
1836     state = 0xdeadbee;
1837     action = 0xdeadbee;
1838     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
1839     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1840     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1841     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1842
1843     state = 0xdeadbee;
1844     action = 0xdeadbee;
1845     r = MsiGetComponentState(hpkg, "iota", &state, &action);
1846     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1847     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1848     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1849
1850     state = 0xdeadbee;
1851     action = 0xdeadbee;
1852     r = MsiGetComponentState(hpkg, "eta", &state, &action);
1853     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1854     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1855     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1856
1857     r = MsiDoAction( hpkg, "FileCost");
1858     ok( r == ERROR_SUCCESS, "file cost failed\n");
1859
1860     state = 0xdeadbee;
1861     action = 0xdeadbee;
1862     r = MsiGetFeatureState(hpkg, "one", &state, &action);
1863     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1864     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1865     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1866
1867     state = 0xdeadbee;
1868     action = 0xdeadbee;
1869     r = MsiGetFeatureState(hpkg, "two", &state, &action);
1870     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1871     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1872     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1873
1874     state = 0xdeadbee;
1875     action = 0xdeadbee;
1876     r = MsiGetFeatureState(hpkg, "three", &state, &action);
1877     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1878     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1879     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1880
1881     state = 0xdeadbee;
1882     action = 0xdeadbee;
1883     r = MsiGetFeatureState(hpkg, "four", &state, &action);
1884     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1885     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1886     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1887
1888     state = 0xdeadbee;
1889     action = 0xdeadbee;
1890     r = MsiGetFeatureState(hpkg, "five", &state, &action);
1891     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1892     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1893     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1894
1895     state = 0xdeadbee;
1896     action = 0xdeadbee;
1897     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
1898     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1899     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1900     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1901
1902     state = 0xdeadbee;
1903     action = 0xdeadbee;
1904     r = MsiGetComponentState(hpkg, "beta", &state, &action);
1905     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1906     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1907     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1908
1909     state = 0xdeadbee;
1910     action = 0xdeadbee;
1911     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
1912     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1913     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1914     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1915
1916     state = 0xdeadbee;
1917     action = 0xdeadbee;
1918     r = MsiGetComponentState(hpkg, "theta", &state, &action);
1919     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1920     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1921     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1922
1923     state = 0xdeadbee;
1924     action = 0xdeadbee;
1925     r = MsiGetComponentState(hpkg, "delta", &state, &action);
1926     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1927     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1928     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1929
1930     state = 0xdeadbee;
1931     action = 0xdeadbee;
1932     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
1933     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1934     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1935     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1936
1937     state = 0xdeadbee;
1938     action = 0xdeadbee;
1939     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
1940     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1941     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1942     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1943
1944     state = 0xdeadbee;
1945     action = 0xdeadbee;
1946     r = MsiGetComponentState(hpkg, "iota", &state, &action);
1947     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1948     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1949     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1950
1951     state = 0xdeadbee;
1952     action = 0xdeadbee;
1953     r = MsiGetComponentState(hpkg, "eta", &state, &action);
1954     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1955     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1956     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1957
1958     r = MsiDoAction( hpkg, "CostFinalize");
1959     ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
1960
1961     state = 0xdeadbee;
1962     action = 0xdeadbee;
1963     r = MsiGetFeatureState(hpkg, "one", &state, &action);
1964     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1965     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
1966     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
1967
1968     state = 0xdeadbee;
1969     action = 0xdeadbee;
1970     r = MsiGetFeatureState(hpkg, "two", &state, &action);
1971     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1972     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
1973     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
1974
1975     state = 0xdeadbee;
1976     action = 0xdeadbee;
1977     r = MsiGetFeatureState(hpkg, "three", &state, &action);
1978     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1979     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
1980     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
1981
1982     state = 0xdeadbee;
1983     action = 0xdeadbee;
1984     r = MsiGetFeatureState(hpkg, "four", &state, &action);
1985     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1986     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
1987     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
1988
1989     state = 0xdeadbee;
1990     action = 0xdeadbee;
1991     r = MsiGetFeatureState(hpkg, "five", &state, &action);
1992     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1993     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
1994     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1995
1996     state = 0xdeadbee;
1997     action = 0xdeadbee;
1998     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
1999     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2000     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2001     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2002
2003     state = 0xdeadbee;
2004     action = 0xdeadbee;
2005     r = MsiGetComponentState(hpkg, "beta", &state, &action);
2006     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2007     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2008     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2009
2010     state = 0xdeadbee;
2011     action = 0xdeadbee;
2012     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
2013     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2014     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2015     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2016
2017     state = 0xdeadbee;
2018     action = 0xdeadbee;
2019     r = MsiGetComponentState(hpkg, "theta", &state, &action);
2020     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2021     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2022     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2023
2024     state = 0xdeadbee;
2025     action = 0xdeadbee;
2026     r = MsiGetComponentState(hpkg, "delta", &state, &action);
2027     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2028     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2029     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2030
2031     state = 0xdeadbee;
2032     action = 0xdeadbee;
2033     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
2034     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2035     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2036     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2037
2038     state = 0xdeadbee;
2039     action = 0xdeadbee;
2040     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
2041     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2042     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2043     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2044
2045     state = 0xdeadbee;
2046     action = 0xdeadbee;
2047     r = MsiGetComponentState(hpkg, "iota", &state, &action);
2048     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2049     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2050     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2051
2052     state = 0xdeadbee;
2053     action = 0xdeadbee;
2054     r = MsiGetComponentState(hpkg, "eta", &state, &action);
2055     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2056     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2057     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2058     
2059     MsiCloseHandle( hpkg );
2060 }
2061
2062 static void test_getproperty(void)
2063 {
2064     MSIHANDLE hPackage = 0;
2065     char prop[100];
2066     static CHAR empty[] = "";
2067     DWORD size;
2068     UINT r;
2069
2070     hPackage = package_from_db(create_package_db());
2071     ok( hPackage != 0, " Failed to create package\n");
2072
2073     /* set the property */
2074     r = MsiSetProperty(hPackage, "Name", "Value");
2075     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2076
2077     /* retrieve the size, NULL pointer */
2078     size = 0;
2079     r = MsiGetProperty(hPackage, "Name", NULL, &size);
2080     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2081     ok( size == 5, "Expected 5, got %ld\n", size);
2082
2083     /* retrieve the size, empty string */
2084     size = 0;
2085     r = MsiGetProperty(hPackage, "Name", empty, &size);
2086     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
2087     ok( size == 5, "Expected 5, got %ld\n", size);
2088
2089     /* don't change size */
2090     r = MsiGetProperty(hPackage, "Name", prop, &size);
2091     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
2092     ok( size == 5, "Expected 5, got %ld\n", size);
2093     ok( !lstrcmp(prop, "Valu"), "Expected Valu, got %s\n", prop);
2094
2095     /* increase the size by 1 */
2096     size++;
2097     r = MsiGetProperty(hPackage, "Name", prop, &size);
2098     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2099     ok( size == 5, "Expected 5, got %ld\n", size);
2100     ok( !lstrcmp(prop, "Value"), "Expected Value, got %s\n", prop);
2101
2102     r = MsiCloseHandle( hPackage);
2103     ok( r == ERROR_SUCCESS , "Failed to close package\n" );
2104     DeleteFile(msifile);
2105 }
2106
2107 static void test_removefiles(void)
2108 {
2109     MSIHANDLE hpkg;
2110     UINT r;
2111     MSIHANDLE hdb;
2112     char CURR_DIR[MAX_PATH];
2113
2114     GetCurrentDirectoryA(MAX_PATH, CURR_DIR);
2115
2116     hdb = create_package_db();
2117     ok ( hdb, "failed to create package database\n" );
2118
2119     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2120     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2121
2122     r = create_feature_table( hdb );
2123     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
2124
2125     r = create_component_table( hdb );
2126     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
2127
2128     r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
2129     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2130
2131     r = add_component_entry( hdb, "'hydrogen', '', 'TARGETDIR', 0, '', 'hydrogen_file'" );
2132     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2133
2134     r = add_component_entry( hdb, "'helium', '', 'TARGETDIR', 0, '', 'helium_file'" );
2135     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2136
2137     r = add_component_entry( hdb, "'lithium', '', 'TARGETDIR', 0, '', 'lithium_file'" );
2138     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2139
2140     r = add_component_entry( hdb, "'beryllium', '', 'TARGETDIR', 0, '', 'beryllium_file'" );
2141     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2142
2143     r = add_component_entry( hdb, "'boron', '', 'TARGETDIR', 0, '', 'boron_file'" );
2144     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2145
2146     r = add_component_entry( hdb, "'carbon', '', 'TARGETDIR', 0, '', 'carbon_file'" );
2147     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2148
2149     r = create_feature_components_table( hdb );
2150     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2151
2152     r = add_feature_components_entry( hdb, "'one', 'hydrogen'" );
2153     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2154
2155     r = add_feature_components_entry( hdb, "'one', 'helium'" );
2156     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2157
2158     r = add_feature_components_entry( hdb, "'one', 'lithium'" );
2159     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2160
2161     r = add_feature_components_entry( hdb, "'one', 'beryllium'" );
2162     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2163
2164     r = add_feature_components_entry( hdb, "'one', 'boron'" );
2165     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2166
2167     r = add_feature_components_entry( hdb, "'one', 'carbon'" );
2168     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2169
2170     r = create_file_table( hdb );
2171     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2172
2173     r = add_file_entry( hdb, "'hydrogen_file', 'hydrogen', 'hydrogen.txt', 0, '', '1033', 8192, 1" );
2174     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2175
2176     r = add_file_entry( hdb, "'helium_file', 'helium', 'helium.txt', 0, '', '1033', 8192, 1" );
2177     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2178
2179     r = add_file_entry( hdb, "'lithium_file', 'lithium', 'lithium.txt', 0, '', '1033', 8192, 1" );
2180     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2181
2182     r = add_file_entry( hdb, "'beryllium_file', 'beryllium', 'beryllium.txt', 0, '', '1033', 16384, 1" );
2183     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2184
2185     r = add_file_entry( hdb, "'boron_file', 'boron', 'boron.txt', 0, '', '1033', 16384, 1" );
2186     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2187
2188     r = add_file_entry( hdb, "'carbon_file', 'carbon', 'carbon.txt', 0, '', '1033', 16384, 1" );
2189     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2190
2191     r = create_remove_file_table( hdb );
2192     ok( r == ERROR_SUCCESS, "cannot create Remove File table: %d\n", r);
2193
2194     hpkg = package_from_db( hdb );
2195     ok( hpkg, "failed to create package\n");
2196
2197     create_test_file( "hydrogen.txt" );
2198     create_test_file( "helium.txt" );
2199     create_test_file( "lithium.txt" );
2200     create_test_file( "beryllium.txt" );
2201     create_test_file( "boron.txt" );
2202     create_test_file( "carbon.txt" );
2203
2204     r = MsiSetProperty( hpkg, "TARGETDIR", CURR_DIR );
2205     ok( r == ERROR_SUCCESS, "set property failed\n");
2206
2207     r = MsiDoAction( hpkg, "CostInitialize");
2208     ok( r == ERROR_SUCCESS, "cost init failed\n");
2209
2210     r = MsiDoAction( hpkg, "FileCost");
2211     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2212
2213     r = MsiDoAction( hpkg, "CostFinalize");
2214     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2215
2216     r = MsiDoAction( hpkg, "InstallValidate");
2217     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2218
2219     r = MsiSetComponentState( hpkg, "hydrogen", INSTALLSTATE_ABSENT );
2220     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2221
2222     r = MsiSetComponentState( hpkg, "helium", INSTALLSTATE_LOCAL );
2223     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2224
2225     r = MsiSetComponentState( hpkg, "lithium", INSTALLSTATE_SOURCE );
2226     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2227
2228     r = MsiSetComponentState( hpkg, "beryllium", INSTALLSTATE_ABSENT );
2229     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2230
2231     r = MsiSetComponentState( hpkg, "boron", INSTALLSTATE_LOCAL );
2232     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2233
2234     r = MsiSetComponentState( hpkg, "carbon", INSTALLSTATE_SOURCE );
2235     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2236
2237     r = MsiDoAction( hpkg, "RemoveFiles");
2238     ok( r == ERROR_SUCCESS, "remove files failed\n");
2239
2240     ok(DeleteFileA("hydrogen.txt"), "Expected hydrogen.txt to exist\n");
2241     ok(DeleteFileA("lithium.txt"), "Expected lithium.txt to exist\n");    
2242     ok(DeleteFileA("beryllium.txt"), "Expected beryllium.txt to exist\n");
2243     ok(DeleteFileA("carbon.txt"), "Expected carbon.txt to exist\n");
2244     ok(DeleteFileA("helium.txt"), "Expected helium.txt to exist\n");
2245     ok(DeleteFileA("boron.txt"), "Expected boron.txt to exist\n");
2246
2247     MsiCloseHandle( hpkg );
2248     DeleteFileA(msifile);
2249 }
2250
2251 static void test_appsearch(void)
2252 {
2253     MSIHANDLE hpkg;
2254     UINT r;
2255     MSIHANDLE hdb;
2256     CHAR prop[MAX_PATH];
2257     DWORD size = MAX_PATH;
2258
2259     hdb = create_package_db();
2260     ok ( hdb, "failed to create package database\n" );
2261
2262     r = create_appsearch_table( hdb );
2263     ok( r == ERROR_SUCCESS, "cannot create AppSearch table: %d\n", r );
2264
2265     r = add_appsearch_entry( hdb, "'WEBBROWSERPROG', 'NewSignature1'" );
2266     ok( r == ERROR_SUCCESS, "cannot add entry: %d\n", r );
2267
2268     r = create_reglocator_table( hdb );
2269     ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
2270
2271     r = add_reglocator_entry( hdb, "'NewSignature1', 0, 'htmlfile\\shell\\open\\command', '', 1" );
2272     ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
2273
2274     r = create_signature_table( hdb );
2275     ok( r == ERROR_SUCCESS, "cannot create Signature table: %d\n", r );
2276
2277     r = add_signature_entry( hdb, "'NewSignature1', 'FileName', '', '', '', '', '', '', ''" );
2278     ok( r == ERROR_SUCCESS, "cannot create Signature table: %d\n", r );
2279
2280     hpkg = package_from_db( hdb );
2281     ok( hpkg, "failed to create package\n");
2282
2283     r = MsiDoAction( hpkg, "AppSearch" );
2284     ok( r == ERROR_SUCCESS, "AppSearch failed: %d\n", r);
2285
2286     r = MsiGetPropertyA( hpkg, "WEBBROWSERPROG", prop, &size );
2287     ok( r == ERROR_SUCCESS, "get property failed: %d\n", r);
2288     ok( lstrlenA(prop) != 0, "Expected non-zero length\n");
2289
2290     MsiCloseHandle( hpkg );
2291     DeleteFileA(msifile);
2292 }
2293
2294 static void test_featureparents(void)
2295 {
2296     MSIHANDLE hpkg;
2297     UINT r;
2298     MSIHANDLE hdb;
2299     INSTALLSTATE state, action;
2300
2301     hdb = create_package_db();
2302     ok ( hdb, "failed to create package database\n" );
2303
2304     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2305     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2306
2307     r = create_feature_table( hdb );
2308     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
2309
2310     r = create_component_table( hdb );
2311     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
2312
2313     r = create_feature_components_table( hdb );
2314     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2315
2316     r = create_file_table( hdb );
2317     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2318
2319     /* msidbFeatureAttributesFavorLocal */
2320     r = add_feature_entry( hdb, "'zodiac', '', '', '', 2, 1, '', 0" );
2321     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2322
2323     /* msidbFeatureAttributesFavorSource */
2324     r = add_feature_entry( hdb, "'perseus', '', '', '', 2, 1, '', 1" );
2325     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2326
2327     /* msidbFeatureAttributesFavorLocal */
2328     r = add_feature_entry( hdb, "'orion', '', '', '', 2, 1, '', 0" );
2329     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2330
2331     /* disabled because of install level */
2332     r = add_feature_entry( hdb, "'waters', '', '', '', 15, 101, '', 9" );
2333     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2334
2335     /* child feature of disabled feature */
2336     r = add_feature_entry( hdb, "'bayer', 'waters', '', '', 14, 1, '', 9" );
2337     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2338
2339     /* component of disabled feature (install level) */
2340     r = add_component_entry( hdb, "'delphinus', '', 'TARGETDIR', 0, '', 'delphinus_file'" );
2341     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2342
2343     /* component of disabled child feature (install level) */
2344     r = add_component_entry( hdb, "'hydrus', '', 'TARGETDIR', 0, '', 'hydrus_file'" );
2345     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2346
2347     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
2348     r = add_component_entry( hdb, "'leo', '', 'TARGETDIR', 0, '', 'leo_file'" );
2349     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2350
2351     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
2352     r = add_component_entry( hdb, "'virgo', '', 'TARGETDIR', 1, '', 'virgo_file'" );
2353     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2354
2355     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
2356     r = add_component_entry( hdb, "'libra', '', 'TARGETDIR', 2, '', 'libra_file'" );
2357     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2358
2359     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
2360     r = add_component_entry( hdb, "'cassiopeia', '', 'TARGETDIR', 0, '', 'cassiopeia_file'" );
2361     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2362
2363     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
2364     r = add_component_entry( hdb, "'cepheus', '', 'TARGETDIR', 1, '', 'cepheus_file'" );
2365     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2366
2367     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
2368     r = add_component_entry( hdb, "'andromeda', '', 'TARGETDIR', 2, '', 'andromeda_file'" );
2369     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2370
2371     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
2372     r = add_component_entry( hdb, "'canis', '', 'TARGETDIR', 0, '', 'canis_file'" );
2373     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2374
2375     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
2376     r = add_component_entry( hdb, "'monoceros', '', 'TARGETDIR', 1, '', 'monoceros_file'" );
2377     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2378
2379     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
2380     r = add_component_entry( hdb, "'lepus', '', 'TARGETDIR', 2, '', 'lepus_file'" );
2381
2382     r = add_feature_components_entry( hdb, "'zodiac', 'leo'" );
2383     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2384
2385     r = add_feature_components_entry( hdb, "'zodiac', 'virgo'" );
2386     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2387
2388     r = add_feature_components_entry( hdb, "'zodiac', 'libra'" );
2389     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2390
2391     r = add_feature_components_entry( hdb, "'perseus', 'cassiopeia'" );
2392     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2393
2394     r = add_feature_components_entry( hdb, "'perseus', 'cepheus'" );
2395     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2396
2397     r = add_feature_components_entry( hdb, "'perseus', 'andromeda'" );
2398     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2399
2400     r = add_feature_components_entry( hdb, "'orion', 'leo'" );
2401     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2402
2403     r = add_feature_components_entry( hdb, "'orion', 'virgo'" );
2404     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2405
2406     r = add_feature_components_entry( hdb, "'orion', 'libra'" );
2407     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2408
2409     r = add_feature_components_entry( hdb, "'orion', 'cassiopeia'" );
2410     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2411
2412     r = add_feature_components_entry( hdb, "'orion', 'cepheus'" );
2413     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2414
2415     r = add_feature_components_entry( hdb, "'orion', 'andromeda'" );
2416     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2417
2418     r = add_feature_components_entry( hdb, "'orion', 'canis'" );
2419     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2420
2421     r = add_feature_components_entry( hdb, "'orion', 'monoceros'" );
2422     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2423
2424     r = add_feature_components_entry( hdb, "'orion', 'lepus'" );
2425     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2426
2427     r = add_feature_components_entry( hdb, "'waters', 'delphinus'" );
2428     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2429
2430     r = add_feature_components_entry( hdb, "'bayer', 'hydrus'" );
2431     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2432
2433     r = add_file_entry( hdb, "'leo_file', 'leo', 'leo.txt', 100, '', '1033', 8192, 1" );
2434     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2435
2436     r = add_file_entry( hdb, "'virgo_file', 'virgo', 'virgo.txt', 0, '', '1033', 8192, 1" );
2437     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2438
2439     r = add_file_entry( hdb, "'libra_file', 'libra', 'libra.txt', 0, '', '1033', 8192, 1" );
2440     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2441
2442     r = add_file_entry( hdb, "'cassiopeia_file', 'cassiopeia', 'cassiopeia.txt', 0, '', '1033', 8192, 1" );
2443     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2444
2445     r = add_file_entry( hdb, "'cepheus_file', 'cepheus', 'cepheus.txt', 0, '', '1033', 8192, 1" );
2446     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2447
2448     r = add_file_entry( hdb, "'andromeda_file', 'andromeda', 'andromeda.txt', 0, '', '1033', 8192, 1" );
2449     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2450
2451     r = add_file_entry( hdb, "'canis_file', 'canis', 'canis.txt', 0, '', '1033', 8192, 1" );
2452     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2453
2454     r = add_file_entry( hdb, "'monoceros_file', 'monoceros', 'monoceros.txt', 0, '', '1033', 8192, 1" );
2455     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2456
2457     r = add_file_entry( hdb, "'lepus_file', 'lepus', 'lepus.txt', 0, '', '1033', 8192, 1" );
2458     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2459
2460     r = add_file_entry( hdb, "'delphinus_file', 'delphinus', 'delphinus.txt', 0, '', '1033', 8192, 1" );
2461     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2462
2463     r = add_file_entry( hdb, "'hydrus_file', 'hydrus', 'hydrus.txt', 0, '', '1033', 8192, 1" );
2464     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2465
2466     hpkg = package_from_db( hdb );
2467     ok( hpkg, "failed to create package\n");
2468
2469     r = MsiDoAction( hpkg, "CostInitialize");
2470     ok( r == ERROR_SUCCESS, "cost init failed\n");
2471
2472     r = MsiDoAction( hpkg, "FileCost");
2473     ok( r == ERROR_SUCCESS, "file cost failed\n");
2474
2475     r = MsiDoAction( hpkg, "CostFinalize");
2476     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2477
2478     state = 0xdeadbee;
2479     action = 0xdeadbee;
2480     r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
2481     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2482     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2483     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2484
2485     state = 0xdeadbee;
2486     action = 0xdeadbee;
2487     r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
2488     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2489     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2490     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2491
2492     state = 0xdeadbee;
2493     action = 0xdeadbee;
2494     r = MsiGetFeatureState(hpkg, "orion", &state, &action);
2495     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2496     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2497     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2498
2499     state = 0xdeadbee;
2500     action = 0xdeadbee;
2501     r = MsiGetFeatureState(hpkg, "waters", &state, &action);
2502     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2503     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2504     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2505
2506     state = 0xdeadbee;
2507     action = 0xdeadbee;
2508     r = MsiGetFeatureState(hpkg, "bayer", &state, &action);
2509     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2510     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2511     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2512
2513     state = 0xdeadbee;
2514     action = 0xdeadbee;
2515     r = MsiGetComponentState(hpkg, "leo", &state, &action);
2516     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2517     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2518     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2519
2520     state = 0xdeadbee;
2521     action = 0xdeadbee;
2522     r = MsiGetComponentState(hpkg, "virgo", &state, &action);
2523     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2524     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2525     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2526
2527     state = 0xdeadbee;
2528     action = 0xdeadbee;
2529     r = MsiGetComponentState(hpkg, "libra", &state, &action);
2530     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2531     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2532     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2533
2534     state = 0xdeadbee;
2535     action = 0xdeadbee;
2536     r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
2537     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2538     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2539     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2540
2541     state = 0xdeadbee;
2542     action = 0xdeadbee;
2543     r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
2544     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2545     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2546     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2547
2548     state = 0xdeadbee;
2549     action = 0xdeadbee;
2550     r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
2551     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2552     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2553     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2554
2555     state = 0xdeadbee;
2556     action = 0xdeadbee;
2557     r = MsiGetComponentState(hpkg, "canis", &state, &action);
2558     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2559     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2560     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2561
2562     state = 0xdeadbee;
2563     action = 0xdeadbee;
2564     r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
2565     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2566     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2567     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2568
2569     state = 0xdeadbee;
2570     action = 0xdeadbee;
2571     r = MsiGetComponentState(hpkg, "lepus", &state, &action);
2572     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2573     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2574     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2575
2576     state = 0xdeadbee;
2577     action = 0xdeadbee;
2578     r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
2579     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2580     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2581     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2582
2583     state = 0xdeadbee;
2584     action = 0xdeadbee;
2585     r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
2586     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2587     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2588     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2589
2590     r = MsiSetFeatureState(hpkg, "orion", INSTALLSTATE_ABSENT);
2591     ok( r == ERROR_SUCCESS, "failed to set feature state: %d\n", r);
2592
2593     state = 0xdeadbee;
2594     action = 0xdeadbee;
2595     r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
2596     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2597     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2598     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2599
2600     state = 0xdeadbee;
2601     action = 0xdeadbee;
2602     r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
2603     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2604     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2605     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2606
2607     state = 0xdeadbee;
2608     action = 0xdeadbee;
2609     r = MsiGetFeatureState(hpkg, "orion", &state, &action);
2610     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2611     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2612     ok( action == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", action);
2613
2614     state = 0xdeadbee;
2615     action = 0xdeadbee;
2616     r = MsiGetComponentState(hpkg, "leo", &state, &action);
2617     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2618     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2619     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2620
2621     state = 0xdeadbee;
2622     action = 0xdeadbee;
2623     r = MsiGetComponentState(hpkg, "virgo", &state, &action);
2624     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2625     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2626     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2627
2628     state = 0xdeadbee;
2629     action = 0xdeadbee;
2630     r = MsiGetComponentState(hpkg, "libra", &state, &action);
2631     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2632     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2633     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2634
2635     state = 0xdeadbee;
2636     action = 0xdeadbee;
2637     r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
2638     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2639     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2640     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2641
2642     state = 0xdeadbee;
2643     action = 0xdeadbee;
2644     r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
2645     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2646     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2647     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2648
2649     state = 0xdeadbee;
2650     action = 0xdeadbee;
2651     r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
2652     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2653     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2654     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2655
2656     state = 0xdeadbee;
2657     action = 0xdeadbee;
2658     r = MsiGetComponentState(hpkg, "canis", &state, &action);
2659     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2660     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2661     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2662
2663     state = 0xdeadbee;
2664     action = 0xdeadbee;
2665     r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
2666     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2667     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2668     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2669
2670     state = 0xdeadbee;
2671     action = 0xdeadbee;
2672     r = MsiGetComponentState(hpkg, "lepus", &state, &action);
2673     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2674     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2675     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2676
2677     state = 0xdeadbee;
2678     action = 0xdeadbee;
2679     r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
2680     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2681     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2682     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2683
2684     state = 0xdeadbee;
2685     action = 0xdeadbee;
2686     r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
2687     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2688     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2689     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2690     
2691     MsiCloseHandle(hpkg);
2692 }
2693
2694 static void test_installprops(void)
2695 {
2696     MSIHANDLE hpkg, hdb;
2697     CHAR path[MAX_PATH];
2698     CHAR buf[MAX_PATH];
2699     DWORD size;
2700     UINT r;
2701
2702     GetCurrentDirectory(MAX_PATH, path);
2703     lstrcat(path, "\\");
2704     lstrcat(path, msifile);
2705
2706     hdb = create_package_db();
2707     ok( hdb, "failed to create database\n");
2708
2709     hpkg = package_from_db(hdb);
2710     ok( hpkg, "failed to create package\n");
2711
2712     MsiCloseHandle(hdb);
2713
2714     size = MAX_PATH;
2715     r = MsiGetProperty(hpkg, "DATABASE", buf, &size);
2716     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2717     ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
2718 }
2719
2720 START_TEST(package)
2721 {
2722     test_createpackage();
2723     test_getsourcepath_bad();
2724     test_getsourcepath();
2725     test_doaction();
2726     test_gettargetpath_bad();
2727     test_settargetpath();
2728     test_props();
2729     test_condition();
2730     test_msipackage();
2731     test_formatrecord2();
2732     test_states();
2733     test_getproperty();
2734     test_removefiles();
2735     test_appsearch();
2736     test_featureparents();
2737     test_installprops();
2738 }