2 * Unit tests for OLE storage
4 * Copyright (c) 2004 Mike McCormack
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
26 #include "wine/test.h"
32 DEFINE_GUID( test_stg_cls
, 0x88888888, 0x0425, 0x0000, 0,0,0,0,0,0,0,0);
34 #define ok_ole_success(hr, func) ok(hr == S_OK, func " failed with error 0x%08x\n", hr)
36 static void test_hglobal_storage_stat(void)
38 ILockBytes
*ilb
= NULL
;
44 r
= CreateILockBytesOnHGlobal( NULL
, TRUE
, &ilb
);
45 ok( r
== S_OK
, "CreateILockBytesOnHGlobal failed\n");
47 mode
= STGM_CREATE
|STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
;/*0x1012*/
48 r
= StgCreateDocfileOnILockBytes( ilb
, mode
, 0, &stg
);
49 ok( r
== S_OK
, "StgCreateDocfileOnILockBytes failed\n");
51 r
= WriteClassStg( stg
, &test_stg_cls
);
52 ok( r
== S_OK
, "WriteClassStg failed\n");
54 memset( &stat
, 0, sizeof stat
);
55 r
= IStorage_Stat( stg
, &stat
, 0 );
57 ok( stat
.pwcsName
== NULL
, "storage name not null\n");
58 ok( stat
.type
== 1, "type is wrong\n");
59 ok( stat
.grfMode
== 0x12, "grf mode is incorrect\n");
60 ok( !memcmp(&stat
.clsid
, &test_stg_cls
, sizeof test_stg_cls
), "CLSID is wrong\n");
62 refcount
= IStorage_Release( stg
);
63 ok( refcount
== 0, "IStorage refcount is wrong\n");
64 refcount
= ILockBytes_Release( ilb
);
65 ok( refcount
== 0, "ILockBytes refcount is wrong\n");
68 static void test_create_storage_modes(void)
70 static const WCHAR szPrefix
[] = { 's','t','g',0 };
71 static const WCHAR szDot
[] = { '.',0 };
72 WCHAR filename
[MAX_PATH
];
76 if(!GetTempFileNameW(szDot
, szPrefix
, 0, filename
))
79 DeleteFileW(filename
);
81 /* test with some invalid parameters */
82 r
= StgCreateDocfile( NULL
, 0, 0, &stg
);
83 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
84 r
= StgCreateDocfile( filename
, 0, 0, &stg
);
85 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
86 r
= StgCreateDocfile( filename
, STGM_CREATE
, 0, &stg
);
87 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
88 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_READWRITE
, 0, &stg
);
89 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
90 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
, 0, &stg
);
91 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
92 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, NULL
);
93 ok(r
==STG_E_INVALIDPOINTER
, "StgCreateDocfile succeeded\n");
94 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 1, &stg
);
95 ok(r
==STG_E_INVALIDPARAMETER
, "StgCreateDocfile succeeded\n");
96 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_DENY_WRITE
| STGM_READWRITE
, 0, &stg
);
97 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
98 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READ
, 0, &stg
);
99 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
100 r
= StgCreateDocfile( filename
, STGM_PRIORITY
, 0, &stg
);
101 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
103 /* StgCreateDocfile seems to be very particular about the flags it accepts */
104 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
| STGM_WRITE
, 0, &stg
);
105 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
106 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
| 8, 0, &stg
);
107 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
108 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
| 0x80, 0, &stg
);
109 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
110 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
| 0x800, 0, &stg
);
111 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
112 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
| 0x8000, 0, &stg
);
113 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
114 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
| 0x80000, 0, &stg
);
115 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
116 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
| 0x800000, 0, &stg
);
117 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
118 ok(stg
== NULL
, "stg was set\n");
120 /* check what happens if the file already exists (which is how it's meant to be used) */
121 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, &stg
);
122 ok(r
==S_OK
, "StgCreateDocfile failed\n");
123 r
= IStorage_Release(stg
);
124 ok(r
== 0, "storage not released\n");
125 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
126 ok(r
==STG_E_FILEALREADYEXISTS
, "StgCreateDocfile wrong error\n"); /* FAILIFTHERE is default */
127 r
= StgCreateDocfile( filename
, STGM_READ
, 0, &stg
);
128 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n"); /* need at least readmode and sharemode */
129 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
, 0, &stg
);
130 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
131 r
= StgCreateDocfile( filename
, STGM_SHARE_DENY_WRITE
, 0, &stg
);
132 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
133 r
= StgCreateDocfile( filename
, STGM_SHARE_DENY_NONE
, 0, &stg
);
134 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile failed\n");
135 r
= StgCreateDocfile( filename
, STGM_SHARE_DENY_NONE
| STGM_TRANSACTED
, 0, &stg
);
136 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile failed\n");
137 r
= StgCreateDocfile( filename
, STGM_SHARE_DENY_NONE
| STGM_READWRITE
, 0, &stg
);
138 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile failed\n");
139 r
= StgCreateDocfile( filename
, STGM_SHARE_DENY_NONE
| STGM_WRITE
, 0, &stg
);
140 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile failed\n");
141 r
= StgCreateDocfile( filename
, STGM_SHARE_DENY_WRITE
| STGM_WRITE
, 0, &stg
);
142 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile failed\n");
143 r
= StgCreateDocfile( filename
, STGM_SHARE_DENY_WRITE
| STGM_READ
, 0, &stg
);
144 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile wrong error\n");
145 r
= StgCreateDocfile( filename
, STGM_TRANSACTED
| STGM_SHARE_DENY_WRITE
| STGM_READ
, 0, &stg
);
146 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile wrong error\n");
147 ok(DeleteFileW(filename
), "failed to delete file\n");
149 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
150 ok(r
==S_OK
, "StgCreateDocfile failed\n");
151 r
= IStorage_Release(stg
);
152 ok(r
== 0, "storage not released\n");
153 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
|STGM_FAILIFTHERE
, 0, &stg
);
154 ok(r
==STG_E_FILEALREADYEXISTS
, "StgCreateDocfile wrong error\n");
155 r
= StgCreateDocfile( filename
, STGM_SHARE_EXCLUSIVE
| STGM_WRITE
, 0, &stg
);
156 ok(r
==STG_E_FILEALREADYEXISTS
, "StgCreateDocfile wrong error\n");
158 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_DENY_WRITE
| STGM_READWRITE
, 0, &stg
);
159 ok(r
==STG_E_INVALIDFLAG
, "StgCreateDocfile succeeded\n");
160 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
161 ok(r
==S_OK
, "StgCreateDocfile failed\n");
162 r
= IStorage_Release(stg
);
163 ok(r
== 0, "storage not released\n");
164 ok(DeleteFileW(filename
), "failed to delete file\n");
166 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
167 ok(r
==S_OK
, "StgCreateDocfile failed\n");
168 r
= IStorage_Release(stg
);
169 ok(r
== 0, "storage not released\n");
170 ok(DeleteFileW(filename
), "failed to delete file\n");
172 /* test the way excel uses StgCreateDocFile */
173 r
= StgCreateDocfile( filename
, STGM_TRANSACTED
|STGM_CREATE
|STGM_SHARE_DENY_WRITE
|STGM_READWRITE
, 0, &stg
);
174 ok(r
==S_OK
, "StgCreateDocfile the excel way failed\n");
177 r
= IStorage_Release(stg
);
178 ok(r
== 0, "storage not released\n");
179 ok(DeleteFileW(filename
), "failed to delete file\n");
182 /* and the way windows media uses it ... */
183 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_DENY_NONE
| STGM_READWRITE
| STGM_TRANSACTED
, 0, &stg
);
184 ok(r
==S_OK
, "StgCreateDocfile the windows media way failed\n");
187 r
= IStorage_Release(stg
);
188 ok(r
== 0, "storage not released\n");
189 ok(DeleteFileW(filename
), "failed to delete file\n");
192 /* looks like we need STGM_TRANSACTED or STGM_CREATE */
193 r
= StgCreateDocfile( filename
, STGM_TRANSACTED
|STGM_SHARE_DENY_WRITE
|STGM_READWRITE
, 0, &stg
);
194 ok(r
==S_OK
, "StgCreateDocfile the excel way failed\n");
197 r
= IStorage_Release(stg
);
198 ok(r
== 0, "storage not released\n");
199 ok(DeleteFileW(filename
), "failed to delete file\n");
202 r
= StgCreateDocfile( filename
, STGM_TRANSACTED
|STGM_CREATE
|STGM_SHARE_DENY_WRITE
|STGM_WRITE
, 0, &stg
);
203 ok(r
==S_OK
, "StgCreateDocfile the excel way failed\n");
206 r
= IStorage_Release(stg
);
207 ok(r
== 0, "storage not released\n");
208 ok(DeleteFileW(filename
), "failed to delete file\n");
211 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, &stg
);
212 ok(r
==S_OK
, "StgCreateDocfile the powerpoint way failed\n");
215 r
= IStorage_Release(stg
);
216 ok(r
== 0, "storage not released\n");
217 ok(DeleteFileW(filename
), "failed to delete file\n");
220 /* test the way msi uses StgCreateDocfile */
221 r
= StgCreateDocfile( filename
, STGM_DIRECT
| STGM_READWRITE
| STGM_SHARE_EXCLUSIVE
, 0, &stg
);
222 ok(r
==S_OK
, "StgCreateDocFile failed\n");
223 r
= IStorage_Release(stg
);
224 ok(r
== 0, "storage not released\n");
225 ok(DeleteFileW(filename
), "failed to delete file\n");
228 static void test_storage_stream(void)
230 static const WCHAR stmname
[] = { 'C','O','N','T','E','N','T','S',0 };
231 static const WCHAR szPrefix
[] = { 's','t','g',0 };
232 static const WCHAR szDot
[] = { '.',0 };
233 static const WCHAR longname
[] = {
234 'a','a','a','a','a','a','a','a','a','a','a','a','a','a','a','a',
235 'a','a','a','a','a','a','a','a','a','a','a','a','a','a','a','a',0
237 WCHAR filename
[MAX_PATH
];
238 IStorage
*stg
= NULL
;
241 IStream
*stm2
= NULL
;
245 unsigned char buffer
[0x100];
247 if(!GetTempFileNameW(szDot
, szPrefix
, 0, filename
))
250 DeleteFileW(filename
);
252 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
253 ok(r
==S_OK
, "StgCreateDocfile failed\n");
255 /* try create some invalid streams */
256 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 1, 0, &stm
);
257 ok(r
==STG_E_INVALIDPARAMETER
, "IStorage->CreateStream wrong error\n");
258 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 1, &stm
);
259 ok(r
==STG_E_INVALIDPARAMETER
, "IStorage->CreateStream wrong error\n");
260 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, NULL
);
261 ok(r
==STG_E_INVALIDPOINTER
, "IStorage->CreateStream wrong error\n");
262 r
= IStorage_CreateStream(stg
, NULL
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
263 ok(r
==STG_E_INVALIDNAME
, "IStorage->CreateStream wrong error\n");
264 r
= IStorage_CreateStream(stg
, longname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
265 ok(r
==STG_E_INVALIDNAME
, "IStorage->CreateStream wrong error, got %d GetLastError()=%d\n", r
, GetLastError());
266 r
= IStorage_CreateStream(stg
, stmname
, STGM_READWRITE
, 0, 0, &stm
);
267 ok(r
==STG_E_INVALIDFLAG
, "IStorage->CreateStream wrong error\n");
268 r
= IStorage_CreateStream(stg
, stmname
, STGM_READ
, 0, 0, &stm
);
269 ok(r
==STG_E_INVALIDFLAG
, "IStorage->CreateStream wrong error\n");
270 r
= IStorage_CreateStream(stg
, stmname
, STGM_WRITE
, 0, 0, &stm
);
271 ok(r
==STG_E_INVALIDFLAG
, "IStorage->CreateStream wrong error\n");
272 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_DENY_NONE
| STGM_READWRITE
, 0, 0, &stm
);
273 ok(r
==STG_E_INVALIDFLAG
, "IStorage->CreateStream wrong error\n");
274 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_DENY_NONE
| STGM_READ
, 0, 0, &stm
);
275 ok(r
==STG_E_INVALIDFLAG
, "IStorage->CreateStream wrong error\n");
277 /* now really create a stream and delete it */
278 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
279 ok(r
==S_OK
, "IStorage->CreateStream failed\n");
280 r
= IStream_Release(stm
);
281 ok(r
== 0, "wrong ref count\n");
282 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
283 ok(r
==STG_E_FILEALREADYEXISTS
, "IStorage->CreateStream failed\n");
284 r
= IStorage_DestroyElement(stg
,stmname
);
285 ok(r
==S_OK
, "IStorage->DestroyElement failed\n");
287 /* create a stream and write to it */
288 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
289 ok(r
==S_OK
, "IStorage->CreateStream failed\n");
291 r
= IStream_Clone(stm
, &stm2
);
292 ok(r
==S_OK
, "failed to clone stream\n");
294 r
= IStream_Write(stm
, NULL
, 0, NULL
);
295 ok(r
==STG_E_INVALIDPOINTER
, "IStream->Write wrong error\n");
296 r
= IStream_Write(stm
, "Hello\n", 0, NULL
);
297 ok(r
==S_OK
, "failed to write stream\n");
298 r
= IStream_Write(stm
, "Hello\n", 0, &count
);
299 ok(r
==S_OK
, "failed to write stream\n");
300 r
= IStream_Write(stm
, "Hello\n", 6, &count
);
301 ok(r
==S_OK
, "failed to write stream\n");
302 r
= IStream_Commit(stm
, STGC_DEFAULT
);
303 ok(r
==S_OK
, "failed to commit stream\n");
304 r
= IStream_Commit(stm
, STGC_DEFAULT
);
305 ok(r
==S_OK
, "failed to commit stream\n");
307 /* seek round a bit, reset the stream size */
309 r
= IStream_Seek(stm
, pos
, 3, &p
);
310 ok(r
==STG_E_INVALIDFUNCTION
, "IStream->Seek returned wrong error\n");
311 r
= IStream_Seek(stm
, pos
, STREAM_SEEK_SET
, NULL
);
312 ok(r
==S_OK
, "failed to seek stream\n");
313 r
= IStream_Seek(stm
, pos
, STREAM_SEEK_SET
, &p
);
314 ok(r
==S_OK
, "failed to seek stream\n");
315 r
= IStream_SetSize(stm
,p
);
316 ok(r
==S_OK
, "failed to set pos\n");
318 r
= IStream_Seek(stm
, pos
, STREAM_SEEK_SET
, &p
);
319 ok(r
==S_OK
, "failed to seek stream\n");
320 ok(p
.QuadPart
== 10, "at wrong place\n");
322 r
= IStream_Seek(stm
, pos
, STREAM_SEEK_END
, &p
);
323 ok(r
==S_OK
, "failed to seek stream\n");
324 ok(p
.QuadPart
== 0, "at wrong place\n");
325 r
= IStream_Read(stm
, buffer
, sizeof buffer
, &count
);
326 ok(r
==S_OK
, "failed to set pos\n");
327 ok(count
== 0, "read bytes from empty stream\n");
330 r
= IStream_Release(stm2
);
331 ok(r
== 0, "wrong ref count\n");
333 /* create a stream and write to it */
334 r
= IStorage_CreateStream(stg
, stmname
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm2
);
335 ok(r
==S_OK
, "IStorage->CreateStream failed\n");
337 r
= IStream_Seek(stm
, pos
, STREAM_SEEK_SET
, &p
);
338 ok(r
==STG_E_REVERTED
, "overwritten stream should return STG_E_REVERTED instead of 0x%08x\n", r
);
340 r
= IStream_Release(stm2
);
341 ok(r
== 0, "wrong ref count\n");
342 r
= IStream_Release(stm
);
343 ok(r
== 0, "wrong ref count\n");
345 r
= IStorage_Release(stg
);
346 ok(r
== 0, "wrong ref count\n");
347 r
= DeleteFileW(filename
);
348 ok(r
, "file should exist\n");
351 static BOOL
touch_file(LPCWSTR filename
)
355 file
= CreateFileW(filename
, GENERIC_READ
|GENERIC_WRITE
, 0, NULL
,
356 CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, NULL
);
357 if (file
==INVALID_HANDLE_VALUE
)
363 static BOOL
is_zero_length(LPCWSTR filename
)
368 file
= CreateFileW(filename
, GENERIC_READ
, 0, NULL
,
369 OPEN_EXISTING
, 0, NULL
);
370 if (file
==INVALID_HANDLE_VALUE
)
372 len
= GetFileSize(file
, NULL
);
377 static BOOL
is_existing_file(LPCWSTR filename
)
381 file
= CreateFileW(filename
, GENERIC_READ
, 0, NULL
,
382 OPEN_EXISTING
, 0, NULL
);
383 if (file
==INVALID_HANDLE_VALUE
)
389 static void test_open_storage(void)
391 static const WCHAR szPrefix
[] = { 's','t','g',0 };
392 static const WCHAR szNonExist
[] = { 'n','o','n','e','x','i','s','t',0 };
393 static const WCHAR szDot
[] = { '.',0 };
394 WCHAR filename
[MAX_PATH
];
395 IStorage
*stg
= NULL
, *stg2
= NULL
;
399 if(!GetTempFileNameW(szDot
, szPrefix
, 0, filename
))
402 /* try opening a zero length file - it should stay zero length */
403 DeleteFileW(filename
);
404 touch_file(filename
);
405 stgm
= STGM_NOSCRATCH
| STGM_TRANSACTED
| STGM_SHARE_DENY_WRITE
| STGM_READWRITE
;
406 r
= StgOpenStorage( filename
, NULL
, stgm
, NULL
, 0, &stg
);
407 ok(r
==STG_E_FILEALREADYEXISTS
, "StgOpenStorage didn't fail\n");
409 stgm
= STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
;
410 r
= StgOpenStorage( filename
, NULL
, stgm
, NULL
, 0, &stg
);
411 ok(r
==STG_E_FILEALREADYEXISTS
, "StgOpenStorage didn't fail\n");
412 ok(is_zero_length(filename
), "file length changed\n");
414 DeleteFileW(filename
);
416 /* try opening a nonexistent file - it should not create it */
417 stgm
= STGM_DIRECT
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
;
418 r
= StgOpenStorage( filename
, NULL
, stgm
, NULL
, 0, &stg
);
419 ok(r
!=S_OK
, "StgOpenStorage failed: 0x%08x\n", r
);
420 if (r
==S_OK
) IStorage_Release(stg
);
421 ok(!is_existing_file(filename
), "StgOpenStorage should not create a file\n");
422 DeleteFileW(filename
);
424 /* create the file */
425 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
426 ok(r
==S_OK
, "StgCreateDocfile failed\n");
427 IStorage_Release(stg
);
429 r
= StgOpenStorage( filename
, NULL
, 0, NULL
, 0, &stg
);
430 ok(r
==STG_E_INVALIDFLAG
, "StgOpenStorage wrong error\n");
431 r
= StgOpenStorage( NULL
, NULL
, STGM_SHARE_EXCLUSIVE
, NULL
, 0, &stg
);
432 ok(r
==STG_E_INVALIDNAME
, "StgOpenStorage wrong error\n");
433 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_EXCLUSIVE
| STGM_READ
, NULL
, 0, NULL
);
434 ok(r
==STG_E_INVALIDPOINTER
, "StgOpenStorage wrong error\n");
435 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_EXCLUSIVE
| STGM_READ
, NULL
, 1, &stg
);
436 ok(r
==STG_E_INVALIDPARAMETER
, "StgOpenStorage wrong error\n");
437 r
= StgOpenStorage( szNonExist
, NULL
, STGM_SHARE_EXCLUSIVE
| STGM_READ
, NULL
, 0, &stg
);
438 ok(r
==STG_E_FILENOTFOUND
, "StgOpenStorage failed\n");
439 r
= StgOpenStorage( filename
, NULL
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
| STGM_READ
, NULL
, 0, &stg
);
440 ok(r
==STG_E_INVALIDFLAG
, "StgOpenStorage failed\n");
441 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_DENY_NONE
| STGM_READ
, NULL
, 0, &stg
);
442 ok(r
==STG_E_INVALIDFLAG
, "StgOpenStorage failed\n");
443 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_DENY_READ
| STGM_READ
, NULL
, 0, &stg
);
444 ok(r
==STG_E_INVALIDFLAG
, "StgOpenStorage failed\n");
445 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_DENY_WRITE
| STGM_READWRITE
, NULL
, 0, &stg
);
446 ok(r
==STG_E_INVALIDFLAG
, "StgOpenStorage failed\n");
448 /* open it for real */
449 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_DENY_NONE
| STGM_READ
| STGM_TRANSACTED
, NULL
, 0, &stg
); /* XLViewer 97/2000 */
450 ok(r
==S_OK
, "StgOpenStorage failed\n");
453 r
= IStorage_Release(stg
);
454 ok(r
== 0, "wrong ref count\n");
457 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_DENY_WRITE
| STGM_READ
, NULL
, 0, &stg
);
458 ok(r
==S_OK
, "StgOpenStorage failed\n");
461 r
= IStorage_Release(stg
);
462 ok(r
== 0, "wrong ref count\n");
465 /* test the way word opens its custom dictionary */
466 r
= StgOpenStorage( filename
, NULL
, STGM_NOSCRATCH
| STGM_TRANSACTED
|
467 STGM_SHARE_DENY_WRITE
| STGM_READWRITE
, NULL
, 0, &stg
);
468 ok(r
==S_OK
, "StgOpenStorage failed\n");
471 r
= IStorage_Release(stg
);
472 ok(r
== 0, "wrong ref count\n");
475 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_EXCLUSIVE
| STGM_READ
, NULL
, 0, &stg
);
476 ok(r
==S_OK
, "StgOpenStorage failed\n");
477 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_EXCLUSIVE
| STGM_READ
, NULL
, 0, &stg2
);
478 ok(r
==STG_E_SHAREVIOLATION
, "StgOpenStorage failed\n");
481 r
= IStorage_Release(stg
);
482 ok(r
== 0, "wrong ref count\n");
485 /* now try write to a storage file we opened read-only */
486 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_EXCLUSIVE
| STGM_READ
, NULL
, 0, &stg
);
487 ok(r
==S_OK
, "StgOpenStorage failed\n");
490 static const WCHAR stmname
[] = { 'w','i','n','e','t','e','s','t',0};
492 IStorage
*stg2
= NULL
;
494 r
= IStorage_CreateStream( stg
, stmname
, STGM_WRITE
| STGM_SHARE_EXCLUSIVE
,
496 ok(r
== STG_E_ACCESSDENIED
, "CreateStream should fail\n");
497 r
= IStorage_CreateStorage( stg
, stmname
, STGM_WRITE
| STGM_SHARE_EXCLUSIVE
, 0, 0, &stg2
);
498 ok(r
== STG_E_ACCESSDENIED
, "CreateStream should fail\n");
500 r
= IStorage_Release(stg
);
501 ok(r
== 0, "wrong ref count\n");
504 /* open like visio 2003 */
506 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
| STGM_SHARE_DENY_NONE
, NULL
, 0, &stg
);
507 ok(r
== S_OK
, "should succeed\n");
509 IStorage_Release(stg
);
511 /* test other sharing modes with STGM_PRIORITY */
513 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
| STGM_SHARE_EXCLUSIVE
, NULL
, 0, &stg
);
514 ok(r
== S_OK
, "should succeed\n");
516 IStorage_Release(stg
);
519 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
| STGM_SHARE_DENY_WRITE
, NULL
, 0, &stg
);
520 ok(r
== S_OK
, "should succeed\n");
522 IStorage_Release(stg
);
525 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
| STGM_SHARE_DENY_READ
, NULL
, 0, &stg
);
526 ok(r
== S_OK
, "should succeed\n");
528 IStorage_Release(stg
);
530 /* open like Project 2003 */
532 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
, NULL
, 0, &stg
);
533 ok(r
== S_OK
, "should succeed\n");
534 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
, NULL
, 0, &stg2
);
535 ok(r
== S_OK
, "should succeed\n");
537 IStorage_Release(stg2
);
539 IStorage_Release(stg
);
542 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
| STGM_READWRITE
, NULL
, 0, &stg
);
543 ok(r
== STG_E_INVALIDFLAG
, "should fail\n");
545 r
= StgOpenStorage( filename
, NULL
, STGM_TRANSACTED
| STGM_PRIORITY
, NULL
, 0, &stg
);
546 ok(r
== STG_E_INVALIDFLAG
, "should fail\n");
548 r
= StgOpenStorage( filename
, NULL
, STGM_SIMPLE
| STGM_PRIORITY
, NULL
, 0, &stg
);
549 ok(r
== STG_E_INVALIDFLAG
, "should fail\n");
551 r
= StgOpenStorage( filename
, NULL
, STGM_DELETEONRELEASE
| STGM_PRIORITY
, NULL
, 0, &stg
);
552 ok(r
== STG_E_INVALIDFUNCTION
, "should fail\n");
554 r
= StgOpenStorage( filename
, NULL
, STGM_NOSCRATCH
| STGM_PRIORITY
, NULL
, 0, &stg
);
555 ok(r
== STG_E_INVALIDFLAG
, "should fail\n");
557 r
= StgOpenStorage( filename
, NULL
, STGM_NOSNAPSHOT
| STGM_PRIORITY
, NULL
, 0, &stg
);
558 ok(r
== STG_E_INVALIDFLAG
, "should fail\n");
560 r
= DeleteFileW(filename
);
561 ok(r
, "file didn't exist\n");
564 static void test_storage_suminfo(void)
566 static const WCHAR szDot
[] = { '.',0 };
567 static const WCHAR szPrefix
[] = { 's','t','g',0 };
568 WCHAR filename
[MAX_PATH
];
569 IStorage
*stg
= NULL
;
570 IPropertySetStorage
*propset
= NULL
;
571 IPropertyStorage
*ps
= NULL
;
574 if(!GetTempFileNameW(szDot
, szPrefix
, 0, filename
))
577 DeleteFileW(filename
);
579 /* create the file */
580 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
|
581 STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
582 ok(r
==S_OK
, "StgCreateDocfile failed\n");
584 r
= IStorage_QueryInterface( stg
, &IID_IPropertySetStorage
, (LPVOID
) &propset
);
585 ok(r
== S_OK
, "query interface failed\n");
588 r
= IPropertySetStorage_Delete( propset
, &FMTID_SummaryInformation
);
589 ok(r
== STG_E_FILENOTFOUND
, "deleted property set storage\n");
591 r
= IPropertySetStorage_Open( propset
, &FMTID_SummaryInformation
,
592 STGM_READ
| STGM_SHARE_EXCLUSIVE
, &ps
);
593 ok(r
== STG_E_FILENOTFOUND
, "opened property set storage\n");
595 r
= IPropertySetStorage_Create( propset
, &FMTID_SummaryInformation
, NULL
, 0,
596 STGM_READ
| STGM_SHARE_EXCLUSIVE
, &ps
);
597 ok(r
== STG_E_INVALIDFLAG
, "created property set storage\n");
599 r
= IPropertySetStorage_Create( propset
, &FMTID_SummaryInformation
, NULL
, 0,
601 ok(r
== STG_E_INVALIDFLAG
, "created property set storage\n");
603 r
= IPropertySetStorage_Create( propset
, &FMTID_SummaryInformation
, NULL
, 0, 0, &ps
);
604 ok(r
== STG_E_INVALIDFLAG
, "created property set storage\n");
606 r
= IPropertySetStorage_Create( propset
, &FMTID_SummaryInformation
, NULL
, 0,
607 STGM_WRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
608 ok(r
== STG_E_INVALIDFLAG
, "created property set storage\n");
610 r
= IPropertySetStorage_Create( propset
, &FMTID_SummaryInformation
, NULL
, 0,
611 STGM_CREATE
|STGM_WRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
612 ok(r
== STG_E_INVALIDFLAG
, "created property set storage\n");
614 /* now try really creating a property set */
615 r
= IPropertySetStorage_Create( propset
, &FMTID_SummaryInformation
, NULL
, 0,
616 STGM_CREATE
|STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
617 ok(r
== S_OK
, "failed to create property set storage\n");
620 IPropertyStorage_Release(ps
);
622 /* now try creating the same thing again */
623 r
= IPropertySetStorage_Create( propset
, &FMTID_SummaryInformation
, NULL
, 0,
624 STGM_CREATE
|STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
625 ok(r
== S_OK
, "failed to create property set storage\n");
627 IPropertyStorage_Release(ps
);
629 /* should be able to open it */
630 r
= IPropertySetStorage_Open( propset
, &FMTID_SummaryInformation
,
631 STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
632 ok(r
== S_OK
, "open failed\n");
634 IPropertyStorage_Release(ps
);
637 r
= IPropertySetStorage_Delete( propset
, &FMTID_SummaryInformation
);
638 ok(r
== S_OK
, "failed to delete property set storage\n");
640 /* try opening with an invalid FMTID */
641 r
= IPropertySetStorage_Open( propset
, NULL
,
642 STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
643 ok(r
== E_INVALIDARG
, "open succeeded\n");
645 IPropertyStorage_Release(ps
);
648 r
= IPropertySetStorage_Open( propset
, &IID_IStorage
,
649 STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
650 ok(r
== STG_E_FILENOTFOUND
, "open succeeded\n");
652 IPropertyStorage_Release(ps
);
655 /* try some invalid flags */
656 r
= IPropertySetStorage_Open( propset
, &FMTID_SummaryInformation
,
657 STGM_CREATE
| STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
658 ok(r
== STG_E_INVALIDFLAG
, "open succeeded\n");
660 IPropertyStorage_Release(ps
);
662 /* after deleting it, it should be gone */
663 r
= IPropertySetStorage_Open( propset
, &FMTID_SummaryInformation
,
664 STGM_READWRITE
|STGM_SHARE_EXCLUSIVE
, &ps
);
665 ok(r
== STG_E_FILENOTFOUND
, "open failed\n");
667 IPropertyStorage_Release(ps
);
669 r
= IPropertySetStorage_Release( propset
);
670 ok(r
== 1, "ref count wrong\n");
672 r
= IStorage_Release(stg
);
673 ok(r
== 0, "ref count wrong\n");
675 DeleteFileW(filename
);
678 static void test_storage_refcount(void)
680 static const WCHAR szPrefix
[] = { 's','t','g',0 };
681 static const WCHAR szDot
[] = { '.',0 };
682 WCHAR filename
[MAX_PATH
];
683 IStorage
*stg
= NULL
;
684 IStorage
*stgprio
= NULL
;
687 static const WCHAR stmname
[] = { 'C','O','N','T','E','N','T','S',0 };
693 if(!GetTempFileNameW(szDot
, szPrefix
, 0, filename
))
696 DeleteFileW(filename
);
698 /* create the file */
699 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
|
700 STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
701 ok(r
==S_OK
, "StgCreateDocfile failed\n");
703 r
= WriteClassStg( stg
, &test_stg_cls
);
704 ok( r
== S_OK
, "WriteClassStg failed\n");
706 r
= IStorage_Commit( stg
, STGC_DEFAULT
);
707 ok( r
== S_OK
, "IStorage_Commit failed\n");
709 /* now create a stream */
710 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
711 ok(r
==S_OK
, "IStorage->CreateStream failed\n");
713 r
= IStorage_Release( stg
);
714 ok (r
== 0, "storage not released\n");
717 r
= IStream_Seek( stm
, pos
, 0, &upos
);
718 ok (r
== STG_E_REVERTED
, "seek should fail\n");
720 r
= IStream_Stat( stm
, &stat
, STATFLAG_DEFAULT
);
721 ok (r
== STG_E_REVERTED
, "stat should fail\n");
723 r
= IStream_Write( stm
, "Test string", strlen("Test string"), NULL
);
724 ok (r
== STG_E_REVERTED
, "IStream_Write should return STG_E_REVERTED instead of 0x%08x\n", r
);
726 r
= IStream_Read( stm
, buffer
, sizeof(buffer
), NULL
);
727 ok (r
== STG_E_REVERTED
, "IStream_Read should return STG_E_REVERTED instead of 0x%08x\n", r
);
729 r
= IStream_Release(stm
);
730 ok (r
== 0, "stream not released\n");
732 /* tests that STGM_PRIORITY doesn't prevent readwrite access from other
733 * StgOpenStorage calls in transacted mode */
734 r
= StgOpenStorage( filename
, NULL
, STGM_PRIORITY
, NULL
, 0, &stgprio
);
735 ok(r
==S_OK
, "StgOpenStorage failed with error 0x%08x\n", r
);
738 /* non-transacted mode read/write fails */
739 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, NULL
, 0, &stg
);
740 ok(r
==STG_E_LOCKVIOLATION
, "StgOpenStorage should return STG_E_LOCKVIOLATION instead of 0x%08x\n", r
);
743 /* non-transacted mode read-only succeeds */
744 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_DENY_WRITE
|STGM_READ
, NULL
, 0, &stg
);
745 ok(r
==S_OK
, "StgOpenStorage failed with error 0x%08x\n", r
);
746 IStorage_Release(stg
);
748 r
= StgOpenStorage( filename
, NULL
, STGM_TRANSACTED
|STGM_SHARE_DENY_WRITE
|STGM_READWRITE
, NULL
, 0, &stg
);
749 ok(r
==S_OK
, "StgOpenStorage failed with error 0x%08x\n", r
);
752 static const WCHAR stgname
[] = { ' ',' ',' ','2','9',0 };
753 static const WCHAR stgname2
[] = { 'C','V','_','i','e','w',0 };
754 static const WCHAR stmname2
[] = { 'V','a','r','2','D','a','t','a',0 };
759 r
= IStorage_Stat( stg
, &statstg
, STATFLAG_NONAME
);
760 ok(r
== S_OK
, "Stat should have succeded instead of returning 0x%08x\n", r
);
761 ok(statstg
.type
== STGTY_STORAGE
, "Statstg type should have been STGTY_STORAGE instead of %d\n", statstg
.type
);
762 ok(U(statstg
.cbSize
).LowPart
== 0, "Statstg cbSize.LowPart should have been 0 instead of %d\n", U(statstg
.cbSize
).LowPart
);
763 ok(U(statstg
.cbSize
).HighPart
== 0, "Statstg cbSize.HighPart should have been 0 instead of %d\n", U(statstg
.cbSize
).HighPart
);
764 ok(statstg
.grfMode
== (STGM_TRANSACTED
|STGM_SHARE_DENY_WRITE
|STGM_READWRITE
),
765 "Statstg grfMode should have been 0x10022 instead of 0x%x\n", statstg
.grfMode
);
766 ok(statstg
.grfLocksSupported
== 0, "Statstg grfLocksSupported should have been 0 instead of %d\n", statstg
.grfLocksSupported
);
767 ok(IsEqualCLSID(&statstg
.clsid
, &test_stg_cls
), "Statstg clsid is not test_stg_cls\n");
768 ok(statstg
.grfStateBits
== 0, "Statstg grfStateBits should have been 0 instead of %d\n", statstg
.grfStateBits
);
769 ok(statstg
.reserved
== 0, "Statstg reserved should have been 0 instead of %d\n", statstg
.reserved
);
771 r
= IStorage_CreateStorage( stg
, stgname
, STGM_SHARE_EXCLUSIVE
, 0, 0, &stg2
);
772 ok(r
== S_OK
, "CreateStorage should have succeeded instead of returning 0x%08x\n", r
);
774 r
= IStorage_Stat( stg2
, &statstg
, STATFLAG_DEFAULT
);
775 ok(r
== S_OK
, "Stat should have succeded instead of returning 0x%08x\n", r
);
776 ok(!lstrcmpW(statstg
.pwcsName
, stgname
),
777 "Statstg pwcsName should have been the name the storage was created with\n");
778 ok(statstg
.type
== STGTY_STORAGE
, "Statstg type should have been STGTY_STORAGE instead of %d\n", statstg
.type
);
779 ok(U(statstg
.cbSize
).LowPart
== 0, "Statstg cbSize.LowPart should have been 0 instead of %d\n", U(statstg
.cbSize
).LowPart
);
780 ok(U(statstg
.cbSize
).HighPart
== 0, "Statstg cbSize.HighPart should have been 0 instead of %d\n", U(statstg
.cbSize
).HighPart
);
781 ok(statstg
.grfMode
== STGM_SHARE_EXCLUSIVE
,
782 "Statstg grfMode should have been STGM_SHARE_EXCLUSIVE instead of 0x%x\n", statstg
.grfMode
);
783 ok(statstg
.grfLocksSupported
== 0, "Statstg grfLocksSupported should have been 0 instead of %d\n", statstg
.grfLocksSupported
);
784 ok(IsEqualCLSID(&statstg
.clsid
, &CLSID_NULL
), "Statstg clsid is not CLSID_NULL\n");
785 ok(statstg
.grfStateBits
== 0, "Statstg grfStateBits should have been 0 instead of %d\n", statstg
.grfStateBits
);
786 ok(statstg
.reserved
== 0, "Statstg reserved should have been 0 instead of %d\n", statstg
.reserved
);
787 CoTaskMemFree(statstg
.pwcsName
);
789 r
= IStorage_CreateStorage( stg2
, stgname2
, STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, 0, 0, &stg3
);
790 ok(r
== STG_E_ACCESSDENIED
, "CreateStorage should have returned STG_E_ACCESSDENIED instead of 0x%08x\n", r
);
792 r
= IStorage_CreateStream( stg2
, stmname2
, STGM_CREATE
|STGM_SHARE_EXCLUSIVE
, 0, 0, &stm
);
793 ok(r
== STG_E_ACCESSDENIED
, "CreateStream should have returned STG_E_ACCESSDENIED instead of 0x%08x\n", r
);
795 IStorage_Release(stg2
);
797 r
= IStorage_Release(stg
);
798 ok(r
== 0, "wrong ref count\n");
800 IStorage_Release(stgprio
);
802 DeleteFileW(filename
);
805 static void test_streamenum(void)
807 static const WCHAR szPrefix
[] = { 's','t','g',0 };
808 static const WCHAR szDot
[] = { '.',0 };
809 WCHAR filename
[MAX_PATH
];
810 IStorage
*stg
= NULL
;
813 static const WCHAR stmname
[] = { 'C','O','N','T','E','N','T','S',0 };
815 IEnumSTATSTG
*ee
= NULL
;
818 if(!GetTempFileNameW(szDot
, szPrefix
, 0, filename
))
821 DeleteFileW(filename
);
823 /* create the file */
824 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
|
825 STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
826 ok(r
==S_OK
, "StgCreateDocfile failed\n");
828 r
= WriteClassStg( stg
, &test_stg_cls
);
829 ok( r
== S_OK
, "WriteClassStg failed\n");
831 r
= IStorage_Commit( stg
, STGC_DEFAULT
);
832 ok( r
== S_OK
, "IStorage_Commit failed\n");
834 /* now create a stream */
835 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
836 ok(r
==S_OK
, "IStorage->CreateStream failed\n");
838 r
= IStream_Release(stm
);
840 /* first enum ... should be 1 stream */
841 r
= IStorage_EnumElements(stg
, 0, NULL
, 0, &ee
);
842 ok(r
==S_OK
, "IStorage->EnumElements failed\n");
845 r
= IEnumSTATSTG_Next(ee
, 1, &stat
, &count
);
846 ok(r
==S_OK
, "IEnumSTATSTG->Next failed\n");
847 ok(count
== 1, "count wrong\n");
849 r
= IEnumSTATSTG_Release(ee
);
851 /* second enum... destroy the stream before reading */
852 r
= IStorage_EnumElements(stg
, 0, NULL
, 0, &ee
);
853 ok(r
==S_OK
, "IStorage->EnumElements failed\n");
855 r
= IStorage_DestroyElement(stg
, stmname
);
856 ok(r
==S_OK
, "IStorage->EnumElements failed\n");
860 r
= IEnumSTATSTG_Next(ee
, 1, &stat
, &count
);
861 ok(r
==S_FALSE
, "IEnumSTATSTG->Next failed\n");
862 ok(count
== 0, "count wrong\n");
865 /* reset and try again */
866 r
= IEnumSTATSTG_Reset(ee
);
867 ok(r
==S_OK
, "IEnumSTATSTG->Reset failed\n");
870 r
= IEnumSTATSTG_Next(ee
, 1, &stat
, &count
);
871 ok(r
==S_FALSE
, "IEnumSTATSTG->Next failed\n");
872 ok(count
== 0, "count wrong\n");
874 r
= IEnumSTATSTG_Release(ee
);
875 ok (r
== 0, "enum not released\n");
877 r
= IStorage_Release( stg
);
878 ok (r
== 0, "storage not released\n");
880 DeleteFileW(filename
);
883 static void test_transact(void)
885 static const WCHAR szPrefix
[] = { 's','t','g',0 };
886 static const WCHAR szDot
[] = { '.',0 };
887 WCHAR filename
[MAX_PATH
];
888 IStorage
*stg
= NULL
, *stg2
= NULL
;
891 static const WCHAR stmname
[] = { 'C','O','N','T','E','N','T','S',0 };
892 static const WCHAR stmname2
[] = { 'F','O','O',0 };
894 if(!GetTempFileNameW(szDot
, szPrefix
, 0, filename
))
897 DeleteFileW(filename
);
899 /* create the file */
900 r
= StgCreateDocfile( filename
, STGM_CREATE
| STGM_SHARE_EXCLUSIVE
|
901 STGM_READWRITE
|STGM_TRANSACTED
, 0, &stg
);
902 ok(r
==S_OK
, "StgCreateDocfile failed\n");
904 /* now create a stream, but don't commit it */
905 r
= IStorage_CreateStream(stg
, stmname2
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
906 ok(r
==S_OK
, "IStorage->CreateStream failed\n");
908 r
= IStream_Write(stm
, "this is stream 1\n", 16, NULL
);
909 ok(r
==S_OK
, "IStream->Write failed\n");
911 r
= IStream_Release(stm
);
913 r
= IStorage_Commit(stg
, 0);
914 ok(r
==S_OK
, "IStorage->Commit failed\n");
916 /* now create a stream, but don't commit it */
918 r
= IStorage_CreateStream(stg
, stmname
, STGM_SHARE_EXCLUSIVE
| STGM_READWRITE
, 0, 0, &stm
);
919 ok(r
==S_OK
, "IStorage->CreateStream failed\n");
921 r
= IStream_Write(stm
, "this is stream 2\n", 16, NULL
);
922 ok(r
==S_OK
, "IStream->Write failed\n");
924 r
= IStream_Commit(stm
, STGC_ONLYIFCURRENT
| STGC_DANGEROUSLYCOMMITMERELYTODISKCACHE
);
925 ok(r
==S_OK
, "IStream->Commit failed\n");
927 r
= IStream_Release(stm
);
929 IStorage_Release(stg
);
933 r
= StgOpenStorage( filename
, NULL
, STGM_SHARE_DENY_NONE
| STGM_READ
| STGM_TRANSACTED
, NULL
, 0, &stg
);
934 ok(r
==S_OK
, "StgOpenStorage failed\n");
939 r
= IStorage_OpenStream(stg
, stmname
, NULL
, STGM_SHARE_DENY_NONE
|STGM_READ
, 0, &stm
);
940 ok(r
==STG_E_INVALIDFLAG
, "IStorage->OpenStream failed %08x\n", r
);
942 r
= IStorage_OpenStream(stg
, stmname
, NULL
, STGM_DELETEONRELEASE
|STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, 0, &stm
);
943 ok(r
==STG_E_INVALIDFUNCTION
, "IStorage->OpenStream failed %08x\n", r
);
945 r
= IStorage_OpenStream(stg
, stmname
, NULL
, STGM_TRANSACTED
|STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, 0, &stm
);
946 ok(r
==STG_E_INVALIDFUNCTION
, "IStorage->OpenStream failed %08x\n", r
);
948 r
= IStorage_OpenStorage(stg
, stmname
, NULL
, STGM_TRANSACTED
|STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, NULL
, 0, &stg2
);
949 ok(r
==STG_E_FILENOTFOUND
, "IStorage->OpenStream failed %08x\n", r
);
952 r
= IStorage_OpenStream(stg
, stmname
, NULL
, STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, 0, &stm
);
953 ok(r
==STG_E_FILENOTFOUND
, "IStorage->OpenStream should fail %08x\n", r
);
956 r
= IStream_Release(stm
);
958 r
= IStorage_OpenStorage(stg
, stmname2
, NULL
, STGM_TRANSACTED
|STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, NULL
, 0, &stg2
);
959 ok(r
==STG_E_FILENOTFOUND
, "IStorage->OpenStream failed %08x\n", r
);
961 r
= IStorage_OpenStream(stg
, stmname2
, NULL
, STGM_SHARE_EXCLUSIVE
|STGM_READWRITE
, 0, &stm
);
962 ok(r
==S_OK
, "IStorage->OpenStream should fail %08x\n", r
);
964 r
= IStream_Release(stm
);
966 IStorage_Release(stg
);
968 r
= DeleteFileW(filename
);
969 ok( r
== TRUE
, "deleted file\n");
972 static void test_ReadClassStm(void)
977 static const LARGE_INTEGER llZero
;
979 hr
= ReadClassStm(NULL
, &clsid
);
980 ok(hr
== E_INVALIDARG
, "ReadClassStm should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
982 hr
= CreateStreamOnHGlobal(NULL
, TRUE
, &pStream
);
983 ok_ole_success(hr
, "CreateStreamOnHGlobal");
984 hr
= WriteClassStm(pStream
, &test_stg_cls
);
985 ok_ole_success(hr
, "WriteClassStm");
987 hr
= ReadClassStm(pStream
, NULL
);
988 ok(hr
== E_INVALIDARG
, "ReadClassStm should have returned E_INVALIDARG instead of 0x%08x\n", hr
);
990 /* test not rewound stream */
991 hr
= ReadClassStm(pStream
, &clsid
);
992 ok(hr
== STG_E_READFAULT
, "ReadClassStm should have returned STG_E_READFAULT instead of 0x%08x\n", hr
);
993 ok(IsEqualCLSID(&clsid
, &CLSID_NULL
), "clsid should have been zeroed\n");
995 hr
= IStream_Seek(pStream
, llZero
, STREAM_SEEK_SET
, NULL
);
996 ok_ole_success(hr
, "IStream_Seek");
997 hr
= ReadClassStm(pStream
, &clsid
);
998 ok_ole_success(hr
, "ReadClassStm");
999 ok(IsEqualCLSID(&clsid
, &test_stg_cls
), "clsid should have been set to CLSID_WineTest\n");
1009 static const struct access_res create
[16] =
1011 { TRUE
, ERROR_SUCCESS
, TRUE
},
1012 { TRUE
, ERROR_SUCCESS
, TRUE
},
1013 { TRUE
, ERROR_SUCCESS
, FALSE
},
1014 { TRUE
, ERROR_SUCCESS
, FALSE
},
1015 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1016 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1017 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1018 { TRUE
, ERROR_SUCCESS
, FALSE
},
1019 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1020 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1021 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1022 { TRUE
, ERROR_SUCCESS
, TRUE
},
1023 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1024 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1025 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1026 { TRUE
, ERROR_SUCCESS
, TRUE
}
1029 static const struct access_res create_commit
[16] =
1031 { TRUE
, ERROR_SUCCESS
, TRUE
},
1032 { TRUE
, ERROR_SUCCESS
, TRUE
},
1033 { TRUE
, ERROR_SUCCESS
, FALSE
},
1034 { TRUE
, ERROR_SUCCESS
, FALSE
},
1035 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1036 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1037 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1038 { TRUE
, ERROR_SUCCESS
, FALSE
},
1039 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1040 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1041 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1042 { TRUE
, ERROR_SUCCESS
, TRUE
},
1043 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1044 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1045 { FALSE
, ERROR_SHARING_VIOLATION
, FALSE
},
1046 { TRUE
, ERROR_SUCCESS
, TRUE
}
1049 static const struct access_res create_close
[16] =
1051 { TRUE
, ERROR_SUCCESS
, FALSE
},
1052 { TRUE
, ERROR_SUCCESS
, FALSE
},
1053 { TRUE
, ERROR_SUCCESS
, FALSE
},
1054 { TRUE
, ERROR_SUCCESS
, FALSE
},
1055 { TRUE
, ERROR_SUCCESS
, FALSE
},
1056 { TRUE
, ERROR_SUCCESS
, FALSE
},
1057 { TRUE
, ERROR_SUCCESS
, FALSE
},
1058 { TRUE
, ERROR_SUCCESS
, FALSE
},
1059 { TRUE
, ERROR_SUCCESS
, FALSE
},
1060 { TRUE
, ERROR_SUCCESS
, FALSE
},
1061 { TRUE
, ERROR_SUCCESS
, FALSE
},
1062 { TRUE
, ERROR_SUCCESS
, FALSE
},
1063 { TRUE
, ERROR_SUCCESS
, FALSE
},
1064 { TRUE
, ERROR_SUCCESS
, FALSE
},
1065 { TRUE
, ERROR_SUCCESS
, FALSE
},
1066 { TRUE
, ERROR_SUCCESS
}
1069 static void _test_file_access(LPCSTR file
, const struct access_res
*ares
, DWORD line
)
1071 DWORD access
= 0, share
= 0;
1076 for (i
= 0; i
< 4; i
++)
1078 if (i
== 0) access
= 0;
1079 if (i
== 1) access
= GENERIC_READ
;
1080 if (i
== 2) access
= GENERIC_WRITE
;
1081 if (i
== 3) access
= GENERIC_READ
| GENERIC_WRITE
;
1083 for (j
= 0; j
< 4; j
++)
1085 if (ares
[idx
].ignore
)
1088 if (j
== 0) share
= 0;
1089 if (j
== 1) share
= FILE_SHARE_READ
;
1090 if (j
== 2) share
= FILE_SHARE_WRITE
;
1091 if (j
== 3) share
= FILE_SHARE_READ
| FILE_SHARE_WRITE
;
1093 SetLastError(0xdeadbeef);
1094 hfile
= CreateFileA(file
, access
, share
, NULL
, OPEN_EXISTING
,
1095 FILE_ATTRIBUTE_NORMAL
, 0);
1096 lasterr
= GetLastError();
1098 ok((hfile
!= INVALID_HANDLE_VALUE
) == ares
[idx
].gothandle
,
1099 "(%d, handle, %d): Expected %d, got %d\n",
1100 line
, idx
, ares
[idx
].gothandle
,
1101 (hfile
!= INVALID_HANDLE_VALUE
));
1103 ok(lasterr
== ares
[idx
].lasterr
,
1104 "(%d, lasterr, %d): Expected %d, got %d\n",
1105 line
, idx
, ares
[idx
].lasterr
, lasterr
);
1113 #define test_file_access(file, ares) _test_file_access(file, ares, __LINE__)
1115 static void test_access(void)
1120 static const WCHAR fileW
[] = {'w','i','n','e','t','e','s','t',0};
1122 /* STGM_TRANSACTED */
1124 hr
= StgCreateDocfile(fileW
, STGM_CREATE
| STGM_READWRITE
|
1125 STGM_SHARE_EXCLUSIVE
| STGM_TRANSACTED
, 0, &stg
);
1126 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1128 test_file_access("winetest", create
);
1130 hr
= IStorage_Commit(stg
, STGC_DEFAULT
);
1131 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1133 test_file_access("winetest", create_commit
);
1135 IStorage_Release(stg
);
1137 test_file_access("winetest", create_close
);
1139 DeleteFileA("winetest");
1143 hr
= StgCreateDocfile(fileW
, STGM_CREATE
| STGM_READWRITE
|
1144 STGM_SHARE_EXCLUSIVE
| STGM_DIRECT
, 0, &stg
);
1145 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1147 test_file_access("winetest", create
);
1149 hr
= IStorage_Commit(stg
, STGC_DEFAULT
);
1150 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1152 test_file_access("winetest", create_commit
);
1154 IStorage_Release(stg
);
1156 test_file_access("winetest", create_close
);
1158 DeleteFileA("winetest");
1160 /* STGM_SHARE_DENY_NONE */
1162 hr
= StgCreateDocfile(fileW
, STGM_CREATE
| STGM_READWRITE
|
1163 STGM_SHARE_DENY_NONE
| STGM_TRANSACTED
, 0, &stg
);
1164 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1166 test_file_access("winetest", create
);
1168 hr
= IStorage_Commit(stg
, STGC_DEFAULT
);
1169 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1171 test_file_access("winetest", create_commit
);
1173 IStorage_Release(stg
);
1175 test_file_access("winetest", create_close
);
1177 DeleteFileA("winetest");
1179 /* STGM_SHARE_DENY_READ */
1181 hr
= StgCreateDocfile(fileW
, STGM_CREATE
| STGM_READWRITE
|
1182 STGM_SHARE_DENY_READ
| STGM_TRANSACTED
, 0, &stg
);
1183 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1185 test_file_access("winetest", create
);
1187 hr
= IStorage_Commit(stg
, STGC_DEFAULT
);
1188 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1190 test_file_access("winetest", create_commit
);
1192 IStorage_Release(stg
);
1194 test_file_access("winetest", create_close
);
1196 DeleteFileA("winetest");
1198 /* STGM_SHARE_DENY_WRITE */
1200 hr
= StgCreateDocfile(fileW
, STGM_CREATE
| STGM_READWRITE
|
1201 STGM_SHARE_DENY_WRITE
| STGM_TRANSACTED
, 0, &stg
);
1202 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1204 test_file_access("winetest", create
);
1206 hr
= IStorage_Commit(stg
, STGC_DEFAULT
);
1207 ok(hr
== S_OK
, "Expected S_OK, got %08x\n", hr
);
1209 test_file_access("winetest", create_commit
);
1211 IStorage_Release(stg
);
1213 test_file_access("winetest", create_close
);
1215 DeleteFileA("winetest");
1218 START_TEST(storage32
)
1220 test_hglobal_storage_stat();
1221 test_create_storage_modes();
1222 test_storage_stream();
1223 test_open_storage();
1224 test_storage_suminfo();
1225 test_storage_refcount();
1228 test_ReadClassStm();