msi: Simplify MsiQueryComponentState, with more tests.
[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 do_query(MSIHANDLE hdb, const char *query, MSIHANDLE *phrec)
34 {
35     MSIHANDLE hview = 0;
36     UINT r, ret;
37
38     /* open a select query */
39     r = MsiDatabaseOpenView(hdb, query, &hview);
40     if (r != ERROR_SUCCESS)
41         return r;
42     r = MsiViewExecute(hview, 0);
43     if (r != ERROR_SUCCESS)
44         return r;
45     ret = MsiViewFetch(hview, phrec);
46     r = MsiViewClose(hview);
47     if (r != ERROR_SUCCESS)
48         return r;
49     r = MsiCloseHandle(hview);
50     if (r != ERROR_SUCCESS)
51         return r;
52     return ret;
53 }
54
55 static UINT run_query( MSIHANDLE hdb, const char *query )
56 {
57     MSIHANDLE hview = 0;
58     UINT r;
59
60     r = MsiDatabaseOpenView(hdb, query, &hview);
61     if( r != ERROR_SUCCESS )
62         return r;
63
64     r = MsiViewExecute(hview, 0);
65     if( r == ERROR_SUCCESS )
66         r = MsiViewClose(hview);
67     MsiCloseHandle(hview);
68     return r;
69 }
70
71 static UINT create_component_table( MSIHANDLE hdb )
72 {
73     return run_query( hdb,
74             "CREATE TABLE `Component` ( "
75             "`Component` CHAR(72) NOT NULL, "
76             "`ComponentId` CHAR(38), "
77             "`Directory_` CHAR(72) NOT NULL, "
78             "`Attributes` SHORT NOT NULL, "
79             "`Condition` CHAR(255), "
80             "`KeyPath` CHAR(72) "
81             "PRIMARY KEY `Component`)" );
82 }
83
84 static UINT create_feature_table( MSIHANDLE hdb )
85 {
86     return run_query( hdb,
87             "CREATE TABLE `Feature` ( "
88             "`Feature` CHAR(38) NOT NULL, "
89             "`Feature_Parent` CHAR(38), "
90             "`Title` CHAR(64), "
91             "`Description` CHAR(255), "
92             "`Display` SHORT NOT NULL, "
93             "`Level` SHORT NOT NULL, "
94             "`Directory_` CHAR(72), "
95             "`Attributes` SHORT NOT NULL "
96             "PRIMARY KEY `Feature`)" );
97 }
98
99 static UINT create_feature_components_table( MSIHANDLE hdb )
100 {
101     return run_query( hdb,
102             "CREATE TABLE `FeatureComponents` ( "
103             "`Feature_` CHAR(38) NOT NULL, "
104             "`Component_` CHAR(72) NOT NULL "
105             "PRIMARY KEY `Feature_`, `Component_` )" );
106 }
107
108 static UINT create_file_table( MSIHANDLE hdb )
109 {
110     return run_query( hdb,
111             "CREATE TABLE `File` ("
112             "`File` CHAR(72) NOT NULL, "
113             "`Component_` CHAR(72) NOT NULL, "
114             "`FileName` CHAR(255) NOT NULL, "
115             "`FileSize` LONG NOT NULL, "
116             "`Version` CHAR(72), "
117             "`Language` CHAR(20), "
118             "`Attributes` SHORT, "
119             "`Sequence` SHORT NOT NULL "
120             "PRIMARY KEY `File`)" );
121 }
122
123 static UINT create_remove_file_table( MSIHANDLE hdb )
124 {
125     return run_query( hdb,
126             "CREATE TABLE `RemoveFile` ("
127             "`FileKey` CHAR(72) NOT NULL, "
128             "`Component_` CHAR(72) NOT NULL, "
129             "`FileName` CHAR(255) LOCALIZABLE, "
130             "`DirProperty` CHAR(72) NOT NULL, "
131             "`InstallMode` SHORT NOT NULL "
132             "PRIMARY KEY `FileKey`)" );
133 }
134
135 static UINT create_appsearch_table( MSIHANDLE hdb )
136 {
137     return run_query( hdb,
138             "CREATE TABLE `AppSearch` ("
139             "`Property` CHAR(72) NOT NULL, "
140             "`Signature_` CHAR(72) NOT NULL "
141             "PRIMARY KEY `Property`, `Signature_`)" );
142 }
143
144 static UINT create_reglocator_table( MSIHANDLE hdb )
145 {
146     return run_query( hdb,
147             "CREATE TABLE `RegLocator` ("
148             "`Signature_` CHAR(72) NOT NULL, "
149             "`Root` SHORT NOT NULL, "
150             "`Key` CHAR(255) NOT NULL, "
151             "`Name` CHAR(255), "
152             "`Type` SHORT "
153             "PRIMARY KEY `Signature_`)" );
154 }
155
156 static UINT create_signature_table( MSIHANDLE hdb )
157 {
158     return run_query( hdb,
159             "CREATE TABLE `Signature` ("
160             "`Signature` CHAR(72) NOT NULL, "
161             "`FileName` CHAR(255) NOT NULL, "
162             "`MinVersion` CHAR(20), "
163             "`MaxVersion` CHAR(20), "
164             "`MinSize` LONG, "
165             "`MaxSize` LONG, "
166             "`MinDate` LONG, "
167             "`MaxDate` LONG, "
168             "`Languages` CHAR(255) "
169             "PRIMARY KEY `Signature`)" );
170 }
171
172 static UINT create_launchcondition_table( MSIHANDLE hdb )
173 {
174     return run_query( hdb,
175             "CREATE TABLE `LaunchCondition` ("
176             "`Condition` CHAR(255) NOT NULL, "
177             "`Description` CHAR(255) NOT NULL "
178             "PRIMARY KEY `Condition`)" );
179 }
180
181 static UINT create_property_table( MSIHANDLE hdb )
182 {
183     return run_query( hdb,
184             "CREATE TABLE `Property` ("
185             "`Property` CHAR(72) NOT NULL, "
186             "`Value` CHAR(0) "
187             "PRIMARY KEY `Property`)" );
188 }
189
190 static UINT add_component_entry( MSIHANDLE hdb, const char *values )
191 {
192     char insert[] = "INSERT INTO `Component`  "
193             "(`Component`, `ComponentId`, `Directory_`, `Attributes`, `Condition`, `KeyPath`) "
194             "VALUES( %s )";
195     char *query;
196     UINT sz, r;
197
198     sz = strlen(values) + sizeof insert;
199     query = HeapAlloc(GetProcessHeap(),0,sz);
200     sprintf(query,insert,values);
201     r = run_query( hdb, query );
202     HeapFree(GetProcessHeap(), 0, query);
203     return r;
204 }
205
206 static UINT add_feature_entry( MSIHANDLE hdb, const char *values )
207 {
208     char insert[] = "INSERT INTO `Feature` (`Feature`, `Feature_Parent`, "
209                     "`Title`, `Description`, `Display`, `Level`, `Directory_`, `Attributes`) VALUES( %s )";
210     char *query;
211     UINT sz, r;
212
213     sz = strlen(values) + sizeof insert;
214     query = HeapAlloc(GetProcessHeap(),0,sz);
215     sprintf(query,insert,values);
216     r = run_query( hdb, query );
217     HeapFree(GetProcessHeap(), 0, query);
218     return r;
219 }
220
221 static UINT add_feature_components_entry( MSIHANDLE hdb, const char *values )
222 {
223     char insert[] = "INSERT INTO `FeatureComponents` "
224             "(`Feature_`, `Component_`) "
225             "VALUES( %s )";
226     char *query;
227     UINT sz, r;
228
229     sz = strlen(values) + sizeof insert;
230     query = HeapAlloc(GetProcessHeap(),0,sz);
231     sprintf(query,insert,values);
232     r = run_query( hdb, query );
233     HeapFree(GetProcessHeap(), 0, query);
234     return r;
235 }
236
237 static UINT add_file_entry( MSIHANDLE hdb, const char *values )
238 {
239     char insert[] = "INSERT INTO `File` "
240             "(`File`, `Component_`, `FileName`, `FileSize`, `Version`, `Language`, `Attributes`, `Sequence`) "
241             "VALUES( %s )";
242     char *query;
243     UINT sz, r;
244
245     sz = strlen(values) + sizeof insert;
246     query = HeapAlloc(GetProcessHeap(),0,sz);
247     sprintf(query,insert,values);
248     r = run_query( hdb, query );
249     HeapFree(GetProcessHeap(), 0, query);
250     return r;
251 }
252
253 static UINT add_appsearch_entry( MSIHANDLE hdb, const char *values )
254 {
255     char insert[] = "INSERT INTO `AppSearch` "
256             "(`Property`, `Signature_`) "
257             "VALUES( %s )";
258     char *query;
259     UINT sz, r;
260
261     sz = strlen(values) + sizeof insert;
262     query = HeapAlloc(GetProcessHeap(),0,sz);
263     sprintf(query,insert,values);
264     r = run_query( hdb, query );
265     HeapFree(GetProcessHeap(), 0, query);
266     return r;
267 }
268
269 static UINT add_reglocator_entry( MSIHANDLE hdb, const char *values )
270 {
271     char insert[] = "INSERT INTO `RegLocator` "
272             "(`Signature_`, `Root`, `Key`, `Name`, `Type`) "
273             "VALUES( %s )";
274     char *query;
275     UINT sz, r;
276
277     sz = strlen(values) + sizeof insert;
278     query = HeapAlloc(GetProcessHeap(),0,sz);
279     sprintf(query,insert,values);
280     r = run_query( hdb, query );
281     HeapFree(GetProcessHeap(), 0, query);
282     return r;
283 }
284
285 static UINT add_signature_entry( MSIHANDLE hdb, const char *values )
286 {
287     char insert[] = "INSERT INTO `Signature` "
288             "(`Signature`, `FileName`, `MinVersion`, `MaxVersion`,"
289             " `MinSize`, `MaxSize`, `MinDate`, `MaxDate`, `Languages`) "
290             "VALUES( %s )";
291     char *query;
292     UINT sz, r;
293
294     sz = strlen(values) + sizeof insert;
295     query = HeapAlloc(GetProcessHeap(),0,sz);
296     sprintf(query,insert,values);
297     r = run_query( hdb, query );
298     HeapFree(GetProcessHeap(), 0, query);
299     return r;
300 }
301
302 static UINT add_launchcondition_entry( MSIHANDLE hdb, const char *values )
303 {
304     char insert[] = "INSERT INTO `LaunchCondition` "
305             "(`Condition`, `Description`) "
306             "VALUES( %s )";
307     char *query;
308     UINT sz, r;
309
310     sz = strlen(values) + sizeof insert;
311     query = HeapAlloc(GetProcessHeap(),0,sz);
312     sprintf(query,insert,values);
313     r = run_query( hdb, query );
314     HeapFree(GetProcessHeap(), 0, query);
315     return r;
316 }
317
318 static UINT add_property_entry( MSIHANDLE hdb, const char *values )
319 {
320     char insert[] = "INSERT INTO `Property` "
321             "(`Property`, `Value`) "
322             "VALUES( %s )";
323     char *query;
324     UINT sz, r;
325
326     sz = strlen(values) + sizeof insert;
327     query = HeapAlloc(GetProcessHeap(),0,sz);
328     sprintf(query,insert,values);
329     r = run_query( hdb, query );
330     HeapFree(GetProcessHeap(), 0, query);
331     return r;
332 }
333
334 static UINT set_summary_info(MSIHANDLE hdb)
335 {
336     UINT res;
337     MSIHANDLE suminfo;
338
339     /* build summmary info */
340     res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
341     ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );
342
343     res = MsiSummaryInfoSetProperty(suminfo,2, VT_LPSTR, 0,NULL,
344                         "Installation Database");
345     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
346
347     res = MsiSummaryInfoSetProperty(suminfo,3, VT_LPSTR, 0,NULL,
348                         "Installation Database");
349     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
350
351     res = MsiSummaryInfoSetProperty(suminfo,4, VT_LPSTR, 0,NULL,
352                         "Wine Hackers");
353     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
354
355     res = MsiSummaryInfoSetProperty(suminfo,7, VT_LPSTR, 0,NULL,
356                     ";1033");
357     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
358
359     res = MsiSummaryInfoSetProperty(suminfo,9, VT_LPSTR, 0,NULL,
360                     "{913B8D18-FBB6-4CAC-A239-C74C11E3FA74}");
361     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
362
363     res = MsiSummaryInfoSetProperty(suminfo, 14, VT_I4, 100, NULL, NULL);
364     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
365
366     res = MsiSummaryInfoSetProperty(suminfo, 15, VT_I4, 0, NULL, NULL);
367     ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
368
369     res = MsiSummaryInfoPersist(suminfo);
370     ok( res == ERROR_SUCCESS , "Failed to make summary info persist\n" );
371
372     res = MsiCloseHandle( suminfo);
373     ok( res == ERROR_SUCCESS , "Failed to close suminfo\n" );
374
375     return res;
376 }
377
378
379 static MSIHANDLE create_package_db(void)
380 {
381     MSIHANDLE hdb = 0;
382     UINT res;
383
384     DeleteFile(msifile);
385
386     /* create an empty database */
387     res = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb );
388     ok( res == ERROR_SUCCESS , "Failed to create database\n" );
389     if( res != ERROR_SUCCESS )
390         return hdb;
391
392     res = MsiDatabaseCommit( hdb );
393     ok( res == ERROR_SUCCESS , "Failed to commit database\n" );
394
395     res = set_summary_info(hdb);
396
397     res = run_query( hdb,
398             "CREATE TABLE `Directory` ( "
399             "`Directory` CHAR(255) NOT NULL, "
400             "`Directory_Parent` CHAR(255), "
401             "`DefaultDir` CHAR(255) NOT NULL "
402             "PRIMARY KEY `Directory`)" );
403     ok( res == ERROR_SUCCESS , "Failed to create directory table\n" );
404
405     return hdb;
406 }
407
408 static MSIHANDLE package_from_db(MSIHANDLE hdb)
409 {
410     UINT res;
411     CHAR szPackage[10];
412     MSIHANDLE hPackage;
413
414     sprintf(szPackage,"#%li",hdb);
415     res = MsiOpenPackage(szPackage,&hPackage);
416     if (res != ERROR_SUCCESS)
417         return 0;
418
419     res = MsiCloseHandle(hdb);
420     if (res != ERROR_SUCCESS)
421         return 0;
422
423     return hPackage;
424 }
425
426 static void create_test_file(const CHAR *name)
427 {
428     HANDLE file;
429     DWORD written;
430
431     file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
432     ok(file != INVALID_HANDLE_VALUE, "Failure to open file %s\n", name);
433     WriteFile(file, name, strlen(name), &written, NULL);
434     WriteFile(file, "\n", strlen("\n"), &written, NULL);
435     CloseHandle(file);
436 }
437
438 static void test_createpackage(void)
439 {
440     MSIHANDLE hPackage = 0;
441     UINT res;
442
443     hPackage = package_from_db(create_package_db());
444     ok( hPackage != 0, " Failed to create package\n");
445
446     res = MsiCloseHandle( hPackage);
447     ok( res == ERROR_SUCCESS , "Failed to close package\n" );
448     DeleteFile(msifile);
449 }
450
451 static void test_getsourcepath_bad( void )
452 {
453     static const char str[] = { 0 };
454     char buffer[0x80];
455     DWORD sz;
456     UINT r;
457
458     r = MsiGetSourcePath( -1, NULL, NULL, NULL );
459     ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
460
461     sz = 0;
462     r = MsiGetSourcePath( -1, NULL, buffer, &sz );
463     ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
464
465     sz = 0;
466     r = MsiGetSourcePath( -1, str, NULL, &sz );
467     ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
468
469     sz = 0;
470     r = MsiGetSourcePath( -1, str, NULL, NULL );
471     ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
472
473     sz = 0;
474     r = MsiGetSourcePath( -1, str, buffer, &sz );
475     ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
476 }
477
478 static UINT add_directory_entry( MSIHANDLE hdb, const char *values )
479 {
480     char insert[] = "INSERT INTO `Directory` (`Directory`,`Directory_Parent`,`DefaultDir`) VALUES( %s )";
481     char *query;
482     UINT sz, r;
483
484     sz = strlen(values) + sizeof insert;
485     query = HeapAlloc(GetProcessHeap(),0,sz);
486     sprintf(query,insert,values);
487     r = run_query( hdb, query );
488     HeapFree(GetProcessHeap(), 0, query);
489     return r;
490 }
491
492 static void test_getsourcepath( void )
493 {
494     static const char str[] = { 0 };
495     char buffer[0x80];
496     DWORD sz;
497     UINT r;
498     MSIHANDLE hpkg, hdb;
499
500     hpkg = package_from_db(create_package_db());
501     ok( hpkg, "failed to create package\n");
502
503     sz = 0;
504     buffer[0] = 'x';
505     r = MsiGetSourcePath( hpkg, str, buffer, &sz );
506     ok( r == ERROR_DIRECTORY, "return value wrong\n");
507     ok( buffer[0] == 'x', "buffer modified\n");
508
509     sz = 1;
510     buffer[0] = 'x';
511     r = MsiGetSourcePath( hpkg, str, buffer, &sz );
512     ok( r == ERROR_DIRECTORY, "return value wrong\n");
513     ok( buffer[0] == 'x', "buffer modified\n");
514
515     MsiCloseHandle( hpkg );
516
517
518     /* another test but try create a directory this time */
519     hdb = create_package_db();
520     ok( hdb, "failed to create database\n");
521
522     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
523     ok( r == S_OK, "failed\n");
524
525     hpkg = package_from_db(hdb);
526     ok( hpkg, "failed to create package\n");
527
528     sz = sizeof buffer -1;
529     strcpy(buffer,"x bad");
530     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
531     ok( r == ERROR_DIRECTORY, "return value wrong\n");
532
533     r = MsiDoAction( hpkg, "CostInitialize");
534     ok( r == ERROR_SUCCESS, "cost init failed\n");
535     r = MsiDoAction( hpkg, "CostFinalize");
536     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
537
538     sz = sizeof buffer -1;
539     buffer[0] = 'x';
540     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
541     ok( r == ERROR_SUCCESS, "return value wrong\n");
542     ok( sz == strlen(buffer), "returned length wrong\n");
543
544     sz = 0;
545     strcpy(buffer,"x bad");
546     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
547     ok( r == ERROR_MORE_DATA, "return value wrong\n");
548     ok( buffer[0] == 'x', "buffer modified\n");
549
550     r = MsiGetSourcePath( hpkg, "TARGETDIR", NULL, NULL );
551     ok( r == ERROR_SUCCESS, "return value wrong\n");
552
553     r = MsiGetSourcePath( hpkg, "TARGETDIR ", NULL, NULL );
554     ok( r == ERROR_DIRECTORY, "return value wrong\n");
555
556     r = MsiGetSourcePath( hpkg, "targetdir", NULL, NULL );
557     ok( r == ERROR_DIRECTORY, "return value wrong\n");
558
559     r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, NULL );
560     ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
561
562     r = MsiGetSourcePath( hpkg, "TARGETDIR", NULL, &sz );
563     ok( r == ERROR_SUCCESS, "return value wrong\n");
564
565     MsiCloseHandle( hpkg );
566     DeleteFile(msifile);
567 }
568
569 static void test_doaction( void )
570 {
571     MSIHANDLE hpkg;
572     UINT r;
573
574     r = MsiDoAction( -1, NULL );
575     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
576
577     hpkg = package_from_db(create_package_db());
578     ok( hpkg, "failed to create package\n");
579
580     r = MsiDoAction(hpkg, NULL);
581     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
582
583     r = MsiDoAction(0, "boo");
584     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
585
586     r = MsiDoAction(hpkg, "boo");
587     ok( r == ERROR_FUNCTION_NOT_CALLED, "wrong return val\n");
588
589     MsiCloseHandle( hpkg );
590     DeleteFile(msifile);
591 }
592
593 static void test_gettargetpath_bad(void)
594 {
595     char buffer[0x80];
596     MSIHANDLE hpkg;
597     DWORD sz;
598     UINT r;
599
600     hpkg = package_from_db(create_package_db());
601     ok( hpkg, "failed to create package\n");
602
603     r = MsiGetTargetPath( 0, NULL, NULL, NULL );
604     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
605
606     r = MsiGetTargetPath( 0, NULL, NULL, &sz );
607     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
608
609     r = MsiGetTargetPath( 0, "boo", NULL, NULL );
610     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
611
612     r = MsiGetTargetPath( 0, "boo", NULL, NULL );
613     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
614
615     r = MsiGetTargetPath( hpkg, "boo", NULL, NULL );
616     ok( r == ERROR_DIRECTORY, "wrong return val\n");
617
618     r = MsiGetTargetPath( hpkg, "boo", buffer, NULL );
619     ok( r == ERROR_DIRECTORY, "wrong return val\n");
620
621     MsiCloseHandle( hpkg );
622     DeleteFile(msifile);
623 }
624
625 static void query_file_path(MSIHANDLE hpkg, LPCSTR file, LPSTR buff)
626 {
627     UINT r;
628     DWORD size;
629     MSIHANDLE rec;
630
631     rec = MsiCreateRecord( 1 );
632     ok(rec, "MsiCreate record failed\n");
633
634     r = MsiRecordSetString( rec, 0, file );
635     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
636
637     size = MAX_PATH;
638     r = MsiFormatRecord( hpkg, rec, buff, &size );
639     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
640
641     MsiCloseHandle( rec );
642 }
643
644 static void test_settargetpath(void)
645 {
646     char tempdir[MAX_PATH+8], buffer[MAX_PATH], file[MAX_PATH];
647     DWORD sz;
648     MSIHANDLE hpkg;
649     UINT r;
650     MSIHANDLE hdb;
651
652     hdb = create_package_db();
653     ok ( hdb, "failed to create package database\n" );
654
655     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'" );
656     ok( r == S_OK, "failed to add directory entry: %d\n" , r );
657
658     r = create_component_table( hdb );
659     ok( r == S_OK, "cannot create Component table: %d\n", r );
660
661     r = add_component_entry( hdb, "'RootComp', '{83e2694d-0864-4124-9323-6d37630912a1}', 'TARGETDIR', 8, '', 'RootFile'" );
662     ok( r == S_OK, "cannot add dummy component: %d\n", r );
663
664     r = add_component_entry( hdb, "'TestComp', '{A3FB59C8-C293-4F7E-B8C5-F0E1D8EEE4E5}', 'TestDir', 0, '', 'TestFile'" );
665     ok( r == S_OK, "cannot add test component: %d\n", r );
666
667     r = create_feature_table( hdb );
668     ok( r == S_OK, "cannot create Feature table: %d\n", r );
669
670     r = add_feature_entry( hdb, "'TestFeature', '', '', '', 0, 1, '', 0" );
671     ok( r == ERROR_SUCCESS, "cannot add TestFeature to Feature table: %d\n", r );
672
673     r = create_feature_components_table( hdb );
674     ok( r == S_OK, "cannot create FeatureComponents table: %d\n", r );
675
676     r = add_feature_components_entry( hdb, "'TestFeature', 'RootComp'" );
677     ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
678
679     r = add_feature_components_entry( hdb, "'TestFeature', 'TestComp'" );
680     ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
681
682     add_directory_entry( hdb, "'TestParent', 'TARGETDIR', 'TestParent'" );
683     add_directory_entry( hdb, "'TestDir', 'TestParent', 'TestDir'" );
684
685     r = create_file_table( hdb );
686     ok( r == S_OK, "cannot create File table: %d\n", r );
687
688     r = add_file_entry( hdb, "'RootFile', 'RootComp', 'rootfile.txt', 0, '', '1033', 8192, 1" );
689     ok( r == S_OK, "cannot add file to the File table: %d\n", r );
690
691     r = add_file_entry( hdb, "'TestFile', 'TestComp', 'testfile.txt', 0, '', '1033', 8192, 1" );
692     ok( r == S_OK, "cannot add file to the File table: %d\n", r );
693
694     hpkg = package_from_db( hdb );
695     ok( hpkg, "failed to create package\n");
696
697     r = MsiDoAction( hpkg, "CostInitialize");
698     ok( r == ERROR_SUCCESS, "cost init failed\n");
699
700     r = MsiDoAction( hpkg, "FileCost");
701     ok( r == ERROR_SUCCESS, "file cost failed\n");
702
703     r = MsiDoAction( hpkg, "CostFinalize");
704     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
705
706     r = MsiSetTargetPath( 0, NULL, NULL );
707     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
708
709     r = MsiSetTargetPath( 0, "boo", "C:\\bogusx" );
710     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
711
712     r = MsiSetTargetPath( hpkg, "boo", NULL );
713     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
714
715     r = MsiSetTargetPath( hpkg, "boo", "c:\\bogusx" );
716     ok( r == ERROR_DIRECTORY, "wrong return val\n");
717
718     sz = sizeof tempdir - 1;
719     r = MsiGetTargetPath( hpkg, "TARGETDIR", tempdir, &sz );
720     sprintf( file, "%srootfile.txt", tempdir );
721     query_file_path( hpkg, "[#RootFile]", buffer );
722     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
723     ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer );
724
725     GetTempFileName( tempdir, "_wt", 0, buffer );
726     sprintf( tempdir, "%s\\subdir", buffer );
727
728     r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
729     ok( r == ERROR_SUCCESS, "MsiSetTargetPath on file returned %d\n", r );
730
731     r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
732     ok( r == ERROR_SUCCESS, "MsiSetTargetPath on 'subdir' of file returned %d\n", r );
733
734     DeleteFile( buffer );
735
736     r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
737     ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
738
739     r = GetFileAttributes( buffer );
740     ok ( r == INVALID_FILE_ATTRIBUTES, "file/directory exists after MsiSetTargetPath. Attributes: %08X\n", r );
741
742     r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
743     ok( r == ERROR_SUCCESS, "MsiSetTargetPath on subsubdir returned %d\n", r );
744
745     sz = sizeof buffer - 1;
746     lstrcat( tempdir, "\\" );
747     r = MsiGetTargetPath( hpkg, "TARGETDIR", buffer, &sz );
748     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
749     ok( !lstrcmp(buffer, tempdir), "Expected %s, got %s\n", tempdir, buffer);
750
751     sprintf( file, "%srootfile.txt", tempdir );
752     query_file_path( hpkg, "[#RootFile]", buffer );
753     ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer);
754
755     r = MsiSetTargetPath( hpkg, "TestParent", "C:\\one\\two" );
756     ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
757
758     query_file_path( hpkg, "[#TestFile]", buffer );
759     ok( !lstrcmp(buffer, "C:\\one\\two\\TestDir\\testfile.txt"),
760         "Expected C:\\one\\two\\TestDir\\testfile.txt, got %s\n", buffer );
761
762     sz = sizeof buffer - 1;
763     r = MsiGetTargetPath( hpkg, "TestParent", buffer, &sz );
764     ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
765     ok( !lstrcmp(buffer, "C:\\one\\two\\"), "Expected C:\\one\\two\\, got %s\n", buffer);
766
767     MsiCloseHandle( hpkg );
768 }
769
770 static void test_condition(void)
771 {
772     MSICONDITION r;
773     MSIHANDLE hpkg;
774
775     hpkg = package_from_db(create_package_db());
776     ok( hpkg, "failed to create package\n");
777
778     r = MsiEvaluateCondition(0, NULL);
779     ok( r == MSICONDITION_ERROR, "wrong return val\n");
780
781     r = MsiEvaluateCondition(hpkg, NULL);
782     ok( r == MSICONDITION_NONE, "wrong return val\n");
783
784     r = MsiEvaluateCondition(hpkg, "");
785     ok( r == MSICONDITION_NONE, "wrong return val\n");
786
787     r = MsiEvaluateCondition(hpkg, "1");
788     ok( r == MSICONDITION_TRUE, "wrong return val\n");
789
790     r = MsiEvaluateCondition(hpkg, "0");
791     ok( r == MSICONDITION_FALSE, "wrong return val\n");
792
793     r = MsiEvaluateCondition(hpkg, "0 = 0");
794     ok( r == MSICONDITION_TRUE, "wrong return val\n");
795
796     r = MsiEvaluateCondition(hpkg, "0 <> 0");
797     ok( r == MSICONDITION_FALSE, "wrong return val\n");
798
799     r = MsiEvaluateCondition(hpkg, "0 = 1");
800     ok( r == MSICONDITION_FALSE, "wrong return val\n");
801
802     r = MsiEvaluateCondition(hpkg, "0 > 1");
803     ok( r == MSICONDITION_FALSE, "wrong return val\n");
804
805     r = MsiEvaluateCondition(hpkg, "0 ~> 1");
806     ok( r == MSICONDITION_FALSE, "wrong return val\n");
807
808     r = MsiEvaluateCondition(hpkg, "1 > 1");
809     ok( r == MSICONDITION_FALSE, "wrong return val\n");
810
811     r = MsiEvaluateCondition(hpkg, "1 ~> 1");
812     ok( r == MSICONDITION_FALSE, "wrong return val\n");
813
814     r = MsiEvaluateCondition(hpkg, "0 >= 1");
815     ok( r == MSICONDITION_FALSE, "wrong return val\n");
816
817     r = MsiEvaluateCondition(hpkg, "0 ~>= 1");
818     ok( r == MSICONDITION_FALSE, "wrong return val\n");
819
820     r = MsiEvaluateCondition(hpkg, "1 >= 1");
821     ok( r == MSICONDITION_TRUE, "wrong return val\n");
822
823     r = MsiEvaluateCondition(hpkg, "1 ~>= 1");
824     ok( r == MSICONDITION_TRUE, "wrong return val\n");
825
826     r = MsiEvaluateCondition(hpkg, "0 < 1");
827     ok( r == MSICONDITION_TRUE, "wrong return val\n");
828
829     r = MsiEvaluateCondition(hpkg, "0 ~< 1");
830     ok( r == MSICONDITION_TRUE, "wrong return val\n");
831
832     r = MsiEvaluateCondition(hpkg, "1 < 1");
833     ok( r == MSICONDITION_FALSE, "wrong return val\n");
834
835     r = MsiEvaluateCondition(hpkg, "1 ~< 1");
836     ok( r == MSICONDITION_FALSE, "wrong return val\n");
837
838     r = MsiEvaluateCondition(hpkg, "0 <= 1");
839     ok( r == MSICONDITION_TRUE, "wrong return val\n");
840
841     r = MsiEvaluateCondition(hpkg, "0 ~<= 1");
842     ok( r == MSICONDITION_TRUE, "wrong return val\n");
843
844     r = MsiEvaluateCondition(hpkg, "1 <= 1");
845     ok( r == MSICONDITION_TRUE, "wrong return val\n");
846
847     r = MsiEvaluateCondition(hpkg, "1 ~<= 1");
848     ok( r == MSICONDITION_TRUE, "wrong return val\n");
849
850     r = MsiEvaluateCondition(hpkg, "0 >=");
851     ok( r == MSICONDITION_ERROR, "wrong return val\n");
852
853     r = MsiEvaluateCondition(hpkg, " ");
854     ok( r == MSICONDITION_NONE, "wrong return val\n");
855
856     r = MsiEvaluateCondition(hpkg, "LicView <> \"1\"");
857     ok( r == MSICONDITION_TRUE, "wrong return val\n");
858
859     r = MsiEvaluateCondition(hpkg, "LicView <> \"0\"");
860     ok( r == MSICONDITION_TRUE, "wrong return val\n");
861
862     r = MsiEvaluateCondition(hpkg, "LicView <> LicView");
863     ok( r == MSICONDITION_FALSE, "wrong return val\n");
864
865     r = MsiEvaluateCondition(hpkg, "not 0");
866     ok( r == MSICONDITION_TRUE, "wrong return val\n");
867
868     r = MsiEvaluateCondition(hpkg, "not LicView");
869     ok( r == MSICONDITION_TRUE, "wrong return val\n");
870
871     r = MsiEvaluateCondition(hpkg, "not \"A\"");
872     ok( r == MSICONDITION_FALSE, "wrong return val\n");
873
874     r = MsiEvaluateCondition(hpkg, "~not \"A\"");
875     ok( r == MSICONDITION_ERROR, "wrong return val\n");
876
877     r = MsiEvaluateCondition(hpkg, "\"0\"");
878     ok( r == MSICONDITION_TRUE, "wrong return val\n");
879
880     r = MsiEvaluateCondition(hpkg, "1 and 2");
881     ok( r == MSICONDITION_TRUE, "wrong return val\n");
882
883     r = MsiEvaluateCondition(hpkg, "not 0 and 3");
884     ok( r == MSICONDITION_TRUE, "wrong return val\n");
885
886     r = MsiEvaluateCondition(hpkg, "not 0 and 0");
887     ok( r == MSICONDITION_FALSE, "wrong return val\n");
888
889     r = MsiEvaluateCondition(hpkg, "not 0 or 1");
890     ok( r == MSICONDITION_TRUE, "wrong return val\n");
891
892     r = MsiEvaluateCondition(hpkg, "(0)");
893     ok( r == MSICONDITION_FALSE, "wrong return val\n");
894
895     r = MsiEvaluateCondition(hpkg, "(((((1))))))");
896     ok( r == MSICONDITION_ERROR, "wrong return val\n");
897
898     r = MsiEvaluateCondition(hpkg, "(((((1)))))");
899     ok( r == MSICONDITION_TRUE, "wrong return val\n");
900
901     r = MsiEvaluateCondition(hpkg, " \"A\" < \"B\" ");
902     ok( r == MSICONDITION_TRUE, "wrong return val\n");
903
904     r = MsiEvaluateCondition(hpkg, " \"A\" > \"B\" ");
905     ok( r == MSICONDITION_FALSE, "wrong return val\n");
906
907     r = MsiEvaluateCondition(hpkg, " \"1\" > \"12\" ");
908     ok( r == MSICONDITION_FALSE, "wrong return val\n");
909
910     r = MsiEvaluateCondition(hpkg, " \"100\" < \"21\" ");
911     ok( r == MSICONDITION_TRUE, "wrong return val\n");
912
913     r = MsiEvaluateCondition(hpkg, "0 < > 0");
914     ok( r == MSICONDITION_ERROR, "wrong return val\n");
915
916     r = MsiEvaluateCondition(hpkg, "(1<<1) == 2");
917     ok( r == MSICONDITION_ERROR, "wrong return val\n");
918
919     r = MsiEvaluateCondition(hpkg, " \"A\" = \"a\" ");
920     ok( r == MSICONDITION_FALSE, "wrong return val\n");
921
922     r = MsiEvaluateCondition(hpkg, " \"A\" ~ = \"a\" ");
923     ok( r == MSICONDITION_ERROR, "wrong return val\n");
924
925     r = MsiEvaluateCondition(hpkg, " \"A\" ~= \"a\" ");
926     ok( r == MSICONDITION_TRUE, "wrong return val\n");
927
928     r = MsiEvaluateCondition(hpkg, " \"A\" ~= 1 ");
929     ok( r == MSICONDITION_FALSE, "wrong return val\n");
930
931     r = MsiEvaluateCondition(hpkg, " \"A\" = 1 ");
932     ok( r == MSICONDITION_FALSE, "wrong return val\n");
933
934     r = MsiEvaluateCondition(hpkg, " 1 ~= 1 ");
935     ok( r == MSICONDITION_TRUE, "wrong return val\n");
936
937     r = MsiEvaluateCondition(hpkg, " 1 ~= \"1\" ");
938     ok( r == MSICONDITION_FALSE, "wrong return val\n");
939
940     r = MsiEvaluateCondition(hpkg, " 1 = \"1\" ");
941     ok( r == MSICONDITION_FALSE, "wrong return val\n");
942
943     r = MsiEvaluateCondition(hpkg, " 0 = \"1\" ");
944     ok( r == MSICONDITION_FALSE, "wrong return val\n");
945
946     r = MsiEvaluateCondition(hpkg, " 0 < \"100\" ");
947     ok( r == MSICONDITION_FALSE, "wrong return val\n");
948
949     r = MsiEvaluateCondition(hpkg, " 100 > \"0\" ");
950     ok( r == MSICONDITION_FALSE, "wrong return val\n");
951
952     r = MsiEvaluateCondition(hpkg, "1 XOR 1");
953     ok( r == MSICONDITION_FALSE, "wrong return val\n");
954
955     r = MsiEvaluateCondition(hpkg, "1 IMP 1");
956     ok( r == MSICONDITION_TRUE, "wrong return val\n");
957
958     r = MsiEvaluateCondition(hpkg, "1 IMP 0");
959     ok( r == MSICONDITION_FALSE, "wrong return val\n");
960
961     r = MsiEvaluateCondition(hpkg, "0 IMP 0");
962     ok( r == MSICONDITION_TRUE, "wrong return val\n");
963
964     r = MsiEvaluateCondition(hpkg, "0 EQV 0");
965     ok( r == MSICONDITION_TRUE, "wrong return val\n");
966
967     r = MsiEvaluateCondition(hpkg, "0 EQV 1");
968     ok( r == MSICONDITION_FALSE, "wrong return val\n");
969
970     r = MsiEvaluateCondition(hpkg, "1 IMP 1 OR 0");
971     ok( r == MSICONDITION_TRUE, "wrong return val\n");
972
973     r = MsiEvaluateCondition(hpkg, "1 IMPL 1");
974     ok( r == MSICONDITION_ERROR, "wrong return val\n");
975
976     r = MsiEvaluateCondition(hpkg, "\"ASFD\" >< \"S\" ");
977     ok( r == MSICONDITION_TRUE, "wrong return val\n");
978
979     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"s\" ");
980     ok( r == MSICONDITION_TRUE, "wrong return val\n");
981
982     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"\" ");
983     ok( r == MSICONDITION_TRUE, "wrong return val\n");
984
985     r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"sss\" ");
986     ok( r == MSICONDITION_FALSE, "wrong return val\n");
987
988     MsiSetProperty(hpkg, "mm", "5" );
989
990     r = MsiEvaluateCondition(hpkg, "mm = 5");
991     ok( r == MSICONDITION_TRUE, "wrong return val\n");
992
993     r = MsiEvaluateCondition(hpkg, "mm < 6");
994     ok( r == MSICONDITION_TRUE, "wrong return val\n");
995
996     r = MsiEvaluateCondition(hpkg, "mm <= 5");
997     ok( r == MSICONDITION_TRUE, "wrong return val\n");
998
999     r = MsiEvaluateCondition(hpkg, "mm > 4");
1000     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1001
1002     r = MsiEvaluateCondition(hpkg, "mm < 12");
1003     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1004
1005     r = MsiEvaluateCondition(hpkg, "mm = \"5\"");
1006     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1007
1008     r = MsiEvaluateCondition(hpkg, "0 = \"\"");
1009     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1010
1011     r = MsiEvaluateCondition(hpkg, "0 AND \"\"");
1012     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1013
1014     r = MsiEvaluateCondition(hpkg, "1 AND \"\"");
1015     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1016
1017     r = MsiEvaluateCondition(hpkg, "1 AND \"1\"");
1018     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1019
1020     r = MsiEvaluateCondition(hpkg, "3 >< 1");
1021     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1022
1023     r = MsiEvaluateCondition(hpkg, "3 >< 4");
1024     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1025
1026     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 0");
1027     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1028
1029     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1");
1030     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1031
1032     r = MsiEvaluateCondition(hpkg, "NOT 1 OR 0");
1033     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1034
1035     r = MsiEvaluateCondition(hpkg, "0 AND 1 OR 1");
1036     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1037
1038     r = MsiEvaluateCondition(hpkg, "0 AND 0 OR 1");
1039     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1040
1041     r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1 OR 0");
1042     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1043
1044     r = MsiEvaluateCondition(hpkg, "_1 = _1");
1045     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1046
1047     r = MsiEvaluateCondition(hpkg, "( 1 AND 1 ) = 2");
1048     ok( r == MSICONDITION_ERROR, "wrong return val\n");
1049
1050     r = MsiEvaluateCondition(hpkg, "NOT ( 1 AND 1 )");
1051     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1052
1053     r = MsiEvaluateCondition(hpkg, "NOT A AND (BBBBBBBBBB=2 OR CCC=1) AND Ddddddddd");
1054     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1055
1056     r = MsiEvaluateCondition(hpkg, "Installed<>\"\"");
1057     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1058
1059     r = MsiEvaluateCondition(hpkg, "NOT 1 AND 0");
1060     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1061
1062     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1063     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1064
1065     r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
1066     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1067
1068     r = MsiEvaluateCondition(hpkg, "bandalmael<0");
1069     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1070
1071     r = MsiEvaluateCondition(hpkg, "bandalmael>0");
1072     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1073
1074     r = MsiEvaluateCondition(hpkg, "bandalmael>=0");
1075     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1076
1077     r = MsiEvaluateCondition(hpkg, "bandalmael<=0");
1078     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1079
1080     r = MsiEvaluateCondition(hpkg, "bandalmael~<>0");
1081     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1082
1083     MsiSetProperty(hpkg, "bandalmael", "0" );
1084     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1085     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1086
1087     MsiSetProperty(hpkg, "bandalmael", "" );
1088     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1089     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1090
1091     MsiSetProperty(hpkg, "bandalmael", "asdf" );
1092     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1093     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1094
1095     MsiSetProperty(hpkg, "bandalmael", "0asdf" );
1096     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1097     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1098
1099     MsiSetProperty(hpkg, "bandalmael", "0 " );
1100     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1101     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1102
1103     MsiSetProperty(hpkg, "bandalmael", "-0" );
1104     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1105     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1106
1107     MsiSetProperty(hpkg, "bandalmael", "0000000000000" );
1108     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1109     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1110
1111     MsiSetProperty(hpkg, "bandalmael", "--0" );
1112     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1113     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1114
1115     MsiSetProperty(hpkg, "bandalmael", "0x00" );
1116     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1117     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1118
1119     MsiSetProperty(hpkg, "bandalmael", "-" );
1120     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1121     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1122
1123     MsiSetProperty(hpkg, "bandalmael", "+0" );
1124     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1125     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1126
1127     MsiSetProperty(hpkg, "bandalmael", "0.0" );
1128     r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1129     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1130     r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
1131     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1132
1133     MsiSetProperty(hpkg, "one", "hi");
1134     MsiSetProperty(hpkg, "two", "hithere");
1135     r = MsiEvaluateCondition(hpkg, "one >< two");
1136     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1137
1138     MsiSetProperty(hpkg, "one", "hithere");
1139     MsiSetProperty(hpkg, "two", "hi");
1140     r = MsiEvaluateCondition(hpkg, "one >< two");
1141     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1142
1143     MsiSetProperty(hpkg, "one", "hello");
1144     MsiSetProperty(hpkg, "two", "hi");
1145     r = MsiEvaluateCondition(hpkg, "one >< two");
1146     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1147
1148     MsiSetProperty(hpkg, "one", "hellohithere");
1149     MsiSetProperty(hpkg, "two", "hi");
1150     r = MsiEvaluateCondition(hpkg, "one >< two");
1151     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1152
1153     MsiSetProperty(hpkg, "one", "");
1154     MsiSetProperty(hpkg, "two", "hi");
1155     r = MsiEvaluateCondition(hpkg, "one >< two");
1156     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1157
1158     MsiSetProperty(hpkg, "one", "hi");
1159     MsiSetProperty(hpkg, "two", "");
1160     r = MsiEvaluateCondition(hpkg, "one >< two");
1161     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1162
1163     MsiSetProperty(hpkg, "one", "");
1164     MsiSetProperty(hpkg, "two", "");
1165     r = MsiEvaluateCondition(hpkg, "one >< two");
1166     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1167
1168     MsiSetProperty(hpkg, "one", "1234");
1169     MsiSetProperty(hpkg, "two", "1");
1170     r = MsiEvaluateCondition(hpkg, "one >< two");
1171     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1172
1173     MsiSetProperty(hpkg, "one", "one 1234");
1174     MsiSetProperty(hpkg, "two", "1");
1175     r = MsiEvaluateCondition(hpkg, "one >< two");
1176     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1177
1178     MsiSetProperty(hpkg, "one", "hithere");
1179     MsiSetProperty(hpkg, "two", "hi");
1180     r = MsiEvaluateCondition(hpkg, "one << two");
1181     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1182
1183     MsiSetProperty(hpkg, "one", "hi");
1184     MsiSetProperty(hpkg, "two", "hithere");
1185     r = MsiEvaluateCondition(hpkg, "one << two");
1186     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1187
1188     MsiSetProperty(hpkg, "one", "hi");
1189     MsiSetProperty(hpkg, "two", "hi");
1190     r = MsiEvaluateCondition(hpkg, "one << two");
1191     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1192
1193     MsiSetProperty(hpkg, "one", "abcdhithere");
1194     MsiSetProperty(hpkg, "two", "hi");
1195     r = MsiEvaluateCondition(hpkg, "one << two");
1196     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1197
1198     MsiSetProperty(hpkg, "one", "");
1199     MsiSetProperty(hpkg, "two", "hi");
1200     r = MsiEvaluateCondition(hpkg, "one << two");
1201     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1202
1203     MsiSetProperty(hpkg, "one", "hithere");
1204     MsiSetProperty(hpkg, "two", "");
1205     r = MsiEvaluateCondition(hpkg, "one << two");
1206     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1207
1208     MsiSetProperty(hpkg, "one", "");
1209     MsiSetProperty(hpkg, "two", "");
1210     r = MsiEvaluateCondition(hpkg, "one << two");
1211     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1212
1213     MsiSetProperty(hpkg, "one", "1234");
1214     MsiSetProperty(hpkg, "two", "1");
1215     r = MsiEvaluateCondition(hpkg, "one << two");
1216     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1217
1218     MsiSetProperty(hpkg, "one", "1234 one");
1219     MsiSetProperty(hpkg, "two", "1");
1220     r = MsiEvaluateCondition(hpkg, "one << two");
1221     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1222
1223     MsiSetProperty(hpkg, "one", "hithere");
1224     MsiSetProperty(hpkg, "two", "there");
1225     r = MsiEvaluateCondition(hpkg, "one >> two");
1226     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1227
1228     MsiSetProperty(hpkg, "one", "hithere");
1229     MsiSetProperty(hpkg, "two", "hi");
1230     r = MsiEvaluateCondition(hpkg, "one >> two");
1231     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1232
1233     MsiSetProperty(hpkg, "one", "there");
1234     MsiSetProperty(hpkg, "two", "hithere");
1235     r = MsiEvaluateCondition(hpkg, "one >> two");
1236     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1237
1238     MsiSetProperty(hpkg, "one", "there");
1239     MsiSetProperty(hpkg, "two", "there");
1240     r = MsiEvaluateCondition(hpkg, "one >> two");
1241     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1242
1243     MsiSetProperty(hpkg, "one", "abcdhithere");
1244     MsiSetProperty(hpkg, "two", "hi");
1245     r = MsiEvaluateCondition(hpkg, "one >> two");
1246     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1247
1248     MsiSetProperty(hpkg, "one", "");
1249     MsiSetProperty(hpkg, "two", "there");
1250     r = MsiEvaluateCondition(hpkg, "one >> two");
1251     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1252
1253     MsiSetProperty(hpkg, "one", "there");
1254     MsiSetProperty(hpkg, "two", "");
1255     r = MsiEvaluateCondition(hpkg, "one >> two");
1256     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1257
1258     MsiSetProperty(hpkg, "one", "");
1259     MsiSetProperty(hpkg, "two", "");
1260     r = MsiEvaluateCondition(hpkg, "one >> two");
1261     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1262
1263     MsiSetProperty(hpkg, "one", "1234");
1264     MsiSetProperty(hpkg, "two", "4");
1265     r = MsiEvaluateCondition(hpkg, "one >> two");
1266     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1267
1268     MsiSetProperty(hpkg, "one", "one 1234");
1269     MsiSetProperty(hpkg, "two", "4");
1270     r = MsiEvaluateCondition(hpkg, "one >> two");
1271     ok( r == MSICONDITION_TRUE, "wrong return val\n");
1272
1273     MsiSetProperty(hpkg, "MsiNetAssemblySupport", NULL);  /* make sure it's empty */
1274
1275     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322\"");
1276     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1277
1278     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport > \"1.1.4322\"");
1279     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1280
1281     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport >= \"1.1.4322\"");
1282     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1283
1284     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport <= \"1.1.4322\"");
1285     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1286
1287     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport <> \"1.1.4322\"");
1288     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1289
1290     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport ~< \"1.1.4322\"");
1291     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1292
1293     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"abcd\"");
1294     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1295
1296     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a1.1.4322\"");
1297     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1298
1299     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322a\"");
1300     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1301
1302     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"0000001.1.4322\"");
1303     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1304
1305     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322.1\"");
1306     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1307
1308     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322.1.1\"");
1309     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1310
1311     r = MsiEvaluateCondition(hpkg, "\"2\" < \"1.1");
1312     ok( r == MSICONDITION_ERROR, "wrong return val (%d)\n", r);
1313
1314     r = MsiEvaluateCondition(hpkg, "\"2\" < \"1.1\"");
1315     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1316
1317     r = MsiEvaluateCondition(hpkg, "\"2\" < \"12.1\"");
1318     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1319
1320     r = MsiEvaluateCondition(hpkg, "\"02.1\" < \"2.11\"");
1321     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1322
1323     r = MsiEvaluateCondition(hpkg, "\"02.1.1\" < \"2.1\"");
1324     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1325
1326     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1\"");
1327     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1328
1329     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1\"");
1330     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1331
1332     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"0\"");
1333     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1334
1335     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"-1\"");
1336     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1337
1338     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a\"");
1339     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1340
1341     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"!\"");
1342     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1343
1344     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"!\"");
1345     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1346
1347     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"/\"");
1348     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1349
1350     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \" \"");
1351     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1352
1353     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"azAZ_\"");
1354     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1355
1356     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a[a]\"");
1357     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1358
1359     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a[a]a\"");
1360     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1361
1362     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"[a]\"");
1363     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1364
1365     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"[a]a\"");
1366     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1367
1368     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"{a}\"");
1369     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1370
1371     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"{a\"");
1372     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1373
1374     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"[a\"");
1375     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1376
1377     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a{\"");
1378     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1379
1380     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"a]\"");
1381     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1382
1383     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"A\"");
1384     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1385
1386     MsiSetProperty(hpkg, "MsiNetAssemblySupport", "1.1.4322");
1387     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.4322\"");
1388     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1389
1390     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.14322\"");
1391     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1392
1393     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1.5\"");
1394     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1395
1396     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1.1\"");
1397     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1398
1399     r = MsiEvaluateCondition(hpkg, "MsiNetAssemblySupport < \"1\"");
1400     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1401
1402     MsiSetProperty(hpkg, "one", "1");
1403     r = MsiEvaluateCondition(hpkg, "one < \"1\"");
1404     ok( r == MSICONDITION_FALSE, "wrong return val\n");
1405
1406     MsiSetProperty(hpkg, "X", "5.0");
1407
1408     r = MsiEvaluateCondition(hpkg, "X != \"\"");
1409     ok( r == MSICONDITION_ERROR, "wrong return val (%d)\n", r);
1410
1411     r = MsiEvaluateCondition(hpkg, "X =\"5.0\"");
1412     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1413
1414     r = MsiEvaluateCondition(hpkg, "X =\"5.1\"");
1415     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1416
1417     r = MsiEvaluateCondition(hpkg, "X =\"6.0\"");
1418     ok( r == MSICONDITION_FALSE, "wrong return val (%d)\n", r);
1419
1420     r = MsiEvaluateCondition(hpkg, "X =\"5.0\" or X =\"5.1\" or X =\"6.0\"");
1421     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1422
1423     r = MsiEvaluateCondition(hpkg, "(X =\"5.0\" or X =\"5.1\" or X =\"6.0\")");
1424     ok( r == MSICONDITION_TRUE, "wrong return val (%d)\n", r);
1425
1426     r = MsiEvaluateCondition(hpkg, "X !=\"\" and (X =\"5.0\" or X =\"5.1\" or X =\"6.0\")");
1427     ok( r == MSICONDITION_ERROR, "wrong return val (%d)\n", r);
1428
1429     MsiCloseHandle( hpkg );
1430     DeleteFile(msifile);
1431 }
1432
1433 static BOOL check_prop_empty( MSIHANDLE hpkg, const char * prop)
1434 {
1435     UINT r;
1436     DWORD sz;
1437     char buffer[2];
1438
1439     sz = sizeof buffer;
1440     strcpy(buffer,"x");
1441     r = MsiGetProperty( hpkg, prop, buffer, &sz );
1442     return r == ERROR_SUCCESS && buffer[0] == 0 && sz == 0;
1443 }
1444
1445 static void test_props(void)
1446 {
1447     MSIHANDLE hpkg, hdb;
1448     UINT r;
1449     DWORD sz;
1450     char buffer[0x100];
1451
1452     hdb = create_package_db();
1453     r = run_query( hdb,
1454             "CREATE TABLE `Property` ( "
1455             "`Property` CHAR(255) NOT NULL, "
1456             "`Value` CHAR(255) "
1457             "PRIMARY KEY `Property`)" );
1458     ok( r == ERROR_SUCCESS , "Failed\n" );
1459
1460     r = run_query(hdb,
1461             "INSERT INTO `Property` "
1462             "(`Property`, `Value`) "
1463             "VALUES( 'MetadataCompName', 'Photoshop.dll' )");
1464     ok( r == ERROR_SUCCESS , "Failed\n" );
1465
1466     hpkg = package_from_db( hdb );
1467     ok( hpkg, "failed to create package\n");
1468
1469     /* test invalid values */
1470     r = MsiGetProperty( 0, NULL, NULL, NULL );
1471     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1472
1473     r = MsiGetProperty( hpkg, NULL, NULL, NULL );
1474     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1475
1476     r = MsiGetProperty( hpkg, "boo", NULL, NULL );
1477     ok( r == ERROR_SUCCESS, "wrong return val\n");
1478
1479     r = MsiGetProperty( hpkg, "boo", buffer, NULL );
1480     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1481
1482     /* test retrieving an empty/nonexistent property */
1483     sz = sizeof buffer;
1484     r = MsiGetProperty( hpkg, "boo", NULL, &sz );
1485     ok( r == ERROR_SUCCESS, "wrong return val\n");
1486     ok( sz == 0, "wrong size returned\n");
1487
1488     check_prop_empty( hpkg, "boo");
1489     sz = 0;
1490     strcpy(buffer,"x");
1491     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1492     ok( r == ERROR_MORE_DATA, "wrong return val\n");
1493     ok( !strcmp(buffer,"x"), "buffer was changed\n");
1494     ok( sz == 0, "wrong size returned\n");
1495
1496     sz = 1;
1497     strcpy(buffer,"x");
1498     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1499     ok( r == ERROR_SUCCESS, "wrong return val\n");
1500     ok( buffer[0] == 0, "buffer was not changed\n");
1501     ok( sz == 0, "wrong size returned\n");
1502
1503     /* set the property to something */
1504     r = MsiSetProperty( 0, NULL, NULL );
1505     ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
1506
1507     r = MsiSetProperty( hpkg, NULL, NULL );
1508     ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1509
1510     r = MsiSetProperty( hpkg, "", NULL );
1511     ok( r == ERROR_SUCCESS, "wrong return val\n");
1512
1513     /* try set and get some illegal property identifiers */
1514     r = MsiSetProperty( hpkg, "", "asdf" );
1515     ok( r == ERROR_FUNCTION_FAILED, "wrong return val\n");
1516
1517     r = MsiSetProperty( hpkg, "=", "asdf" );
1518     ok( r == ERROR_SUCCESS, "wrong return val\n");
1519
1520     r = MsiSetProperty( hpkg, " ", "asdf" );
1521     ok( r == ERROR_SUCCESS, "wrong return val\n");
1522
1523     r = MsiSetProperty( hpkg, "'", "asdf" );
1524     ok( r == ERROR_SUCCESS, "wrong return val\n");
1525
1526     sz = sizeof buffer;
1527     buffer[0]=0;
1528     r = MsiGetProperty( hpkg, "'", buffer, &sz );
1529     ok( r == ERROR_SUCCESS, "wrong return val\n");
1530     ok( !strcmp(buffer,"asdf"), "buffer was not changed\n");
1531
1532     /* set empty values */
1533     r = MsiSetProperty( hpkg, "boo", NULL );
1534     ok( r == ERROR_SUCCESS, "wrong return val\n");
1535     ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
1536
1537     r = MsiSetProperty( hpkg, "boo", "" );
1538     ok( r == ERROR_SUCCESS, "wrong return val\n");
1539     ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
1540
1541     /* set a non-empty value */
1542     r = MsiSetProperty( hpkg, "boo", "xyz" );
1543     ok( r == ERROR_SUCCESS, "wrong return val\n");
1544
1545     sz = 1;
1546     strcpy(buffer,"x");
1547     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1548     ok( r == ERROR_MORE_DATA, "wrong return val\n");
1549     ok( buffer[0] == 0, "buffer was not changed\n");
1550     ok( sz == 3, "wrong size returned\n");
1551
1552     sz = 4;
1553     strcpy(buffer,"x");
1554     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1555     ok( r == ERROR_SUCCESS, "wrong return val\n");
1556     ok( !strcmp(buffer,"xyz"), "buffer was not changed\n");
1557     ok( sz == 3, "wrong size returned\n");
1558
1559     sz = 3;
1560     strcpy(buffer,"x");
1561     r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1562     ok( r == ERROR_MORE_DATA, "wrong return val\n");
1563     ok( !strcmp(buffer,"xy"), "buffer was not changed\n");
1564     ok( sz == 3, "wrong size returned\n");
1565
1566     r = MsiSetProperty(hpkg, "SourceDir", "foo");
1567     ok( r == ERROR_SUCCESS, "wrong return val\n");
1568
1569     sz = 4;
1570     r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
1571     ok( r == ERROR_SUCCESS, "wrong return val\n");
1572     ok( !strcmp(buffer,""), "buffer wrong\n");
1573     ok( sz == 0, "wrong size returned\n");
1574
1575     sz = 4;
1576     r = MsiGetProperty(hpkg, "SOMERANDOMNAME", buffer, &sz);
1577     ok( r == ERROR_SUCCESS, "wrong return val\n");
1578     ok( !strcmp(buffer,""), "buffer wrong\n");
1579     ok( sz == 0, "wrong size returned\n");
1580
1581     sz = 4;
1582     r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
1583     ok( r == ERROR_SUCCESS, "wrong return val\n");
1584     ok( !strcmp(buffer,"foo"), "buffer wrong\n");
1585     ok( sz == 3, "wrong size returned\n");
1586
1587     r = MsiSetProperty(hpkg, "MetadataCompName", "Photoshop.dll");
1588     ok( r == ERROR_SUCCESS, "wrong return val\n");
1589
1590     sz = 0;
1591     r = MsiGetProperty(hpkg, "MetadataCompName", NULL, &sz );
1592     ok( r == ERROR_SUCCESS, "return wrong\n");
1593     ok( sz == 13, "size wrong (%d)\n", sz);
1594
1595     sz = 13;
1596     r = MsiGetProperty(hpkg, "MetadataCompName", buffer, &sz );
1597     ok( r == ERROR_MORE_DATA, "return wrong\n");
1598     ok( !strcmp(buffer,"Photoshop.dl"), "buffer wrong\n");
1599
1600     r = MsiSetProperty(hpkg, "property", "value");
1601     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
1602
1603     sz = 6;
1604     r = MsiGetProperty(hpkg, "property", buffer, &sz);
1605     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
1606     ok( !strcmp(buffer, "value"), "Expected value, got %s\n", buffer);
1607
1608     r = MsiSetProperty(hpkg, "property", NULL);
1609     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
1610
1611     sz = 6;
1612     r = MsiGetProperty(hpkg, "property", buffer, &sz);
1613     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
1614     ok( !strlen(buffer), "Expected empty string, got %s\n", buffer);
1615
1616     MsiCloseHandle( hpkg );
1617     DeleteFile(msifile);
1618 }
1619
1620 static BOOL find_prop_in_property(MSIHANDLE hdb, LPCSTR prop, LPCSTR val)
1621 {
1622     MSIHANDLE hview, hrec;
1623     BOOL found;
1624     CHAR buffer[MAX_PATH];
1625     DWORD sz;
1626     UINT r;
1627
1628     r = MsiDatabaseOpenView(hdb, "SELECT * FROM `_Property`", &hview);
1629     ok(r == ERROR_SUCCESS, "MsiDatabaseOpenView failed\n");
1630     r = MsiViewExecute(hview, 0);
1631     ok(r == ERROR_SUCCESS, "MsiViewExecute failed\n");
1632
1633     found = FALSE;
1634     while (r == ERROR_SUCCESS && !found)
1635     {
1636         r = MsiViewFetch(hview, &hrec);
1637         if (r != ERROR_SUCCESS) break;
1638
1639         sz = MAX_PATH;
1640         r = MsiRecordGetString(hrec, 1, buffer, &sz);
1641         if (r == ERROR_SUCCESS && !lstrcmpA(buffer, prop))
1642         {
1643             sz = MAX_PATH;
1644             r = MsiRecordGetString(hrec, 2, buffer, &sz);
1645             if (r == ERROR_SUCCESS && !lstrcmpA(buffer, val))
1646                 found = TRUE;
1647         }
1648
1649         MsiCloseHandle(hrec);
1650     }
1651
1652     MsiViewClose(hview);
1653     MsiCloseHandle(hview);
1654
1655     return found;
1656 }
1657
1658 static void test_property_table(void)
1659 {
1660     const char *query;
1661     UINT r;
1662     MSIHANDLE hpkg, hdb, hrec;
1663     char buffer[MAX_PATH];
1664     DWORD sz;
1665     BOOL found;
1666
1667     hdb = create_package_db();
1668     ok( hdb, "failed to create package\n");
1669
1670     hpkg = package_from_db(hdb);
1671     ok( hpkg, "failed to create package\n");
1672
1673     MsiCloseHandle(hdb);
1674
1675     hdb = MsiGetActiveDatabase(hpkg);
1676
1677     query = "CREATE TABLE `_Property` ( "
1678         "`foo` INT NOT NULL, `bar` INT LOCALIZABLE PRIMARY KEY `foo`)";
1679     r = run_query(hdb, query);
1680     ok(r == ERROR_BAD_QUERY_SYNTAX, "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
1681
1682     MsiCloseHandle(hdb);
1683     MsiCloseHandle(hpkg);
1684     DeleteFile(msifile);
1685
1686     hdb = create_package_db();
1687     ok( hdb, "failed to create package\n");
1688
1689     query = "CREATE TABLE `_Property` ( "
1690         "`foo` INT NOT NULL, `bar` INT LOCALIZABLE PRIMARY KEY `foo`)";
1691     r = run_query(hdb, query);
1692     ok(r == ERROR_SUCCESS, "failed to create table\n");
1693
1694     query = "ALTER `_Property` ADD `foo` INTEGER";
1695     r = run_query(hdb, query);
1696     ok(r == ERROR_BAD_QUERY_SYNTAX, "failed to add column\n");
1697
1698     query = "ALTER TABLE `_Property` ADD `foo` INTEGER";
1699     r = run_query(hdb, query);
1700     ok(r == ERROR_BAD_QUERY_SYNTAX, "failed to add column\n");
1701
1702     query = "ALTER TABLE `_Property` ADD `extra` INTEGER";
1703     r = run_query(hdb, query);
1704     ok(r == ERROR_SUCCESS, "failed to add column\n");
1705
1706     hpkg = package_from_db(hdb);
1707     todo_wine
1708     {
1709         ok(!hpkg, "package should not be created\n");
1710     }
1711
1712     MsiCloseHandle(hdb);
1713     MsiCloseHandle(hpkg);
1714     DeleteFile(msifile);
1715
1716     hdb = create_package_db();
1717     ok (hdb, "failed to create package database\n");
1718
1719     r = create_property_table(hdb);
1720     ok(r == ERROR_SUCCESS, "cannot create Property table: %d\n", r);
1721
1722     r = add_property_entry(hdb, "'prop', 'val'");
1723     ok(r == ERROR_SUCCESS, "cannot add property: %d\n", r);
1724
1725     hpkg = package_from_db(hdb);
1726     ok(hpkg, "failed to create package\n");
1727
1728     MsiCloseHandle(hdb);
1729
1730     sz = MAX_PATH;
1731     r = MsiGetProperty(hpkg, "prop", buffer, &sz);
1732     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
1733     ok(!lstrcmp(buffer, "val"), "Expected val, got %s\n", buffer);
1734
1735     hdb = MsiGetActiveDatabase(hpkg);
1736
1737     found = find_prop_in_property(hdb, "prop", "val");
1738     ok(found, "prop should be in the _Property table\n");
1739
1740     r = add_property_entry(hdb, "'dantes', 'mercedes'");
1741     ok(r == ERROR_SUCCESS, "cannot add property: %d\n", r);
1742
1743     query = "SELECT * FROM `_Property` WHERE `Property` = 'dantes'";
1744     r = do_query(hdb, query, &hrec);
1745     ok(r == ERROR_BAD_QUERY_SYNTAX, "Expected ERROR_BAD_QUERY_SYNTAX, got %d\n", r);
1746
1747     found = find_prop_in_property(hdb, "dantes", "mercedes");
1748     ok(found == FALSE, "dantes should not be in the _Property table\n");
1749
1750     sz = MAX_PATH;
1751     lstrcpy(buffer, "aaa");
1752     r = MsiGetProperty(hpkg, "dantes", buffer, &sz);
1753     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
1754     ok(lstrlenA(buffer) == 0, "Expected empty string, got %s\n", buffer);
1755
1756     r = MsiSetProperty(hpkg, "dantes", "mercedes");
1757     ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
1758
1759     found = find_prop_in_property(hdb, "dantes", "mercedes");
1760     ok(found == TRUE, "dantes should be in the _Property table\n");
1761
1762     MsiCloseHandle(hdb);
1763     MsiCloseHandle(hrec);
1764     MsiCloseHandle(hpkg);
1765     DeleteFile(msifile);
1766 }
1767
1768 static UINT try_query_param( MSIHANDLE hdb, LPCSTR szQuery, MSIHANDLE hrec )
1769 {
1770     MSIHANDLE htab = 0;
1771     UINT res;
1772
1773     res = MsiDatabaseOpenView( hdb, szQuery, &htab );
1774     if( res == ERROR_SUCCESS )
1775     {
1776         UINT r;
1777
1778         r = MsiViewExecute( htab, hrec );
1779         if( r != ERROR_SUCCESS )
1780         {
1781             res = r;
1782             fprintf(stderr,"MsiViewExecute failed %08x\n", res);
1783         }
1784
1785         r = MsiViewClose( htab );
1786         if( r != ERROR_SUCCESS )
1787             res = r;
1788
1789         r = MsiCloseHandle( htab );
1790         if( r != ERROR_SUCCESS )
1791             res = r;
1792     }
1793     return res;
1794 }
1795
1796 static UINT try_query( MSIHANDLE hdb, LPCSTR szQuery )
1797 {
1798     return try_query_param( hdb, szQuery, 0 );
1799 }
1800
1801 static void test_msipackage(void)
1802 {
1803     MSIHANDLE hdb = 0, hpack = 100;
1804     UINT r;
1805     const char *query;
1806     char name[10];
1807
1808     DeleteFile(msifile);
1809
1810     todo_wine {
1811     name[0] = 0;
1812     r = MsiOpenPackage(name, &hpack);
1813     ok(r == ERROR_SUCCESS, "failed to open package with no name\n");
1814     r = MsiCloseHandle(hpack);
1815     ok(r == ERROR_SUCCESS, "failed to close package\n");
1816     }
1817
1818     /* just MsiOpenDatabase should not create a file */
1819     r = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb);
1820     ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
1821
1822     name[0]='#';
1823     name[1]=0;
1824     r = MsiOpenPackage(name, &hpack);
1825     ok(r == ERROR_INVALID_HANDLE, "MsiOpenPackage returned wrong code\n");
1826
1827     todo_wine {
1828     /* now try again with our empty database */
1829     sprintf(name, "#%ld", hdb);
1830     r = MsiOpenPackage(name, &hpack);
1831     ok(r == ERROR_INSTALL_PACKAGE_INVALID, "MsiOpenPackage returned wrong code\n");
1832     if (!r)    MsiCloseHandle(hpack);
1833     }
1834
1835     /* create a table */
1836     query = "CREATE TABLE `Property` ( "
1837             "`Property` CHAR(72), `Value` CHAR(0) "
1838             "PRIMARY KEY `Property`)";
1839     r = try_query(hdb, query);
1840     ok(r == ERROR_SUCCESS, "failed to create Properties table\n");
1841
1842     query = "CREATE TABLE `InstallExecuteSequence` ("
1843             "`Action` CHAR(72), `Condition` CHAR(0), `Sequence` INTEGER "
1844             "PRIMARY KEY `Action`)";
1845     r = try_query(hdb, query);
1846     ok(r == ERROR_SUCCESS, "failed to create InstallExecuteSequence table\n");
1847
1848     todo_wine {
1849     sprintf(name, "#%ld", hdb);
1850     r = MsiOpenPackage(name, &hpack);
1851     ok(r == ERROR_INSTALL_PACKAGE_INVALID, "MsiOpenPackage returned wrong code\n");
1852     if (!r)    MsiCloseHandle(hpack);
1853     }
1854
1855     r = MsiCloseHandle(hdb);
1856     ok(r == ERROR_SUCCESS, "MsiCloseHandle(database) failed\n");
1857     DeleteFile(msifile);
1858 }
1859
1860 static void test_formatrecord2(void)
1861 {
1862     MSIHANDLE hpkg, hrec ;
1863     char buffer[0x100];
1864     DWORD sz;
1865     UINT r;
1866
1867     hpkg = package_from_db(create_package_db());
1868     ok( hpkg, "failed to create package\n");
1869
1870     r = MsiSetProperty(hpkg, "Manufacturer", " " );
1871     ok( r == ERROR_SUCCESS, "set property failed\n");
1872
1873     hrec = MsiCreateRecord(2);
1874     ok(hrec, "create record failed\n");
1875
1876     r = MsiRecordSetString( hrec, 0, "[ProgramFilesFolder][Manufacturer]\\asdf");
1877     ok( r == ERROR_SUCCESS, "format record failed\n");
1878
1879     buffer[0] = 0;
1880     sz = sizeof buffer;
1881     r = MsiFormatRecord( hpkg, hrec, buffer, &sz );
1882
1883     r = MsiRecordSetString(hrec, 0, "[foo][1]");
1884     r = MsiRecordSetString(hrec, 1, "hoo");
1885     sz = sizeof buffer;
1886     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1887     ok( sz == 3, "size wrong\n");
1888     ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
1889     ok( r == ERROR_SUCCESS, "format failed\n");
1890
1891     r = MsiRecordSetString(hrec, 0, "x[~]x");
1892     sz = sizeof buffer;
1893     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1894     ok( sz == 3, "size wrong\n");
1895     ok( 0 == strcmp(buffer,"x"), "wrong output %s\n",buffer);
1896     ok( r == ERROR_SUCCESS, "format failed\n");
1897
1898     r = MsiRecordSetString(hrec, 0, "[foo.$%}][1]");
1899     r = MsiRecordSetString(hrec, 1, "hoo");
1900     sz = sizeof buffer;
1901     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1902     ok( sz == 3, "size wrong\n");
1903     ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
1904     ok( r == ERROR_SUCCESS, "format failed\n");
1905
1906     r = MsiRecordSetString(hrec, 0, "[\\[]");
1907     sz = sizeof buffer;
1908     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1909     ok( sz == 1, "size wrong\n");
1910     ok( 0 == strcmp(buffer,"["), "wrong output %s\n",buffer);
1911     ok( r == ERROR_SUCCESS, "format failed\n");
1912
1913     SetEnvironmentVariable("FOO", "BAR");
1914     r = MsiRecordSetString(hrec, 0, "[%FOO]");
1915     sz = sizeof buffer;
1916     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1917     ok( sz == 3, "size wrong\n");
1918     ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
1919     ok( r == ERROR_SUCCESS, "format failed\n");
1920
1921     r = MsiRecordSetString(hrec, 0, "[[1]]");
1922     r = MsiRecordSetString(hrec, 1, "%FOO");
1923     sz = sizeof buffer;
1924     r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1925     ok( sz == 3, "size wrong\n");
1926     ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
1927     ok( r == ERROR_SUCCESS, "format failed\n");
1928
1929     MsiCloseHandle( hrec );
1930     MsiCloseHandle( hpkg );
1931     DeleteFile(msifile);
1932 }
1933
1934 static void test_states(void)
1935 {
1936     MSIHANDLE hpkg;
1937     UINT r;
1938     MSIHANDLE hdb;
1939     INSTALLSTATE state, action;
1940
1941     hdb = create_package_db();
1942     ok ( hdb, "failed to create package database\n" );
1943
1944     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
1945     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
1946
1947     r = create_feature_table( hdb );
1948     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
1949
1950     r = create_component_table( hdb );
1951     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
1952
1953     /* msidbFeatureAttributesFavorLocal */
1954     r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
1955     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1956
1957     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
1958     r = add_component_entry( hdb, "'alpha', '{467EC132-739D-4784-A37B-677AA43DBC94}', 'TARGETDIR', 0, '', 'alpha_file'" );
1959     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1960
1961     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
1962     r = add_component_entry( hdb, "'beta', '{2C1F189C-24A6-4C34-B26B-994A6C026506}', 'TARGETDIR', 1, '', 'beta_file'" );
1963     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1964
1965     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
1966     r = add_component_entry( hdb, "'gamma', '{C271E2A4-DE2E-4F70-86D1-6984AF7DE2CA}', 'TARGETDIR', 2, '', 'gamma_file'" );
1967     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1968
1969     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSharedDllRefCount */
1970     r = add_component_entry( hdb, "'theta', '{4EB3129D-81A8-48D5-9801-75600FED3DD9}', 'TARGETDIR', 8, '', 'theta_file'" );
1971     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1972
1973     /* msidbFeatureAttributesFavorSource */
1974     r = add_feature_entry( hdb, "'two', '', '', '', 2, 1, '', 1" );
1975     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1976
1977     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
1978     r = add_component_entry( hdb, "'delta', '{938FD4F2-C648-4259-A03C-7AA3B45643F3}', 'TARGETDIR', 0, '', 'delta_file'" );
1979     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1980
1981     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
1982     r = add_component_entry( hdb, "'epsilon', '{D59713B6-C11D-47F2-A395-1E5321781190}', 'TARGETDIR', 1, '', 'epsilon_file'" );
1983     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1984
1985     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
1986     r = add_component_entry( hdb, "'zeta', '{377D33AB-2FAA-42B9-A629-0C0DAE9B9C7A}', 'TARGETDIR', 2, '', 'zeta_file'" );
1987     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1988
1989     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSharedDllRefCount */
1990     r = add_component_entry( hdb, "'iota', '{5D36F871-B5ED-4801-9E0F-C46B9E5C9669}', 'TARGETDIR', 8, '', 'iota_file'" );
1991     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1992
1993     /* msidbFeatureAttributesFavorSource */
1994     r = add_feature_entry( hdb, "'three', '', '', '', 2, 1, '', 1" );
1995     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1996
1997     /* msidbFeatureAttributesFavorLocal */
1998     r = add_feature_entry( hdb, "'four', '', '', '', 2, 1, '', 0" );
1999     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2000
2001     /* disabled */
2002     r = add_feature_entry( hdb, "'five', '', '', '', 2, 0, '', 1" );
2003     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2004
2005     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
2006     r = add_component_entry( hdb, "'eta', '{DD89003F-0DD4-41B8-81C0-3411A7DA2695}', 'TARGETDIR', 1, '', 'eta_file'" );
2007     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2008
2009     /* no feature parent:msidbComponentAttributesLocalOnly */
2010     r = add_component_entry( hdb, "'kappa', '{D6B93DC3-8DA5-4769-9888-42BFE156BB8B}', 'TARGETDIR', 1, '', 'kappa_file'" );
2011     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2012
2013     r = create_feature_components_table( hdb );
2014     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2015
2016     r = add_feature_components_entry( hdb, "'one', 'alpha'" );
2017     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2018
2019     r = add_feature_components_entry( hdb, "'one', 'beta'" );
2020     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2021
2022     r = add_feature_components_entry( hdb, "'one', 'gamma'" );
2023     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2024
2025     r = add_feature_components_entry( hdb, "'one', 'theta'" );
2026     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2027
2028     r = add_feature_components_entry( hdb, "'two', 'delta'" );
2029     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2030
2031     r = add_feature_components_entry( hdb, "'two', 'epsilon'" );
2032     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2033
2034     r = add_feature_components_entry( hdb, "'two', 'zeta'" );
2035     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2036
2037     r = add_feature_components_entry( hdb, "'two', 'iota'" );
2038     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2039
2040     r = add_feature_components_entry( hdb, "'three', 'eta'" );
2041     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2042
2043     r = add_feature_components_entry( hdb, "'four', 'eta'" );
2044     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2045
2046     r = add_feature_components_entry( hdb, "'five', 'eta'" );
2047     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2048
2049     r = create_file_table( hdb );
2050     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2051
2052     r = add_file_entry( hdb, "'alpha_file', 'alpha', 'alpha.txt', 100, '', '1033', 8192, 1" );
2053     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2054
2055     r = add_file_entry( hdb, "'beta_file', 'beta', 'beta.txt', 0, '', '1033', 8192, 1" );
2056     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2057
2058     r = add_file_entry( hdb, "'gamma_file', 'gamma', 'gamma.txt', 0, '', '1033', 8192, 1" );
2059     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2060
2061     r = add_file_entry( hdb, "'theta_file', 'theta', 'theta.txt', 0, '', '1033', 8192, 1" );
2062     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2063
2064     r = add_file_entry( hdb, "'delta_file', 'delta', 'delta.txt', 0, '', '1033', 8192, 1" );
2065     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2066
2067     r = add_file_entry( hdb, "'epsilon_file', 'epsilon', 'epsilon.txt', 0, '', '1033', 8192, 1" );
2068     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2069
2070     r = add_file_entry( hdb, "'zeta_file', 'zeta', 'zeta.txt', 0, '', '1033', 8192, 1" );
2071     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2072
2073     r = add_file_entry( hdb, "'iota_file', 'iota', 'iota.txt', 0, '', '1033', 8192, 1" );
2074     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2075
2076     /* compressed file */
2077     r = add_file_entry( hdb, "'eta_file', 'eta', 'eta.txt', 0, '', '1033', 16384, 1" );
2078     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2079
2080     r = add_file_entry( hdb, "'kappa_file', 'kappa', 'kappa.txt', 0, '', '1033', 8192, 1" );
2081     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2082
2083     hpkg = package_from_db( hdb );
2084     ok( hpkg, "failed to create package\n");
2085
2086     MsiCloseHandle( hdb );
2087
2088     state = 0xdeadbee;
2089     action = 0xdeadbee;
2090     r = MsiGetFeatureState(hpkg, "one", &state, &action);
2091     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2092     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2093     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2094
2095     state = 0xdeadbee;
2096     action = 0xdeadbee;
2097     r = MsiGetFeatureState(hpkg, "two", &state, &action);
2098     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2099     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2100     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2101
2102     state = 0xdeadbee;
2103     action = 0xdeadbee;
2104     r = MsiGetFeatureState(hpkg, "three", &state, &action);
2105     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2106     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2107     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2108
2109     state = 0xdeadbee;
2110     action = 0xdeadbee;
2111     r = MsiGetFeatureState(hpkg, "four", &state, &action);
2112     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2113     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2114     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2115
2116     state = 0xdeadbee;
2117     action = 0xdeadbee;
2118     r = MsiGetFeatureState(hpkg, "five", &state, &action);
2119     ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
2120     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2121     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2122
2123     state = 0xdeadbee;
2124     action = 0xdeadbee;
2125     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
2126     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2127     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2128     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2129
2130     state = 0xdeadbee;
2131     action = 0xdeadbee;
2132     r = MsiGetComponentState(hpkg, "beta", &state, &action);
2133     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2134     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2135     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2136
2137     state = 0xdeadbee;
2138     action = 0xdeadbee;
2139     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
2140     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2141     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2142     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2143
2144     state = 0xdeadbee;
2145     action = 0xdeadbee;
2146     r = MsiGetComponentState(hpkg, "theta", &state, &action);
2147     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2148     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2149     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2150
2151     state = 0xdeadbee;
2152     action = 0xdeadbee;
2153     r = MsiGetComponentState(hpkg, "delta", &state, &action);
2154     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2155     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2156     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2157
2158     state = 0xdeadbee;
2159     action = 0xdeadbee;
2160     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
2161     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2162     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2163     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2164
2165     state = 0xdeadbee;
2166     action = 0xdeadbee;
2167     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
2168     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2169     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2170     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2171
2172     state = 0xdeadbee;
2173     action = 0xdeadbee;
2174     r = MsiGetComponentState(hpkg, "iota", &state, &action);
2175     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2176     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2177     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2178
2179     state = 0xdeadbee;
2180     action = 0xdeadbee;
2181     r = MsiGetComponentState(hpkg, "eta", &state, &action);
2182     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2183     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2184     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2185
2186     state = 0xdeadbee;
2187     action = 0xdeadbee;
2188     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
2189     ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
2190     ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
2191     ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
2192
2193     r = MsiDoAction( hpkg, "CostInitialize");
2194     ok( r == ERROR_SUCCESS, "cost init failed\n");
2195
2196     state = 0xdeadbee;
2197     action = 0xdeadbee;
2198     r = MsiGetFeatureState(hpkg, "one", &state, &action);
2199     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2200     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2201     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2202
2203     state = 0xdeadbee;
2204     action = 0xdeadbee;
2205     r = MsiGetFeatureState(hpkg, "two", &state, &action);
2206     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2207     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2208     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2209
2210     state = 0xdeadbee;
2211     action = 0xdeadbee;
2212     r = MsiGetFeatureState(hpkg, "three", &state, &action);
2213     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2214     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2215     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2216
2217     state = 0xdeadbee;
2218     action = 0xdeadbee;
2219     r = MsiGetFeatureState(hpkg, "four", &state, &action);
2220     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2221     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2222     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2223
2224     state = 0xdeadbee;
2225     action = 0xdeadbee;
2226     r = MsiGetFeatureState(hpkg, "five", &state, &action);
2227     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2228     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2229     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2230
2231     state = 0xdeadbee;
2232     action = 0xdeadbee;
2233     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
2234     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2235     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2236     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2237
2238     state = 0xdeadbee;
2239     action = 0xdeadbee;
2240     r = MsiGetComponentState(hpkg, "beta", &state, &action);
2241     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2242     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2243     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2244
2245     state = 0xdeadbee;
2246     action = 0xdeadbee;
2247     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
2248     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2249     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2250     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2251
2252     state = 0xdeadbee;
2253     action = 0xdeadbee;
2254     r = MsiGetComponentState(hpkg, "theta", &state, &action);
2255     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2256     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2257     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2258
2259     state = 0xdeadbee;
2260     action = 0xdeadbee;
2261     r = MsiGetComponentState(hpkg, "delta", &state, &action);
2262     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2263     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2264     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2265
2266     state = 0xdeadbee;
2267     action = 0xdeadbee;
2268     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
2269     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2270     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2271     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2272
2273     state = 0xdeadbee;
2274     action = 0xdeadbee;
2275     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
2276     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2277     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2278     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2279
2280     state = 0xdeadbee;
2281     action = 0xdeadbee;
2282     r = MsiGetComponentState(hpkg, "iota", &state, &action);
2283     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2284     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2285     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2286
2287     state = 0xdeadbee;
2288     action = 0xdeadbee;
2289     r = MsiGetComponentState(hpkg, "eta", &state, &action);
2290     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2291     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2292     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2293
2294     state = 0xdeadbee;
2295     action = 0xdeadbee;
2296     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
2297     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2298     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2299     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2300
2301     r = MsiDoAction( hpkg, "FileCost");
2302     ok( r == ERROR_SUCCESS, "file cost failed\n");
2303
2304     state = 0xdeadbee;
2305     action = 0xdeadbee;
2306     r = MsiGetFeatureState(hpkg, "one", &state, &action);
2307     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2308     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2309     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2310
2311     state = 0xdeadbee;
2312     action = 0xdeadbee;
2313     r = MsiGetFeatureState(hpkg, "two", &state, &action);
2314     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2315     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2316     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2317
2318     state = 0xdeadbee;
2319     action = 0xdeadbee;
2320     r = MsiGetFeatureState(hpkg, "three", &state, &action);
2321     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2322     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2323     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2324
2325     state = 0xdeadbee;
2326     action = 0xdeadbee;
2327     r = MsiGetFeatureState(hpkg, "four", &state, &action);
2328     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2329     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2330     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2331
2332     state = 0xdeadbee;
2333     action = 0xdeadbee;
2334     r = MsiGetFeatureState(hpkg, "five", &state, &action);
2335     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2336     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2337     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2338
2339     state = 0xdeadbee;
2340     action = 0xdeadbee;
2341     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
2342     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2343     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2344     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2345
2346     state = 0xdeadbee;
2347     action = 0xdeadbee;
2348     r = MsiGetComponentState(hpkg, "beta", &state, &action);
2349     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2350     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2351     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2352
2353     state = 0xdeadbee;
2354     action = 0xdeadbee;
2355     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
2356     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2357     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2358     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2359
2360     state = 0xdeadbee;
2361     action = 0xdeadbee;
2362     r = MsiGetComponentState(hpkg, "theta", &state, &action);
2363     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2364     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2365     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2366
2367     state = 0xdeadbee;
2368     action = 0xdeadbee;
2369     r = MsiGetComponentState(hpkg, "delta", &state, &action);
2370     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2371     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2372     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2373
2374     state = 0xdeadbee;
2375     action = 0xdeadbee;
2376     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
2377     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2378     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2379     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2380
2381     state = 0xdeadbee;
2382     action = 0xdeadbee;
2383     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
2384     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2385     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2386     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2387
2388     state = 0xdeadbee;
2389     action = 0xdeadbee;
2390     r = MsiGetComponentState(hpkg, "iota", &state, &action);
2391     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2392     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2393     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2394
2395     state = 0xdeadbee;
2396     action = 0xdeadbee;
2397     r = MsiGetComponentState(hpkg, "eta", &state, &action);
2398     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2399     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2400     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2401
2402     state = 0xdeadbee;
2403     action = 0xdeadbee;
2404     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
2405     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2406     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2407     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2408
2409     r = MsiDoAction( hpkg, "CostFinalize");
2410     ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
2411
2412     state = 0xdeadbee;
2413     action = 0xdeadbee;
2414     r = MsiGetFeatureState(hpkg, "one", &state, &action);
2415     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2416     ok( state == INSTALLSTATE_ABSENT, "Expected one INSTALLSTATE_ABSENT, got %d\n", state);
2417     ok( action == INSTALLSTATE_LOCAL, "Expected one INSTALLSTATE_LOCAL, got %d\n", action);
2418
2419     state = 0xdeadbee;
2420     action = 0xdeadbee;
2421     r = MsiGetFeatureState(hpkg, "two", &state, &action);
2422     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2423     ok( state == INSTALLSTATE_ABSENT, "Expected two INSTALLSTATE_ABSENT, got %d\n", state);
2424     ok( action == INSTALLSTATE_SOURCE, "Expected two INSTALLSTATE_SOURCE, got %d\n", action);
2425
2426     state = 0xdeadbee;
2427     action = 0xdeadbee;
2428     r = MsiGetFeatureState(hpkg, "three", &state, &action);
2429     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2430     ok( state == INSTALLSTATE_ABSENT, "Expected three INSTALLSTATE_ABSENT, got %d\n", state);
2431     ok( action == INSTALLSTATE_LOCAL, "Expected three INSTALLSTATE_LOCAL, got %d\n", action);
2432
2433     state = 0xdeadbee;
2434     action = 0xdeadbee;
2435     r = MsiGetFeatureState(hpkg, "four", &state, &action);
2436     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2437     ok( state == INSTALLSTATE_ABSENT, "Expected four INSTALLSTATE_ABSENT, got %d\n", state);
2438     ok( action == INSTALLSTATE_LOCAL, "Expected four INSTALLSTATE_LOCAL, got %d\n", action);
2439
2440     state = 0xdeadbee;
2441     action = 0xdeadbee;
2442     r = MsiGetFeatureState(hpkg, "five", &state, &action);
2443     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2444     ok( state == INSTALLSTATE_ABSENT, "Expected five INSTALLSTATE_ABSENT, got %d\n", state);
2445     ok( action == INSTALLSTATE_UNKNOWN, "Expected five INSTALLSTATE_UNKNOWN, got %d\n", action);
2446
2447     state = 0xdeadbee;
2448     action = 0xdeadbee;
2449     r = MsiGetComponentState(hpkg, "alpha", &state, &action);
2450     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2451     ok( state == INSTALLSTATE_ABSENT, "Expected alpha INSTALLSTATE_ABSENT, got %d\n", state);
2452     ok( action == INSTALLSTATE_LOCAL, "Expected alpha INSTALLSTATE_LOCAL, got %d\n", action);
2453
2454     state = 0xdeadbee;
2455     action = 0xdeadbee;
2456     r = MsiGetComponentState(hpkg, "beta", &state, &action);
2457     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2458     ok( state == INSTALLSTATE_ABSENT, "Expected beta INSTALLSTATE_ABSENT, got %d\n", state);
2459     ok( action == INSTALLSTATE_SOURCE, "Expected beta INSTALLSTATE_SOURCE, got %d\n", action);
2460
2461     state = 0xdeadbee;
2462     action = 0xdeadbee;
2463     r = MsiGetComponentState(hpkg, "gamma", &state, &action);
2464     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2465     ok( state == INSTALLSTATE_ABSENT, "Expected gamma INSTALLSTATE_ABSENT, got %d\n", state);
2466     ok( action == INSTALLSTATE_LOCAL, "Expected gamma INSTALLSTATE_LOCAL, got %d\n", action);
2467
2468     state = 0xdeadbee;
2469     action = 0xdeadbee;
2470     r = MsiGetComponentState(hpkg, "theta", &state, &action);
2471     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2472     ok( state == INSTALLSTATE_ABSENT, "Expected theta INSTALLSTATE_ABSENT, got %d\n", state);
2473     ok( action == INSTALLSTATE_LOCAL, "Expected theta INSTALLSTATE_LOCAL, got %d\n", action);
2474
2475     state = 0xdeadbee;
2476     action = 0xdeadbee;
2477     r = MsiGetComponentState(hpkg, "delta", &state, &action);
2478     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2479     ok( state == INSTALLSTATE_ABSENT, "Expected delta INSTALLSTATE_ABSENT, got %d\n", state);
2480     ok( action == INSTALLSTATE_LOCAL, "Expected delta INSTALLSTATE_LOCAL, got %d\n", action);
2481
2482     state = 0xdeadbee;
2483     action = 0xdeadbee;
2484     r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
2485     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2486     ok( state == INSTALLSTATE_ABSENT, "Expected epsilon INSTALLSTATE_ABSENT, got %d\n", state);
2487     ok( action == INSTALLSTATE_SOURCE, "Expected epsilon INSTALLSTATE_SOURCE, got %d\n", action);
2488
2489     state = 0xdeadbee;
2490     action = 0xdeadbee;
2491     r = MsiGetComponentState(hpkg, "zeta", &state, &action);
2492     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2493     ok( state == INSTALLSTATE_ABSENT, "Expected zeta INSTALLSTATE_ABSENT, got %d\n", state);
2494     ok( action == INSTALLSTATE_SOURCE, "Expected zeta INSTALLSTATE_SOURCE, got %d\n", action);
2495
2496     state = 0xdeadbee;
2497     action = 0xdeadbee;
2498     r = MsiGetComponentState(hpkg, "iota", &state, &action);
2499     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2500     ok( state == INSTALLSTATE_ABSENT, "Expected iota INSTALLSTATE_ABSENT, got %d\n", state);
2501     ok( action == INSTALLSTATE_LOCAL, "Expected iota INSTALLSTATE_LOCAL, got %d\n", action);
2502
2503     state = 0xdeadbee;
2504     action = 0xdeadbee;
2505     r = MsiGetComponentState(hpkg, "eta", &state, &action);
2506     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2507     ok( state == INSTALLSTATE_ABSENT, "Expected eta INSTALLSTATE_ABSENT, got %d\n", state);
2508     ok( action == INSTALLSTATE_LOCAL, "Expected eta INSTALLSTATE_LOCAL, got %d\n", action);
2509
2510     state = 0xdeadbee;
2511     action = 0xdeadbee;
2512     r = MsiGetComponentState(hpkg, "kappa", &state, &action);
2513     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2514     ok( state == INSTALLSTATE_ABSENT, "Expected kappa INSTALLSTATE_ABSENT, got %d\n", state);
2515     ok( action == INSTALLSTATE_UNKNOWN, "Expected kappa INSTALLSTATE_UNKNOWN, got %d\n", action);
2516
2517     MsiCloseHandle( hpkg );
2518     DeleteFileA( msifile );
2519 }
2520
2521 static void test_getproperty(void)
2522 {
2523     MSIHANDLE hPackage = 0;
2524     char prop[100];
2525     static CHAR empty[] = "";
2526     DWORD size;
2527     UINT r;
2528
2529     hPackage = package_from_db(create_package_db());
2530     ok( hPackage != 0, " Failed to create package\n");
2531
2532     /* set the property */
2533     r = MsiSetProperty(hPackage, "Name", "Value");
2534     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2535
2536     /* retrieve the size, NULL pointer */
2537     size = 0;
2538     r = MsiGetProperty(hPackage, "Name", NULL, &size);
2539     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2540     ok( size == 5, "Expected 5, got %d\n", size);
2541
2542     /* retrieve the size, empty string */
2543     size = 0;
2544     r = MsiGetProperty(hPackage, "Name", empty, &size);
2545     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
2546     ok( size == 5, "Expected 5, got %d\n", size);
2547
2548     /* don't change size */
2549     r = MsiGetProperty(hPackage, "Name", prop, &size);
2550     ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
2551     ok( size == 5, "Expected 5, got %d\n", size);
2552     ok( !lstrcmp(prop, "Valu"), "Expected Valu, got %s\n", prop);
2553
2554     /* increase the size by 1 */
2555     size++;
2556     r = MsiGetProperty(hPackage, "Name", prop, &size);
2557     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2558     ok( size == 5, "Expected 5, got %d\n", size);
2559     ok( !lstrcmp(prop, "Value"), "Expected Value, got %s\n", prop);
2560
2561     r = MsiCloseHandle( hPackage);
2562     ok( r == ERROR_SUCCESS , "Failed to close package\n" );
2563     DeleteFile(msifile);
2564 }
2565
2566 static void test_removefiles(void)
2567 {
2568     MSIHANDLE hpkg;
2569     UINT r;
2570     MSIHANDLE hdb;
2571     char CURR_DIR[MAX_PATH];
2572
2573     GetCurrentDirectoryA(MAX_PATH, CURR_DIR);
2574
2575     hdb = create_package_db();
2576     ok ( hdb, "failed to create package database\n" );
2577
2578     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2579     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2580
2581     r = create_feature_table( hdb );
2582     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
2583
2584     r = create_component_table( hdb );
2585     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
2586
2587     r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
2588     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2589
2590     r = add_component_entry( hdb, "'hydrogen', '', 'TARGETDIR', 0, '', 'hydrogen_file'" );
2591     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2592
2593     r = add_component_entry( hdb, "'helium', '', 'TARGETDIR', 0, '', 'helium_file'" );
2594     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2595
2596     r = add_component_entry( hdb, "'lithium', '', 'TARGETDIR', 0, '', 'lithium_file'" );
2597     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2598
2599     r = add_component_entry( hdb, "'beryllium', '', 'TARGETDIR', 0, '', 'beryllium_file'" );
2600     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2601
2602     r = add_component_entry( hdb, "'boron', '', 'TARGETDIR', 0, '', 'boron_file'" );
2603     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2604
2605     r = add_component_entry( hdb, "'carbon', '', 'TARGETDIR', 0, '', 'carbon_file'" );
2606     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2607
2608     r = create_feature_components_table( hdb );
2609     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2610
2611     r = add_feature_components_entry( hdb, "'one', 'hydrogen'" );
2612     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2613
2614     r = add_feature_components_entry( hdb, "'one', 'helium'" );
2615     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2616
2617     r = add_feature_components_entry( hdb, "'one', 'lithium'" );
2618     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2619
2620     r = add_feature_components_entry( hdb, "'one', 'beryllium'" );
2621     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2622
2623     r = add_feature_components_entry( hdb, "'one', 'boron'" );
2624     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2625
2626     r = add_feature_components_entry( hdb, "'one', 'carbon'" );
2627     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2628
2629     r = create_file_table( hdb );
2630     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2631
2632     r = add_file_entry( hdb, "'hydrogen_file', 'hydrogen', 'hydrogen.txt', 0, '', '1033', 8192, 1" );
2633     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2634
2635     r = add_file_entry( hdb, "'helium_file', 'helium', 'helium.txt', 0, '', '1033', 8192, 1" );
2636     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2637
2638     r = add_file_entry( hdb, "'lithium_file', 'lithium', 'lithium.txt', 0, '', '1033', 8192, 1" );
2639     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2640
2641     r = add_file_entry( hdb, "'beryllium_file', 'beryllium', 'beryllium.txt', 0, '', '1033', 16384, 1" );
2642     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2643
2644     r = add_file_entry( hdb, "'boron_file', 'boron', 'boron.txt', 0, '', '1033', 16384, 1" );
2645     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2646
2647     r = add_file_entry( hdb, "'carbon_file', 'carbon', 'carbon.txt', 0, '', '1033', 16384, 1" );
2648     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2649
2650     r = create_remove_file_table( hdb );
2651     ok( r == ERROR_SUCCESS, "cannot create Remove File table: %d\n", r);
2652
2653     hpkg = package_from_db( hdb );
2654     ok( hpkg, "failed to create package\n");
2655
2656     MsiCloseHandle( hdb );
2657
2658     create_test_file( "hydrogen.txt" );
2659     create_test_file( "helium.txt" );
2660     create_test_file( "lithium.txt" );
2661     create_test_file( "beryllium.txt" );
2662     create_test_file( "boron.txt" );
2663     create_test_file( "carbon.txt" );
2664
2665     r = MsiSetProperty( hpkg, "TARGETDIR", CURR_DIR );
2666     ok( r == ERROR_SUCCESS, "set property failed\n");
2667
2668     r = MsiDoAction( hpkg, "CostInitialize");
2669     ok( r == ERROR_SUCCESS, "cost init failed\n");
2670
2671     r = MsiDoAction( hpkg, "FileCost");
2672     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2673
2674     r = MsiDoAction( hpkg, "CostFinalize");
2675     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2676
2677     r = MsiDoAction( hpkg, "InstallValidate");
2678     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2679
2680     r = MsiSetComponentState( hpkg, "hydrogen", INSTALLSTATE_ABSENT );
2681     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2682
2683     r = MsiSetComponentState( hpkg, "helium", INSTALLSTATE_LOCAL );
2684     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2685
2686     r = MsiSetComponentState( hpkg, "lithium", INSTALLSTATE_SOURCE );
2687     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2688
2689     r = MsiSetComponentState( hpkg, "beryllium", INSTALLSTATE_ABSENT );
2690     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2691
2692     r = MsiSetComponentState( hpkg, "boron", INSTALLSTATE_LOCAL );
2693     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2694
2695     r = MsiSetComponentState( hpkg, "carbon", INSTALLSTATE_SOURCE );
2696     ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2697
2698     r = MsiDoAction( hpkg, "RemoveFiles");
2699     ok( r == ERROR_SUCCESS, "remove files failed\n");
2700
2701     ok(DeleteFileA("hydrogen.txt"), "Expected hydrogen.txt to exist\n");
2702     ok(DeleteFileA("lithium.txt"), "Expected lithium.txt to exist\n");    
2703     ok(DeleteFileA("beryllium.txt"), "Expected beryllium.txt to exist\n");
2704     ok(DeleteFileA("carbon.txt"), "Expected carbon.txt to exist\n");
2705     ok(DeleteFileA("helium.txt"), "Expected helium.txt to exist\n");
2706     ok(DeleteFileA("boron.txt"), "Expected boron.txt to exist\n");
2707
2708     MsiCloseHandle( hpkg );
2709     DeleteFileA(msifile);
2710 }
2711
2712 static void test_appsearch(void)
2713 {
2714     MSIHANDLE hpkg;
2715     UINT r;
2716     MSIHANDLE hdb;
2717     CHAR prop[MAX_PATH];
2718     DWORD size = MAX_PATH;
2719
2720     hdb = create_package_db();
2721     ok ( hdb, "failed to create package database\n" );
2722
2723     r = create_appsearch_table( hdb );
2724     ok( r == ERROR_SUCCESS, "cannot create AppSearch table: %d\n", r );
2725
2726     r = add_appsearch_entry( hdb, "'WEBBROWSERPROG', 'NewSignature1'" );
2727     ok( r == ERROR_SUCCESS, "cannot add entry: %d\n", r );
2728
2729     r = create_reglocator_table( hdb );
2730     ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
2731
2732     r = add_reglocator_entry( hdb, "'NewSignature1', 0, 'htmlfile\\shell\\open\\command', '', 1" );
2733     ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
2734
2735     r = create_signature_table( hdb );
2736     ok( r == ERROR_SUCCESS, "cannot create Signature table: %d\n", r );
2737
2738     r = add_signature_entry( hdb, "'NewSignature1', 'FileName', '', '', '', '', '', '', ''" );
2739     ok( r == ERROR_SUCCESS, "cannot create Signature table: %d\n", r );
2740
2741     hpkg = package_from_db( hdb );
2742     ok( hpkg, "failed to create package\n");
2743
2744     MsiCloseHandle( hdb );
2745
2746     r = MsiDoAction( hpkg, "AppSearch" );
2747     ok( r == ERROR_SUCCESS, "AppSearch failed: %d\n", r);
2748
2749     r = MsiGetPropertyA( hpkg, "WEBBROWSERPROG", prop, &size );
2750     ok( r == ERROR_SUCCESS, "get property failed: %d\n", r);
2751     ok( lstrlenA(prop) != 0, "Expected non-zero length\n");
2752
2753     MsiCloseHandle( hpkg );
2754     DeleteFileA(msifile);
2755 }
2756
2757 static void test_featureparents(void)
2758 {
2759     MSIHANDLE hpkg;
2760     UINT r;
2761     MSIHANDLE hdb;
2762     INSTALLSTATE state, action;
2763
2764     hdb = create_package_db();
2765     ok ( hdb, "failed to create package database\n" );
2766
2767     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2768     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2769
2770     r = create_feature_table( hdb );
2771     ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
2772
2773     r = create_component_table( hdb );
2774     ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
2775
2776     r = create_feature_components_table( hdb );
2777     ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2778
2779     r = create_file_table( hdb );
2780     ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2781
2782     /* msidbFeatureAttributesFavorLocal */
2783     r = add_feature_entry( hdb, "'zodiac', '', '', '', 2, 1, '', 0" );
2784     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2785
2786     /* msidbFeatureAttributesFavorSource */
2787     r = add_feature_entry( hdb, "'perseus', '', '', '', 2, 1, '', 1" );
2788     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2789
2790     /* msidbFeatureAttributesFavorLocal */
2791     r = add_feature_entry( hdb, "'orion', '', '', '', 2, 1, '', 0" );
2792     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2793
2794     /* disabled because of install level */
2795     r = add_feature_entry( hdb, "'waters', '', '', '', 15, 101, '', 9" );
2796     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2797
2798     /* child feature of disabled feature */
2799     r = add_feature_entry( hdb, "'bayer', 'waters', '', '', 14, 1, '', 9" );
2800     ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2801
2802     /* component of disabled feature (install level) */
2803     r = add_component_entry( hdb, "'delphinus', '', 'TARGETDIR', 0, '', 'delphinus_file'" );
2804     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2805
2806     /* component of disabled child feature (install level) */
2807     r = add_component_entry( hdb, "'hydrus', '', 'TARGETDIR', 0, '', 'hydrus_file'" );
2808     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2809
2810     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
2811     r = add_component_entry( hdb, "'leo', '', 'TARGETDIR', 0, '', 'leo_file'" );
2812     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2813
2814     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
2815     r = add_component_entry( hdb, "'virgo', '', 'TARGETDIR', 1, '', 'virgo_file'" );
2816     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2817
2818     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
2819     r = add_component_entry( hdb, "'libra', '', 'TARGETDIR', 2, '', 'libra_file'" );
2820     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2821
2822     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
2823     r = add_component_entry( hdb, "'cassiopeia', '', 'TARGETDIR', 0, '', 'cassiopeia_file'" );
2824     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2825
2826     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
2827     r = add_component_entry( hdb, "'cepheus', '', 'TARGETDIR', 1, '', 'cepheus_file'" );
2828     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2829
2830     /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
2831     r = add_component_entry( hdb, "'andromeda', '', 'TARGETDIR', 2, '', 'andromeda_file'" );
2832     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2833
2834     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
2835     r = add_component_entry( hdb, "'canis', '', 'TARGETDIR', 0, '', 'canis_file'" );
2836     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2837
2838     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
2839     r = add_component_entry( hdb, "'monoceros', '', 'TARGETDIR', 1, '', 'monoceros_file'" );
2840     ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2841
2842     /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
2843     r = add_component_entry( hdb, "'lepus', '', 'TARGETDIR', 2, '', 'lepus_file'" );
2844
2845     r = add_feature_components_entry( hdb, "'zodiac', 'leo'" );
2846     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2847
2848     r = add_feature_components_entry( hdb, "'zodiac', 'virgo'" );
2849     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2850
2851     r = add_feature_components_entry( hdb, "'zodiac', 'libra'" );
2852     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2853
2854     r = add_feature_components_entry( hdb, "'perseus', 'cassiopeia'" );
2855     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2856
2857     r = add_feature_components_entry( hdb, "'perseus', 'cepheus'" );
2858     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2859
2860     r = add_feature_components_entry( hdb, "'perseus', 'andromeda'" );
2861     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2862
2863     r = add_feature_components_entry( hdb, "'orion', 'leo'" );
2864     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2865
2866     r = add_feature_components_entry( hdb, "'orion', 'virgo'" );
2867     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2868
2869     r = add_feature_components_entry( hdb, "'orion', 'libra'" );
2870     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2871
2872     r = add_feature_components_entry( hdb, "'orion', 'cassiopeia'" );
2873     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2874
2875     r = add_feature_components_entry( hdb, "'orion', 'cepheus'" );
2876     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2877
2878     r = add_feature_components_entry( hdb, "'orion', 'andromeda'" );
2879     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2880
2881     r = add_feature_components_entry( hdb, "'orion', 'canis'" );
2882     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2883
2884     r = add_feature_components_entry( hdb, "'orion', 'monoceros'" );
2885     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2886
2887     r = add_feature_components_entry( hdb, "'orion', 'lepus'" );
2888     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2889
2890     r = add_feature_components_entry( hdb, "'waters', 'delphinus'" );
2891     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2892
2893     r = add_feature_components_entry( hdb, "'bayer', 'hydrus'" );
2894     ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2895
2896     r = add_file_entry( hdb, "'leo_file', 'leo', 'leo.txt', 100, '', '1033', 8192, 1" );
2897     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2898
2899     r = add_file_entry( hdb, "'virgo_file', 'virgo', 'virgo.txt', 0, '', '1033', 8192, 1" );
2900     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2901
2902     r = add_file_entry( hdb, "'libra_file', 'libra', 'libra.txt', 0, '', '1033', 8192, 1" );
2903     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2904
2905     r = add_file_entry( hdb, "'cassiopeia_file', 'cassiopeia', 'cassiopeia.txt', 0, '', '1033', 8192, 1" );
2906     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2907
2908     r = add_file_entry( hdb, "'cepheus_file', 'cepheus', 'cepheus.txt', 0, '', '1033', 8192, 1" );
2909     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2910
2911     r = add_file_entry( hdb, "'andromeda_file', 'andromeda', 'andromeda.txt', 0, '', '1033', 8192, 1" );
2912     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2913
2914     r = add_file_entry( hdb, "'canis_file', 'canis', 'canis.txt', 0, '', '1033', 8192, 1" );
2915     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2916
2917     r = add_file_entry( hdb, "'monoceros_file', 'monoceros', 'monoceros.txt', 0, '', '1033', 8192, 1" );
2918     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2919
2920     r = add_file_entry( hdb, "'lepus_file', 'lepus', 'lepus.txt', 0, '', '1033', 8192, 1" );
2921     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2922
2923     r = add_file_entry( hdb, "'delphinus_file', 'delphinus', 'delphinus.txt', 0, '', '1033', 8192, 1" );
2924     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2925
2926     r = add_file_entry( hdb, "'hydrus_file', 'hydrus', 'hydrus.txt', 0, '', '1033', 8192, 1" );
2927     ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2928
2929     hpkg = package_from_db( hdb );
2930     ok( hpkg, "failed to create package\n");
2931
2932     MsiCloseHandle( hdb );
2933
2934     r = MsiDoAction( hpkg, "CostInitialize");
2935     ok( r == ERROR_SUCCESS, "cost init failed\n");
2936
2937     r = MsiDoAction( hpkg, "FileCost");
2938     ok( r == ERROR_SUCCESS, "file cost failed\n");
2939
2940     r = MsiDoAction( hpkg, "CostFinalize");
2941     ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2942
2943     state = 0xdeadbee;
2944     action = 0xdeadbee;
2945     r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
2946     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2947     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2948     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2949
2950     state = 0xdeadbee;
2951     action = 0xdeadbee;
2952     r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
2953     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2954     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2955     ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2956
2957     state = 0xdeadbee;
2958     action = 0xdeadbee;
2959     r = MsiGetFeatureState(hpkg, "orion", &state, &action);
2960     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2961     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2962     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2963
2964     state = 0xdeadbee;
2965     action = 0xdeadbee;
2966     r = MsiGetFeatureState(hpkg, "waters", &state, &action);
2967     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2968     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2969     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2970
2971     state = 0xdeadbee;
2972     action = 0xdeadbee;
2973     r = MsiGetFeatureState(hpkg, "bayer", &state, &action);
2974     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2975     ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2976     ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2977
2978     state = 0xdeadbee;
2979     action = 0xdeadbee;
2980     r = MsiGetComponentState(hpkg, "leo", &state, &action);
2981     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2982     ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2983     ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2984
2985     state = 0xdeadbee;
2986     action = 0xdeadbee;
2987     r = MsiGetComponentState(hpkg, "virgo", &state, &action);
2988     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2989     ok( state == INSTALLSTATE_UNKNOWN, "Expected virgo INSTALLSTATE_UNKNOWN, got %d\n", state);
2990     ok( action == INSTALLSTATE_SOURCE, "Expected virgo INSTALLSTATE_SOURCE, got %d\n", action);
2991
2992     state = 0xdeadbee;
2993     action = 0xdeadbee;
2994     r = MsiGetComponentState(hpkg, "libra", &state, &action);
2995     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2996     ok( state == INSTALLSTATE_UNKNOWN, "Expected libra INSTALLSTATE_UNKNOWN, got %d\n", state);
2997     ok( action == INSTALLSTATE_LOCAL, "Expected libra INSTALLSTATE_LOCAL, got %d\n", action);
2998
2999     state = 0xdeadbee;
3000     action = 0xdeadbee;
3001     r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
3002     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3003     ok( state == INSTALLSTATE_UNKNOWN, "Expected cassiopeia INSTALLSTATE_UNKNOWN, got %d\n", state);
3004     ok( action == INSTALLSTATE_LOCAL, "Expected cassiopeia INSTALLSTATE_LOCAL, got %d\n", action);
3005
3006     state = 0xdeadbee;
3007     action = 0xdeadbee;
3008     r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
3009     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3010     ok( state == INSTALLSTATE_UNKNOWN, "Expected cepheus INSTALLSTATE_UNKNOWN, got %d\n", state);
3011     ok( action == INSTALLSTATE_SOURCE, "Expected cepheus INSTALLSTATE_SOURCE, got %d\n", action);
3012
3013     state = 0xdeadbee;
3014     action = 0xdeadbee;
3015     r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
3016     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3017     ok( state == INSTALLSTATE_UNKNOWN, "Expected andromeda INSTALLSTATE_UNKNOWN, got %d\n", state);
3018     ok( action == INSTALLSTATE_LOCAL, "Expected andromeda INSTALLSTATE_LOCAL, got %d\n", action);
3019
3020     state = 0xdeadbee;
3021     action = 0xdeadbee;
3022     r = MsiGetComponentState(hpkg, "canis", &state, &action);
3023     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3024     ok( state == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", state);
3025     ok( action == INSTALLSTATE_LOCAL, "Expected canis INSTALLSTATE_LOCAL, got %d\n", action);
3026
3027     state = 0xdeadbee;
3028     action = 0xdeadbee;
3029     r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
3030     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3031     ok( state == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", state);
3032     ok( action == INSTALLSTATE_SOURCE, "Expected monoceros INSTALLSTATE_SOURCE, got %d\n", action);
3033
3034     state = 0xdeadbee;
3035     action = 0xdeadbee;
3036     r = MsiGetComponentState(hpkg, "lepus", &state, &action);
3037     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3038     ok( state == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", state);
3039     ok( action == INSTALLSTATE_LOCAL, "Expected lepus INSTALLSTATE_LOCAL, got %d\n", action);
3040
3041     state = 0xdeadbee;
3042     action = 0xdeadbee;
3043     r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
3044     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3045     ok( state == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", state);
3046     ok( action == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", action);
3047
3048     state = 0xdeadbee;
3049     action = 0xdeadbee;
3050     r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
3051     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3052     ok( state == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", state);
3053     ok( action == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", action);
3054
3055     r = MsiSetFeatureState(hpkg, "orion", INSTALLSTATE_ABSENT);
3056     ok( r == ERROR_SUCCESS, "failed to set feature state: %d\n", r);
3057
3058     state = 0xdeadbee;
3059     action = 0xdeadbee;
3060     r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
3061     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3062     ok( state == INSTALLSTATE_ABSENT, "Expected zodiac INSTALLSTATE_ABSENT, got %d\n", state);
3063     ok( action == INSTALLSTATE_LOCAL, "Expected zodiac INSTALLSTATE_LOCAL, got %d\n", action);
3064
3065     state = 0xdeadbee;
3066     action = 0xdeadbee;
3067     r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
3068     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3069     ok( state == INSTALLSTATE_ABSENT, "Expected perseus INSTALLSTATE_ABSENT, got %d\n", state);
3070     ok( action == INSTALLSTATE_SOURCE, "Expected perseus INSTALLSTATE_SOURCE, got %d\n", action);
3071
3072     state = 0xdeadbee;
3073     action = 0xdeadbee;
3074     r = MsiGetFeatureState(hpkg, "orion", &state, &action);
3075     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3076     ok( state == INSTALLSTATE_ABSENT, "Expected orion INSTALLSTATE_ABSENT, got %d\n", state);
3077     ok( action == INSTALLSTATE_ABSENT, "Expected orion INSTALLSTATE_ABSENT, got %d\n", action);
3078
3079     state = 0xdeadbee;
3080     action = 0xdeadbee;
3081     r = MsiGetComponentState(hpkg, "leo", &state, &action);
3082     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3083     ok( state == INSTALLSTATE_UNKNOWN, "Expected leo INSTALLSTATE_UNKNOWN, got %d\n", state);
3084     ok( action == INSTALLSTATE_LOCAL, "Expected leo INSTALLSTATE_LOCAL, got %d\n", action);
3085
3086     state = 0xdeadbee;
3087     action = 0xdeadbee;
3088     r = MsiGetComponentState(hpkg, "virgo", &state, &action);
3089     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3090     ok( state == INSTALLSTATE_UNKNOWN, "Expected virgo INSTALLSTATE_UNKNOWN, got %d\n", state);
3091     ok( action == INSTALLSTATE_SOURCE, "Expected virgo INSTALLSTATE_SOURCE, got %d\n", action);
3092
3093     state = 0xdeadbee;
3094     action = 0xdeadbee;
3095     r = MsiGetComponentState(hpkg, "libra", &state, &action);
3096     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3097     ok( state == INSTALLSTATE_UNKNOWN, "Expected libra INSTALLSTATE_UNKNOWN, got %d\n", state);
3098     ok( action == INSTALLSTATE_LOCAL, "Expected libra INSTALLSTATE_LOCAL, got %d\n", action);
3099
3100     state = 0xdeadbee;
3101     action = 0xdeadbee;
3102     r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
3103     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3104     ok( state == INSTALLSTATE_UNKNOWN, "Expected cassiopeia INSTALLSTATE_UNKNOWN, got %d\n", state);
3105     ok( action == INSTALLSTATE_LOCAL, "Expected cassiopeia INSTALLSTATE_LOCAL, got %d\n", action);
3106
3107     state = 0xdeadbee;
3108     action = 0xdeadbee;
3109     r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
3110     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3111     ok( state == INSTALLSTATE_UNKNOWN, "Expected cepheus INSTALLSTATE_UNKNOWN, got %d\n", state);
3112     ok( action == INSTALLSTATE_SOURCE, "Expected cepheus INSTALLSTATE_SOURCE, got %d\n", action);
3113
3114     state = 0xdeadbee;
3115     action = 0xdeadbee;
3116     r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
3117     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3118     ok( state == INSTALLSTATE_UNKNOWN, "Expected andromeda INSTALLSTATE_UNKNOWN, got %d\n", state);
3119     ok( action == INSTALLSTATE_SOURCE, "Expected andromeda INSTALLSTATE_SOURCE, got %d\n", action);
3120
3121     state = 0xdeadbee;
3122     action = 0xdeadbee;
3123     r = MsiGetComponentState(hpkg, "canis", &state, &action);
3124     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3125     ok( state == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", state);
3126     ok( action == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", action);
3127
3128     state = 0xdeadbee;
3129     action = 0xdeadbee;
3130     r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
3131     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3132     ok( state == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", state);
3133     ok( action == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", action);
3134
3135     state = 0xdeadbee;
3136     action = 0xdeadbee;
3137     r = MsiGetComponentState(hpkg, "lepus", &state, &action);
3138     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3139     ok( state == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", state);
3140     ok( action == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", action);
3141
3142     state = 0xdeadbee;
3143     action = 0xdeadbee;
3144     r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
3145     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3146     ok( state == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", state);
3147     ok( action == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", action);
3148
3149     state = 0xdeadbee;
3150     action = 0xdeadbee;
3151     r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
3152     ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
3153     ok( state == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", state);
3154     ok( action == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", action);
3155     
3156     MsiCloseHandle(hpkg);
3157     DeleteFileA(msifile);
3158 }
3159
3160 static void test_installprops(void)
3161 {
3162     MSIHANDLE hpkg, hdb;
3163     CHAR path[MAX_PATH];
3164     CHAR buf[MAX_PATH];
3165     DWORD size, type;
3166     HKEY hkey;
3167     UINT r;
3168
3169     GetCurrentDirectory(MAX_PATH, path);
3170     lstrcat(path, "\\");
3171     lstrcat(path, msifile);
3172
3173     hdb = create_package_db();
3174     ok( hdb, "failed to create database\n");
3175
3176     hpkg = package_from_db(hdb);
3177     ok( hpkg, "failed to create package\n");
3178
3179     MsiCloseHandle(hdb);
3180
3181     size = MAX_PATH;
3182     r = MsiGetProperty(hpkg, "DATABASE", buf, &size);
3183     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3184     ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
3185
3186     RegOpenKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", &hkey);
3187
3188     size = MAX_PATH;
3189     type = REG_SZ;
3190     RegQueryValueEx(hkey, "RegisteredOwner", NULL, &type, (LPBYTE)path, &size);
3191
3192     size = MAX_PATH;
3193     r = MsiGetProperty(hpkg, "USERNAME", buf, &size);
3194     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3195     ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
3196
3197     size = MAX_PATH;
3198     type = REG_SZ;
3199     RegQueryValueEx(hkey, "RegisteredOrganization", NULL, &type, (LPBYTE)path, &size);
3200
3201     size = MAX_PATH;
3202     r = MsiGetProperty(hpkg, "COMPANYNAME", buf, &size);
3203     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3204     ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
3205
3206     size = MAX_PATH;
3207     r = MsiGetProperty(hpkg, "VersionDatabase", buf, &size);
3208     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3209     trace("VersionDatabase = %s\n", buf);
3210
3211     size = MAX_PATH;
3212     r = MsiGetProperty(hpkg, "VersionMsi", buf, &size);
3213     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3214     trace("VersionMsi = %s\n", buf);
3215
3216     size = MAX_PATH;
3217     r = MsiGetProperty(hpkg, "Date", buf, &size);
3218     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3219     trace("Date = %s\n", buf);
3220
3221     size = MAX_PATH;
3222     r = MsiGetProperty(hpkg, "Time", buf, &size);
3223     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3224     trace("Time = %s\n", buf);
3225
3226     size = MAX_PATH;
3227     r = MsiGetProperty(hpkg, "PackageCode", buf, &size);
3228     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3229     trace("PackageCode = %s\n", buf);
3230
3231     CloseHandle(hkey);
3232     MsiCloseHandle(hpkg);
3233     DeleteFile(msifile);
3234 }
3235
3236 static void test_sourcedirprop(void)
3237 {
3238     MSIHANDLE hpkg, hdb;
3239     CHAR source_dir[MAX_PATH];
3240     CHAR path[MAX_PATH];
3241     DWORD size;
3242     UINT r;
3243
3244     hdb = create_package_db();
3245     ok ( hdb, "failed to create package database\n" );
3246
3247     r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
3248     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
3249
3250     hpkg = package_from_db( hdb );
3251     ok( hpkg, "failed to create package\n");
3252
3253     MsiCloseHandle( hdb );
3254
3255     size = MAX_PATH;
3256     r = MsiGetProperty( hpkg, "SourceDir", source_dir, &size );
3257     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3258     ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
3259
3260     size = MAX_PATH;
3261     r = MsiGetProperty( hpkg, "SOURCEDIR", source_dir, &size );
3262     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3263     ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
3264
3265     r = MsiDoAction( hpkg, "CostInitialize");
3266     ok( r == ERROR_SUCCESS, "cost init failed\n");
3267
3268     size = MAX_PATH;
3269     r = MsiGetProperty( hpkg, "SourceDir", source_dir, &size );
3270     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3271     ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
3272
3273     size = MAX_PATH;
3274     r = MsiGetProperty( hpkg, "SOURCEDIR", source_dir, &size );
3275     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3276     ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
3277
3278     r = MsiDoAction( hpkg, "ResolveSource");
3279     ok( r == ERROR_SUCCESS, "file cost failed\n");
3280
3281     GetCurrentDirectory(MAX_PATH, path);
3282     lstrcatA(path, "\\");
3283
3284     size = MAX_PATH;
3285     r = MsiGetProperty( hpkg, "SourceDir", source_dir, &size );
3286     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3287     ok( !lstrcmpA(source_dir, path), "Expected %s, got %s\n", path, source_dir);
3288
3289     size = MAX_PATH;
3290     r = MsiGetProperty( hpkg, "SOURCEDIR", source_dir, &size );
3291     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3292     ok( !lstrcmpA(source_dir, path), "Expected %s, got %s\n", path, source_dir);
3293
3294     size = MAX_PATH;
3295     r = MsiGetProperty( hpkg, "SoUrCeDiR", source_dir, &size );
3296     ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
3297     ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
3298
3299     MsiCloseHandle(hpkg);
3300     DeleteFileA(msifile);
3301 }
3302
3303 static void test_prop_path(void)
3304 {
3305     MSIHANDLE hpkg, hdb;
3306     char buffer[MAX_PATH], cwd[MAX_PATH];
3307     DWORD sz;
3308     UINT r;
3309
3310     GetCurrentDirectory(MAX_PATH, cwd);
3311     strcat(cwd, "\\");
3312
3313     hdb = create_package_db();
3314     ok( hdb, "failed to create database\n");
3315
3316     r = add_directory_entry( hdb, "'TARGETDIR','','SourceDir'" );
3317     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
3318
3319     r = add_directory_entry( hdb, "'foo','TARGETDIR','foosrc:footgt'" );
3320     ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
3321
3322     hpkg = package_from_db(hdb);
3323     ok( hpkg, "failed to create package\n");
3324
3325     r = MsiGetSourcePath(hpkg, "SourceDir", buffer, &sz );
3326     ok( r == ERROR_DIRECTORY, "failed to get source path\n");
3327
3328     r = MsiGetSourcePath(hpkg, "SOURCEDIR", buffer, &sz );
3329     ok( r == ERROR_DIRECTORY, "failed to get source path\n");
3330
3331     r = MsiDoAction( hpkg, "CostInitialize");
3332     ok( r == ERROR_SUCCESS, "cost init failed\n");
3333
3334     sz = sizeof buffer;
3335     buffer[0] = 0;
3336     r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
3337     ok( r == ERROR_SUCCESS, "property not set\n");
3338     ok( !buffer[0], "SourceDir should be empty\n");
3339
3340     sz = sizeof buffer;
3341     buffer[0] = 0;
3342     r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
3343     ok( r == ERROR_SUCCESS, "property not set\n");
3344     ok( !buffer[0], "SourceDir should be empty\n");
3345
3346     sz = sizeof buffer;
3347     buffer[0] = 0;
3348     r = MsiGetSourcePath(hpkg, "SourceDir", buffer, &sz );
3349     ok( r == ERROR_SUCCESS, "failed to get source path\n");
3350     ok( !lstrcmpi(cwd, buffer), "SourceDir (%s) should be current dir (%s)\n", buffer, cwd);
3351
3352     sz = sizeof buffer;
3353     buffer[0] = 0;
3354     r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
3355     ok( r == ERROR_SUCCESS, "property not set\n");
3356     todo_wine {
3357     ok( !lstrcmpi(cwd, buffer), "SourceDir (%s) should be current dir (%s)\n", buffer, cwd);
3358     }
3359
3360     sz = sizeof buffer;
3361     buffer[0] = 0;
3362     r = MsiGetSourcePath(hpkg, "SOURCEDIR", buffer, &sz );
3363     ok( r == ERROR_DIRECTORY, "failed to get source path\n");
3364
3365     sz = sizeof buffer;
3366     buffer[0] = 0;
3367     r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
3368     ok( r == ERROR_SUCCESS, "property not set\n");
3369     todo_wine {
3370     ok( !lstrcmpi(cwd, buffer), "SourceDir (%s) should be current dir (%s)\n", buffer, cwd);
3371     }
3372
3373     r = MsiSetProperty(hpkg, "SourceDir", "goo");
3374     ok( r == ERROR_SUCCESS, "property not set\n");
3375
3376     sz = sizeof buffer;
3377     buffer[0] = 0;
3378     r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
3379     ok( r == ERROR_SUCCESS, "property not set\n");
3380     ok( !lstrcmpi(buffer, "goo"), "SourceDir (%s) should be goo\n", buffer);
3381
3382     sz = sizeof buffer;
3383     buffer[0] = 0;
3384     r = MsiGetSourcePath(hpkg, "SourceDir", buffer, &sz );
3385     ok( r == ERROR_SUCCESS, "failed to get source path\n");
3386     ok( !lstrcmpi(buffer, cwd), "SourceDir (%s) should be goo\n", buffer);
3387
3388     sz = sizeof buffer;
3389     buffer[0] = 0;
3390     r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
3391     ok( r == ERROR_SUCCESS, "property not set\n");
3392     ok( !lstrcmpi(buffer, "goo"), "SourceDir (%s) should be goo\n", buffer);
3393
3394     MsiCloseHandle( hpkg );
3395     DeleteFile(msifile);
3396 }
3397
3398 static void test_launchconditions(void)
3399 {
3400     MSIHANDLE hpkg;
3401     MSIHANDLE hdb;
3402     UINT r;
3403
3404     MsiSetInternalUI(INSTALLUILEVEL_NONE, NULL);
3405
3406     hdb = create_package_db();
3407     ok( hdb, "failed to create package database\n" );
3408
3409     r = create_launchcondition_table( hdb );
3410     ok( r == ERROR_SUCCESS, "cannot create LaunchCondition table: %d\n", r );
3411
3412     r = add_launchcondition_entry( hdb, "'X = \"1\"', 'one'" );
3413     ok( r == ERROR_SUCCESS, "cannot add launch condition: %d\n", r );
3414
3415     /* invalid condition */
3416     r = add_launchcondition_entry( hdb, "'X != \"1\"', 'one'" );
3417     ok( r == ERROR_SUCCESS, "cannot add launch condition: %d\n", r );
3418
3419     hpkg = package_from_db( hdb );
3420     ok( hpkg, "failed to create package\n");
3421
3422     MsiCloseHandle( hdb );
3423
3424     r = MsiSetProperty( hpkg, "X", "1" );
3425     ok( r == ERROR_SUCCESS, "failed to set property\n" );
3426
3427     /* invalid conditions are ignored */
3428     r = MsiDoAction( hpkg, "LaunchConditions" );
3429     ok( r == ERROR_SUCCESS, "cost init failed\n" );
3430
3431     /* verify LaunchConditions still does some verification */
3432     r = MsiSetProperty( hpkg, "X", "2" );
3433     ok( r == ERROR_SUCCESS, "failed to set property\n" );
3434
3435     r = MsiDoAction( hpkg, "LaunchConditions" );
3436     ok( r == ERROR_INSTALL_FAILURE, "Expected ERROR_INSTALL_FAILURE, got %d\n", r );
3437
3438     MsiCloseHandle( hpkg );
3439     DeleteFile( msifile );
3440 }
3441
3442 START_TEST(package)
3443 {
3444     test_createpackage();
3445     test_getsourcepath_bad();
3446     test_getsourcepath();
3447     test_doaction();
3448     test_gettargetpath_bad();
3449     test_settargetpath();
3450     test_props();
3451     test_property_table();
3452     test_condition();
3453     test_msipackage();
3454     test_formatrecord2();
3455     test_states();
3456     test_getproperty();
3457     test_removefiles();
3458     test_appsearch();
3459     test_featureparents();
3460     test_installprops();
3461     test_sourcedirprop();
3462     test_prop_path();
3463     test_launchconditions();
3464 }