Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sebastian Mayr
wine
Commits
3fd518a5
Commit
3fd518a5
authored
17 years ago
by
Misha Koshelev
Committed by
Alexandre Julliard
17 years ago
Browse files
Options
Downloads
Patches
Plain Diff
msi/tests: automation: Add test for Installer::OpenDatabase.
parent
b489ed44
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/msi/msiserver_dispids.h
+1
-1
1 addition, 1 deletion
dlls/msi/msiserver_dispids.h
dlls/msi/tests/automation.c
+35
-7
35 additions, 7 deletions
dlls/msi/tests/automation.c
with
36 additions
and
8 deletions
dlls/msi/msiserver_dispids.h
+
1
−
1
View file @
3fd518a5
...
...
@@ -18,7 +18,7 @@
#define DISPID_INSTALLER_CREATERECORD 1
#define DISPID_INSTALLER_OPENPACKAGE 2
#define DISPID_INSTALLER_OPENDATABASE
3
#define DISPID_INSTALLER_OPENDATABASE
4
#define DISPID_INSTALLER_INSTALLPRODUCT 8
#define DISPID_INSTALLER_REGISTRYVALUE 11
#define DISPID_INSTALLER_PRODUCTSTATE 17
...
...
This diff is collapsed.
Click to expand it.
dlls/msi/tests/automation.c
+
35
−
7
View file @
3fd518a5
...
...
@@ -458,9 +458,9 @@ static void test_dispid(void)
{
ok
(
get_dispid
(
pInstaller
,
"CreateRecord"
)
==
1
,
"dispid wrong
\n
"
);
ok
(
get_dispid
(
pInstaller
,
"OpenPackage"
)
==
2
,
"dispid wrong
\n
"
);
todo_wine
{
ok
(
get_dispid
(
pInstaller
,
"OpenProduct"
)
==
3
,
"dispid wrong
\n
"
);
todo_wine
ok
(
get_dispid
(
pInstaller
,
"OpenProduct"
)
==
3
,
"dispid wrong
\n
"
);
ok
(
get_dispid
(
pInstaller
,
"OpenDatabase"
)
==
4
,
"dispid wrong
\n
"
);
todo_wine
{
ok
(
get_dispid
(
pInstaller
,
"SummaryInformation"
)
==
5
,
"dispid wrong
\n
"
);
ok
(
get_dispid
(
pInstaller
,
"UILevel"
)
==
6
,
"dispid wrong
\n
"
);
ok
(
get_dispid
(
pInstaller
,
"EnableLog"
)
==
7
,
"dispid wrong
\n
"
);
...
...
@@ -765,6 +765,25 @@ static HRESULT Installer_OpenPackage(LPCWSTR szPackagePath, int options, IDispat
return
hr
;
}
static
HRESULT
Installer_OpenDatabase
(
LPCWSTR
szDatabasePath
,
int
openmode
,
IDispatch
**
pDatabase
)
{
VARIANT
varresult
;
VARIANTARG
vararg
[
2
];
DISPPARAMS
dispparams
=
{
vararg
,
NULL
,
sizeof
(
vararg
)
/
sizeof
(
VARIANTARG
),
0
};
HRESULT
hr
;
VariantInit
(
&
vararg
[
1
]);
V_VT
(
&
vararg
[
1
])
=
VT_BSTR
;
V_BSTR
(
&
vararg
[
1
])
=
SysAllocString
(
szDatabasePath
);
VariantInit
(
&
vararg
[
0
]);
V_VT
(
&
vararg
[
0
])
=
VT_I4
;
V_I4
(
&
vararg
[
0
])
=
openmode
;
hr
=
invoke
(
pInstaller
,
"OpenDatabase"
,
DISPATCH_METHOD
,
&
dispparams
,
&
varresult
,
VT_DISPATCH
);
*
pDatabase
=
V_DISPATCH
(
&
varresult
);
return
hr
;
}
static
HRESULT
Installer_InstallProduct
(
LPCWSTR
szPackagePath
,
LPCWSTR
szPropertyValues
)
{
VARIANT
varresult
;
...
...
@@ -1263,7 +1282,7 @@ static HRESULT SummaryInfo_PropertyGet(IDispatch *pSummaryInfo, int pid, VARIANT
/* Test the various objects */
static
void
test_SummaryInfo
(
IDispatch
*
pSummaryInfo
,
const
msi_summary_info
*
info
,
int
num_info
)
static
void
test_SummaryInfo
(
IDispatch
*
pSummaryInfo
,
const
msi_summary_info
*
info
,
int
num_info
,
BOOL
readonly
)
{
static
const
WCHAR
szPropertyException
[]
=
{
'P'
,
'r'
,
'o'
,
'p'
,
'e'
,
'r'
,
't'
,
'y'
,
','
,
'P'
,
'i'
,
'd'
,
0
};
VARIANT
varresult
;
...
...
@@ -1340,7 +1359,7 @@ static void test_SummaryInfo(IDispatch *pSummaryInfo, const msi_summary_info *in
ok
(
hr
==
S_OK
,
"SummaryInfo_PropertyGet failed, hresult 0x%08x
\n
"
,
hr
);
}
static
void
test_Database
(
IDispatch
*
pDatabase
)
static
void
test_Database
(
IDispatch
*
pDatabase
,
BOOL
readonly
)
{
static
WCHAR
szSql
[]
=
{
'S'
,
'E'
,
'L'
,
'E'
,
'C'
,
'T'
,
' '
,
'`'
,
'F'
,
'e'
,
'a'
,
't'
,
'u'
,
'r'
,
'e'
,
'`'
,
' '
,
'F'
,
'R'
,
'O'
,
'M'
,
' '
,
'`'
,
'F'
,
'e'
,
'a'
,
't'
,
'u'
,
'r'
,
'e'
,
'`'
,
' '
,
'W'
,
'H'
,
'E'
,
'R'
,
'E'
,
' '
,
'`'
,
'F'
,
'e'
,
'a'
,
't'
,
'u'
,
'r'
,
'e'
,
'_'
,
'P'
,
'a'
,
'r'
,
'e'
,
'n'
,
't'
,
'`'
,
'='
,
'\''
,
'O'
,
'n'
,
'e'
,
'\''
,
0
};
static
WCHAR
szThree
[]
=
{
'T'
,
'h'
,
'r'
,
'e'
,
'e'
,
0
};
...
...
@@ -1450,7 +1469,7 @@ static void test_Database(IDispatch *pDatabase)
ok
(
pSummaryInfo
!=
NULL
,
"Database_SummaryInformation should not have returned NULL record
\n
"
);
if
(
pSummaryInfo
)
{
test_SummaryInfo
(
pSummaryInfo
,
summary_info
,
sizeof
(
summary_info
)
/
sizeof
(
msi_summary_info
));
test_SummaryInfo
(
pSummaryInfo
,
summary_info
,
sizeof
(
summary_info
)
/
sizeof
(
msi_summary_info
)
,
readonly
);
IDispatch_Release
(
pSummaryInfo
);
}
}
...
...
@@ -1538,7 +1557,7 @@ static void test_Session(IDispatch *pSession)
ok
(
hr
==
S_OK
,
"Session_Database failed, hresult 0x%08x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
{
test_Database
(
pDatabase
);
test_Database
(
pDatabase
,
TRUE
);
IDispatch_Release
(
pDatabase
);
}
...
...
@@ -2136,7 +2155,7 @@ static void test_Installer(void)
WCHAR
szPath
[
MAX_PATH
];
HRESULT
hr
;
UINT
len
;
IDispatch
*
pSession
=
NULL
,
*
pRecord
=
NULL
,
*
pStringList
=
NULL
;
IDispatch
*
pSession
=
NULL
,
*
pDatabase
=
NULL
,
*
pRecord
=
NULL
,
*
pStringList
=
NULL
;
int
iValue
,
iCount
;
if
(
!
pInstaller
)
return
;
...
...
@@ -2206,6 +2225,15 @@ static void test_Installer(void)
IDispatch_Release
(
pSession
);
}
/* Installer::OpenDatabase */
hr
=
Installer_OpenDatabase
(
szPath
,
(
int
)
MSIDBOPEN_TRANSACT
,
&
pDatabase
);
ok
(
hr
==
S_OK
,
"Installer_OpenDatabase failed, hresult 0x%08x
\n
"
,
hr
);
if
(
hr
==
S_OK
)
{
test_Database
(
pDatabase
,
FALSE
);
IDispatch_Release
(
pDatabase
);
}
/* Installer::RegistryValue */
test_Installer_RegistryValue
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment