mirror of
https://gitlab.winehq.org/wine/wine.git
synced 2024-11-19 17:06:04 -07:00
msi/tests: Add more tests for MsiSummaryInfoPersist.
This commit is contained in:
parent
eea781a03b
commit
2b78570297
Notes:
Alexandre Julliard
2024-11-19 23:21:34 +01:00
Approved-by: Hans Leidekker (@hans) Approved-by: Alexandre Julliard (@julliard) Merge-Request: https://gitlab.winehq.org/wine/wine/merge_requests/6827
1 changed files with 147 additions and 0 deletions
|
@ -278,6 +278,153 @@ static void test_suminfo(void)
|
||||||
r = MsiCloseHandle(hsuminfo);
|
r = MsiCloseHandle(hsuminfo);
|
||||||
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
/* try persisting on transacted msi */
|
||||||
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_TRANSACT, &hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
|
||||||
|
|
||||||
|
r = MsiGetSummaryInformationA(hdb, NULL, 1, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error\n");
|
||||||
|
|
||||||
|
r = MsiSummaryInfoSetPropertyA(hsuminfo, PID_AUTHOR, VT_LPSTR, 1, &ft, "Fabian");
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoSetProperty wrong error\n");
|
||||||
|
|
||||||
|
r = MsiSummaryInfoPersist(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoPersist wrong error %u\n", r);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_READONLY, &hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
|
||||||
|
|
||||||
|
r = MsiGetSummaryInformationA(hdb, NULL, 1, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error\n");
|
||||||
|
|
||||||
|
sz = 0x10;
|
||||||
|
strcpy(buf,"x");
|
||||||
|
r = MsiSummaryInfoGetPropertyA(hsuminfo, PID_AUTHOR, &type, NULL, NULL, buf, &sz);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetPropertyA wrong error\n");
|
||||||
|
ok(!strcmp(buf,"Mike"), "buffer was wrong: %s\n", buf);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
/* try persisting on transacted msi with commit */
|
||||||
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_TRANSACT, &hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
|
||||||
|
|
||||||
|
r = MsiGetSummaryInformationA(hdb, NULL, 1, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error\n");
|
||||||
|
|
||||||
|
r = MsiSummaryInfoSetPropertyA(hsuminfo, PID_AUTHOR, VT_LPSTR, 1, &ft, "Fabian");
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoSetProperty wrong error\n");
|
||||||
|
|
||||||
|
r = MsiSummaryInfoPersist(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoPersist wrong error %u\n", r);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiDatabaseCommit(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiDatabaseCommit wrong error %u\n", r);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_READONLY, &hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
|
||||||
|
|
||||||
|
r = MsiGetSummaryInformationA(hdb, NULL, 1, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error\n");
|
||||||
|
|
||||||
|
sz = 0x10;
|
||||||
|
strcpy(buf,"x");
|
||||||
|
r = MsiSummaryInfoGetPropertyA(hsuminfo, PID_AUTHOR, &type, NULL, NULL, buf, &sz);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetPropertyA wrong error\n");
|
||||||
|
ok(!strcmp(buf,"Fabian"), "buffer was wrong: %s\n", buf);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
/* try persisting on direct msi */
|
||||||
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_DIRECT, &hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
|
||||||
|
|
||||||
|
r = MsiGetSummaryInformationA(hdb, NULL, 1, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error\n");
|
||||||
|
|
||||||
|
r = MsiSummaryInfoSetPropertyA(hsuminfo, PID_AUTHOR, VT_LPSTR, 1, &ft, "Fabian2");
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoSetProperty wrong error\n");
|
||||||
|
|
||||||
|
r = MsiSummaryInfoPersist(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoPersist wrong error %u\n", r);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_READONLY, &hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
|
||||||
|
|
||||||
|
r = MsiGetSummaryInformationA(hdb, NULL, 1, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error\n");
|
||||||
|
|
||||||
|
sz = 0x10;
|
||||||
|
strcpy(buf,"x");
|
||||||
|
r = MsiSummaryInfoGetPropertyA(hsuminfo, PID_AUTHOR, &type, NULL, NULL, buf, &sz);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetPropertyA wrong error\n");
|
||||||
|
ok(!strcmp(buf,"Fabian2"), "buffer was wrong: %s\n", buf);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
/* try persisting on indirectly opened msi */
|
||||||
|
r = MsiGetSummaryInformationA(0, msifile, 2, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error %u\n", r);
|
||||||
|
|
||||||
|
r = MsiSummaryInfoSetPropertyA(hsuminfo, PID_AUTHOR, VT_LPSTR, 1, &ft, "Fabian3");
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoSetProperty wrong error\n");
|
||||||
|
|
||||||
|
r = MsiSummaryInfoPersist(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoPersist wrong error %u\n", r);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiOpenDatabaseW(msifileW, MSIDBOPEN_READONLY, &hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiOpenDatabase failed\n");
|
||||||
|
|
||||||
|
r = MsiGetSummaryInformationA(hdb, NULL, 1, &hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiGetSummaryInformation wrong error\n");
|
||||||
|
|
||||||
|
sz = 0x10;
|
||||||
|
strcpy(buf,"x");
|
||||||
|
r = MsiSummaryInfoGetPropertyA(hsuminfo, PID_AUTHOR, &type, NULL, NULL, buf, &sz);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiSummaryInfoGetPropertyA wrong error\n");
|
||||||
|
todo_wine
|
||||||
|
ok(!strcmp(buf,"Fabian3"), "buffer was wrong: %s\n", buf);
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hsuminfo);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
r = MsiCloseHandle(hdb);
|
||||||
|
ok(r == ERROR_SUCCESS, "MsiCloseHandle failed\n");
|
||||||
|
|
||||||
|
/* Cleanup */
|
||||||
r = DeleteFileA(msifile);
|
r = DeleteFileA(msifile);
|
||||||
ok(r, "DeleteFile failed\n");
|
ok(r, "DeleteFile failed\n");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue