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
6f201337
Commit
6f201337
authored
Jan 11, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test and fix a few problems with OLE storage streams.
parent
ad72823e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
118 additions
and
3 deletions
+118
-3
stg_stream.c
dlls/ole32/stg_stream.c
+3
-0
storage32.c
dlls/ole32/storage32.c
+8
-3
storage32.c
dlls/ole32/tests/storage32.c
+107
-0
No files found.
dlls/ole32/stg_stream.c
View file @
6f201337
...
@@ -447,6 +447,9 @@ HRESULT WINAPI StgStreamImpl_Write(
...
@@ -447,6 +447,9 @@ HRESULT WINAPI StgStreamImpl_Write(
return
STG_E_ACCESSDENIED
;
return
STG_E_ACCESSDENIED
;
}
}
if
(
!
pv
)
return
STG_E_INVALIDPOINTER
;
/*
/*
* If the caller is not interested in the number of bytes written,
* If the caller is not interested in the number of bytes written,
* we use another buffer to avoid "if" statements in the code.
* we use another buffer to avoid "if" statements in the code.
...
...
dlls/ole32/storage32.c
View file @
6f201337
...
@@ -872,18 +872,23 @@ HRESULT WINAPI StorageBaseImpl_CreateStream(
...
@@ -872,18 +872,23 @@ HRESULT WINAPI StorageBaseImpl_CreateStream(
if
(
pwcsName
==
0
)
if
(
pwcsName
==
0
)
return
STG_E_INVALIDNAME
;
return
STG_E_INVALIDNAME
;
if
(
reserved1
||
reserved2
)
return
STG_E_INVALIDPARAMETER
;
/*
/*
* Validate the STGM flags
* Validate the STGM flags
*/
*/
if
(
FAILED
(
validateSTGM
(
grfMode
)
))
if
(
FAILED
(
validateSTGM
(
grfMode
)
))
return
STG_E_INVALIDFLAG
;
return
STG_E_INVALIDFLAG
;
if
(
!
(
grfMode
&
STGM_SHARE_EXCLUSIVE
)
)
return
STG_E_INVALIDFLAG
;
/*
/*
* As documented.
* As documented.
*/
*/
if
(
!
(
grfMode
&
STGM_SHARE_EXCLUSIVE
)
||
if
((
grfMode
&
STGM_DELETEONRELEASE
)
||
(
grfMode
&
STGM_DELETEONRELEASE
)
||
(
grfMode
&
STGM_TRANSACTED
))
(
grfMode
&
STGM_TRANSACTED
)
)
return
STG_E_INVALIDFUNCTION
;
return
STG_E_INVALIDFUNCTION
;
/*
/*
...
...
dlls/ole32/tests/storage32.c
View file @
6f201337
...
@@ -150,8 +150,115 @@ void test_create_storage_modes(void)
...
@@ -150,8 +150,115 @@ void test_create_storage_modes(void)
ok
(
DeleteFileW
(
filename
),
"failed to delete file
\n
"
);
ok
(
DeleteFileW
(
filename
),
"failed to delete file
\n
"
);
}
}
void
test_storage_stream
(
void
)
{
static
const
WCHAR
stmname
[]
=
{
'C'
,
'O'
,
'N'
,
'T'
,
'E'
,
'N'
,
'T'
,
'S'
,
0
};
static
const
WCHAR
szPrefix
[]
=
{
's'
,
't'
,
'g'
,
0
};
static
const
WCHAR
szDot
[]
=
{
'.'
,
0
};
static
const
WCHAR
longname
[]
=
{
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
'a'
,
0
};
WCHAR
filename
[
MAX_PATH
];
IStorage
*
stg
=
NULL
;
HRESULT
r
;
IStream
*
stm
=
NULL
;
ULONG
count
=
0
;
LARGE_INTEGER
pos
;
ULARGE_INTEGER
p
;
unsigned
char
buffer
[
0x100
];
if
(
!
GetTempFileNameW
(
szDot
,
szPrefix
,
0
,
filename
))
return
;
DeleteFileW
(
filename
);
r
=
StgCreateDocfile
(
filename
,
STGM_CREATE
|
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
|
STGM_TRANSACTED
,
0
,
&
stg
);
ok
(
r
==
S_OK
,
"StgCreateDocfile failed
\n
"
);
/* try create some invalid streams */
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
1
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDPARAMETER
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
1
,
&
stm
);
ok
(
r
==
STG_E_INVALIDPARAMETER
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
0
,
NULL
);
ok
(
r
==
STG_E_INVALIDPOINTER
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
NULL
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDNAME
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
longname
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDNAME
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_READWRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDFLAG
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_READ
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDFLAG
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_WRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDFLAG
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_DENY_NONE
|
STGM_READWRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDFLAG
,
"IStorage->CreateStream wrong error
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_DENY_NONE
|
STGM_READ
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_INVALIDFLAG
,
"IStorage->CreateStream wrong error
\n
"
);
/* now really create a stream and delete it */
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
S_OK
,
"IStorage->CreateStream failed
\n
"
);
r
=
IStream_Release
(
stm
);
ok
(
r
==
0
,
"wrong ref count
\n
"
);
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
STG_E_FILEALREADYEXISTS
,
"IStorage->CreateStream failed
\n
"
);
r
=
IStorage_DestroyElement
(
stg
,
stmname
);
ok
(
r
==
S_OK
,
"IStorage->DestroyElement failed
\n
"
);
/* create a stream and write to it */
r
=
IStorage_CreateStream
(
stg
,
stmname
,
STGM_SHARE_EXCLUSIVE
|
STGM_READWRITE
,
0
,
0
,
&
stm
);
ok
(
r
==
S_OK
,
"IStorage->CreateStream failed
\n
"
);
r
=
IStream_Write
(
stm
,
NULL
,
0
,
NULL
);
ok
(
r
==
STG_E_INVALIDPOINTER
,
"IStream->Write wrong error
\n
"
);
r
=
IStream_Write
(
stm
,
"Hello
\n
"
,
0
,
NULL
);
ok
(
r
==
S_OK
,
"failed to write stream
\n
"
);
r
=
IStream_Write
(
stm
,
"Hello
\n
"
,
0
,
&
count
);
ok
(
r
==
S_OK
,
"failed to write stream
\n
"
);
r
=
IStream_Write
(
stm
,
"Hello
\n
"
,
6
,
&
count
);
ok
(
r
==
S_OK
,
"failed to write stream
\n
"
);
r
=
IStream_Commit
(
stm
,
STGC_DEFAULT
);
ok
(
r
==
S_OK
,
"failed to commit stream
\n
"
);
r
=
IStream_Commit
(
stm
,
STGC_DEFAULT
);
ok
(
r
==
S_OK
,
"failed to commit stream
\n
"
);
/* seek round a bit, reset the stream size */
pos
.
QuadPart
=
0
;
r
=
IStream_Seek
(
stm
,
pos
,
3
,
&
p
);
ok
(
r
==
STG_E_INVALIDFUNCTION
,
"IStream->Seek returned wrong error
\n
"
);
r
=
IStream_Seek
(
stm
,
pos
,
STREAM_SEEK_SET
,
NULL
);
ok
(
r
==
S_OK
,
"failed to seek stream
\n
"
);
r
=
IStream_Seek
(
stm
,
pos
,
STREAM_SEEK_SET
,
&
p
);
ok
(
r
==
S_OK
,
"failed to seek stream
\n
"
);
r
=
IStream_SetSize
(
stm
,
p
);
ok
(
r
==
S_OK
,
"failed to set pos
\n
"
);
pos
.
QuadPart
=
10
;
r
=
IStream_Seek
(
stm
,
pos
,
STREAM_SEEK_SET
,
&
p
);
ok
(
r
==
S_OK
,
"failed to seek stream
\n
"
);
ok
(
p
.
QuadPart
==
10
,
"at wrong place
\n
"
);
pos
.
QuadPart
=
0
;
r
=
IStream_Seek
(
stm
,
pos
,
STREAM_SEEK_END
,
&
p
);
ok
(
r
==
S_OK
,
"failed to seek stream
\n
"
);
ok
(
p
.
QuadPart
==
0
,
"at wrong place
\n
"
);
r
=
IStream_Read
(
stm
,
buffer
,
sizeof
buffer
,
&
count
);
ok
(
r
==
S_OK
,
"failed to set pos
\n
"
);
ok
(
count
==
0
,
"read bytes from empty stream
\n
"
);
/* wrap up */
r
=
IStream_Release
(
stm
);
ok
(
r
==
0
,
"wrong ref count
\n
"
);
r
=
IStorage_Release
(
stg
);
ok
(
r
==
0
,
"wrong ref count
\n
"
);
r
=
DeleteFileW
(
filename
);
ok
(
r
==
TRUE
,
"file should exist
\n
"
);
}
START_TEST
(
storage32
)
START_TEST
(
storage32
)
{
{
test_hglobal_storage_stat
();
test_hglobal_storage_stat
();
test_create_storage_modes
();
test_create_storage_modes
();
test_storage_stream
();
}
}
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