Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
45f9cb4d
Commit
45f9cb4d
authored
Jul 22, 2008
by
James Hawkins
Committed by
Alexandre Julliard
Jul 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add more tests for MsiGetSourcePath.
parent
ee60c49d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
111 additions
and
0 deletions
+111
-0
package.c
dlls/msi/tests/package.c
+111
-0
No files found.
dlls/msi/tests/package.c
View file @
45f9cb4d
...
...
@@ -5581,17 +5581,50 @@ static void test_shortlongsource(void)
r
=
add_directory_entry
(
hdb
,
"'SubDir', 'TARGETDIR', 'short|long'"
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
/* CostInitialize:short */
r
=
add_directory_entry
(
hdb
,
"'SubDir2', 'TARGETDIR', 'one|two'"
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
/* CostInitialize:long */
r
=
add_directory_entry
(
hdb
,
"'SubDir3', 'TARGETDIR', 'three|four'"
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
/* FileCost:short */
r
=
add_directory_entry
(
hdb
,
"'SubDir4', 'TARGETDIR', 'five|six'"
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
/* FileCost:long */
r
=
add_directory_entry
(
hdb
,
"'SubDir5', 'TARGETDIR', 'seven|eight'"
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
/* CostFinalize:short */
r
=
add_directory_entry
(
hdb
,
"'SubDir6', 'TARGETDIR', 'nine|ten'"
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
/* CostFinalize:long */
r
=
add_directory_entry
(
hdb
,
"'SubDir7', 'TARGETDIR', 'eleven|twelve'"
);
ok
(
r
==
S_OK
,
"failed
\n
"
);
hpkg
=
package_from_db
(
hdb
);
ok
(
hpkg
,
"failed to create package
\n
"
);
MsiCloseHandle
(
hdb
);
CreateDirectoryA
(
"one"
,
NULL
);
CreateDirectoryA
(
"four"
,
NULL
);
r
=
MsiDoAction
(
hpkg
,
"CostInitialize"
);
ok
(
r
==
ERROR_SUCCESS
,
"file cost failed
\n
"
);
CreateDirectory
(
"five"
,
NULL
);
CreateDirectory
(
"eight"
,
NULL
);
r
=
MsiDoAction
(
hpkg
,
"FileCost"
);
ok
(
r
==
ERROR_SUCCESS
,
"file cost failed
\n
"
);
CreateDirectory
(
"nine"
,
NULL
);
CreateDirectory
(
"twelve"
,
NULL
);
r
=
MsiDoAction
(
hpkg
,
"CostFinalize"
);
ok
(
r
==
ERROR_SUCCESS
,
"file cost failed
\n
"
);
...
...
@@ -5623,9 +5656,87 @@ static void test_shortlongsource(void)
ok
(
!
lstrcmpA
(
path
,
subsrc
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
subsrc
,
path
);
ok
(
size
==
lstrlenA
(
subsrc
),
"Expected %d, got %d
\n
"
,
lstrlenA
(
subsrc
),
size
);
lstrcpyA
(
subsrc
,
cwd
);
lstrcatA
(
subsrc
,
"two"
);
lstrcatA
(
subsrc
,
"
\\
"
);
/* short dir exists before CostInitialize */
size
=
MAX_PATH
;
lstrcpyA
(
path
,
"kiwi"
);
r
=
MsiGetSourcePath
(
hpkg
,
"SubDir2"
,
path
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
path
,
subsrc
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
subsrc
,
path
);
ok
(
size
==
lstrlenA
(
subsrc
),
"Expected %d, got %d
\n
"
,
lstrlenA
(
subsrc
),
size
);
lstrcpyA
(
subsrc
,
cwd
);
lstrcatA
(
subsrc
,
"four"
);
lstrcatA
(
subsrc
,
"
\\
"
);
/* long dir exists before CostInitialize */
size
=
MAX_PATH
;
lstrcpyA
(
path
,
"kiwi"
);
r
=
MsiGetSourcePath
(
hpkg
,
"SubDir3"
,
path
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
path
,
subsrc
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
subsrc
,
path
);
ok
(
size
==
lstrlenA
(
subsrc
),
"Expected %d, got %d
\n
"
,
lstrlenA
(
subsrc
),
size
);
lstrcpyA
(
subsrc
,
cwd
);
lstrcatA
(
subsrc
,
"six"
);
lstrcatA
(
subsrc
,
"
\\
"
);
/* short dir exists before FileCost */
size
=
MAX_PATH
;
lstrcpyA
(
path
,
"kiwi"
);
r
=
MsiGetSourcePath
(
hpkg
,
"SubDir4"
,
path
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
path
,
subsrc
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
subsrc
,
path
);
ok
(
size
==
lstrlenA
(
subsrc
),
"Expected %d, got %d
\n
"
,
lstrlenA
(
subsrc
),
size
);
lstrcpyA
(
subsrc
,
cwd
);
lstrcatA
(
subsrc
,
"eight"
);
lstrcatA
(
subsrc
,
"
\\
"
);
/* long dir exists before FileCost */
size
=
MAX_PATH
;
lstrcpyA
(
path
,
"kiwi"
);
r
=
MsiGetSourcePath
(
hpkg
,
"SubDir5"
,
path
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
path
,
subsrc
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
subsrc
,
path
);
ok
(
size
==
lstrlenA
(
subsrc
),
"Expected %d, got %d
\n
"
,
lstrlenA
(
subsrc
),
size
);
lstrcpyA
(
subsrc
,
cwd
);
lstrcatA
(
subsrc
,
"ten"
);
lstrcatA
(
subsrc
,
"
\\
"
);
/* short dir exists before CostFinalize */
size
=
MAX_PATH
;
lstrcpyA
(
path
,
"kiwi"
);
r
=
MsiGetSourcePath
(
hpkg
,
"SubDir6"
,
path
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
path
,
subsrc
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
subsrc
,
path
);
ok
(
size
==
lstrlenA
(
subsrc
),
"Expected %d, got %d
\n
"
,
lstrlenA
(
subsrc
),
size
);
lstrcpyA
(
subsrc
,
cwd
);
lstrcatA
(
subsrc
,
"twelve"
);
lstrcatA
(
subsrc
,
"
\\
"
);
/* long dir exists before CostFinalize */
size
=
MAX_PATH
;
lstrcpyA
(
path
,
"kiwi"
);
r
=
MsiGetSourcePath
(
hpkg
,
"SubDir7"
,
path
,
&
size
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %d
\n
"
,
r
);
ok
(
!
lstrcmpA
(
path
,
subsrc
),
"Expected
\"
%s
\"
, got
\"
%s
\"\n
"
,
subsrc
,
path
);
ok
(
size
==
lstrlenA
(
subsrc
),
"Expected %d, got %d
\n
"
,
lstrlenA
(
subsrc
),
size
);
MsiCloseHandle
(
hpkg
);
RemoveDirectoryA
(
"short"
);
RemoveDirectoryA
(
"long"
);
RemoveDirectoryA
(
"one"
);
RemoveDirectoryA
(
"four"
);
RemoveDirectoryA
(
"five"
);
RemoveDirectoryA
(
"eight"
);
RemoveDirectoryA
(
"nine"
);
RemoveDirectoryA
(
"twelve"
);
DeleteFileA
(
msifile
);
}
...
...
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