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
3fc13d4b
Commit
3fc13d4b
authored
Oct 23, 2006
by
James Hawkins
Committed by
Alexandre Julliard
Oct 24, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msi: Allow more customization of install test files.
parent
a3a3d6c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
21 deletions
+33
-21
install.c
dlls/msi/tests/install.c
+33
-21
No files found.
dlls/msi/tests/install.c
View file @
3fc13d4b
...
...
@@ -336,25 +336,28 @@ static INT_PTR get_open_info(char *pszName, USHORT *pdate, USHORT *ptime,
return
(
INT_PTR
)
handle
;
}
static
void
add_file
(
HFCI
hfci
,
c
har
*
file
)
static
void
add_file
(
HFCI
hfci
,
c
onst
char
*
file
,
TCOMP
compress
)
{
char
path
[
MAX_PATH
];
char
filename
[
MAX_PATH
];
BOOL
res
;
lstrcpyA
(
path
,
CURR_DIR
);
lstrcatA
(
path
,
"
\\
"
);
lstrcatA
(
path
,
file
);
res
=
FCIAddFile
(
hfci
,
path
,
file
,
FALSE
,
get_next_cabinet
,
progress
,
get_open_info
,
tcompTYPE_MSZIP
);
lstrcpyA
(
filename
,
file
);
res
=
FCIAddFile
(
hfci
,
path
,
filename
,
FALSE
,
get_next_cabinet
,
progress
,
get_open_info
,
compress
);
ok
(
res
,
"Expected FCIAddFile to succeed
\n
"
);
}
static
void
set_cab_parameters
(
PCCAB
pCabParams
,
const
CHAR
*
name
)
static
void
set_cab_parameters
(
PCCAB
pCabParams
,
const
CHAR
*
name
,
DWORD
max_size
)
{
ZeroMemory
(
pCabParams
,
sizeof
(
CCAB
));
pCabParams
->
cb
=
MEDIA_SIZE
;
pCabParams
->
cb
=
max_size
;
pCabParams
->
cbFolderThresh
=
FOLDER_THRESHOLD
;
pCabParams
->
setID
=
0xbeef
;
lstrcpyA
(
pCabParams
->
szCabPath
,
CURR_DIR
);
...
...
@@ -362,16 +365,15 @@ static void set_cab_parameters(PCCAB pCabParams, const CHAR *name)
lstrcpyA
(
pCabParams
->
szCab
,
name
);
}
static
void
create_cab_file
(
const
CHAR
*
name
)
static
void
create_cab_file
(
const
CHAR
*
name
,
DWORD
max_size
,
const
CHAR
*
files
)
{
CCAB
cabParams
;
LPCSTR
ptr
;
HFCI
hfci
;
ERF
erf
;
static
CHAR
four_txt
[]
=
"four.txt"
,
five_txt
[]
=
"five.txt"
;
BOOL
res
;
set_cab_parameters
(
&
cabParams
,
name
);
set_cab_parameters
(
&
cabParams
,
name
,
max_size
);
hfci
=
FCICreate
(
&
erf
,
file_placed
,
mem_alloc
,
mem_free
,
fci_open
,
fci_read
,
fci_write
,
fci_close
,
fci_seek
,
fci_delete
,
...
...
@@ -379,8 +381,12 @@ static void create_cab_file(const CHAR *name)
ok
(
hfci
!=
NULL
,
"Failed to create an FCI context
\n
"
);
add_file
(
hfci
,
four_txt
);
add_file
(
hfci
,
five_txt
);
ptr
=
files
;
while
(
*
ptr
)
{
add_file
(
hfci
,
ptr
,
tcompTYPE_MSZIP
);
ptr
+=
lstrlen
(
ptr
)
+
1
;
}
res
=
FCIFlushCabinet
(
hfci
,
FALSE
,
get_next_cabinet
,
progress
);
ok
(
res
,
"Failed to flush the cabinet
\n
"
);
...
...
@@ -406,15 +412,21 @@ static BOOL get_program_files_dir(LPSTR buf)
return
TRUE
;
}
static
void
create_file
(
const
CHAR
*
name
)
static
void
create_file
(
const
CHAR
*
name
,
DWORD
size
)
{
HANDLE
file
;
DWORD
written
;
DWORD
written
,
left
;
file
=
CreateFileA
(
name
,
GENERIC_WRITE
,
0
,
NULL
,
CREATE_ALWAYS
,
0
,
NULL
);
ok
(
file
!=
INVALID_HANDLE_VALUE
,
"Failure to open file %s
\n
"
,
name
);
WriteFile
(
file
,
name
,
strlen
(
name
),
&
written
,
NULL
);
WriteFile
(
file
,
"
\n
"
,
strlen
(
"
\n
"
),
&
written
,
NULL
);
left
=
size
-
lstrlen
(
name
)
-
1
;
SetFilePointer
(
file
,
left
,
NULL
,
FILE_CURRENT
);
SetEndOfFile
(
file
);
CloseHandle
(
file
);
}
...
...
@@ -423,18 +435,18 @@ static void create_test_files(void)
get_program_files_dir
(
PROG_FILES_DIR
);
CreateDirectoryA
(
"msitest"
,
NULL
);
create_file
(
"msitest
\\
one.txt"
);
create_file
(
"msitest
\\
one.txt"
,
100
);
CreateDirectoryA
(
"msitest
\\
first"
,
NULL
);
create_file
(
"msitest
\\
first
\\
two.txt"
);
create_file
(
"msitest
\\
first
\\
two.txt"
,
100
);
CreateDirectoryA
(
"msitest
\\
second"
,
NULL
);
create_file
(
"msitest
\\
second
\\
three.txt"
);
create_file
(
"msitest
\\
second
\\
three.txt"
,
100
);
create_file
(
"four.txt"
);
create_file
(
"five.txt"
);
create_cab_file
(
"msitest.cab"
);
create_file
(
"four.txt"
,
100
);
create_file
(
"five.txt"
,
100
);
create_cab_file
(
"msitest.cab"
,
MEDIA_SIZE
,
"four.txt
\0
five.txt
\0
"
);
create_file
(
"msitest
\\
filename"
);
create_file
(
"msitest
\\
service.exe"
);
create_file
(
"msitest
\\
filename"
,
100
);
create_file
(
"msitest
\\
service.exe"
,
100
);
DeleteFileA
(
"four.txt"
);
DeleteFileA
(
"five.txt"
);
...
...
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