Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
64c75d1e
Commit
64c75d1e
authored
Dec 16, 2007
by
James Hawkins
Committed by
Alexandre Julliard
Dec 17, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add tests for MsiEnumClients.
parent
4777a3a3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
235 additions
and
0 deletions
+235
-0
registry.c
dlls/msi/registry.c
+3
-0
msi.c
dlls/msi/tests/msi.c
+232
-0
No files found.
dlls/msi/registry.c
View file @
64c75d1e
...
...
@@ -1311,6 +1311,9 @@ UINT WINAPI MsiEnumClientsW(LPCWSTR szComponent, DWORD index, LPWSTR szProduct)
TRACE
(
"%s %d %p
\n
"
,
debugstr_w
(
szComponent
),
index
,
szProduct
);
if
(
!
szComponent
||
!
szProduct
)
return
ERROR_INVALID_PARAMETER
;
r
=
MSIREG_OpenComponentsKey
(
szComponent
,
&
hkeyComp
,
FALSE
);
if
(
r
!=
ERROR_SUCCESS
)
return
ERROR_NO_MORE_ITEMS
;
...
...
dlls/msi/tests/msi.c
View file @
64c75d1e
...
...
@@ -1588,6 +1588,237 @@ static void test_MsiGetProductCode(void)
RegCloseKey
(
compkey
);
}
static
void
test_MsiEnumClients
(
void
)
{
HKEY
compkey
;
CHAR
prodcode
[
MAX_PATH
];
CHAR
prod_squashed
[
MAX_PATH
];
CHAR
prodcode2
[
MAX_PATH
];
CHAR
prod2_squashed
[
MAX_PATH
];
CHAR
component
[
MAX_PATH
];
CHAR
comp_base85
[
MAX_PATH
];
CHAR
comp_squashed
[
MAX_PATH
];
CHAR
product
[
MAX_PATH
];
CHAR
keypath
[
MAX_PATH
];
LPSTR
usersid
;
LONG
res
;
UINT
r
;
create_test_guid
(
prodcode
,
prod_squashed
);
create_test_guid
(
prodcode2
,
prod2_squashed
);
compose_base85_guid
(
component
,
comp_base85
,
comp_squashed
);
get_user_sid
(
&
usersid
);
/* NULL szComponent */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
NULL
,
0
,
product
);
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
/* empty szComponent */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
""
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
/* NULL lpProductBuf */
r
=
MsiEnumClientsA
(
component
,
0
,
NULL
);
todo_wine
{
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
}
/* all params correct, component missing */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_UNKNOWN_COMPONENT
,
"Expected ERROR_UNKNOWN_COMPONENT, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
lstrcpyA
(
keypath
,
"Software
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
"
);
lstrcatA
(
keypath
,
"Installer
\\
UserData
\\
"
);
lstrcatA
(
keypath
,
usersid
);
lstrcatA
(
keypath
,
"
\\
Components
\\
"
);
lstrcatA
(
keypath
,
comp_squashed
);
res
=
RegCreateKeyA
(
HKEY_LOCAL_MACHINE
,
keypath
,
&
compkey
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
/* user unmanaged component key exists */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_UNKNOWN_COMPONENT
,
"Expected ERROR_UNKNOWN_COMPONENT, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
/* index > 0, no products exist */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
todo_wine
{
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
res
=
RegSetValueExA
(
compkey
,
prod_squashed
,
0
,
REG_SZ
,
(
const
BYTE
*
)
"C:
\\
imapath"
,
10
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
/* product value exists */
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
),
"Expected %s, got %s
\n
"
,
prodcode
,
product
);
}
/* try index 0 again */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
),
"Expected %s, got %s
\n
"
,
prodcode
,
product
);
}
/* try index 1, second product value does not exist */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"Expected ERROR_NO_MORE_ITEMS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
res
=
RegSetValueExA
(
compkey
,
prod2_squashed
,
0
,
REG_SZ
,
(
const
BYTE
*
)
"C:
\\
another"
,
10
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
/* try index 1, second product value does exist */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
todo_wine
{
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
/* start the enumeration over */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
)
||
!
lstrcmpA
(
product
,
prodcode2
),
"Expected %s or %s, got %s
\n
"
,
prodcode
,
prodcode2
,
product
);
}
/* correctly query second product */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
)
||
!
lstrcmpA
(
product
,
prodcode2
),
"Expected %s or %s, got %s
\n
"
,
prodcode
,
prodcode2
,
product
);
}
RegDeleteValueA
(
compkey
,
prod_squashed
);
RegDeleteValueA
(
compkey
,
prod2_squashed
);
RegDeleteKeyA
(
compkey
,
""
);
RegCloseKey
(
compkey
);
lstrcpyA
(
keypath
,
"Software
\\
Microsoft
\\
Windows
\\
CurrentVersion
\\
"
);
lstrcatA
(
keypath
,
"Installer
\\
UserData
\\
S-1-5-18
\\
Components
\\
"
);
lstrcatA
(
keypath
,
comp_squashed
);
res
=
RegCreateKeyA
(
HKEY_LOCAL_MACHINE
,
keypath
,
&
compkey
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
/* user local component key exists */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_UNKNOWN_COMPONENT
,
"Expected ERROR_UNKNOWN_COMPONENT, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
/* index > 0, no products exist */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
todo_wine
{
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
res
=
RegSetValueExA
(
compkey
,
prod_squashed
,
0
,
REG_SZ
,
(
const
BYTE
*
)
"C:
\\
imapath"
,
10
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
/* product value exists */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
),
"Expected %s, got %s
\n
"
,
prodcode
,
product
);
}
/* try index 0 again */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
),
"Expected %s, got %s
\n
"
,
prodcode
,
product
);
}
/* try index 1, second product value does not exist */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
ok
(
r
==
ERROR_NO_MORE_ITEMS
,
"Expected ERROR_NO_MORE_ITEMS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
res
=
RegSetValueExA
(
compkey
,
prod2_squashed
,
0
,
REG_SZ
,
(
const
BYTE
*
)
"C:
\\
another"
,
10
);
ok
(
res
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
res
);
/* try index 1, second product value does exist */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
todo_wine
{
ok
(
r
==
ERROR_INVALID_PARAMETER
,
"Expected ERROR_INVALID_PARAMETER, got %d
\n
"
,
r
);
}
ok
(
!
lstrcmpA
(
product
,
""
),
"Expected product to be unchanged, got %s
\n
"
,
product
);
/* start the enumeration over */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
0
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
)
||
!
lstrcmpA
(
product
,
prodcode2
),
"Expected %s or %s, got %s
\n
"
,
prodcode
,
prodcode2
,
product
);
}
/* correctly query second product */
product
[
0
]
=
'\0'
;
r
=
MsiEnumClientsA
(
component
,
1
,
product
);
todo_wine
{
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
product
,
prodcode
)
||
!
lstrcmpA
(
product
,
prodcode2
),
"Expected %s or %s, got %s
\n
"
,
prodcode
,
prodcode2
,
product
);
}
RegDeleteValueA
(
compkey
,
prod_squashed
);
RegDeleteValueA
(
compkey
,
prod2_squashed
);
RegDeleteKeyA
(
compkey
,
""
);
RegCloseKey
(
compkey
);
}
START_TEST
(
msi
)
{
init_functionpointers
();
...
...
@@ -1601,4 +1832,5 @@ START_TEST(msi)
test_MsiQueryComponentState
();
test_MsiGetComponentPath
();
test_MsiGetProductCode
();
test_MsiEnumClients
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment