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
5c596171
Commit
5c596171
authored
Feb 23, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Feb 23, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Add tests for creating and removing duplicate files.
parent
253a7fa7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
95 additions
and
0 deletions
+95
-0
install.c
dlls/msi/tests/install.c
+95
-0
No files found.
dlls/msi/tests/install.c
View file @
5c596171
...
@@ -1452,6 +1452,54 @@ static const CHAR pub_install_exec_seq_dat[] = "Action\tCondition\tSequence\n"
...
@@ -1452,6 +1452,54 @@ static const CHAR pub_install_exec_seq_dat[] = "Action\tCondition\tSequence\n"
"PublishProduct
\t\t
5200
\n
"
"PublishProduct
\t\t
5200
\n
"
"InstallFinalize
\t\t
6000
\n
"
;
"InstallFinalize
\t\t
6000
\n
"
;
static
const
CHAR
rd_file_dat
[]
=
"File
\t
Component_
\t
FileName
\t
FileSize
\t
Version
\t
Language
\t
Attributes
\t
Sequence
\n
"
"s72
\t
s72
\t
l255
\t
i4
\t
S72
\t
S20
\t
I2
\t
i2
\n
"
"File
\t
File
\n
"
"original.txt
\t
duplicate
\t
original.txt
\t
1000
\t\t\t
8192
\t
1
\n
"
"original2.txt
\t
duplicate
\t
original2.txt
\t
1000
\t\t\t
8192
\t
2
\n
"
"original3.txt
\t
duplicate2
\t
original3.txt
\t
1000
\t\t\t
8192
\t
3
\n
"
;
static
const
CHAR
rd_feature_dat
[]
=
"Feature
\t
Feature_Parent
\t
Title
\t
Description
\t
Display
\t
Level
\t
Directory_
\t
Attributes
\n
"
"s38
\t
S38
\t
L64
\t
L255
\t
I2
\t
i2
\t
S72
\t
i2
\n
"
"Feature
\t
Feature
\n
"
"duplicate
\t\t\t
duplicate feature
\t
1
\t
2
\t
MSITESTDIR
\t
0
\n
"
;
static
const
CHAR
rd_feature_comp_dat
[]
=
"Feature_
\t
Component_
\n
"
"s38
\t
s72
\n
"
"FeatureComponents
\t
Feature_
\t
Component_
\n
"
"duplicate
\t
duplicate
\n
"
;
static
const
CHAR
rd_component_dat
[]
=
"Component
\t
ComponentId
\t
Directory_
\t
Attributes
\t
Condition
\t
KeyPath
\n
"
"s72
\t
S38
\t
s72
\t
i2
\t
S255
\t
S72
\n
"
"Component
\t
Component
\n
"
"duplicate
\t
{EB45D06A-ADFE-44E3-8D41-B7DE150E41AD}
\t
MSITESTDIR
\t
0
\t\t
original.txt
\n
"
"duplicate2
\t
{B8BA60E0-B2E9-488E-9D0E-E60F25F04F97}
\t
MSITESTDIR
\t
0
\t
DUPLICATE2=1
\t
original3.txt
\n
"
;
static
const
CHAR
rd_duplicate_file_dat
[]
=
"FileKey
\t
Component_
\t
File_
\t
DestName
\t
DestFolder
\n
"
"s72
\t
s72
\t
s72
\t
S255
\t
S72
\n
"
"DuplicateFile
\t
FileKey
\n
"
"duplicate
\t
duplicate
\t
original.txt
\t
duplicate.txt
\t\n
"
"duplicate2
\t
duplicate
\t
original2.txt
\t\t
MSITESTDIR
\n
"
"duplicate3
\t
duplicate2
\t
original3.txt
\t
duplicate2.txt
\t\n
"
;
static
const
CHAR
rd_install_exec_seq_dat
[]
=
"Action
\t
Condition
\t
Sequence
\n
"
"s72
\t
S255
\t
I2
\n
"
"InstallExecuteSequence
\t
Action
\n
"
"LaunchConditions
\t\t
100
\n
"
"CostInitialize
\t\t
800
\n
"
"FileCost
\t\t
900
\n
"
"CostFinalize
\t\t
1000
\n
"
"InstallValidate
\t\t
1400
\n
"
"InstallInitialize
\t\t
1500
\n
"
"ProcessComponents
\t\t
1600
\n
"
"RemoveDuplicateFiles
\t\t
1900
\n
"
"InstallFiles
\t\t
2000
\n
"
"DuplicateFiles
\t\t
2100
\n
"
"RegisterProduct
\t\t
5000
\n
"
"PublishFeatures
\t\t
5100
\n
"
"PublishProduct
\t\t
5200
\n
"
"InstallFinalize
\t\t
6000
\n
"
;
typedef
struct
_msi_table
typedef
struct
_msi_table
{
{
const
CHAR
*
filename
;
const
CHAR
*
filename
;
...
@@ -2302,6 +2350,19 @@ static const msi_table pub_tables[] =
...
@@ -2302,6 +2350,19 @@ static const msi_table pub_tables[] =
ADD_TABLE
(
property
)
ADD_TABLE
(
property
)
};
};
static
const
msi_table
rd_tables
[]
=
{
ADD_TABLE
(
directory
),
ADD_TABLE
(
rd_component
),
ADD_TABLE
(
rd_feature
),
ADD_TABLE
(
rd_feature_comp
),
ADD_TABLE
(
rd_file
),
ADD_TABLE
(
rd_duplicate_file
),
ADD_TABLE
(
rd_install_exec_seq
),
ADD_TABLE
(
media
),
ADD_TABLE
(
property
)
};
/* cabinet definitions */
/* cabinet definitions */
/* make the max size large so there is only one cab file */
/* make the max size large so there is only one cab file */
...
@@ -8302,6 +8363,39 @@ static void test_publish_components(void)
...
@@ -8302,6 +8363,39 @@ static void test_publish_components(void)
delete_test_files
();
delete_test_files
();
}
}
static
void
test_remove_duplicate_files
(
void
)
{
UINT
r
;
create_test_files
();
create_file
(
"msitest
\\
original.txt"
,
1000
);
create_file
(
"msitest
\\
original2.txt"
,
1000
);
create_file
(
"msitest
\\
original3.txt"
,
1000
);
create_database
(
msifile
,
rd_tables
,
sizeof
(
rd_tables
)
/
sizeof
(
msi_table
));
MsiSetInternalUI
(
INSTALLUILEVEL_NONE
,
NULL
);
r
=
MsiInstallProductA
(
msifile
,
NULL
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %u
\n
"
,
r
);
ok
(
pf_exists
(
"msitest
\\
original.txt"
),
"file not created
\n
"
);
ok
(
pf_exists
(
"msitest
\\
original2.txt"
),
"file not created
\n
"
);
ok
(
!
pf_exists
(
"msitest
\\
original3.txt"
),
"file created
\n
"
);
ok
(
pf_exists
(
"msitest
\\
duplicate.txt"
),
"file not created
\n
"
);
ok
(
!
pf_exists
(
"msitest
\\
duplicate2.txt"
),
"file created
\n
"
);
r
=
MsiInstallProductA
(
msifile
,
"REMOVE=ALL"
);
ok
(
r
==
ERROR_SUCCESS
,
"Expected ERROR_SUCCESS, got %u
\n
"
,
r
);
ok
(
delete_pf
(
"msitest
\\
original.txt"
,
TRUE
),
"file removed
\n
"
);
ok
(
!
delete_pf
(
"msitest
\\
original2.txt"
,
TRUE
),
"file not removed
\n
"
);
ok
(
!
delete_pf
(
"msitest
\\
original3.txt"
,
TRUE
),
"file not removed
\n
"
);
ok
(
!
delete_pf
(
"msitest
\\
duplicate.txt"
,
TRUE
),
"file not removed
\n
"
);
ok
(
!
delete_pf
(
"msitest
\\
duplicate2.txt"
,
TRUE
),
"file not removed
\n
"
);
ok
(
delete_pf
(
"msitest"
,
FALSE
),
"directory removed
\n
"
);
delete_test_files
();
}
START_TEST
(
install
)
START_TEST
(
install
)
{
{
DWORD
len
;
DWORD
len
;
...
@@ -8404,6 +8498,7 @@ START_TEST(install)
...
@@ -8404,6 +8498,7 @@ START_TEST(install)
test_register_typelib
();
test_register_typelib
();
test_create_remove_shortcut
();
test_create_remove_shortcut
();
test_publish_components
();
test_publish_components
();
test_remove_duplicate_files
();
DeleteFileA
(
log_file
);
DeleteFileA
(
log_file
);
...
...
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