2 * tests for Microsoft Installer functionality
4 * Copyright 2005 Mike McCormack for CodeWeavers
5 * Copyright 2005 Aric Stewart for CodeWeavers
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.
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.
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
29 #include "wine/test.h"
31 static const char msifile[] = "winetest.msi";
33 static UINT run_query( MSIHANDLE hdb, const char *query )
38 r = MsiDatabaseOpenView(hdb, query, &hview);
39 if( r != ERROR_SUCCESS )
42 r = MsiViewExecute(hview, 0);
43 if( r == ERROR_SUCCESS )
44 r = MsiViewClose(hview);
45 MsiCloseHandle(hview);
49 static UINT create_component_table( MSIHANDLE hdb )
51 return run_query( hdb,
52 "CREATE TABLE `Component` ( "
53 "`Component` CHAR(72) NOT NULL, "
54 "`ComponentId` CHAR(38), "
55 "`Directory_` CHAR(72) NOT NULL, "
56 "`Attributes` SHORT NOT NULL, "
57 "`Condition` CHAR(255), "
59 "PRIMARY KEY `Component`)" );
62 static UINT create_feature_table( MSIHANDLE hdb )
64 return run_query( hdb,
65 "CREATE TABLE `Feature` ( "
66 "`Feature` CHAR(38) NOT NULL, "
67 "`Feature_Parent` CHAR(38), "
69 "`Description` CHAR(255), "
70 "`Display` SHORT NOT NULL, "
71 "`Level` SHORT NOT NULL, "
72 "`Directory_` CHAR(72), "
73 "`Attributes` SHORT NOT NULL "
74 "PRIMARY KEY `Feature`)" );
77 static UINT create_feature_components_table( MSIHANDLE hdb )
79 return run_query( hdb,
80 "CREATE TABLE `FeatureComponents` ( "
81 "`Feature_` CHAR(38) NOT NULL, "
82 "`Component_` CHAR(72) NOT NULL "
83 "PRIMARY KEY `Feature_`, `Component_` )" );
86 static UINT create_file_table( MSIHANDLE hdb )
88 return run_query( hdb,
89 "CREATE TABLE `File` ("
90 "`File` CHAR(72) NOT NULL, "
91 "`Component_` CHAR(72) NOT NULL, "
92 "`FileName` CHAR(255) NOT NULL, "
93 "`FileSize` LONG NOT NULL, "
94 "`Version` CHAR(72), "
95 "`Language` CHAR(20), "
96 "`Attributes` SHORT, "
97 "`Sequence` SHORT NOT NULL "
98 "PRIMARY KEY `File`)" );
101 static UINT create_remove_file_table( MSIHANDLE hdb )
103 return run_query( hdb,
104 "CREATE TABLE `RemoveFile` ("
105 "`FileKey` CHAR(72) NOT NULL, "
106 "`Component_` CHAR(72) NOT NULL, "
107 "`FileName` CHAR(255) LOCALIZABLE, "
108 "`DirProperty` CHAR(72) NOT NULL, "
109 "`InstallMode` SHORT NOT NULL "
110 "PRIMARY KEY `FileKey`)" );
113 static UINT create_appsearch_table( MSIHANDLE hdb )
115 return run_query( hdb,
116 "CREATE TABLE `AppSearch` ("
117 "`Property` CHAR(72) NOT NULL, "
118 "`Signature_` CHAR(72) NOT NULL "
119 "PRIMARY KEY `Property`, `Signature_`)" );
122 static UINT create_reglocator_table( MSIHANDLE hdb )
124 return run_query( hdb,
125 "CREATE TABLE `RegLocator` ("
126 "`Signature_` CHAR(72) NOT NULL, "
127 "`Root` SHORT NOT NULL, "
128 "`Key` CHAR(255) NOT NULL, "
131 "PRIMARY KEY `Signature_`)" );
134 static UINT create_signature_table( MSIHANDLE hdb )
136 return run_query( hdb,
137 "CREATE TABLE `Signature` ("
138 "`Signature` CHAR(72) NOT NULL, "
139 "`FileName` CHAR(255) NOT NULL, "
140 "`MinVersion` CHAR(20), "
141 "`MaxVersion` CHAR(20), "
146 "`Languages` CHAR(255) "
147 "PRIMARY KEY `Signature`)" );
150 static UINT add_component_entry( MSIHANDLE hdb, const char *values )
152 char insert[] = "INSERT INTO `Component` "
153 "(`Component`, `ComponentId`, `Directory_`, `Attributes`, `Condition`, `KeyPath`) "
158 sz = strlen(values) + sizeof insert;
159 query = HeapAlloc(GetProcessHeap(),0,sz);
160 sprintf(query,insert,values);
161 r = run_query( hdb, query );
162 HeapFree(GetProcessHeap(), 0, query);
166 static UINT add_feature_entry( MSIHANDLE hdb, const char *values )
168 char insert[] = "INSERT INTO `Feature` (`Feature`, `Feature_Parent`, "
169 "`Title`, `Description`, `Display`, `Level`, `Directory_`, `Attributes`) VALUES( %s )";
173 sz = strlen(values) + sizeof insert;
174 query = HeapAlloc(GetProcessHeap(),0,sz);
175 sprintf(query,insert,values);
176 r = run_query( hdb, query );
177 HeapFree(GetProcessHeap(), 0, query);
181 static UINT add_feature_components_entry( MSIHANDLE hdb, const char *values )
183 char insert[] = "INSERT INTO `FeatureComponents` "
184 "(`Feature_`, `Component_`) "
189 sz = strlen(values) + sizeof insert;
190 query = HeapAlloc(GetProcessHeap(),0,sz);
191 sprintf(query,insert,values);
192 r = run_query( hdb, query );
193 HeapFree(GetProcessHeap(), 0, query);
197 static UINT add_file_entry( MSIHANDLE hdb, const char *values )
199 char insert[] = "INSERT INTO `File` "
200 "(`File`, `Component_`, `FileName`, `FileSize`, `Version`, `Language`, `Attributes`, `Sequence`) "
205 sz = strlen(values) + sizeof insert;
206 query = HeapAlloc(GetProcessHeap(),0,sz);
207 sprintf(query,insert,values);
208 r = run_query( hdb, query );
209 HeapFree(GetProcessHeap(), 0, query);
213 static UINT add_appsearch_entry( MSIHANDLE hdb, const char *values )
215 char insert[] = "INSERT INTO `AppSearch` "
216 "(`Property`, `Signature_`) "
221 sz = strlen(values) + sizeof insert;
222 query = HeapAlloc(GetProcessHeap(),0,sz);
223 sprintf(query,insert,values);
224 r = run_query( hdb, query );
225 HeapFree(GetProcessHeap(), 0, query);
229 static UINT add_reglocator_entry( MSIHANDLE hdb, const char *values )
231 char insert[] = "INSERT INTO `RegLocator` "
232 "(`Signature_`, `Root`, `Key`, `Name`, `Type`) "
237 sz = strlen(values) + sizeof insert;
238 query = HeapAlloc(GetProcessHeap(),0,sz);
239 sprintf(query,insert,values);
240 r = run_query( hdb, query );
241 HeapFree(GetProcessHeap(), 0, query);
245 static UINT add_signature_entry( MSIHANDLE hdb, const char *values )
247 char insert[] = "INSERT INTO `Signature` "
248 "(`Signature`, `FileName`, `MinVersion`, `MaxVersion`,"
249 " `MinSize`, `MaxSize`, `MinDate`, `MaxDate`, `Languages`) "
254 sz = strlen(values) + sizeof insert;
255 query = HeapAlloc(GetProcessHeap(),0,sz);
256 sprintf(query,insert,values);
257 r = run_query( hdb, query );
258 HeapFree(GetProcessHeap(), 0, query);
262 static UINT set_summary_info(MSIHANDLE hdb)
267 /* build summmary info */
268 res = MsiGetSummaryInformation(hdb, NULL, 7, &suminfo);
269 ok( res == ERROR_SUCCESS , "Failed to open summaryinfo\n" );
271 res = MsiSummaryInfoSetProperty(suminfo,2, VT_LPSTR, 0,NULL,
272 "Installation Database");
273 ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
275 res = MsiSummaryInfoSetProperty(suminfo,3, VT_LPSTR, 0,NULL,
276 "Installation Database");
277 ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
279 res = MsiSummaryInfoSetProperty(suminfo,4, VT_LPSTR, 0,NULL,
281 ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
283 res = MsiSummaryInfoSetProperty(suminfo,7, VT_LPSTR, 0,NULL,
285 ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
287 res = MsiSummaryInfoSetProperty(suminfo,9, VT_LPSTR, 0,NULL,
288 "{913B8D18-FBB6-4CAC-A239-C74C11E3FA74}");
289 ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
291 res = MsiSummaryInfoSetProperty(suminfo, 14, VT_I4, 100, NULL, NULL);
292 ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
294 res = MsiSummaryInfoSetProperty(suminfo, 15, VT_I4, 0, NULL, NULL);
295 ok( res == ERROR_SUCCESS , "Failed to set summary info\n" );
297 res = MsiSummaryInfoPersist(suminfo);
298 ok( res == ERROR_SUCCESS , "Failed to make summary info persist\n" );
300 res = MsiCloseHandle( suminfo);
301 ok( res == ERROR_SUCCESS , "Failed to close suminfo\n" );
307 static MSIHANDLE create_package_db(void)
314 /* create an empty database */
315 res = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb );
316 ok( res == ERROR_SUCCESS , "Failed to create database\n" );
317 if( res != ERROR_SUCCESS )
320 res = MsiDatabaseCommit( hdb );
321 ok( res == ERROR_SUCCESS , "Failed to commit database\n" );
323 res = set_summary_info(hdb);
325 res = run_query( hdb,
326 "CREATE TABLE `Directory` ( "
327 "`Directory` CHAR(255) NOT NULL, "
328 "`Directory_Parent` CHAR(255), "
329 "`DefaultDir` CHAR(255) NOT NULL "
330 "PRIMARY KEY `Directory`)" );
331 ok( res == ERROR_SUCCESS , "Failed to create directory table\n" );
336 static MSIHANDLE package_from_db(MSIHANDLE hdb)
342 sprintf(szPackage,"#%li",hdb);
343 res = MsiOpenPackage(szPackage,&hPackage);
344 ok( res == ERROR_SUCCESS , "Failed to open package\n" );
346 res = MsiCloseHandle(hdb);
347 ok( res == ERROR_SUCCESS , "Failed to close db handle\n" );
352 static void create_test_file(const CHAR *name)
357 file = CreateFileA(name, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, NULL);
358 ok(file != INVALID_HANDLE_VALUE, "Failure to open file %s\n", name);
359 WriteFile(file, name, strlen(name), &written, NULL);
360 WriteFile(file, "\n", strlen("\n"), &written, NULL);
364 static void test_createpackage(void)
366 MSIHANDLE hPackage = 0;
369 hPackage = package_from_db(create_package_db());
370 ok( hPackage != 0, " Failed to create package\n");
372 res = MsiCloseHandle( hPackage);
373 ok( res == ERROR_SUCCESS , "Failed to close package\n" );
377 static void test_getsourcepath_bad( void )
379 static const char str[] = { 0 };
384 r = MsiGetSourcePath( -1, NULL, NULL, NULL );
385 ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
388 r = MsiGetSourcePath( -1, NULL, buffer, &sz );
389 ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
392 r = MsiGetSourcePath( -1, str, NULL, &sz );
393 ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
396 r = MsiGetSourcePath( -1, str, NULL, NULL );
397 ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
400 r = MsiGetSourcePath( -1, str, buffer, &sz );
401 ok( r == ERROR_INVALID_HANDLE, "return value wrong\n");
404 static UINT add_directory_entry( MSIHANDLE hdb, const char *values )
406 char insert[] = "INSERT INTO `Directory` (`Directory`,`Directory_Parent`,`DefaultDir`) VALUES( %s )";
410 sz = strlen(values) + sizeof insert;
411 query = HeapAlloc(GetProcessHeap(),0,sz);
412 sprintf(query,insert,values);
413 r = run_query( hdb, query );
414 HeapFree(GetProcessHeap(), 0, query);
418 static void test_getsourcepath( void )
420 static const char str[] = { 0 };
426 hpkg = package_from_db(create_package_db());
427 ok( hpkg, "failed to create package\n");
431 r = MsiGetSourcePath( hpkg, str, buffer, &sz );
432 ok( r == ERROR_DIRECTORY, "return value wrong\n");
433 ok( buffer[0] == 'x', "buffer modified\n");
437 r = MsiGetSourcePath( hpkg, str, buffer, &sz );
438 ok( r == ERROR_DIRECTORY, "return value wrong\n");
439 ok( buffer[0] == 'x', "buffer modified\n");
441 MsiCloseHandle( hpkg );
444 /* another test but try create a directory this time */
445 hdb = create_package_db();
446 ok( hdb, "failed to create database\n");
448 r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
449 ok( r == S_OK, "failed\n");
451 hpkg = package_from_db(hdb);
452 ok( hpkg, "failed to create package\n");
454 sz = sizeof buffer -1;
455 strcpy(buffer,"x bad");
456 r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
457 ok( r == ERROR_DIRECTORY, "return value wrong\n");
459 r = MsiDoAction( hpkg, "CostInitialize");
460 ok( r == ERROR_SUCCESS, "cost init failed\n");
461 r = MsiDoAction( hpkg, "CostFinalize");
462 ok( r == ERROR_SUCCESS, "cost finalize failed\n");
464 sz = sizeof buffer -1;
466 r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
467 ok( r == ERROR_SUCCESS, "return value wrong\n");
468 ok( sz == strlen(buffer), "returned length wrong\n");
471 strcpy(buffer,"x bad");
472 r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, &sz );
473 ok( r == ERROR_MORE_DATA, "return value wrong\n");
474 ok( buffer[0] == 'x', "buffer modified\n");
476 r = MsiGetSourcePath( hpkg, "TARGETDIR", NULL, NULL );
477 ok( r == ERROR_SUCCESS, "return value wrong\n");
479 r = MsiGetSourcePath( hpkg, "TARGETDIR ", NULL, NULL );
480 ok( r == ERROR_DIRECTORY, "return value wrong\n");
482 r = MsiGetSourcePath( hpkg, "targetdir", NULL, NULL );
483 ok( r == ERROR_DIRECTORY, "return value wrong\n");
485 r = MsiGetSourcePath( hpkg, "TARGETDIR", buffer, NULL );
486 ok( r == ERROR_INVALID_PARAMETER, "return value wrong\n");
488 r = MsiGetSourcePath( hpkg, "TARGETDIR", NULL, &sz );
489 ok( r == ERROR_SUCCESS, "return value wrong\n");
491 MsiCloseHandle( hpkg );
495 static void test_doaction( void )
500 r = MsiDoAction( -1, NULL );
501 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
503 hpkg = package_from_db(create_package_db());
504 ok( hpkg, "failed to create package\n");
506 r = MsiDoAction(hpkg, NULL);
507 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
509 r = MsiDoAction(0, "boo");
510 ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
512 r = MsiDoAction(hpkg, "boo");
513 ok( r == ERROR_FUNCTION_NOT_CALLED, "wrong return val\n");
515 MsiCloseHandle( hpkg );
519 static void test_gettargetpath_bad(void)
526 hpkg = package_from_db(create_package_db());
527 ok( hpkg, "failed to create package\n");
529 r = MsiGetTargetPath( 0, NULL, NULL, NULL );
530 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
532 r = MsiGetTargetPath( 0, NULL, NULL, &sz );
533 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
535 r = MsiGetTargetPath( 0, "boo", NULL, NULL );
536 ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
538 r = MsiGetTargetPath( 0, "boo", NULL, NULL );
539 ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
541 r = MsiGetTargetPath( hpkg, "boo", NULL, NULL );
542 ok( r == ERROR_DIRECTORY, "wrong return val\n");
544 r = MsiGetTargetPath( hpkg, "boo", buffer, NULL );
545 ok( r == ERROR_DIRECTORY, "wrong return val\n");
547 MsiCloseHandle( hpkg );
551 static void query_file_path(MSIHANDLE hpkg, LPCSTR file, LPSTR buff)
557 rec = MsiCreateRecord( 1 );
558 ok(rec, "MsiCreate record failed\n");
560 r = MsiRecordSetString( rec, 0, file );
561 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
564 r = MsiFormatRecord( hpkg, rec, buff, &size );
565 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r );
567 MsiCloseHandle( rec );
570 static void test_settargetpath(void)
572 char tempdir[MAX_PATH+8], buffer[MAX_PATH], file[MAX_PATH];
578 hdb = create_package_db();
579 ok ( hdb, "failed to create package database\n" );
581 r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'" );
582 ok( r == S_OK, "failed to add directory entry: %d\n" , r );
584 r = create_component_table( hdb );
585 ok( r == S_OK, "cannot create Component table: %d\n", r );
587 r = add_component_entry( hdb, "'RootComp', '{83e2694d-0864-4124-9323-6d37630912a1}', 'TARGETDIR', 8, '', 'RootFile'" );
588 ok( r == S_OK, "cannot add dummy component: %d\n", r );
590 r = add_component_entry( hdb, "'TestComp', '{A3FB59C8-C293-4F7E-B8C5-F0E1D8EEE4E5}', 'TestDir', 0, '', 'TestFile'" );
591 ok( r == S_OK, "cannot add test component: %d\n", r );
593 r = create_feature_table( hdb );
594 ok( r == S_OK, "cannot create Feature table: %d\n", r );
596 r = add_feature_entry( hdb, "'TestFeature', '', '', '', 0, 1, '', 0" );
597 ok( r == ERROR_SUCCESS, "cannot add TestFeature to Feature table: %d\n", r );
599 r = create_feature_components_table( hdb );
600 ok( r == S_OK, "cannot create FeatureComponents table: %d\n", r );
602 r = add_feature_components_entry( hdb, "'TestFeature', 'RootComp'" );
603 ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
605 r = add_feature_components_entry( hdb, "'TestFeature', 'TestComp'" );
606 ok( r == S_OK, "cannot insert component into FeatureComponents table: %d\n", r );
608 add_directory_entry( hdb, "'TestParent', 'TARGETDIR', 'TestParent'" );
609 add_directory_entry( hdb, "'TestDir', 'TestParent', 'TestDir'" );
611 r = create_file_table( hdb );
612 ok( r == S_OK, "cannot create File table: %d\n", r );
614 r = add_file_entry( hdb, "'RootFile', 'RootComp', 'rootfile.txt', 0, '', '1033', 8192, 1" );
615 ok( r == S_OK, "cannot add file to the File table: %d\n", r );
617 r = add_file_entry( hdb, "'TestFile', 'TestComp', 'testfile.txt', 0, '', '1033', 8192, 1" );
618 ok( r == S_OK, "cannot add file to the File table: %d\n", r );
620 hpkg = package_from_db( hdb );
621 ok( hpkg, "failed to create package\n");
623 r = MsiDoAction( hpkg, "CostInitialize");
624 ok( r == ERROR_SUCCESS, "cost init failed\n");
626 r = MsiDoAction( hpkg, "FileCost");
627 ok( r == ERROR_SUCCESS, "file cost failed\n");
629 r = MsiDoAction( hpkg, "CostFinalize");
630 ok( r == ERROR_SUCCESS, "cost finalize failed\n");
632 r = MsiSetTargetPath( 0, NULL, NULL );
633 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
635 r = MsiSetTargetPath( 0, "boo", "C:\\bogusx" );
636 ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
638 r = MsiSetTargetPath( hpkg, "boo", NULL );
639 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
641 r = MsiSetTargetPath( hpkg, "boo", "c:\\bogusx" );
642 ok( r == ERROR_DIRECTORY, "wrong return val\n");
644 sz = sizeof tempdir - 1;
645 r = MsiGetTargetPath( hpkg, "TARGETDIR", tempdir, &sz );
646 sprintf( file, "%srootfile.txt", tempdir );
647 query_file_path( hpkg, "[#RootFile]", buffer );
648 ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
649 ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer );
651 GetTempFileName( tempdir, "_wt", 0, buffer );
652 sprintf( tempdir, "%s\\subdir", buffer );
654 r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
655 ok( r == ERROR_SUCCESS, "MsiSetTargetPath on file returned %d\n", r );
657 r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
658 ok( r == ERROR_SUCCESS, "MsiSetTargetPath on 'subdir' of file returned %d\n", r );
660 DeleteFile( buffer );
662 r = MsiSetTargetPath( hpkg, "TARGETDIR", buffer );
663 ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
665 r = GetFileAttributes( buffer );
666 ok ( r == INVALID_FILE_ATTRIBUTES, "file/directory exists after MsiSetTargetPath. Attributes: %08X\n", r );
668 r = MsiSetTargetPath( hpkg, "TARGETDIR", tempdir );
669 ok( r == ERROR_SUCCESS, "MsiSetTargetPath on subsubdir returned %d\n", r );
671 sz = sizeof buffer - 1;
672 lstrcat( tempdir, "\\" );
673 r = MsiGetTargetPath( hpkg, "TARGETDIR", buffer, &sz );
674 ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
675 ok( !lstrcmp(buffer, tempdir), "Expected %s, got %s\n", tempdir, buffer);
677 sprintf( file, "%srootfile.txt", tempdir );
678 query_file_path( hpkg, "[#RootFile]", buffer );
679 ok( !lstrcmp(buffer, file), "Expected %s, got %s\n", file, buffer);
681 r = MsiSetTargetPath( hpkg, "TestParent", "C:\\one\\two" );
682 ok( r == ERROR_SUCCESS, "MsiSetTargetPath returned %d\n", r );
684 query_file_path( hpkg, "[#TestFile]", buffer );
685 ok( !lstrcmp(buffer, "C:\\one\\two\\TestDir\\testfile.txt"),
686 "Expected C:\\one\\two\\TestDir\\testfile.txt, got %s\n", buffer );
688 sz = sizeof buffer - 1;
689 r = MsiGetTargetPath( hpkg, "TestParent", buffer, &sz );
690 ok( r == ERROR_SUCCESS, "failed to get target path: %d\n", r);
691 ok( !lstrcmp(buffer, "C:\\one\\two\\"), "Expected C:\\one\\two\\, got %s\n", buffer);
693 MsiCloseHandle( hpkg );
696 static void test_condition(void)
701 hpkg = package_from_db(create_package_db());
702 ok( hpkg, "failed to create package\n");
704 r = MsiEvaluateCondition(0, NULL);
705 ok( r == MSICONDITION_ERROR, "wrong return val\n");
707 r = MsiEvaluateCondition(hpkg, NULL);
708 ok( r == MSICONDITION_NONE, "wrong return val\n");
710 r = MsiEvaluateCondition(hpkg, "");
711 ok( r == MSICONDITION_NONE, "wrong return val\n");
713 r = MsiEvaluateCondition(hpkg, "1");
714 ok( r == MSICONDITION_TRUE, "wrong return val\n");
716 r = MsiEvaluateCondition(hpkg, "0");
717 ok( r == MSICONDITION_FALSE, "wrong return val\n");
719 r = MsiEvaluateCondition(hpkg, "0 = 0");
720 ok( r == MSICONDITION_TRUE, "wrong return val\n");
722 r = MsiEvaluateCondition(hpkg, "0 <> 0");
723 ok( r == MSICONDITION_FALSE, "wrong return val\n");
725 r = MsiEvaluateCondition(hpkg, "0 = 1");
726 ok( r == MSICONDITION_FALSE, "wrong return val\n");
728 r = MsiEvaluateCondition(hpkg, "0 > 1");
729 ok( r == MSICONDITION_FALSE, "wrong return val\n");
731 r = MsiEvaluateCondition(hpkg, "0 ~> 1");
732 ok( r == MSICONDITION_FALSE, "wrong return val\n");
734 r = MsiEvaluateCondition(hpkg, "1 > 1");
735 ok( r == MSICONDITION_FALSE, "wrong return val\n");
737 r = MsiEvaluateCondition(hpkg, "1 ~> 1");
738 ok( r == MSICONDITION_FALSE, "wrong return val\n");
740 r = MsiEvaluateCondition(hpkg, "0 >= 1");
741 ok( r == MSICONDITION_FALSE, "wrong return val\n");
743 r = MsiEvaluateCondition(hpkg, "0 ~>= 1");
744 ok( r == MSICONDITION_FALSE, "wrong return val\n");
746 r = MsiEvaluateCondition(hpkg, "1 >= 1");
747 ok( r == MSICONDITION_TRUE, "wrong return val\n");
749 r = MsiEvaluateCondition(hpkg, "1 ~>= 1");
750 ok( r == MSICONDITION_TRUE, "wrong return val\n");
752 r = MsiEvaluateCondition(hpkg, "0 < 1");
753 ok( r == MSICONDITION_TRUE, "wrong return val\n");
755 r = MsiEvaluateCondition(hpkg, "0 ~< 1");
756 ok( r == MSICONDITION_TRUE, "wrong return val\n");
758 r = MsiEvaluateCondition(hpkg, "1 < 1");
759 ok( r == MSICONDITION_FALSE, "wrong return val\n");
761 r = MsiEvaluateCondition(hpkg, "1 ~< 1");
762 ok( r == MSICONDITION_FALSE, "wrong return val\n");
764 r = MsiEvaluateCondition(hpkg, "0 <= 1");
765 ok( r == MSICONDITION_TRUE, "wrong return val\n");
767 r = MsiEvaluateCondition(hpkg, "0 ~<= 1");
768 ok( r == MSICONDITION_TRUE, "wrong return val\n");
770 r = MsiEvaluateCondition(hpkg, "1 <= 1");
771 ok( r == MSICONDITION_TRUE, "wrong return val\n");
773 r = MsiEvaluateCondition(hpkg, "1 ~<= 1");
774 ok( r == MSICONDITION_TRUE, "wrong return val\n");
776 r = MsiEvaluateCondition(hpkg, "0 >=");
777 ok( r == MSICONDITION_ERROR, "wrong return val\n");
779 r = MsiEvaluateCondition(hpkg, " ");
780 ok( r == MSICONDITION_NONE, "wrong return val\n");
782 r = MsiEvaluateCondition(hpkg, "LicView <> \"1\"");
783 ok( r == MSICONDITION_TRUE, "wrong return val\n");
785 r = MsiEvaluateCondition(hpkg, "LicView <> \"0\"");
786 ok( r == MSICONDITION_TRUE, "wrong return val\n");
788 r = MsiEvaluateCondition(hpkg, "LicView <> LicView");
789 ok( r == MSICONDITION_FALSE, "wrong return val\n");
791 r = MsiEvaluateCondition(hpkg, "not 0");
792 ok( r == MSICONDITION_TRUE, "wrong return val\n");
794 r = MsiEvaluateCondition(hpkg, "not LicView");
795 ok( r == MSICONDITION_TRUE, "wrong return val\n");
797 r = MsiEvaluateCondition(hpkg, "not \"A\"");
798 ok( r == MSICONDITION_FALSE, "wrong return val\n");
800 r = MsiEvaluateCondition(hpkg, "~not \"A\"");
801 ok( r == MSICONDITION_ERROR, "wrong return val\n");
803 r = MsiEvaluateCondition(hpkg, "\"0\"");
804 ok( r == MSICONDITION_TRUE, "wrong return val\n");
806 r = MsiEvaluateCondition(hpkg, "1 and 2");
807 ok( r == MSICONDITION_TRUE, "wrong return val\n");
809 r = MsiEvaluateCondition(hpkg, "not 0 and 3");
810 ok( r == MSICONDITION_TRUE, "wrong return val\n");
812 r = MsiEvaluateCondition(hpkg, "not 0 and 0");
813 ok( r == MSICONDITION_FALSE, "wrong return val\n");
815 r = MsiEvaluateCondition(hpkg, "not 0 or 1");
816 ok( r == MSICONDITION_TRUE, "wrong return val\n");
818 r = MsiEvaluateCondition(hpkg, "(0)");
819 ok( r == MSICONDITION_FALSE, "wrong return val\n");
821 r = MsiEvaluateCondition(hpkg, "(((((1))))))");
822 ok( r == MSICONDITION_ERROR, "wrong return val\n");
824 r = MsiEvaluateCondition(hpkg, "(((((1)))))");
825 ok( r == MSICONDITION_TRUE, "wrong return val\n");
827 r = MsiEvaluateCondition(hpkg, " \"A\" < \"B\" ");
828 ok( r == MSICONDITION_TRUE, "wrong return val\n");
830 r = MsiEvaluateCondition(hpkg, " \"A\" > \"B\" ");
831 ok( r == MSICONDITION_FALSE, "wrong return val\n");
833 r = MsiEvaluateCondition(hpkg, " \"1\" > \"12\" ");
834 ok( r == MSICONDITION_FALSE, "wrong return val\n");
836 r = MsiEvaluateCondition(hpkg, " \"100\" < \"21\" ");
837 ok( r == MSICONDITION_TRUE, "wrong return val\n");
839 r = MsiEvaluateCondition(hpkg, "0 < > 0");
840 ok( r == MSICONDITION_ERROR, "wrong return val\n");
842 r = MsiEvaluateCondition(hpkg, "(1<<1) == 2");
843 ok( r == MSICONDITION_ERROR, "wrong return val\n");
845 r = MsiEvaluateCondition(hpkg, " \"A\" = \"a\" ");
846 ok( r == MSICONDITION_FALSE, "wrong return val\n");
848 r = MsiEvaluateCondition(hpkg, " \"A\" ~ = \"a\" ");
849 ok( r == MSICONDITION_ERROR, "wrong return val\n");
851 r = MsiEvaluateCondition(hpkg, " \"A\" ~= \"a\" ");
852 ok( r == MSICONDITION_TRUE, "wrong return val\n");
854 r = MsiEvaluateCondition(hpkg, " \"A\" ~= 1 ");
855 ok( r == MSICONDITION_FALSE, "wrong return val\n");
857 r = MsiEvaluateCondition(hpkg, " \"A\" = 1 ");
858 ok( r == MSICONDITION_FALSE, "wrong return val\n");
860 r = MsiEvaluateCondition(hpkg, " 1 ~= 1 ");
861 ok( r == MSICONDITION_TRUE, "wrong return val\n");
863 r = MsiEvaluateCondition(hpkg, " 1 ~= \"1\" ");
864 ok( r == MSICONDITION_FALSE, "wrong return val\n");
866 r = MsiEvaluateCondition(hpkg, " 1 = \"1\" ");
867 ok( r == MSICONDITION_FALSE, "wrong return val\n");
869 r = MsiEvaluateCondition(hpkg, " 0 = \"1\" ");
870 ok( r == MSICONDITION_FALSE, "wrong return val\n");
872 r = MsiEvaluateCondition(hpkg, " 0 < \"100\" ");
873 ok( r == MSICONDITION_FALSE, "wrong return val\n");
875 r = MsiEvaluateCondition(hpkg, " 100 > \"0\" ");
876 ok( r == MSICONDITION_FALSE, "wrong return val\n");
878 r = MsiEvaluateCondition(hpkg, "1 XOR 1");
879 ok( r == MSICONDITION_FALSE, "wrong return val\n");
881 r = MsiEvaluateCondition(hpkg, "1 IMP 1");
882 ok( r == MSICONDITION_TRUE, "wrong return val\n");
884 r = MsiEvaluateCondition(hpkg, "1 IMP 0");
885 ok( r == MSICONDITION_FALSE, "wrong return val\n");
887 r = MsiEvaluateCondition(hpkg, "0 IMP 0");
888 ok( r == MSICONDITION_TRUE, "wrong return val\n");
890 r = MsiEvaluateCondition(hpkg, "0 EQV 0");
891 ok( r == MSICONDITION_TRUE, "wrong return val\n");
893 r = MsiEvaluateCondition(hpkg, "0 EQV 1");
894 ok( r == MSICONDITION_FALSE, "wrong return val\n");
896 r = MsiEvaluateCondition(hpkg, "1 IMP 1 OR 0");
897 ok( r == MSICONDITION_TRUE, "wrong return val\n");
899 r = MsiEvaluateCondition(hpkg, "1 IMPL 1");
900 ok( r == MSICONDITION_ERROR, "wrong return val\n");
902 r = MsiEvaluateCondition(hpkg, "\"ASFD\" >< \"S\" ");
903 ok( r == MSICONDITION_TRUE, "wrong return val\n");
905 r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"s\" ");
906 ok( r == MSICONDITION_TRUE, "wrong return val\n");
908 r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"\" ");
909 ok( r == MSICONDITION_TRUE, "wrong return val\n");
911 r = MsiEvaluateCondition(hpkg, "\"ASFD\" ~>< \"sss\" ");
912 ok( r == MSICONDITION_FALSE, "wrong return val\n");
914 MsiSetProperty(hpkg, "mm", "5" );
916 r = MsiEvaluateCondition(hpkg, "mm = 5");
917 ok( r == MSICONDITION_TRUE, "wrong return val\n");
919 r = MsiEvaluateCondition(hpkg, "mm < 6");
920 ok( r == MSICONDITION_TRUE, "wrong return val\n");
922 r = MsiEvaluateCondition(hpkg, "mm <= 5");
923 ok( r == MSICONDITION_TRUE, "wrong return val\n");
925 r = MsiEvaluateCondition(hpkg, "mm > 4");
926 ok( r == MSICONDITION_TRUE, "wrong return val\n");
928 r = MsiEvaluateCondition(hpkg, "mm < 12");
929 ok( r == MSICONDITION_TRUE, "wrong return val\n");
931 r = MsiEvaluateCondition(hpkg, "mm = \"5\"");
932 ok( r == MSICONDITION_TRUE, "wrong return val\n");
934 r = MsiEvaluateCondition(hpkg, "0 = \"\"");
935 ok( r == MSICONDITION_FALSE, "wrong return val\n");
937 r = MsiEvaluateCondition(hpkg, "0 AND \"\"");
938 ok( r == MSICONDITION_FALSE, "wrong return val\n");
940 r = MsiEvaluateCondition(hpkg, "1 AND \"\"");
941 ok( r == MSICONDITION_FALSE, "wrong return val\n");
943 r = MsiEvaluateCondition(hpkg, "1 AND \"1\"");
944 ok( r == MSICONDITION_TRUE, "wrong return val\n");
946 r = MsiEvaluateCondition(hpkg, "3 >< 1");
947 ok( r == MSICONDITION_TRUE, "wrong return val\n");
949 r = MsiEvaluateCondition(hpkg, "3 >< 4");
950 ok( r == MSICONDITION_FALSE, "wrong return val\n");
952 r = MsiEvaluateCondition(hpkg, "NOT 0 AND 0");
953 ok( r == MSICONDITION_FALSE, "wrong return val\n");
955 r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1");
956 ok( r == MSICONDITION_TRUE, "wrong return val\n");
958 r = MsiEvaluateCondition(hpkg, "NOT 1 OR 0");
959 ok( r == MSICONDITION_FALSE, "wrong return val\n");
961 r = MsiEvaluateCondition(hpkg, "0 AND 1 OR 1");
962 ok( r == MSICONDITION_TRUE, "wrong return val\n");
964 r = MsiEvaluateCondition(hpkg, "0 AND 0 OR 1");
965 ok( r == MSICONDITION_TRUE, "wrong return val\n");
967 r = MsiEvaluateCondition(hpkg, "NOT 0 AND 1 OR 0");
968 ok( r == MSICONDITION_TRUE, "wrong return val\n");
970 r = MsiEvaluateCondition(hpkg, "_1 = _1");
971 ok( r == MSICONDITION_TRUE, "wrong return val\n");
973 r = MsiEvaluateCondition(hpkg, "( 1 AND 1 ) = 2");
974 ok( r == MSICONDITION_ERROR, "wrong return val\n");
976 r = MsiEvaluateCondition(hpkg, "NOT ( 1 AND 1 )");
977 ok( r == MSICONDITION_FALSE, "wrong return val\n");
979 r = MsiEvaluateCondition(hpkg, "NOT A AND (BBBBBBBBBB=2 OR CCC=1) AND Ddddddddd");
980 ok( r == MSICONDITION_FALSE, "wrong return val\n");
982 r = MsiEvaluateCondition(hpkg, "Installed<>\"\"");
983 ok( r == MSICONDITION_FALSE, "wrong return val\n");
985 r = MsiEvaluateCondition(hpkg, "NOT 1 AND 0");
986 ok( r == MSICONDITION_FALSE, "wrong return val\n");
988 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
989 ok( r == MSICONDITION_FALSE, "wrong return val\n");
991 r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
992 ok( r == MSICONDITION_TRUE, "wrong return val\n");
994 r = MsiEvaluateCondition(hpkg, "bandalmael<0");
995 ok( r == MSICONDITION_FALSE, "wrong return val\n");
997 r = MsiEvaluateCondition(hpkg, "bandalmael>0");
998 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1000 r = MsiEvaluateCondition(hpkg, "bandalmael>=0");
1001 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1003 r = MsiEvaluateCondition(hpkg, "bandalmael<=0");
1004 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1006 r = MsiEvaluateCondition(hpkg, "bandalmael~<>0");
1007 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1009 MsiSetProperty(hpkg, "bandalmael", "0" );
1010 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1011 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1013 MsiSetProperty(hpkg, "bandalmael", "" );
1014 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1015 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1017 MsiSetProperty(hpkg, "bandalmael", "asdf" );
1018 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1019 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1021 MsiSetProperty(hpkg, "bandalmael", "0asdf" );
1022 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1023 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1025 MsiSetProperty(hpkg, "bandalmael", "0 " );
1026 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1027 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1029 MsiSetProperty(hpkg, "bandalmael", "-0" );
1030 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1031 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1033 MsiSetProperty(hpkg, "bandalmael", "0000000000000" );
1034 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1035 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1037 MsiSetProperty(hpkg, "bandalmael", "--0" );
1038 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1039 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1041 MsiSetProperty(hpkg, "bandalmael", "0x00" );
1042 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1043 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1045 MsiSetProperty(hpkg, "bandalmael", "-" );
1046 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1047 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1049 MsiSetProperty(hpkg, "bandalmael", "+0" );
1050 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1051 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1053 MsiSetProperty(hpkg, "bandalmael", "0.0" );
1054 r = MsiEvaluateCondition(hpkg, "bandalmael=0");
1055 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1056 r = MsiEvaluateCondition(hpkg, "bandalmael<>0");
1057 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1059 MsiSetProperty(hpkg, "one", "hi");
1060 MsiSetProperty(hpkg, "two", "hithere");
1061 r = MsiEvaluateCondition(hpkg, "one >< two");
1062 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1064 MsiSetProperty(hpkg, "one", "hithere");
1065 MsiSetProperty(hpkg, "two", "hi");
1066 r = MsiEvaluateCondition(hpkg, "one >< two");
1067 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1069 MsiSetProperty(hpkg, "one", "hello");
1070 MsiSetProperty(hpkg, "two", "hi");
1071 r = MsiEvaluateCondition(hpkg, "one >< two");
1072 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1074 MsiSetProperty(hpkg, "one", "hellohithere");
1075 MsiSetProperty(hpkg, "two", "hi");
1076 r = MsiEvaluateCondition(hpkg, "one >< two");
1077 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1079 MsiSetProperty(hpkg, "one", "");
1080 MsiSetProperty(hpkg, "two", "hi");
1081 r = MsiEvaluateCondition(hpkg, "one >< two");
1082 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1084 MsiSetProperty(hpkg, "one", "hi");
1085 MsiSetProperty(hpkg, "two", "");
1086 r = MsiEvaluateCondition(hpkg, "one >< two");
1087 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1089 MsiSetProperty(hpkg, "one", "");
1090 MsiSetProperty(hpkg, "two", "");
1091 r = MsiEvaluateCondition(hpkg, "one >< two");
1092 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1094 MsiSetProperty(hpkg, "one", "1234");
1095 MsiSetProperty(hpkg, "two", "1");
1096 r = MsiEvaluateCondition(hpkg, "one >< two");
1097 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1099 MsiSetProperty(hpkg, "one", "one 1234");
1100 MsiSetProperty(hpkg, "two", "1");
1101 r = MsiEvaluateCondition(hpkg, "one >< two");
1102 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1104 MsiSetProperty(hpkg, "one", "hithere");
1105 MsiSetProperty(hpkg, "two", "hi");
1106 r = MsiEvaluateCondition(hpkg, "one << two");
1107 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1109 MsiSetProperty(hpkg, "one", "hi");
1110 MsiSetProperty(hpkg, "two", "hithere");
1111 r = MsiEvaluateCondition(hpkg, "one << two");
1112 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1114 MsiSetProperty(hpkg, "one", "hi");
1115 MsiSetProperty(hpkg, "two", "hi");
1116 r = MsiEvaluateCondition(hpkg, "one << two");
1117 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1119 MsiSetProperty(hpkg, "one", "abcdhithere");
1120 MsiSetProperty(hpkg, "two", "hi");
1121 r = MsiEvaluateCondition(hpkg, "one << two");
1122 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1124 MsiSetProperty(hpkg, "one", "");
1125 MsiSetProperty(hpkg, "two", "hi");
1126 r = MsiEvaluateCondition(hpkg, "one << two");
1127 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1129 MsiSetProperty(hpkg, "one", "hithere");
1130 MsiSetProperty(hpkg, "two", "");
1131 r = MsiEvaluateCondition(hpkg, "one << two");
1132 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1134 MsiSetProperty(hpkg, "one", "");
1135 MsiSetProperty(hpkg, "two", "");
1136 r = MsiEvaluateCondition(hpkg, "one << two");
1137 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1139 MsiSetProperty(hpkg, "one", "1234");
1140 MsiSetProperty(hpkg, "two", "1");
1141 r = MsiEvaluateCondition(hpkg, "one << two");
1142 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1144 MsiSetProperty(hpkg, "one", "1234 one");
1145 MsiSetProperty(hpkg, "two", "1");
1146 r = MsiEvaluateCondition(hpkg, "one << two");
1147 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1149 MsiSetProperty(hpkg, "one", "hithere");
1150 MsiSetProperty(hpkg, "two", "there");
1151 r = MsiEvaluateCondition(hpkg, "one >> two");
1152 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1154 MsiSetProperty(hpkg, "one", "hithere");
1155 MsiSetProperty(hpkg, "two", "hi");
1156 r = MsiEvaluateCondition(hpkg, "one >> two");
1157 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1159 MsiSetProperty(hpkg, "one", "there");
1160 MsiSetProperty(hpkg, "two", "hithere");
1161 r = MsiEvaluateCondition(hpkg, "one >> two");
1162 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1164 MsiSetProperty(hpkg, "one", "there");
1165 MsiSetProperty(hpkg, "two", "there");
1166 r = MsiEvaluateCondition(hpkg, "one >> two");
1167 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1169 MsiSetProperty(hpkg, "one", "abcdhithere");
1170 MsiSetProperty(hpkg, "two", "hi");
1171 r = MsiEvaluateCondition(hpkg, "one >> two");
1172 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1174 MsiSetProperty(hpkg, "one", "");
1175 MsiSetProperty(hpkg, "two", "there");
1176 r = MsiEvaluateCondition(hpkg, "one >> two");
1177 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1179 MsiSetProperty(hpkg, "one", "there");
1180 MsiSetProperty(hpkg, "two", "");
1181 r = MsiEvaluateCondition(hpkg, "one >> two");
1182 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1184 MsiSetProperty(hpkg, "one", "");
1185 MsiSetProperty(hpkg, "two", "");
1186 r = MsiEvaluateCondition(hpkg, "one >> two");
1187 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1189 MsiSetProperty(hpkg, "one", "1234");
1190 MsiSetProperty(hpkg, "two", "4");
1191 r = MsiEvaluateCondition(hpkg, "one >> two");
1192 ok( r == MSICONDITION_FALSE, "wrong return val\n");
1194 MsiSetProperty(hpkg, "one", "one 1234");
1195 MsiSetProperty(hpkg, "two", "4");
1196 r = MsiEvaluateCondition(hpkg, "one >> two");
1197 ok( r == MSICONDITION_TRUE, "wrong return val\n");
1199 MsiCloseHandle( hpkg );
1200 DeleteFile(msifile);
1203 static BOOL check_prop_empty( MSIHANDLE hpkg, const char * prop)
1211 r = MsiGetProperty( hpkg, prop, buffer, &sz );
1212 return r == ERROR_SUCCESS && buffer[0] == 0 && sz == 0;
1215 static void test_props(void)
1222 hpkg = package_from_db(create_package_db());
1223 ok( hpkg, "failed to create package\n");
1225 /* test invalid values */
1226 r = MsiGetProperty( 0, NULL, NULL, NULL );
1227 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1229 r = MsiGetProperty( hpkg, NULL, NULL, NULL );
1230 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1232 r = MsiGetProperty( hpkg, "boo", NULL, NULL );
1233 ok( r == ERROR_SUCCESS, "wrong return val\n");
1235 r = MsiGetProperty( hpkg, "boo", buffer, NULL );
1236 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1238 /* test retrieving an empty/nonexistent property */
1240 r = MsiGetProperty( hpkg, "boo", NULL, &sz );
1241 ok( r == ERROR_SUCCESS, "wrong return val\n");
1242 ok( sz == 0, "wrong size returned\n");
1244 check_prop_empty( hpkg, "boo");
1247 r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1248 ok( r == ERROR_MORE_DATA, "wrong return val\n");
1249 ok( !strcmp(buffer,"x"), "buffer was changed\n");
1250 ok( sz == 0, "wrong size returned\n");
1254 r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1255 ok( r == ERROR_SUCCESS, "wrong return val\n");
1256 ok( buffer[0] == 0, "buffer was not changed\n");
1257 ok( sz == 0, "wrong size returned\n");
1259 /* set the property to something */
1260 r = MsiSetProperty( 0, NULL, NULL );
1261 ok( r == ERROR_INVALID_HANDLE, "wrong return val\n");
1263 r = MsiSetProperty( hpkg, NULL, NULL );
1264 ok( r == ERROR_INVALID_PARAMETER, "wrong return val\n");
1266 r = MsiSetProperty( hpkg, "", NULL );
1267 ok( r == ERROR_SUCCESS, "wrong return val\n");
1269 /* try set and get some illegal property identifiers */
1270 r = MsiSetProperty( hpkg, "", "asdf" );
1271 ok( r == ERROR_FUNCTION_FAILED, "wrong return val\n");
1273 r = MsiSetProperty( hpkg, "=", "asdf" );
1274 ok( r == ERROR_SUCCESS, "wrong return val\n");
1276 r = MsiSetProperty( hpkg, " ", "asdf" );
1277 ok( r == ERROR_SUCCESS, "wrong return val\n");
1279 r = MsiSetProperty( hpkg, "'", "asdf" );
1280 ok( r == ERROR_SUCCESS, "wrong return val\n");
1284 r = MsiGetProperty( hpkg, "'", buffer, &sz );
1285 ok( r == ERROR_SUCCESS, "wrong return val\n");
1286 ok( !strcmp(buffer,"asdf"), "buffer was not changed\n");
1288 /* set empty values */
1289 r = MsiSetProperty( hpkg, "boo", NULL );
1290 ok( r == ERROR_SUCCESS, "wrong return val\n");
1291 ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
1293 r = MsiSetProperty( hpkg, "boo", "" );
1294 ok( r == ERROR_SUCCESS, "wrong return val\n");
1295 ok( check_prop_empty( hpkg, "boo"), "prop wasn't empty\n");
1297 /* set a non-empty value */
1298 r = MsiSetProperty( hpkg, "boo", "xyz" );
1299 ok( r == ERROR_SUCCESS, "wrong return val\n");
1303 r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1304 ok( r == ERROR_MORE_DATA, "wrong return val\n");
1305 ok( buffer[0] == 0, "buffer was not changed\n");
1306 ok( sz == 3, "wrong size returned\n");
1310 r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1311 ok( r == ERROR_SUCCESS, "wrong return val\n");
1312 ok( !strcmp(buffer,"xyz"), "buffer was not changed\n");
1313 ok( sz == 3, "wrong size returned\n");
1317 r = MsiGetProperty( hpkg, "boo", buffer, &sz );
1318 ok( r == ERROR_MORE_DATA, "wrong return val\n");
1319 ok( !strcmp(buffer,"xy"), "buffer was not changed\n");
1320 ok( sz == 3, "wrong size returned\n");
1322 r = MsiSetProperty(hpkg, "SourceDir", "foo");
1323 ok( r == ERROR_SUCCESS, "wrong return val\n");
1326 r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
1327 ok( r == ERROR_SUCCESS, "wrong return val\n");
1328 ok( !strcmp(buffer,""), "buffer wrong\n");
1329 ok( sz == 0, "wrong size returned\n");
1332 r = MsiGetProperty(hpkg, "SOMERANDOMNAME", buffer, &sz);
1333 ok( r == ERROR_SUCCESS, "wrong return val\n");
1334 ok( !strcmp(buffer,""), "buffer wrong\n");
1335 ok( sz == 0, "wrong size returned\n");
1338 r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
1339 ok( r == ERROR_SUCCESS, "wrong return val\n");
1340 ok( !strcmp(buffer,"foo"), "buffer wrong\n");
1341 ok( sz == 3, "wrong size returned\n");
1343 MsiCloseHandle( hpkg );
1344 DeleteFile(msifile);
1347 static void test_properties_table(void)
1351 MSIHANDLE hpkg, hdb;
1355 hdb = create_package_db();
1356 ok( hdb, "failed to create package\n");
1358 hpkg = package_from_db(hdb);
1359 ok( hpkg, "failed to create package\n");
1361 query = "CREATE TABLE `_Properties` ( "
1362 "`foo` INT NOT NULL, `bar` INT LOCALIZABLE PRIMARY KEY `foo`)";
1363 r = run_query(hdb, query);
1364 ok(r == ERROR_INVALID_HANDLE, "failed to create table\n");
1366 MsiCloseHandle( hpkg );
1367 DeleteFile(msifile);
1369 hdb = create_package_db();
1370 ok( hdb, "failed to create package\n");
1372 query = "CREATE TABLE `_Properties` ( "
1373 "`foo` INT NOT NULL, `bar` INT LOCALIZABLE PRIMARY KEY `foo`)";
1374 r = run_query(hdb, query);
1375 ok(r == ERROR_SUCCESS, "failed to create table\n");
1377 query = "ALTER `_Properties` ADD `foo` INTEGER";
1378 r = run_query(hdb, query);
1379 ok(r == ERROR_BAD_QUERY_SYNTAX, "failed to add column\n");
1381 query = "ALTER TABLE `_Properties` ADD `foo` INTEGER";
1382 r = run_query(hdb, query);
1383 ok(r == ERROR_BAD_QUERY_SYNTAX, "failed to add column\n");
1385 query = "ALTER TABLE `_Properties` ADD `extra` INTEGER";
1386 r = run_query(hdb, query);
1387 todo_wine ok(r == ERROR_SUCCESS, "failed to add column\n");
1389 hpkg = package_from_db(hdb);
1390 ok( hpkg, "failed to create package\n");
1392 r = MsiSetProperty( hpkg, "foo", "bar");
1393 ok(r == ERROR_SUCCESS, "failed to create table\n");
1396 r = MsiGetProperty( hpkg, "foo", buffer, &sz);
1397 ok(r == ERROR_SUCCESS, "failed to create table\n");
1399 MsiCloseHandle( hpkg );
1400 DeleteFile(msifile);
1403 static UINT try_query_param( MSIHANDLE hdb, LPCSTR szQuery, MSIHANDLE hrec )
1408 res = MsiDatabaseOpenView( hdb, szQuery, &htab );
1409 if( res == ERROR_SUCCESS )
1413 r = MsiViewExecute( htab, hrec );
1414 if( r != ERROR_SUCCESS )
1417 fprintf(stderr,"MsiViewExecute failed %08x\n", res);
1420 r = MsiViewClose( htab );
1421 if( r != ERROR_SUCCESS )
1424 r = MsiCloseHandle( htab );
1425 if( r != ERROR_SUCCESS )
1431 static UINT try_query( MSIHANDLE hdb, LPCSTR szQuery )
1433 return try_query_param( hdb, szQuery, 0 );
1436 static void test_msipackage(void)
1438 MSIHANDLE hdb = 0, hpack = 100;
1443 DeleteFile(msifile);
1447 r = MsiOpenPackage(name, &hpack);
1448 ok(r == ERROR_SUCCESS, "failed to open package with no name\n");
1449 r = MsiCloseHandle(hpack);
1450 ok(r == ERROR_SUCCESS, "failed to close package\n");
1453 /* just MsiOpenDatabase should not create a file */
1454 r = MsiOpenDatabase(msifile, MSIDBOPEN_CREATE, &hdb);
1455 ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
1459 r = MsiOpenPackage(name, &hpack);
1460 ok(r == ERROR_INVALID_HANDLE, "MsiOpenPackage returned wrong code\n");
1463 /* now try again with our empty database */
1464 sprintf(name, "#%ld", hdb);
1465 r = MsiOpenPackage(name, &hpack);
1466 ok(r == ERROR_INSTALL_PACKAGE_INVALID, "MsiOpenPackage returned wrong code\n");
1467 if (!r) MsiCloseHandle(hpack);
1470 /* create a table */
1471 query = "CREATE TABLE `Property` ( "
1472 "`Property` CHAR(72), `Value` CHAR(0) "
1473 "PRIMARY KEY `Property`)";
1474 r = try_query(hdb, query);
1475 ok(r == ERROR_SUCCESS, "failed to create Properties table\n");
1477 query = "CREATE TABLE `InstallExecuteSequence` ("
1478 "`Action` CHAR(72), `Condition` CHAR(0), `Sequence` INTEGER "
1479 "PRIMARY KEY `Action`)";
1480 r = try_query(hdb, query);
1481 ok(r == ERROR_SUCCESS, "failed to create InstallExecuteSequence table\n");
1484 sprintf(name, "#%ld", hdb);
1485 r = MsiOpenPackage(name, &hpack);
1486 ok(r == ERROR_INSTALL_PACKAGE_INVALID, "MsiOpenPackage returned wrong code\n");
1487 if (!r) MsiCloseHandle(hpack);
1490 r = MsiCloseHandle(hdb);
1491 ok(r == ERROR_SUCCESS, "MsiCloseHandle(database) failed\n");
1492 DeleteFile(msifile);
1495 static void test_formatrecord2(void)
1497 MSIHANDLE hpkg, hrec ;
1502 hpkg = package_from_db(create_package_db());
1503 ok( hpkg, "failed to create package\n");
1505 r = MsiSetProperty(hpkg, "Manufacturer", " " );
1506 ok( r == ERROR_SUCCESS, "set property failed\n");
1508 hrec = MsiCreateRecord(2);
1509 ok(hrec, "create record failed\n");
1511 r = MsiRecordSetString( hrec, 0, "[ProgramFilesFolder][Manufacturer]\\asdf");
1512 ok( r == ERROR_SUCCESS, "format record failed\n");
1516 r = MsiFormatRecord( hpkg, hrec, buffer, &sz );
1518 r = MsiRecordSetString(hrec, 0, "[foo][1]");
1519 r = MsiRecordSetString(hrec, 1, "hoo");
1521 r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1522 ok( sz == 3, "size wrong\n");
1523 ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
1524 ok( r == ERROR_SUCCESS, "format failed\n");
1526 r = MsiRecordSetString(hrec, 0, "x[~]x");
1528 r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1529 ok( sz == 3, "size wrong\n");
1530 ok( 0 == strcmp(buffer,"x"), "wrong output %s\n",buffer);
1531 ok( r == ERROR_SUCCESS, "format failed\n");
1533 r = MsiRecordSetString(hrec, 0, "[foo.$%}][1]");
1534 r = MsiRecordSetString(hrec, 1, "hoo");
1536 r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1537 ok( sz == 3, "size wrong\n");
1538 ok( 0 == strcmp(buffer,"hoo"), "wrong output %s\n",buffer);
1539 ok( r == ERROR_SUCCESS, "format failed\n");
1541 r = MsiRecordSetString(hrec, 0, "[\\[]");
1543 r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1544 ok( sz == 1, "size wrong\n");
1545 ok( 0 == strcmp(buffer,"["), "wrong output %s\n",buffer);
1546 ok( r == ERROR_SUCCESS, "format failed\n");
1548 SetEnvironmentVariable("FOO", "BAR");
1549 r = MsiRecordSetString(hrec, 0, "[%FOO]");
1551 r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1552 ok( sz == 3, "size wrong\n");
1553 ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
1554 ok( r == ERROR_SUCCESS, "format failed\n");
1556 r = MsiRecordSetString(hrec, 0, "[[1]]");
1557 r = MsiRecordSetString(hrec, 1, "%FOO");
1559 r = MsiFormatRecord(hpkg, hrec, buffer, &sz);
1560 ok( sz == 3, "size wrong\n");
1561 ok( 0 == strcmp(buffer,"BAR"), "wrong output %s\n",buffer);
1562 ok( r == ERROR_SUCCESS, "format failed\n");
1564 MsiCloseHandle( hrec );
1565 MsiCloseHandle( hpkg );
1566 DeleteFile(msifile);
1569 static void test_states(void)
1574 INSTALLSTATE state, action;
1576 hdb = create_package_db();
1577 ok ( hdb, "failed to create package database\n" );
1579 r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
1580 ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
1582 r = create_feature_table( hdb );
1583 ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
1585 r = create_component_table( hdb );
1586 ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
1588 /* msidbFeatureAttributesFavorLocal */
1589 r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
1590 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1592 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
1593 r = add_component_entry( hdb, "'alpha', '{467EC132-739D-4784-A37B-677AA43DBC94}', 'TARGETDIR', 0, '', 'alpha_file'" );
1594 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1596 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
1597 r = add_component_entry( hdb, "'beta', '{2C1F189C-24A6-4C34-B26B-994A6C026506}', 'TARGETDIR', 1, '', 'beta_file'" );
1598 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1600 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
1601 r = add_component_entry( hdb, "'gamma', '{C271E2A4-DE2E-4F70-86D1-6984AF7DE2CA}', 'TARGETDIR', 2, '', 'gamma_file'" );
1602 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1604 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSharedDllRefCount */
1605 r = add_component_entry( hdb, "'theta', '{4EB3129D-81A8-48D5-9801-75600FED3DD9}', 'TARGETDIR', 8, '', 'theta_file'" );
1606 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1608 /* msidbFeatureAttributesFavorSource */
1609 r = add_feature_entry( hdb, "'two', '', '', '', 2, 1, '', 1" );
1610 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1612 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
1613 r = add_component_entry( hdb, "'delta', '{938FD4F2-C648-4259-A03C-7AA3B45643F3}', 'TARGETDIR', 0, '', 'delta_file'" );
1614 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1616 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
1617 r = add_component_entry( hdb, "'epsilon', '{D59713B6-C11D-47F2-A395-1E5321781190}', 'TARGETDIR', 1, '', 'epsilon_file'" );
1618 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1620 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
1621 r = add_component_entry( hdb, "'zeta', '{377D33AB-2FAA-42B9-A629-0C0DAE9B9C7A}', 'TARGETDIR', 2, '', 'zeta_file'" );
1622 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1624 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSharedDllRefCount */
1625 r = add_component_entry( hdb, "'iota', '{5D36F871-B5ED-4801-9E0F-C46B9E5C9669}', 'TARGETDIR', 8, '', 'iota_file'" );
1626 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1628 /* msidbFeatureAttributesFavorSource */
1629 r = add_feature_entry( hdb, "'three', '', '', '', 2, 1, '', 1" );
1630 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1632 /* msidbFeatureAttributesFavorLocal */
1633 r = add_feature_entry( hdb, "'four', '', '', '', 2, 1, '', 0" );
1634 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1637 r = add_feature_entry( hdb, "'five', '', '', '', 2, 0, '', 1" );
1638 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
1640 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
1641 r = add_component_entry( hdb, "'eta', '{DD89003F-0DD4-41B8-81C0-3411A7DA2695}', 'TARGETDIR', 1, '', 'eta_file'" );
1642 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1644 /* no feature parent:msidbComponentAttributesLocalOnly */
1645 r = add_component_entry( hdb, "'kappa', '{D6B93DC3-8DA5-4769-9888-42BFE156BB8B}', 'TARGETDIR', 1, '', 'kappa_file'" );
1646 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
1648 r = create_feature_components_table( hdb );
1649 ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
1651 r = add_feature_components_entry( hdb, "'one', 'alpha'" );
1652 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1654 r = add_feature_components_entry( hdb, "'one', 'beta'" );
1655 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1657 r = add_feature_components_entry( hdb, "'one', 'gamma'" );
1658 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1660 r = add_feature_components_entry( hdb, "'one', 'theta'" );
1661 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1663 r = add_feature_components_entry( hdb, "'two', 'delta'" );
1664 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1666 r = add_feature_components_entry( hdb, "'two', 'epsilon'" );
1667 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1669 r = add_feature_components_entry( hdb, "'two', 'zeta'" );
1670 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1672 r = add_feature_components_entry( hdb, "'two', 'iota'" );
1673 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1675 r = add_feature_components_entry( hdb, "'three', 'eta'" );
1676 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1678 r = add_feature_components_entry( hdb, "'four', 'eta'" );
1679 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1681 r = add_feature_components_entry( hdb, "'five', 'eta'" );
1682 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
1684 r = create_file_table( hdb );
1685 ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
1687 r = add_file_entry( hdb, "'alpha_file', 'alpha', 'alpha.txt', 100, '', '1033', 8192, 1" );
1688 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1690 r = add_file_entry( hdb, "'beta_file', 'beta', 'beta.txt', 0, '', '1033', 8192, 1" );
1691 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1693 r = add_file_entry( hdb, "'gamma_file', 'gamma', 'gamma.txt', 0, '', '1033', 8192, 1" );
1694 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1696 r = add_file_entry( hdb, "'theta_file', 'theta', 'theta.txt', 0, '', '1033', 8192, 1" );
1697 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1699 r = add_file_entry( hdb, "'delta_file', 'delta', 'delta.txt', 0, '', '1033', 8192, 1" );
1700 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1702 r = add_file_entry( hdb, "'epsilon_file', 'epsilon', 'epsilon.txt', 0, '', '1033', 8192, 1" );
1703 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1705 r = add_file_entry( hdb, "'zeta_file', 'zeta', 'zeta.txt', 0, '', '1033', 8192, 1" );
1706 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1708 r = add_file_entry( hdb, "'iota_file', 'iota', 'iota.txt', 0, '', '1033', 8192, 1" );
1709 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1711 /* compressed file */
1712 r = add_file_entry( hdb, "'eta_file', 'eta', 'eta.txt', 0, '', '1033', 16384, 1" );
1713 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1715 r = add_file_entry( hdb, "'kappa_file', 'kappa', 'kappa.txt', 0, '', '1033', 8192, 1" );
1716 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
1718 hpkg = package_from_db( hdb );
1719 ok( hpkg, "failed to create package\n");
1721 MsiCloseHandle( hdb );
1725 r = MsiGetFeatureState(hpkg, "one", &state, &action);
1726 ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1727 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1728 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1732 r = MsiGetFeatureState(hpkg, "two", &state, &action);
1733 ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1734 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1735 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1739 r = MsiGetFeatureState(hpkg, "three", &state, &action);
1740 ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1741 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1742 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1746 r = MsiGetFeatureState(hpkg, "four", &state, &action);
1747 ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1748 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1749 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1753 r = MsiGetFeatureState(hpkg, "five", &state, &action);
1754 ok( r == ERROR_UNKNOWN_FEATURE, "Expected ERROR_UNKNOWN_FEATURE, got %d\n", r );
1755 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1756 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1760 r = MsiGetComponentState(hpkg, "alpha", &state, &action);
1761 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1762 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1763 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1767 r = MsiGetComponentState(hpkg, "beta", &state, &action);
1768 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1769 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1770 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1774 r = MsiGetComponentState(hpkg, "gamma", &state, &action);
1775 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1776 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1777 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1781 r = MsiGetComponentState(hpkg, "theta", &state, &action);
1782 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1783 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1784 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1788 r = MsiGetComponentState(hpkg, "delta", &state, &action);
1789 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1790 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1791 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1795 r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
1796 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1797 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1798 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1802 r = MsiGetComponentState(hpkg, "zeta", &state, &action);
1803 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1804 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1805 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1809 r = MsiGetComponentState(hpkg, "iota", &state, &action);
1810 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1811 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1812 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1816 r = MsiGetComponentState(hpkg, "eta", &state, &action);
1817 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1818 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1819 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1823 r = MsiGetComponentState(hpkg, "kappa", &state, &action);
1824 ok( r == ERROR_UNKNOWN_COMPONENT, "Expected ERROR_UNKNOWN_COMPONENT, got %d\n", r );
1825 ok( state == 0xdeadbee, "Expected 0xdeadbee, got %d\n", state);
1826 ok( action == 0xdeadbee, "Expected 0xdeadbee, got %d\n", action);
1828 r = MsiDoAction( hpkg, "CostInitialize");
1829 ok( r == ERROR_SUCCESS, "cost init failed\n");
1833 r = MsiGetFeatureState(hpkg, "one", &state, &action);
1834 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1835 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1836 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1840 r = MsiGetFeatureState(hpkg, "two", &state, &action);
1841 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1842 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1843 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1847 r = MsiGetFeatureState(hpkg, "three", &state, &action);
1848 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1849 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1850 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1854 r = MsiGetFeatureState(hpkg, "four", &state, &action);
1855 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1856 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1857 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1861 r = MsiGetFeatureState(hpkg, "five", &state, &action);
1862 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1863 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1864 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1868 r = MsiGetComponentState(hpkg, "alpha", &state, &action);
1869 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1870 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1871 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1875 r = MsiGetComponentState(hpkg, "beta", &state, &action);
1876 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1877 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1878 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1882 r = MsiGetComponentState(hpkg, "gamma", &state, &action);
1883 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1884 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1885 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1889 r = MsiGetComponentState(hpkg, "theta", &state, &action);
1890 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1891 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1892 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1896 r = MsiGetComponentState(hpkg, "delta", &state, &action);
1897 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1898 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1899 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1903 r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
1904 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1905 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1906 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1910 r = MsiGetComponentState(hpkg, "zeta", &state, &action);
1911 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1912 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1913 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1917 r = MsiGetComponentState(hpkg, "iota", &state, &action);
1918 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1919 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1920 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1924 r = MsiGetComponentState(hpkg, "eta", &state, &action);
1925 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1926 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1927 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1931 r = MsiGetComponentState(hpkg, "kappa", &state, &action);
1932 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1933 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1934 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1936 r = MsiDoAction( hpkg, "FileCost");
1937 ok( r == ERROR_SUCCESS, "file cost failed\n");
1941 r = MsiGetFeatureState(hpkg, "one", &state, &action);
1942 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1943 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1944 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1948 r = MsiGetFeatureState(hpkg, "two", &state, &action);
1949 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1950 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1951 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1955 r = MsiGetFeatureState(hpkg, "three", &state, &action);
1956 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1957 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1958 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1962 r = MsiGetFeatureState(hpkg, "four", &state, &action);
1963 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1964 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1965 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1969 r = MsiGetFeatureState(hpkg, "five", &state, &action);
1970 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1971 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1972 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1976 r = MsiGetComponentState(hpkg, "alpha", &state, &action);
1977 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1978 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1979 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1983 r = MsiGetComponentState(hpkg, "beta", &state, &action);
1984 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1985 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1986 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1990 r = MsiGetComponentState(hpkg, "gamma", &state, &action);
1991 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1992 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
1993 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
1997 r = MsiGetComponentState(hpkg, "theta", &state, &action);
1998 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
1999 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2000 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2004 r = MsiGetComponentState(hpkg, "delta", &state, &action);
2005 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2006 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2007 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2011 r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
2012 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2013 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2014 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2018 r = MsiGetComponentState(hpkg, "zeta", &state, &action);
2019 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2020 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2021 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2025 r = MsiGetComponentState(hpkg, "iota", &state, &action);
2026 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2027 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2028 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2032 r = MsiGetComponentState(hpkg, "eta", &state, &action);
2033 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2034 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2035 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2039 r = MsiGetComponentState(hpkg, "kappa", &state, &action);
2040 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2041 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2042 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2044 r = MsiDoAction( hpkg, "CostFinalize");
2045 ok( r == ERROR_SUCCESS, "cost finalize failed: %d\n", r);
2049 r = MsiGetFeatureState(hpkg, "one", &state, &action);
2050 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2051 ok( state == INSTALLSTATE_ABSENT, "Expected one INSTALLSTATE_ABSENT, got %d\n", state);
2052 ok( action == INSTALLSTATE_LOCAL, "Expected one INSTALLSTATE_LOCAL, got %d\n", action);
2056 r = MsiGetFeatureState(hpkg, "two", &state, &action);
2057 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2058 ok( state == INSTALLSTATE_ABSENT, "Expected two INSTALLSTATE_ABSENT, got %d\n", state);
2059 ok( action == INSTALLSTATE_SOURCE, "Expected two INSTALLSTATE_SOURCE, got %d\n", action);
2063 r = MsiGetFeatureState(hpkg, "three", &state, &action);
2064 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2065 ok( state == INSTALLSTATE_ABSENT, "Expected three INSTALLSTATE_ABSENT, got %d\n", state);
2066 ok( action == INSTALLSTATE_LOCAL, "Expected three INSTALLSTATE_LOCAL, got %d\n", action);
2070 r = MsiGetFeatureState(hpkg, "four", &state, &action);
2071 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2072 ok( state == INSTALLSTATE_ABSENT, "Expected four INSTALLSTATE_ABSENT, got %d\n", state);
2073 ok( action == INSTALLSTATE_LOCAL, "Expected four INSTALLSTATE_LOCAL, got %d\n", action);
2077 r = MsiGetFeatureState(hpkg, "five", &state, &action);
2078 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2079 ok( state == INSTALLSTATE_ABSENT, "Expected five INSTALLSTATE_ABSENT, got %d\n", state);
2080 ok( action == INSTALLSTATE_UNKNOWN, "Expected five INSTALLSTATE_UNKNOWN, got %d\n", action);
2084 r = MsiGetComponentState(hpkg, "alpha", &state, &action);
2085 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2086 ok( state == INSTALLSTATE_ABSENT, "Expected alpha INSTALLSTATE_ABSENT, got %d\n", state);
2087 ok( action == INSTALLSTATE_LOCAL, "Expected alpha INSTALLSTATE_LOCAL, got %d\n", action);
2091 r = MsiGetComponentState(hpkg, "beta", &state, &action);
2092 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2093 ok( state == INSTALLSTATE_ABSENT, "Expected beta INSTALLSTATE_ABSENT, got %d\n", state);
2094 ok( action == INSTALLSTATE_SOURCE, "Expected beta INSTALLSTATE_SOURCE, got %d\n", action);
2098 r = MsiGetComponentState(hpkg, "gamma", &state, &action);
2099 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2100 ok( state == INSTALLSTATE_ABSENT, "Expected gamma INSTALLSTATE_ABSENT, got %d\n", state);
2101 ok( action == INSTALLSTATE_LOCAL, "Expected gamma INSTALLSTATE_LOCAL, got %d\n", action);
2105 r = MsiGetComponentState(hpkg, "theta", &state, &action);
2106 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2107 ok( state == INSTALLSTATE_ABSENT, "Expected theta INSTALLSTATE_ABSENT, got %d\n", state);
2108 ok( action == INSTALLSTATE_LOCAL, "Expected theta INSTALLSTATE_LOCAL, got %d\n", action);
2112 r = MsiGetComponentState(hpkg, "delta", &state, &action);
2113 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2114 ok( state == INSTALLSTATE_ABSENT, "Expected delta INSTALLSTATE_ABSENT, got %d\n", state);
2115 ok( action == INSTALLSTATE_LOCAL, "Expected delta INSTALLSTATE_LOCAL, got %d\n", action);
2119 r = MsiGetComponentState(hpkg, "epsilon", &state, &action);
2120 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2121 ok( state == INSTALLSTATE_ABSENT, "Expected epsilon INSTALLSTATE_ABSENT, got %d\n", state);
2122 ok( action == INSTALLSTATE_SOURCE, "Expected epsilon INSTALLSTATE_SOURCE, got %d\n", action);
2126 r = MsiGetComponentState(hpkg, "zeta", &state, &action);
2127 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2128 ok( state == INSTALLSTATE_ABSENT, "Expected zeta INSTALLSTATE_ABSENT, got %d\n", state);
2129 ok( action == INSTALLSTATE_SOURCE, "Expected zeta INSTALLSTATE_SOURCE, got %d\n", action);
2133 r = MsiGetComponentState(hpkg, "iota", &state, &action);
2134 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2135 ok( state == INSTALLSTATE_ABSENT, "Expected iota INSTALLSTATE_ABSENT, got %d\n", state);
2136 ok( action == INSTALLSTATE_LOCAL, "Expected iota INSTALLSTATE_LOCAL, got %d\n", action);
2140 r = MsiGetComponentState(hpkg, "eta", &state, &action);
2141 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2142 ok( state == INSTALLSTATE_ABSENT, "Expected eta INSTALLSTATE_ABSENT, got %d\n", state);
2143 ok( action == INSTALLSTATE_LOCAL, "Expected eta INSTALLSTATE_LOCAL, got %d\n", action);
2147 r = MsiGetComponentState(hpkg, "kappa", &state, &action);
2148 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2149 ok( state == INSTALLSTATE_ABSENT, "Expected kappa INSTALLSTATE_ABSENT, got %d\n", state);
2150 ok( action == INSTALLSTATE_UNKNOWN, "Expected kappa INSTALLSTATE_UNKNOWN, got %d\n", action);
2152 MsiCloseHandle( hpkg );
2153 DeleteFileA( msifile );
2156 static void test_getproperty(void)
2158 MSIHANDLE hPackage = 0;
2160 static CHAR empty[] = "";
2164 hPackage = package_from_db(create_package_db());
2165 ok( hPackage != 0, " Failed to create package\n");
2167 /* set the property */
2168 r = MsiSetProperty(hPackage, "Name", "Value");
2169 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2171 /* retrieve the size, NULL pointer */
2173 r = MsiGetProperty(hPackage, "Name", NULL, &size);
2174 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2175 ok( size == 5, "Expected 5, got %d\n", size);
2177 /* retrieve the size, empty string */
2179 r = MsiGetProperty(hPackage, "Name", empty, &size);
2180 ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
2181 ok( size == 5, "Expected 5, got %d\n", size);
2183 /* don't change size */
2184 r = MsiGetProperty(hPackage, "Name", prop, &size);
2185 ok( r == ERROR_MORE_DATA, "Expected ERROR_MORE_DATA, got %d\n", r);
2186 ok( size == 5, "Expected 5, got %d\n", size);
2187 ok( !lstrcmp(prop, "Valu"), "Expected Valu, got %s\n", prop);
2189 /* increase the size by 1 */
2191 r = MsiGetProperty(hPackage, "Name", prop, &size);
2192 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r);
2193 ok( size == 5, "Expected 5, got %d\n", size);
2194 ok( !lstrcmp(prop, "Value"), "Expected Value, got %s\n", prop);
2196 r = MsiCloseHandle( hPackage);
2197 ok( r == ERROR_SUCCESS , "Failed to close package\n" );
2198 DeleteFile(msifile);
2201 static void test_removefiles(void)
2206 char CURR_DIR[MAX_PATH];
2208 GetCurrentDirectoryA(MAX_PATH, CURR_DIR);
2210 hdb = create_package_db();
2211 ok ( hdb, "failed to create package database\n" );
2213 r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2214 ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2216 r = create_feature_table( hdb );
2217 ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
2219 r = create_component_table( hdb );
2220 ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
2222 r = add_feature_entry( hdb, "'one', '', '', '', 2, 1, '', 0" );
2223 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2225 r = add_component_entry( hdb, "'hydrogen', '', 'TARGETDIR', 0, '', 'hydrogen_file'" );
2226 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2228 r = add_component_entry( hdb, "'helium', '', 'TARGETDIR', 0, '', 'helium_file'" );
2229 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2231 r = add_component_entry( hdb, "'lithium', '', 'TARGETDIR', 0, '', 'lithium_file'" );
2232 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2234 r = add_component_entry( hdb, "'beryllium', '', 'TARGETDIR', 0, '', 'beryllium_file'" );
2235 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2237 r = add_component_entry( hdb, "'boron', '', 'TARGETDIR', 0, '', 'boron_file'" );
2238 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2240 r = add_component_entry( hdb, "'carbon', '', 'TARGETDIR', 0, '', 'carbon_file'" );
2241 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2243 r = create_feature_components_table( hdb );
2244 ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2246 r = add_feature_components_entry( hdb, "'one', 'hydrogen'" );
2247 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2249 r = add_feature_components_entry( hdb, "'one', 'helium'" );
2250 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2252 r = add_feature_components_entry( hdb, "'one', 'lithium'" );
2253 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2255 r = add_feature_components_entry( hdb, "'one', 'beryllium'" );
2256 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2258 r = add_feature_components_entry( hdb, "'one', 'boron'" );
2259 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2261 r = add_feature_components_entry( hdb, "'one', 'carbon'" );
2262 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2264 r = create_file_table( hdb );
2265 ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2267 r = add_file_entry( hdb, "'hydrogen_file', 'hydrogen', 'hydrogen.txt', 0, '', '1033', 8192, 1" );
2268 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2270 r = add_file_entry( hdb, "'helium_file', 'helium', 'helium.txt', 0, '', '1033', 8192, 1" );
2271 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2273 r = add_file_entry( hdb, "'lithium_file', 'lithium', 'lithium.txt', 0, '', '1033', 8192, 1" );
2274 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2276 r = add_file_entry( hdb, "'beryllium_file', 'beryllium', 'beryllium.txt', 0, '', '1033', 16384, 1" );
2277 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2279 r = add_file_entry( hdb, "'boron_file', 'boron', 'boron.txt', 0, '', '1033', 16384, 1" );
2280 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2282 r = add_file_entry( hdb, "'carbon_file', 'carbon', 'carbon.txt', 0, '', '1033', 16384, 1" );
2283 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2285 r = create_remove_file_table( hdb );
2286 ok( r == ERROR_SUCCESS, "cannot create Remove File table: %d\n", r);
2288 hpkg = package_from_db( hdb );
2289 ok( hpkg, "failed to create package\n");
2291 MsiCloseHandle( hdb );
2293 create_test_file( "hydrogen.txt" );
2294 create_test_file( "helium.txt" );
2295 create_test_file( "lithium.txt" );
2296 create_test_file( "beryllium.txt" );
2297 create_test_file( "boron.txt" );
2298 create_test_file( "carbon.txt" );
2300 r = MsiSetProperty( hpkg, "TARGETDIR", CURR_DIR );
2301 ok( r == ERROR_SUCCESS, "set property failed\n");
2303 r = MsiDoAction( hpkg, "CostInitialize");
2304 ok( r == ERROR_SUCCESS, "cost init failed\n");
2306 r = MsiDoAction( hpkg, "FileCost");
2307 ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2309 r = MsiDoAction( hpkg, "CostFinalize");
2310 ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2312 r = MsiDoAction( hpkg, "InstallValidate");
2313 ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2315 r = MsiSetComponentState( hpkg, "hydrogen", INSTALLSTATE_ABSENT );
2316 ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2318 r = MsiSetComponentState( hpkg, "helium", INSTALLSTATE_LOCAL );
2319 ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2321 r = MsiSetComponentState( hpkg, "lithium", INSTALLSTATE_SOURCE );
2322 ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2324 r = MsiSetComponentState( hpkg, "beryllium", INSTALLSTATE_ABSENT );
2325 ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2327 r = MsiSetComponentState( hpkg, "boron", INSTALLSTATE_LOCAL );
2328 ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2330 r = MsiSetComponentState( hpkg, "carbon", INSTALLSTATE_SOURCE );
2331 ok( r == ERROR_SUCCESS, "failed to set component state: %d\n", r);
2333 r = MsiDoAction( hpkg, "RemoveFiles");
2334 ok( r == ERROR_SUCCESS, "remove files failed\n");
2336 ok(DeleteFileA("hydrogen.txt"), "Expected hydrogen.txt to exist\n");
2337 ok(DeleteFileA("lithium.txt"), "Expected lithium.txt to exist\n");
2338 ok(DeleteFileA("beryllium.txt"), "Expected beryllium.txt to exist\n");
2339 ok(DeleteFileA("carbon.txt"), "Expected carbon.txt to exist\n");
2340 ok(DeleteFileA("helium.txt"), "Expected helium.txt to exist\n");
2341 ok(DeleteFileA("boron.txt"), "Expected boron.txt to exist\n");
2343 MsiCloseHandle( hpkg );
2344 DeleteFileA(msifile);
2347 static void test_appsearch(void)
2352 CHAR prop[MAX_PATH];
2353 DWORD size = MAX_PATH;
2355 hdb = create_package_db();
2356 ok ( hdb, "failed to create package database\n" );
2358 r = create_appsearch_table( hdb );
2359 ok( r == ERROR_SUCCESS, "cannot create AppSearch table: %d\n", r );
2361 r = add_appsearch_entry( hdb, "'WEBBROWSERPROG', 'NewSignature1'" );
2362 ok( r == ERROR_SUCCESS, "cannot add entry: %d\n", r );
2364 r = create_reglocator_table( hdb );
2365 ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
2367 r = add_reglocator_entry( hdb, "'NewSignature1', 0, 'htmlfile\\shell\\open\\command', '', 1" );
2368 ok( r == ERROR_SUCCESS, "cannot create RegLocator table: %d\n", r );
2370 r = create_signature_table( hdb );
2371 ok( r == ERROR_SUCCESS, "cannot create Signature table: %d\n", r );
2373 r = add_signature_entry( hdb, "'NewSignature1', 'FileName', '', '', '', '', '', '', ''" );
2374 ok( r == ERROR_SUCCESS, "cannot create Signature table: %d\n", r );
2376 hpkg = package_from_db( hdb );
2377 ok( hpkg, "failed to create package\n");
2379 MsiCloseHandle( hdb );
2381 r = MsiDoAction( hpkg, "AppSearch" );
2382 ok( r == ERROR_SUCCESS, "AppSearch failed: %d\n", r);
2384 r = MsiGetPropertyA( hpkg, "WEBBROWSERPROG", prop, &size );
2385 ok( r == ERROR_SUCCESS, "get property failed: %d\n", r);
2386 ok( lstrlenA(prop) != 0, "Expected non-zero length\n");
2388 MsiCloseHandle( hpkg );
2389 DeleteFileA(msifile);
2392 static void test_featureparents(void)
2397 INSTALLSTATE state, action;
2399 hdb = create_package_db();
2400 ok ( hdb, "failed to create package database\n" );
2402 r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2403 ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2405 r = create_feature_table( hdb );
2406 ok( r == ERROR_SUCCESS, "cannot create Feature table: %d\n", r );
2408 r = create_component_table( hdb );
2409 ok( r == ERROR_SUCCESS, "cannot create Component table: %d\n", r );
2411 r = create_feature_components_table( hdb );
2412 ok( r == ERROR_SUCCESS, "cannot create FeatureComponents table: %d\n", r );
2414 r = create_file_table( hdb );
2415 ok( r == ERROR_SUCCESS, "cannot create File table: %d\n", r );
2417 /* msidbFeatureAttributesFavorLocal */
2418 r = add_feature_entry( hdb, "'zodiac', '', '', '', 2, 1, '', 0" );
2419 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2421 /* msidbFeatureAttributesFavorSource */
2422 r = add_feature_entry( hdb, "'perseus', '', '', '', 2, 1, '', 1" );
2423 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2425 /* msidbFeatureAttributesFavorLocal */
2426 r = add_feature_entry( hdb, "'orion', '', '', '', 2, 1, '', 0" );
2427 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2429 /* disabled because of install level */
2430 r = add_feature_entry( hdb, "'waters', '', '', '', 15, 101, '', 9" );
2431 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2433 /* child feature of disabled feature */
2434 r = add_feature_entry( hdb, "'bayer', 'waters', '', '', 14, 1, '', 9" );
2435 ok( r == ERROR_SUCCESS, "cannot add feature: %d\n", r );
2437 /* component of disabled feature (install level) */
2438 r = add_component_entry( hdb, "'delphinus', '', 'TARGETDIR', 0, '', 'delphinus_file'" );
2439 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2441 /* component of disabled child feature (install level) */
2442 r = add_component_entry( hdb, "'hydrus', '', 'TARGETDIR', 0, '', 'hydrus_file'" );
2443 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2445 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
2446 r = add_component_entry( hdb, "'leo', '', 'TARGETDIR', 0, '', 'leo_file'" );
2447 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2449 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
2450 r = add_component_entry( hdb, "'virgo', '', 'TARGETDIR', 1, '', 'virgo_file'" );
2451 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2453 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
2454 r = add_component_entry( hdb, "'libra', '', 'TARGETDIR', 2, '', 'libra_file'" );
2455 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2457 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesLocalOnly */
2458 r = add_component_entry( hdb, "'cassiopeia', '', 'TARGETDIR', 0, '', 'cassiopeia_file'" );
2459 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2461 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesSourceOnly */
2462 r = add_component_entry( hdb, "'cepheus', '', 'TARGETDIR', 1, '', 'cepheus_file'" );
2463 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2465 /* msidbFeatureAttributesFavorSource:msidbComponentAttributesOptional */
2466 r = add_component_entry( hdb, "'andromeda', '', 'TARGETDIR', 2, '', 'andromeda_file'" );
2467 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2469 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesLocalOnly */
2470 r = add_component_entry( hdb, "'canis', '', 'TARGETDIR', 0, '', 'canis_file'" );
2471 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2473 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesSourceOnly */
2474 r = add_component_entry( hdb, "'monoceros', '', 'TARGETDIR', 1, '', 'monoceros_file'" );
2475 ok( r == ERROR_SUCCESS, "cannot add component: %d\n", r );
2477 /* msidbFeatureAttributesFavorLocal:msidbComponentAttributesOptional */
2478 r = add_component_entry( hdb, "'lepus', '', 'TARGETDIR', 2, '', 'lepus_file'" );
2480 r = add_feature_components_entry( hdb, "'zodiac', 'leo'" );
2481 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2483 r = add_feature_components_entry( hdb, "'zodiac', 'virgo'" );
2484 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2486 r = add_feature_components_entry( hdb, "'zodiac', 'libra'" );
2487 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2489 r = add_feature_components_entry( hdb, "'perseus', 'cassiopeia'" );
2490 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2492 r = add_feature_components_entry( hdb, "'perseus', 'cepheus'" );
2493 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2495 r = add_feature_components_entry( hdb, "'perseus', 'andromeda'" );
2496 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2498 r = add_feature_components_entry( hdb, "'orion', 'leo'" );
2499 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2501 r = add_feature_components_entry( hdb, "'orion', 'virgo'" );
2502 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2504 r = add_feature_components_entry( hdb, "'orion', 'libra'" );
2505 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2507 r = add_feature_components_entry( hdb, "'orion', 'cassiopeia'" );
2508 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2510 r = add_feature_components_entry( hdb, "'orion', 'cepheus'" );
2511 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2513 r = add_feature_components_entry( hdb, "'orion', 'andromeda'" );
2514 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2516 r = add_feature_components_entry( hdb, "'orion', 'canis'" );
2517 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2519 r = add_feature_components_entry( hdb, "'orion', 'monoceros'" );
2520 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2522 r = add_feature_components_entry( hdb, "'orion', 'lepus'" );
2523 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2525 r = add_feature_components_entry( hdb, "'waters', 'delphinus'" );
2526 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2528 r = add_feature_components_entry( hdb, "'bayer', 'hydrus'" );
2529 ok( r == ERROR_SUCCESS, "cannot add feature components: %d\n", r );
2531 r = add_file_entry( hdb, "'leo_file', 'leo', 'leo.txt', 100, '', '1033', 8192, 1" );
2532 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2534 r = add_file_entry( hdb, "'virgo_file', 'virgo', 'virgo.txt', 0, '', '1033', 8192, 1" );
2535 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2537 r = add_file_entry( hdb, "'libra_file', 'libra', 'libra.txt', 0, '', '1033', 8192, 1" );
2538 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2540 r = add_file_entry( hdb, "'cassiopeia_file', 'cassiopeia', 'cassiopeia.txt', 0, '', '1033', 8192, 1" );
2541 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2543 r = add_file_entry( hdb, "'cepheus_file', 'cepheus', 'cepheus.txt', 0, '', '1033', 8192, 1" );
2544 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2546 r = add_file_entry( hdb, "'andromeda_file', 'andromeda', 'andromeda.txt', 0, '', '1033', 8192, 1" );
2547 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2549 r = add_file_entry( hdb, "'canis_file', 'canis', 'canis.txt', 0, '', '1033', 8192, 1" );
2550 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2552 r = add_file_entry( hdb, "'monoceros_file', 'monoceros', 'monoceros.txt', 0, '', '1033', 8192, 1" );
2553 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2555 r = add_file_entry( hdb, "'lepus_file', 'lepus', 'lepus.txt', 0, '', '1033', 8192, 1" );
2556 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2558 r = add_file_entry( hdb, "'delphinus_file', 'delphinus', 'delphinus.txt', 0, '', '1033', 8192, 1" );
2559 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2561 r = add_file_entry( hdb, "'hydrus_file', 'hydrus', 'hydrus.txt', 0, '', '1033', 8192, 1" );
2562 ok( r == ERROR_SUCCESS, "cannot add file: %d\n", r);
2564 hpkg = package_from_db( hdb );
2565 ok( hpkg, "failed to create package\n");
2567 MsiCloseHandle( hdb );
2569 r = MsiDoAction( hpkg, "CostInitialize");
2570 ok( r == ERROR_SUCCESS, "cost init failed\n");
2572 r = MsiDoAction( hpkg, "FileCost");
2573 ok( r == ERROR_SUCCESS, "file cost failed\n");
2575 r = MsiDoAction( hpkg, "CostFinalize");
2576 ok( r == ERROR_SUCCESS, "cost finalize failed\n");
2580 r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
2581 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2582 ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2583 ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2587 r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
2588 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2589 ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2590 ok( action == INSTALLSTATE_SOURCE, "Expected INSTALLSTATE_SOURCE, got %d\n", action);
2594 r = MsiGetFeatureState(hpkg, "orion", &state, &action);
2595 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2596 ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2597 ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2601 r = MsiGetFeatureState(hpkg, "waters", &state, &action);
2602 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2603 ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2604 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2608 r = MsiGetFeatureState(hpkg, "bayer", &state, &action);
2609 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2610 ok( state == INSTALLSTATE_ABSENT, "Expected INSTALLSTATE_ABSENT, got %d\n", state);
2611 ok( action == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", action);
2615 r = MsiGetComponentState(hpkg, "leo", &state, &action);
2616 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2617 ok( state == INSTALLSTATE_UNKNOWN, "Expected INSTALLSTATE_UNKNOWN, got %d\n", state);
2618 ok( action == INSTALLSTATE_LOCAL, "Expected INSTALLSTATE_LOCAL, got %d\n", action);
2622 r = MsiGetComponentState(hpkg, "virgo", &state, &action);
2623 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2624 ok( state == INSTALLSTATE_UNKNOWN, "Expected virgo INSTALLSTATE_UNKNOWN, got %d\n", state);
2625 ok( action == INSTALLSTATE_SOURCE, "Expected virgo INSTALLSTATE_SOURCE, got %d\n", action);
2629 r = MsiGetComponentState(hpkg, "libra", &state, &action);
2630 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2631 ok( state == INSTALLSTATE_UNKNOWN, "Expected libra INSTALLSTATE_UNKNOWN, got %d\n", state);
2632 ok( action == INSTALLSTATE_LOCAL, "Expected libra INSTALLSTATE_LOCAL, got %d\n", action);
2636 r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
2637 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2638 ok( state == INSTALLSTATE_UNKNOWN, "Expected cassiopeia INSTALLSTATE_UNKNOWN, got %d\n", state);
2639 ok( action == INSTALLSTATE_LOCAL, "Expected cassiopeia INSTALLSTATE_LOCAL, got %d\n", action);
2643 r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
2644 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2645 ok( state == INSTALLSTATE_UNKNOWN, "Expected cepheus INSTALLSTATE_UNKNOWN, got %d\n", state);
2646 ok( action == INSTALLSTATE_SOURCE, "Expected cepheus INSTALLSTATE_SOURCE, got %d\n", action);
2650 r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
2651 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2652 ok( state == INSTALLSTATE_UNKNOWN, "Expected andromeda INSTALLSTATE_UNKNOWN, got %d\n", state);
2653 ok( action == INSTALLSTATE_LOCAL, "Expected andromeda INSTALLSTATE_LOCAL, got %d\n", action);
2657 r = MsiGetComponentState(hpkg, "canis", &state, &action);
2658 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2659 ok( state == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", state);
2660 ok( action == INSTALLSTATE_LOCAL, "Expected canis INSTALLSTATE_LOCAL, got %d\n", action);
2664 r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
2665 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2666 ok( state == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", state);
2667 ok( action == INSTALLSTATE_SOURCE, "Expected monoceros INSTALLSTATE_SOURCE, got %d\n", action);
2671 r = MsiGetComponentState(hpkg, "lepus", &state, &action);
2672 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2673 ok( state == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", state);
2674 ok( action == INSTALLSTATE_LOCAL, "Expected lepus INSTALLSTATE_LOCAL, got %d\n", action);
2678 r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
2679 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2680 ok( state == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", state);
2681 ok( action == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", action);
2685 r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
2686 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2687 ok( state == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", state);
2688 ok( action == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", action);
2690 r = MsiSetFeatureState(hpkg, "orion", INSTALLSTATE_ABSENT);
2691 ok( r == ERROR_SUCCESS, "failed to set feature state: %d\n", r);
2695 r = MsiGetFeatureState(hpkg, "zodiac", &state, &action);
2696 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2697 ok( state == INSTALLSTATE_ABSENT, "Expected zodiac INSTALLSTATE_ABSENT, got %d\n", state);
2698 ok( action == INSTALLSTATE_LOCAL, "Expected zodiac INSTALLSTATE_LOCAL, got %d\n", action);
2702 r = MsiGetFeatureState(hpkg, "perseus", &state, &action);
2703 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2704 ok( state == INSTALLSTATE_ABSENT, "Expected perseus INSTALLSTATE_ABSENT, got %d\n", state);
2705 ok( action == INSTALLSTATE_SOURCE, "Expected perseus INSTALLSTATE_SOURCE, got %d\n", action);
2709 r = MsiGetFeatureState(hpkg, "orion", &state, &action);
2710 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2711 ok( state == INSTALLSTATE_ABSENT, "Expected orion INSTALLSTATE_ABSENT, got %d\n", state);
2712 ok( action == INSTALLSTATE_ABSENT, "Expected orion INSTALLSTATE_ABSENT, got %d\n", action);
2716 r = MsiGetComponentState(hpkg, "leo", &state, &action);
2717 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2718 ok( state == INSTALLSTATE_UNKNOWN, "Expected leo INSTALLSTATE_UNKNOWN, got %d\n", state);
2719 ok( action == INSTALLSTATE_LOCAL, "Expected leo INSTALLSTATE_LOCAL, got %d\n", action);
2723 r = MsiGetComponentState(hpkg, "virgo", &state, &action);
2724 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2725 ok( state == INSTALLSTATE_UNKNOWN, "Expected virgo INSTALLSTATE_UNKNOWN, got %d\n", state);
2726 ok( action == INSTALLSTATE_SOURCE, "Expected virgo INSTALLSTATE_SOURCE, got %d\n", action);
2730 r = MsiGetComponentState(hpkg, "libra", &state, &action);
2731 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2732 ok( state == INSTALLSTATE_UNKNOWN, "Expected libra INSTALLSTATE_UNKNOWN, got %d\n", state);
2733 ok( action == INSTALLSTATE_LOCAL, "Expected libra INSTALLSTATE_LOCAL, got %d\n", action);
2737 r = MsiGetComponentState(hpkg, "cassiopeia", &state, &action);
2738 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2739 ok( state == INSTALLSTATE_UNKNOWN, "Expected cassiopeia INSTALLSTATE_UNKNOWN, got %d\n", state);
2740 ok( action == INSTALLSTATE_LOCAL, "Expected cassiopeia INSTALLSTATE_LOCAL, got %d\n", action);
2744 r = MsiGetComponentState(hpkg, "cepheus", &state, &action);
2745 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2746 ok( state == INSTALLSTATE_UNKNOWN, "Expected cepheus INSTALLSTATE_UNKNOWN, got %d\n", state);
2747 ok( action == INSTALLSTATE_SOURCE, "Expected cepheus INSTALLSTATE_SOURCE, got %d\n", action);
2751 r = MsiGetComponentState(hpkg, "andromeda", &state, &action);
2752 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2753 ok( state == INSTALLSTATE_UNKNOWN, "Expected andromeda INSTALLSTATE_UNKNOWN, got %d\n", state);
2754 ok( action == INSTALLSTATE_SOURCE, "Expected andromeda INSTALLSTATE_SOURCE, got %d\n", action);
2758 r = MsiGetComponentState(hpkg, "canis", &state, &action);
2759 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2760 ok( state == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", state);
2761 ok( action == INSTALLSTATE_UNKNOWN, "Expected canis INSTALLSTATE_UNKNOWN, got %d\n", action);
2765 r = MsiGetComponentState(hpkg, "monoceros", &state, &action);
2766 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2767 ok( state == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", state);
2768 ok( action == INSTALLSTATE_UNKNOWN, "Expected monoceros INSTALLSTATE_UNKNOWN, got %d\n", action);
2772 r = MsiGetComponentState(hpkg, "lepus", &state, &action);
2773 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2774 ok( state == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", state);
2775 ok( action == INSTALLSTATE_UNKNOWN, "Expected lepus INSTALLSTATE_UNKNOWN, got %d\n", action);
2779 r = MsiGetComponentState(hpkg, "delphinus", &state, &action);
2780 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2781 ok( state == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", state);
2782 ok( action == INSTALLSTATE_UNKNOWN, "Expected delphinus INSTALLSTATE_UNKNOWN, got %d\n", action);
2786 r = MsiGetComponentState(hpkg, "hydrus", &state, &action);
2787 ok( r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", r );
2788 ok( state == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", state);
2789 ok( action == INSTALLSTATE_UNKNOWN, "Expected hydrus INSTALLSTATE_UNKNOWN, got %d\n", action);
2791 MsiCloseHandle(hpkg);
2792 DeleteFileA(msifile);
2795 static void test_installprops(void)
2797 MSIHANDLE hpkg, hdb;
2798 CHAR path[MAX_PATH];
2804 GetCurrentDirectory(MAX_PATH, path);
2805 lstrcat(path, "\\");
2806 lstrcat(path, msifile);
2808 hdb = create_package_db();
2809 ok( hdb, "failed to create database\n");
2811 hpkg = package_from_db(hdb);
2812 ok( hpkg, "failed to create package\n");
2814 MsiCloseHandle(hdb);
2817 r = MsiGetProperty(hpkg, "DATABASE", buf, &size);
2818 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2819 ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
2821 RegOpenKey(HKEY_LOCAL_MACHINE, "SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion", &hkey);
2825 RegQueryValueEx(hkey, "RegisteredOwner", NULL, &type, (LPBYTE)path, &size);
2828 r = MsiGetProperty(hpkg, "USERNAME", buf, &size);
2829 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2830 ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
2834 RegQueryValueEx(hkey, "RegisteredOrganization", NULL, &type, (LPBYTE)path, &size);
2837 r = MsiGetProperty(hpkg, "COMPANYNAME", buf, &size);
2838 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2839 ok( !lstrcmp(buf, path), "Expected %s, got %s\n", path, buf);
2842 MsiCloseHandle(hpkg);
2843 DeleteFile(msifile);
2846 static void test_sourcedirprop(void)
2848 MSIHANDLE hpkg, hdb;
2849 CHAR source_dir[MAX_PATH];
2850 CHAR path[MAX_PATH];
2854 hdb = create_package_db();
2855 ok ( hdb, "failed to create package database\n" );
2857 r = add_directory_entry( hdb, "'TARGETDIR', '', 'SourceDir'");
2858 ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2860 hpkg = package_from_db( hdb );
2861 ok( hpkg, "failed to create package\n");
2863 MsiCloseHandle( hdb );
2866 r = MsiGetProperty( hpkg, "SourceDir", source_dir, &size );
2867 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2868 ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
2871 r = MsiGetProperty( hpkg, "SOURCEDIR", source_dir, &size );
2872 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2873 ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
2875 r = MsiDoAction( hpkg, "CostInitialize");
2876 ok( r == ERROR_SUCCESS, "cost init failed\n");
2879 r = MsiGetProperty( hpkg, "SourceDir", source_dir, &size );
2880 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2881 ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
2884 r = MsiGetProperty( hpkg, "SOURCEDIR", source_dir, &size );
2885 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2886 ok( !lstrlenA(source_dir), "Expected emtpy source dir, got %s\n", source_dir);
2888 r = MsiDoAction( hpkg, "ResolveSource");
2889 ok( r == ERROR_SUCCESS, "file cost failed\n");
2891 GetCurrentDirectory(MAX_PATH, path);
2892 lstrcatA(path, "\\");
2895 r = MsiGetProperty( hpkg, "SourceDir", source_dir, &size );
2896 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2897 ok( !lstrcmpA(source_dir, path), "Expected %s, got %s\n", path, source_dir);
2900 r = MsiGetProperty( hpkg, "SOURCEDIR", source_dir, &size );
2901 ok( r == ERROR_SUCCESS, "failed to get property: %d\n", r);
2902 ok( !lstrcmpA(source_dir, path), "Expected %s, got %s\n", path, source_dir);
2904 MsiCloseHandle(hpkg);
2905 DeleteFileA(msifile);
2908 static void test_prop_path(void)
2910 MSIHANDLE hpkg, hdb;
2911 char buffer[MAX_PATH], cwd[MAX_PATH];
2915 GetCurrentDirectory(MAX_PATH, cwd);
2918 hdb = create_package_db();
2919 ok( hdb, "failed to create database\n");
2921 r = add_directory_entry( hdb, "'TARGETDIR','','SourceDir'" );
2922 ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2924 r = add_directory_entry( hdb, "'foo','TARGETDIR','foosrc:footgt'" );
2925 ok( r == ERROR_SUCCESS, "cannot add directory: %d\n", r );
2927 hpkg = package_from_db(hdb);
2928 ok( hpkg, "failed to create package\n");
2930 r = MsiGetSourcePath(hpkg, "SourceDir", buffer, &sz );
2931 ok( r == ERROR_DIRECTORY, "failed to get source path\n");
2933 r = MsiGetSourcePath(hpkg, "SOURCEDIR", buffer, &sz );
2934 ok( r == ERROR_DIRECTORY, "failed to get source path\n");
2936 r = MsiDoAction( hpkg, "CostInitialize");
2937 ok( r == ERROR_SUCCESS, "cost init failed\n");
2941 r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
2942 ok( r == ERROR_SUCCESS, "property not set\n");
2943 ok( !buffer[0], "SourceDir should be empty\n");
2947 r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
2948 ok( r == ERROR_SUCCESS, "property not set\n");
2949 ok( !buffer[0], "SourceDir should be empty\n");
2953 r = MsiGetSourcePath(hpkg, "SourceDir", buffer, &sz );
2954 ok( r == ERROR_SUCCESS, "failed to get source path\n");
2955 ok( !lstrcmpi(cwd, buffer), "SourceDir (%s) should be current dir (%s)\n", buffer, cwd);
2959 r = MsiGetProperty(hpkg, "SourceDir", buffer, &sz);
2960 ok( r == ERROR_SUCCESS, "property not set\n");
2962 ok( !lstrcmpi(cwd, buffer), "SourceDir (%s) should be current dir (%s)\n", buffer, cwd);
2967 r = MsiGetSourcePath(hpkg, "SOURCEDIR", buffer, &sz );
2968 ok( r == ERROR_DIRECTORY, "failed to get source path\n");
2972 r = MsiGetProperty(hpkg, "SOURCEDIR", buffer, &sz);
2973 ok( r == ERROR_SUCCESS, "property not set\n");
2975 ok( !lstrcmpi(cwd, buffer), "SourceDir (%s) should be current dir (%s)\n", buffer, cwd);
2978 MsiCloseHandle( hpkg );
2979 DeleteFile(msifile);
2984 test_createpackage();
2985 test_getsourcepath_bad();
2986 test_getsourcepath();
2988 test_gettargetpath_bad();
2989 test_settargetpath();
2991 test_properties_table();
2994 test_formatrecord2();
2999 test_featureparents();
3000 test_installprops();
3001 test_sourcedirprop();