1 /*
2 * Unit tests for file functions in Wine
3 *
4 * Copyright (c) 2002, 2004 Jakob Eriksson
5 * Copyright (c) 2008 Jeff Zaroyko
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 *
21 */
22
23 #include <stdarg.h>
24 #include <stdlib.h>
25 #include <time.h>
26
27 /* ReplaceFile requires Windows 2000 or newer */
28 #define _WIN32_WINNT 0x0500
29
30 #include "wine/test.h"
31 #include "windef.h"
32 #include "winbase.h"
33 #include "winerror.h"
34
35 static HANDLE (WINAPI *pFindFirstFileExA)(LPCSTR,FINDEX_INFO_LEVELS,LPVOID,FINDEX_SEARCH_OPS,LPVOID,DWORD);
36 static BOOL (WINAPI *pReplaceFileA)(LPCSTR, LPCSTR, LPCSTR, DWORD, LPVOID, LPVOID);
37 static BOOL (WINAPI *pReplaceFileW)(LPCWSTR, LPCWSTR, LPCWSTR, DWORD, LPVOID, LPVOID);
38
39 /* keep filename and filenameW the same */
40 static const char filename[] = "testfile.xxx";
41 static const WCHAR filenameW[] = { 't','e','s','t','f','i','l','e','.','x','x','x',0 };
42 static const char sillytext[] =
43 "en larvig liten text dx \033 gx hej 84 hej 4484 ! \001\033 bla bl\na.. bla bla."
44 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
45 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
46 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
47 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
48 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
49 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
50 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
51 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
52 "sdlkfjasdlkfj a dslkj adsklf \n \nasdklf askldfa sdlkf \nsadklf asdklf asdf ";
53
54 static void InitFunctionPointers(void)
55 {
56 HMODULE hkernel32 = GetModuleHandleA("kernel32");
57
58 pFindFirstFileExA=(void*)GetProcAddress(hkernel32, "FindFirstFileExA");
59 pReplaceFileA=(void*)GetProcAddress(hkernel32, "ReplaceFileA");
60 pReplaceFileW=(void*)GetProcAddress(hkernel32, "ReplaceFileW");
61 }
62
63 static void test__hread( void )
64 {
65 HFILE filehandle;
66 char buffer[10000];
67 long bytes_read;
68 long bytes_wanted;
69 long i;
70 BOOL ret;
71
72 SetFileAttributesA(filename,FILE_ATTRIBUTE_NORMAL); /* be sure to remove stale files */
73 DeleteFileA( filename );
74 filehandle = _lcreat( filename, 0 );
75 if (filehandle == HFILE_ERROR)
76 {
77 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
78 return;
79 }
80
81 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
82
83 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
84
85 filehandle = _lopen( filename, OF_READ );
86
87 ok( HFILE_ERROR != filehandle, "couldn't open file \"%s\" again (err=%d)\n", filename, GetLastError( ) );
88
89 bytes_read = _hread( filehandle, buffer, 2 * strlen( sillytext ) );
90
91 ok( lstrlenA( sillytext ) == bytes_read, "file read size error\n" );
92
93 for (bytes_wanted = 0; bytes_wanted < lstrlenA( sillytext ); bytes_wanted++)
94 {
95 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
96 ok( _hread( filehandle, buffer, bytes_wanted ) == bytes_wanted, "erratic _hread return value\n" );
97 for (i = 0; i < bytes_wanted; i++)
98 {
99 ok( buffer[i] == sillytext[i], "that's not what's written\n" );
100 }
101 }
102
103 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
104
105 ret = DeleteFileA( filename );
106 ok( ret != 0, "DeleteFile failed (%d)\n", GetLastError( ) );
107 }
108
109
110 static void test__hwrite( void )
111 {
112 HFILE filehandle;
113 char buffer[10000];
114 long bytes_read;
115 long bytes_written;
116 long blocks;
117 long i;
118 char *contents;
119 HLOCAL memory_object;
120 char checksum[1];
121 BOOL ret;
122
123 filehandle = _lcreat( filename, 0 );
124 if (filehandle == HFILE_ERROR)
125 {
126 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
127 return;
128 }
129
130 ok( HFILE_ERROR != _hwrite( filehandle, "", 0 ), "_hwrite complains\n" );
131
132 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
133
134 filehandle = _lopen( filename, OF_READ );
135
136 bytes_read = _hread( filehandle, buffer, 1);
137
138 ok( 0 == bytes_read, "file read size error\n" );
139
140 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
141
142 filehandle = _lopen( filename, OF_READWRITE );
143
144 bytes_written = 0;
145 checksum[0] = '\0';
146 srand( (unsigned)time( NULL ) );
147 for (blocks = 0; blocks < 100; blocks++)
148 {
149 for (i = 0; i < (long)sizeof( buffer ); i++)
150 {
151 buffer[i] = rand( );
152 checksum[0] = checksum[0] + buffer[i];
153 }
154 ok( HFILE_ERROR != _hwrite( filehandle, buffer, sizeof( buffer ) ), "_hwrite complains\n" );
155 bytes_written = bytes_written + sizeof( buffer );
156 }
157
158 ok( HFILE_ERROR != _hwrite( filehandle, checksum, 1 ), "_hwrite complains\n" );
159 bytes_written++;
160
161 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
162
163 memory_object = LocalAlloc( LPTR, bytes_written );
164
165 ok( 0 != memory_object, "LocalAlloc fails. (Could be out of memory.)\n" );
166
167 contents = LocalLock( memory_object );
168
169 filehandle = _lopen( filename, OF_READ );
170
171 contents = LocalLock( memory_object );
172
173 ok( NULL != contents, "LocalLock whines\n" );
174
175 ok( bytes_written == _hread( filehandle, contents, bytes_written), "read length differ from write length\n" );
176
177 checksum[0] = '\0';
178 i = 0;
179 do
180 {
181 checksum[0] = checksum[0] + contents[i];
182 i++;
183 }
184 while (i < bytes_written - 1);
185
186 ok( checksum[0] == contents[i], "stored checksum differ from computed checksum\n" );
187
188 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
189
190 ret = DeleteFileA( filename );
191 ok( ret != 0, "DeleteFile failed (%d)\n", GetLastError( ) );
192 }
193
194
195 static void test__lclose( void )
196 {
197 HFILE filehandle;
198 BOOL ret;
199
200 filehandle = _lcreat( filename, 0 );
201 if (filehandle == HFILE_ERROR)
202 {
203 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
204 return;
205 }
206
207 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
208
209 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
210
211 ret = DeleteFileA( filename );
212 ok( ret != 0, "DeleteFile failed (%d)\n", GetLastError( ) );
213 }
214
215
216 static void test__lcreat( void )
217 {
218 HFILE filehandle;
219 char buffer[10000];
220 WIN32_FIND_DATAA search_results;
221 char slashname[] = "testfi/";
222 int err;
223 HANDLE find;
224 BOOL ret;
225
226 filehandle = _lcreat( filename, 0 );
227 if (filehandle == HFILE_ERROR)
228 {
229 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
230 return;
231 }
232
233 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
234
235 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
236
237 ok( _hread( filehandle, buffer, strlen( sillytext ) ) == lstrlenA( sillytext ), "erratic _hread return value\n" );
238
239 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
240
241 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should be able to find file\n" );
242
243 ret = DeleteFileA(filename);
244 ok( ret != 0, "DeleteFile failed (%d)\n", GetLastError());
245
246 filehandle = _lcreat( filename, 1 ); /* readonly */
247 ok( HFILE_ERROR != filehandle, "couldn't create file \"%s\" (err=%d)\n", filename, GetLastError( ) );
248
249 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite shouldn't be able to write never the less\n" );
250
251 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
252
253 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should be able to find file\n" );
254
255 ok( 0 == DeleteFileA( filename ), "shouldn't be able to delete a readonly file\n" );
256
257 ok( SetFileAttributesA(filename, FILE_ATTRIBUTE_NORMAL ) != 0, "couldn't change attributes on file\n" );
258
259 ok( DeleteFileA( filename ) != 0, "now it should be possible to delete the file!\n" );
260
261 filehandle = _lcreat( filename, 2 );
262 ok( HFILE_ERROR != filehandle, "couldn't create file \"%s\" (err=%d)\n", filename, GetLastError( ) );
263
264 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
265
266 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
267
268 ok( _hread( filehandle, buffer, strlen( sillytext ) ) == lstrlenA( sillytext ), "erratic _hread return value\n" );
269
270 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
271
272 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should STILL be able to find file\n" );
273
274 ret = DeleteFileA( filename );
275 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
276
277 filehandle = _lcreat( filename, 4 ); /* SYSTEM file */
278 ok( HFILE_ERROR != filehandle, "couldn't create file \"%s\" (err=%d)\n", filename, GetLastError( ) );
279
280 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
281
282 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
283
284 ok( _hread( filehandle, buffer, strlen( sillytext ) ) == lstrlenA( sillytext ), "erratic _hread return value\n" );
285
286 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
287
288 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should STILL be able to find file\n" );
289
290 ret = DeleteFileA( filename );
291 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
292
293 filehandle=_lcreat (slashname, 0); /* illegal name */
294 if (HFILE_ERROR==filehandle) {
295 err=GetLastError ();
296 ok (err==ERROR_INVALID_NAME || err==ERROR_PATH_NOT_FOUND,
297 "creating file \"%s\" failed with error %d\n", slashname, err);
298 } else { /* only NT succeeds */
299 _lclose(filehandle);
300 find=FindFirstFileA (slashname, &search_results);
301 if (INVALID_HANDLE_VALUE!=find)
302 {
303 ret = FindClose (find);
304 ok (0 != ret, "FindClose complains (%d)\n", GetLastError ());
305 slashname[strlen(slashname)-1]=0;
306 ok (!strcmp (slashname, search_results.cFileName),
307 "found unexpected name \"%s\"\n", search_results.cFileName);
308 ok (FILE_ATTRIBUTE_ARCHIVE==search_results.dwFileAttributes,
309 "attributes of file \"%s\" are 0x%04x\n", search_results.cFileName,
310 search_results.dwFileAttributes);
311 }
312 ret = DeleteFileA( slashname );
313 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
314 }
315
316 filehandle=_lcreat (filename, 8); /* illegal attribute */
317 if (HFILE_ERROR==filehandle)
318 ok (0, "couldn't create volume label \"%s\"\n", filename);
319 else {
320 _lclose(filehandle);
321 find=FindFirstFileA (filename, &search_results);
322 if (INVALID_HANDLE_VALUE==find)
323 ok (0, "file \"%s\" not found\n", filename);
324 else {
325 ret = FindClose(find);
326 ok ( 0 != ret, "FindClose complains (%d)\n", GetLastError ());
327 ok (!strcmp (filename, search_results.cFileName),
328 "found unexpected name \"%s\"\n", search_results.cFileName);
329 search_results.dwFileAttributes &= ~FILE_ATTRIBUTE_NOT_CONTENT_INDEXED;
330 ok (FILE_ATTRIBUTE_ARCHIVE==search_results.dwFileAttributes,
331 "attributes of file \"%s\" are 0x%04x\n", search_results.cFileName,
332 search_results.dwFileAttributes);
333 }
334 ret = DeleteFileA( filename );
335 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
336 }
337 }
338
339
340 static void test__llseek( void )
341 {
342 INT i;
343 HFILE filehandle;
344 char buffer[1];
345 long bytes_read;
346 BOOL ret;
347
348 filehandle = _lcreat( filename, 0 );
349 if (filehandle == HFILE_ERROR)
350 {
351 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
352 return;
353 }
354
355 for (i = 0; i < 400; i++)
356 {
357 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
358 }
359 ok( HFILE_ERROR != _llseek( filehandle, 400 * strlen( sillytext ), FILE_CURRENT ), "should be able to seek\n" );
360 ok( HFILE_ERROR != _llseek( filehandle, 27 + 35 * strlen( sillytext ), FILE_BEGIN ), "should be able to seek\n" );
361
362 bytes_read = _hread( filehandle, buffer, 1);
363 ok( 1 == bytes_read, "file read size error\n" );
364 ok( buffer[0] == sillytext[27], "_llseek error, it got lost seeking\n" );
365 ok( HFILE_ERROR != _llseek( filehandle, -400 * strlen( sillytext ), FILE_END ), "should be able to seek\n" );
366
367 bytes_read = _hread( filehandle, buffer, 1);
368 ok( 1 == bytes_read, "file read size error\n" );
369 ok( buffer[0] == sillytext[0], "_llseek error, it got lost seeking\n" );
370 ok( HFILE_ERROR != _llseek( filehandle, 1000000, FILE_END ), "should be able to seek past file; poor, poor Windows programmers\n" );
371 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
372
373 ret = DeleteFileA( filename );
374 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
375 }
376
377
378 static void test__llopen( void )
379 {
380 HFILE filehandle;
381 UINT bytes_read;
382 char buffer[10000];
383 BOOL ret;
384
385 filehandle = _lcreat( filename, 0 );
386 if (filehandle == HFILE_ERROR)
387 {
388 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
389 return;
390 }
391
392 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
393 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
394
395 filehandle = _lopen( filename, OF_READ );
396 ok( HFILE_ERROR == _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite shouldn't be able to write!\n" );
397 bytes_read = _hread( filehandle, buffer, strlen( sillytext ) );
398 ok( strlen( sillytext ) == bytes_read, "file read size error\n" );
399 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
400
401 filehandle = _lopen( filename, OF_READWRITE );
402 bytes_read = _hread( filehandle, buffer, 2 * strlen( sillytext ) );
403 ok( strlen( sillytext ) == bytes_read, "file read size error\n" );
404 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite should write just fine\n" );
405 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
406
407 filehandle = _lopen( filename, OF_WRITE );
408 ok( HFILE_ERROR == _hread( filehandle, buffer, 1 ), "you should only be able to write this file\n" );
409 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite should write just fine\n" );
410 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
411
412 ret = DeleteFileA( filename );
413 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
414 /* TODO - add tests for the SHARE modes - use two processes to pull this one off */
415 }
416
417
418 static void test__lread( void )
419 {
420 HFILE filehandle;
421 char buffer[10000];
422 long bytes_read;
423 UINT bytes_wanted;
424 UINT i;
425 BOOL ret;
426
427 filehandle = _lcreat( filename, 0 );
428 if (filehandle == HFILE_ERROR)
429 {
430 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
431 return;
432 }
433
434 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
435
436 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
437
438 filehandle = _lopen( filename, OF_READ );
439
440 ok( HFILE_ERROR != filehandle, "couldn't open file \"%s\" again (err=%d)\n", filename, GetLastError());
441
442 bytes_read = _lread( filehandle, buffer, 2 * strlen( sillytext ) );
443
444 ok( lstrlenA( sillytext ) == bytes_read, "file read size error\n" );
445
446 for (bytes_wanted = 0; bytes_wanted < strlen( sillytext ); bytes_wanted++)
447 {
448 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
449 ok( _lread( filehandle, buffer, bytes_wanted ) == bytes_wanted, "erratic _hread return value\n" );
450 for (i = 0; i < bytes_wanted; i++)
451 {
452 ok( buffer[i] == sillytext[i], "that's not what's written\n" );
453 }
454 }
455
456 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
457
458 ret = DeleteFileA( filename );
459 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
460 }
461
462
463 static void test__lwrite( void )
464 {
465 HFILE filehandle;
466 char buffer[10000];
467 long bytes_read;
468 long bytes_written;
469 long blocks;
470 long i;
471 char *contents;
472 HLOCAL memory_object;
473 char checksum[1];
474 BOOL ret;
475
476 filehandle = _lcreat( filename, 0 );
477 if (filehandle == HFILE_ERROR)
478 {
479 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
480 return;
481 }
482
483 ok( HFILE_ERROR != _lwrite( filehandle, "", 0 ), "_hwrite complains\n" );
484
485 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
486
487 filehandle = _lopen( filename, OF_READ );
488
489 bytes_read = _hread( filehandle, buffer, 1);
490
491 ok( 0 == bytes_read, "file read size error\n" );
492
493 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
494
495 filehandle = _lopen( filename, OF_READWRITE );
496
497 bytes_written = 0;
498 checksum[0] = '\0';
499 srand( (unsigned)time( NULL ) );
500 for (blocks = 0; blocks < 100; blocks++)
501 {
502 for (i = 0; i < (long)sizeof( buffer ); i++)
503 {
504 buffer[i] = rand( );
505 checksum[0] = checksum[0] + buffer[i];
506 }
507 ok( HFILE_ERROR != _lwrite( filehandle, buffer, sizeof( buffer ) ), "_hwrite complains\n" );
508 bytes_written = bytes_written + sizeof( buffer );
509 }
510
511 ok( HFILE_ERROR != _lwrite( filehandle, checksum, 1 ), "_hwrite complains\n" );
512 bytes_written++;
513
514 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
515
516 memory_object = LocalAlloc( LPTR, bytes_written );
517
518 ok( 0 != memory_object, "LocalAlloc fails, could be out of memory\n" );
519
520 contents = LocalLock( memory_object );
521
522 filehandle = _lopen( filename, OF_READ );
523
524 contents = LocalLock( memory_object );
525
526 ok( NULL != contents, "LocalLock whines\n" );
527
528 ok( bytes_written == _hread( filehandle, contents, bytes_written), "read length differ from write length\n" );
529
530 checksum[0] = '\0';
531 i = 0;
532 do
533 {
534 checksum[0] += contents[i];
535 i++;
536 }
537 while (i < bytes_written - 1);
538
539 ok( checksum[0] == contents[i], "stored checksum differ from computed checksum\n" );
540
541 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
542
543 ret = DeleteFileA( filename );
544 ok( ret, "DeleteFile failed (%d)\n", GetLastError( ) );
545 }
546
547 static void test_CopyFileA(void)
548 {
549 char temp_path[MAX_PATH];
550 char source[MAX_PATH], dest[MAX_PATH];
551 static const char prefix[] = "pfx";
552 HANDLE hfile;
553 FILETIME ft1, ft2;
554 char buf[10];
555 DWORD ret;
556 BOOL retok;
557
558 ret = GetTempPathA(MAX_PATH, temp_path);
559 ok(ret != 0, "GetTempPathA error %d\n", GetLastError());
560 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
561
562 ret = GetTempFileNameA(temp_path, prefix, 0, source);
563 ok(ret != 0, "GetTempFileNameA error %d\n", GetLastError());
564
565 /* make the source have not zero size */
566 hfile = CreateFileA(source, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
567 ok(hfile != INVALID_HANDLE_VALUE, "failed to open source file\n");
568 retok = WriteFile(hfile, prefix, sizeof(prefix), &ret, NULL );
569 ok( retok && ret == sizeof(prefix),
570 "WriteFile error %d\n", GetLastError());
571 ok(GetFileSize(hfile, NULL) == sizeof(prefix), "source file has wrong size\n");
572 /* get the file time and change it to prove the difference */
573 ret = GetFileTime(hfile, NULL, NULL, &ft1);
574 ok( ret, "GetFileTime error %d\n", GetLastError());
575 ft1.dwLowDateTime -= 600000000; /* 60 second */
576 ret = SetFileTime(hfile, NULL, NULL, &ft1);
577 ok( ret, "SetFileTime error %d\n", GetLastError());
578 GetFileTime(hfile, NULL, NULL, &ft1); /* get the actual time back */
579 CloseHandle(hfile);
580
581 ret = GetTempFileNameA(temp_path, prefix, 0, dest);
582 ok(ret != 0, "GetTempFileNameA error %d\n", GetLastError());
583
584 SetLastError(0xdeadbeef);
585 ret = CopyFileA(source, dest, TRUE);
586 ok(!ret && GetLastError() == ERROR_FILE_EXISTS,
587 "CopyFileA: unexpected error %d\n", GetLastError());
588
589 ret = CopyFileA(source, dest, FALSE);
590 ok(ret, "CopyFileA: error %d\n", GetLastError());
591
592 /* make sure that destination has correct size */
593 hfile = CreateFileA(dest, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
594 ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file\n");
595 ret = GetFileSize(hfile, NULL);
596 ok(ret == sizeof(prefix), "destination file has wrong size %d\n", ret);
597
598 /* make sure that destination has the same filetime */
599 ret = GetFileTime(hfile, NULL, NULL, &ft2);
600 ok( ret, "GetFileTime error %d\n", GetLastError());
601 ok(CompareFileTime(&ft1, &ft2) == 0, "destination file has wrong filetime\n");
602
603 SetLastError(0xdeadbeef);
604 ret = CopyFileA(source, dest, FALSE);
605 ok(!ret && GetLastError() == ERROR_SHARING_VIOLATION,
606 "CopyFileA: ret = %d, unexpected error %d\n", ret, GetLastError());
607
608 /* make sure that destination still has correct size */
609 ret = GetFileSize(hfile, NULL);
610 ok(ret == sizeof(prefix), "destination file has wrong size %d\n", ret);
611 retok = ReadFile(hfile, buf, sizeof(buf), &ret, NULL);
612 ok( retok && ret == sizeof(prefix),
613 "ReadFile: error %d\n", GetLastError());
614 ok(!memcmp(prefix, buf, sizeof(prefix)), "buffer contents mismatch\n");
615 CloseHandle(hfile);
616
617 ret = DeleteFileA(source);
618 ok(ret, "DeleteFileA: error %d\n", GetLastError());
619 ret = DeleteFileA(dest);
620 ok(ret, "DeleteFileA: error %d\n", GetLastError());
621 }
622
623 static void test_CopyFileW(void)
624 {
625 WCHAR temp_path[MAX_PATH];
626 WCHAR source[MAX_PATH], dest[MAX_PATH];
627 static const WCHAR prefix[] = {'p','f','x',0};
628 DWORD ret;
629
630 ret = GetTempPathW(MAX_PATH, temp_path);
631 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
632 return;
633 ok(ret != 0, "GetTempPathW error %d\n", GetLastError());
634 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
635
636 ret = GetTempFileNameW(temp_path, prefix, 0, source);
637 ok(ret != 0, "GetTempFileNameW error %d\n", GetLastError());
638
639 ret = GetTempFileNameW(temp_path, prefix, 0, dest);
640 ok(ret != 0, "GetTempFileNameW error %d\n", GetLastError());
641
642 ret = CopyFileW(source, dest, TRUE);
643 ok(!ret && GetLastError() == ERROR_FILE_EXISTS,
644 "CopyFileW: unexpected error %d\n", GetLastError());
645
646 ret = CopyFileW(source, dest, FALSE);
647 ok(ret, "CopyFileW: error %d\n", GetLastError());
648
649 ret = DeleteFileW(source);
650 ok(ret, "DeleteFileW: error %d\n", GetLastError());
651 ret = DeleteFileW(dest);
652 ok(ret, "DeleteFileW: error %d\n", GetLastError());
653 }
654
655 static void test_CreateFileA(void)
656 {
657 HANDLE hFile;
658 char temp_path[MAX_PATH];
659 char filename[MAX_PATH];
660 static const char prefix[] = "pfx";
661 DWORD ret;
662
663 ret = GetTempPathA(MAX_PATH, temp_path);
664 ok(ret != 0, "GetTempPathA error %d\n", GetLastError());
665 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
666
667 ret = GetTempFileNameA(temp_path, prefix, 0, filename);
668 ok(ret != 0, "GetTempFileNameA error %d\n", GetLastError());
669
670 SetLastError(0xdeadbeef);
671 hFile = CreateFileA(filename, GENERIC_READ, 0, NULL,
672 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
673 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_FILE_EXISTS,
674 "CREATE_NEW should fail if file exists and last error value should be ERROR_FILE_EXISTS\n");
675
676 SetLastError(0xdeadbeef);
677 hFile = CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
678 CREATE_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
679 ok(hFile != INVALID_HANDLE_VALUE && GetLastError() == ERROR_ALREADY_EXISTS,
680 "hFile %p, last error %u\n", hFile, GetLastError());
681
682 CloseHandle(hFile);
683
684 SetLastError(0xdeadbeef);
685 hFile = CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
686 OPEN_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
687 ok(hFile != INVALID_HANDLE_VALUE && GetLastError() == ERROR_ALREADY_EXISTS,
688 "hFile %p, last error %u\n", hFile, GetLastError());
689
690 CloseHandle(hFile);
691
692 ret = DeleteFileA(filename);
693 ok(ret, "DeleteFileA: error %d\n", GetLastError());
694
695 SetLastError(0xdeadbeef);
696 hFile = CreateFileA(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
697 OPEN_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
698 ok(hFile != INVALID_HANDLE_VALUE && GetLastError() == 0,
699 "hFile %p, last error %u\n", hFile, GetLastError());
700
701 CloseHandle(hFile);
702
703 ret = DeleteFileA(filename);
704 ok(ret, "DeleteFileA: error %d\n", GetLastError());
705 }
706
707 static void test_CreateFileW(void)
708 {
709 HANDLE hFile;
710 WCHAR temp_path[MAX_PATH];
711 WCHAR filename[MAX_PATH];
712 static const WCHAR emptyW[]={'\0'};
713 static const WCHAR prefix[] = {'p','f','x',0};
714 static const WCHAR bogus[] = { '\\', '\\', '.', '\\', 'B', 'O', 'G', 'U', 'S', 0 };
715 DWORD ret;
716
717 ret = GetTempPathW(MAX_PATH, temp_path);
718 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
719 return;
720 ok(ret != 0, "GetTempPathW error %d\n", GetLastError());
721 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
722
723 ret = GetTempFileNameW(temp_path, prefix, 0, filename);
724 ok(ret != 0, "GetTempFileNameW error %d\n", GetLastError());
725
726 SetLastError(0xdeadbeef);
727 hFile = CreateFileW(filename, GENERIC_READ, 0, NULL,
728 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
729 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_FILE_EXISTS,
730 "CREATE_NEW should fail if file exists and last error value should be ERROR_FILE_EXISTS\n");
731
732 SetLastError(0xdeadbeef);
733 hFile = CreateFileW(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
734 CREATE_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
735 ok(hFile != INVALID_HANDLE_VALUE && GetLastError() == ERROR_ALREADY_EXISTS,
736 "hFile %p, last error %u\n", hFile, GetLastError());
737
738 CloseHandle(hFile);
739
740 SetLastError(0xdeadbeef);
741 hFile = CreateFileW(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
742 OPEN_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
743 ok(hFile != INVALID_HANDLE_VALUE && GetLastError() == ERROR_ALREADY_EXISTS,
744 "hFile %p, last error %u\n", hFile, GetLastError());
745
746 CloseHandle(hFile);
747
748 ret = DeleteFileW(filename);
749 ok(ret, "DeleteFileW: error %d\n", GetLastError());
750
751 SetLastError(0xdeadbeef);
752 hFile = CreateFileW(filename, GENERIC_READ, FILE_SHARE_READ, NULL,
753 OPEN_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
754 ok(hFile != INVALID_HANDLE_VALUE && GetLastError() == 0,
755 "hFile %p, last error %u\n", hFile, GetLastError());
756
757 CloseHandle(hFile);
758
759 ret = DeleteFileW(filename);
760 ok(ret, "DeleteFileW: error %d\n", GetLastError());
761
762 if (0)
763 {
764 /* this crashes on NT4.0 */
765 hFile = CreateFileW(NULL, GENERIC_READ, 0, NULL,
766 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
767 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_PATH_NOT_FOUND,
768 "CreateFileW(NULL) returned ret=%p error=%u\n",hFile,GetLastError());
769 }
770
771 hFile = CreateFileW(emptyW, GENERIC_READ, 0, NULL,
772 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
773 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_PATH_NOT_FOUND,
774 "CreateFileW(\"\") returned ret=%p error=%d\n",hFile,GetLastError());
775
776 /* test the result of opening a nonexistent driver name */
777 hFile = CreateFileW(bogus, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
778 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
779 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_FILE_NOT_FOUND,
780 "CreateFileW on invalid VxD name returned ret=%p error=%d\n",hFile,GetLastError());
781 }
782
783 static void test_GetTempFileNameA(void)
784 {
785 UINT result;
786 char out[MAX_PATH];
787 char expected[MAX_PATH + 10];
788 char windowsdir[MAX_PATH + 10];
789 char windowsdrive[3];
790
791 result = GetWindowsDirectory(windowsdir, sizeof(windowsdir));
792 ok(result < sizeof(windowsdir), "windowsdir is abnormally long!\n");
793 ok(result != 0, "GetWindowsDirectory: error %d\n", GetLastError());
794
795 /* If the Windows directory is the root directory, it ends in backslash, not else. */
796 if (strlen(windowsdir) != 3) /* As in "C:\" or "F:\" */
797 {
798 strcat(windowsdir, "\\");
799 }
800
801 windowsdrive[0] = windowsdir[0];
802 windowsdrive[1] = windowsdir[1];
803 windowsdrive[2] = '\0';
804
805 result = GetTempFileNameA(windowsdrive, "abc", 1, out);
806 ok(result != 0, "GetTempFileNameA: error %d\n", GetLastError());
807 ok(((out[0] == windowsdrive[0]) && (out[1] == ':')) && (out[2] == '\\'),
808 "GetTempFileNameA: first three characters should be %c:\\, string was actually %s\n",
809 windowsdrive[0], out);
810
811 result = GetTempFileNameA(windowsdir, "abc", 2, out);
812 ok(result != 0, "GetTempFileNameA: error %d\n", GetLastError());
813 expected[0] = '\0';
814 strcat(expected, windowsdir);
815 strcat(expected, "abc2.tmp");
816 ok(lstrcmpiA(out, expected) == 0, "GetTempFileNameA: Unexpected output \"%s\" vs \"%s\"\n",
817 out, expected);
818 }
819
820 static void test_DeleteFileA( void )
821 {
822 BOOL ret;
823
824 ret = DeleteFileA(NULL);
825 ok(!ret && (GetLastError() == ERROR_INVALID_PARAMETER ||
826 GetLastError() == ERROR_PATH_NOT_FOUND),
827 "DeleteFileA(NULL) returned ret=%d error=%d\n",ret,GetLastError());
828
829 ret = DeleteFileA("");
830 ok(!ret && (GetLastError() == ERROR_PATH_NOT_FOUND ||
831 GetLastError() == ERROR_BAD_PATHNAME),
832 "DeleteFileA(\"\") returned ret=%d error=%d\n",ret,GetLastError());
833
834 ret = DeleteFileA("nul");
835 ok(!ret && (GetLastError() == ERROR_FILE_NOT_FOUND ||
836 GetLastError() == ERROR_INVALID_PARAMETER ||
837 GetLastError() == ERROR_ACCESS_DENIED ||
838 GetLastError() == ERROR_INVALID_FUNCTION),
839 "DeleteFileA(\"nul\") returned ret=%d error=%d\n",ret,GetLastError());
840 }
841
842 static void test_DeleteFileW( void )
843 {
844 BOOL ret;
845 WCHAR pathW[MAX_PATH];
846 WCHAR pathsubW[MAX_PATH];
847 static const WCHAR dirW[] = {'d','e','l','e','t','e','f','i','l','e',0};
848 static const WCHAR subdirW[] = {'\\','s','u','b',0};
849 static const WCHAR emptyW[]={'\0'};
850
851 ret = DeleteFileW(NULL);
852 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
853 return;
854 ok(!ret && GetLastError() == ERROR_PATH_NOT_FOUND,
855 "DeleteFileW(NULL) returned ret=%d error=%d\n",ret,GetLastError());
856
857 ret = DeleteFileW(emptyW);
858 ok(!ret && GetLastError() == ERROR_PATH_NOT_FOUND,
859 "DeleteFileW(\"\") returned ret=%d error=%d\n",ret,GetLastError());
860
861 /* test DeleteFile on empty directory */
862 ret = GetTempPathW(MAX_PATH, pathW);
863 if (ret + sizeof(dirW)/sizeof(WCHAR)-1 + sizeof(subdirW)/sizeof(WCHAR)-1 >= MAX_PATH)
864 {
865 ok(0, "MAX_PATH exceeded in constructing paths\n");
866 return;
867 }
868 lstrcatW(pathW, dirW);
869 lstrcpyW(pathsubW, pathW);
870 lstrcatW(pathsubW, subdirW);
871 ret = CreateDirectoryW(pathW, NULL);
872 ok(ret == TRUE, "couldn't create directory deletefile\n");
873 ret = DeleteFileW(pathW);
874 ok(ret == FALSE, "DeleteFile should fail for empty directories\n");
875 ret = RemoveDirectoryW(pathW);
876 ok(ret == TRUE, "expected to remove directory deletefile\n");
877
878 /* test DeleteFile on non-empty directory */
879 ret = CreateDirectoryW(pathW, NULL);
880 ok(ret == TRUE, "couldn't create directory deletefile\n");
881 ret = CreateDirectoryW(pathsubW, NULL);
882 ok(ret == TRUE, "couldn't create directory deletefile\\sub\n");
883 ret = DeleteFileW(pathW);
884 ok(ret == FALSE, "DeleteFile should fail for non-empty directories\n");
885 ret = RemoveDirectoryW(pathsubW);
886 ok(ret == TRUE, "expected to remove directory deletefile\\sub\n");
887 ret = RemoveDirectoryW(pathW);
888 ok(ret == TRUE, "expected to remove directory deletefile\n");
889 }
890
891 #define IsDotDir(x) ((x[0] == '.') && ((x[1] == 0) || ((x[1] == '.') && (x[2] == 0))))
892
893 static void test_MoveFileA(void)
894 {
895 char tempdir[MAX_PATH];
896 char source[MAX_PATH], dest[MAX_PATH];
897 static const char prefix[] = "pfx";
898 DWORD ret;
899
900 ret = GetTempPathA(MAX_PATH, tempdir);
901 ok(ret != 0, "GetTempPathA error %d\n", GetLastError());
902 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
903
904 ret = GetTempFileNameA(tempdir, prefix, 0, source);
905 ok(ret != 0, "GetTempFileNameA error %d\n", GetLastError());
906
907 ret = GetTempFileNameA(tempdir, prefix, 0, dest);
908 ok(ret != 0, "GetTempFileNameA error %d\n", GetLastError());
909
910 ret = MoveFileA(source, dest);
911 ok(!ret && GetLastError() == ERROR_ALREADY_EXISTS,
912 "MoveFileA: unexpected error %d\n", GetLastError());
913
914 ret = DeleteFileA(dest);
915 ok(ret, "DeleteFileA: error %d\n", GetLastError());
916
917 ret = MoveFileA(source, dest);
918 ok(ret, "MoveFileA: failed, error %d\n", GetLastError());
919
920 lstrcatA(tempdir, "Remove Me");
921 ret = CreateDirectoryA(tempdir, NULL);
922 ok(ret == TRUE, "CreateDirectoryA failed\n");
923
924 lstrcpyA(source, dest);
925 lstrcpyA(dest, tempdir);
926 lstrcatA(dest, "\\wild?.*");
927 /* FIXME: if we create a file with wildcards we can't delete it now that DeleteFile works correctly */
928 ret = MoveFileA(source, dest);
929 ok(!ret, "MoveFileA: shouldn't move to wildcard file\n");
930 ok(GetLastError() == ERROR_INVALID_NAME || /* NT */
931 GetLastError() == ERROR_FILE_NOT_FOUND, /* Win9x */
932 "MoveFileA: with wildcards, unexpected error %d\n", GetLastError());
933 if (ret || (GetLastError() != ERROR_INVALID_NAME))
934 {
935 WIN32_FIND_DATAA fd;
936 char temppath[MAX_PATH];
937 HANDLE hFind;
938
939 lstrcpyA(temppath, tempdir);
940 lstrcatA(temppath, "\\*.*");
941 hFind = FindFirstFileA(temppath, &fd);
942 if (INVALID_HANDLE_VALUE != hFind)
943 {
944 LPSTR lpName;
945 do
946 {
947 lpName = fd.cAlternateFileName;
948 if (!lpName[0])
949 lpName = fd.cFileName;
950 ok(IsDotDir(lpName), "MoveFileA: wildcards file created!\n");
951 }
952 while (FindNextFileA(hFind, &fd));
953 FindClose(hFind);
954 }
955 }
956 ret = DeleteFileA(source);
957 ok(ret, "DeleteFileA: error %d\n", GetLastError());
958 ret = DeleteFileA(dest);
959 ok(!ret, "DeleteFileA: error %d\n", GetLastError());
960 ret = RemoveDirectoryA(tempdir);
961 ok(ret, "DeleteDirectoryA: error %d\n", GetLastError());
962 }
963
964 static void test_MoveFileW(void)
965 {
966 WCHAR temp_path[MAX_PATH];
967 WCHAR source[MAX_PATH], dest[MAX_PATH];
968 static const WCHAR prefix[] = {'p','f','x',0};
969 DWORD ret;
970
971 ret = GetTempPathW(MAX_PATH, temp_path);
972 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
973 return;
974 ok(ret != 0, "GetTempPathW error %d\n", GetLastError());
975 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
976
977 ret = GetTempFileNameW(temp_path, prefix, 0, source);
978 ok(ret != 0, "GetTempFileNameW error %d\n", GetLastError());
979
980 ret = GetTempFileNameW(temp_path, prefix, 0, dest);
981 ok(ret != 0, "GetTempFileNameW error %d\n", GetLastError());
982
983 ret = MoveFileW(source, dest);
984 ok(!ret && GetLastError() == ERROR_ALREADY_EXISTS,
985 "CopyFileW: unexpected error %d\n", GetLastError());
986
987 ret = DeleteFileW(source);
988 ok(ret, "DeleteFileW: error %d\n", GetLastError());
989 ret = DeleteFileW(dest);
990 ok(ret, "DeleteFileW: error %d\n", GetLastError());
991 }
992
993 #define PATTERN_OFFSET 0x10
994
995 static void test_offset_in_overlapped_structure(void)
996 {
997 HANDLE hFile;
998 OVERLAPPED ov;
999 DWORD done, offset;
1000 BOOL rc;
1001 BYTE buf[256], pattern[] = "TeSt";
1002 UINT i;
1003 char temp_path[MAX_PATH], temp_fname[MAX_PATH];
1004 BOOL ret;
1005
1006 ret =GetTempPathA(MAX_PATH, temp_path);
1007 ok( ret, "GetTempPathA error %d\n", GetLastError());
1008 ret =GetTempFileNameA(temp_path, "pfx", 0, temp_fname);
1009 ok( ret, "GetTempFileNameA error %d\n", GetLastError());
1010
1011 /*** Write File *****************************************************/
1012
1013 hFile = CreateFileA(temp_fname, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
1014 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA error %d\n", GetLastError());
1015
1016 for(i = 0; i < sizeof(buf); i++) buf[i] = i;
1017 ret = WriteFile(hFile, buf, sizeof(buf), &done, NULL);
1018 ok( ret, "WriteFile error %d\n", GetLastError());
1019 ok(done == sizeof(buf), "expected number of bytes written %u\n", done);
1020
1021 memset(&ov, 0, sizeof(ov));
1022 S(U(ov)).Offset = PATTERN_OFFSET;
1023 S(U(ov)).OffsetHigh = 0;
1024 rc=WriteFile(hFile, pattern, sizeof(pattern), &done, &ov);
1025 /* Win 9x does not support the overlapped I/O on files */
1026 if (rc || GetLastError()!=ERROR_INVALID_PARAMETER) {
1027 ok(rc, "WriteFile error %d\n", GetLastError());
1028 ok(done == sizeof(pattern), "expected number of bytes written %u\n", done);
1029 offset = SetFilePointer(hFile, 0, NULL, FILE_CURRENT);
1030 ok(offset == PATTERN_OFFSET + sizeof(pattern), "wrong file offset %d\n", offset);
1031
1032 S(U(ov)).Offset = sizeof(buf) * 2;
1033 S(U(ov)).OffsetHigh = 0;
1034 ret = WriteFile(hFile, pattern, sizeof(pattern), &done, &ov);
1035 ok( ret, "WriteFile error %d\n", GetLastError());
1036 ok(done == sizeof(pattern), "expected number of bytes written %u\n", done);
1037 offset = SetFilePointer(hFile, 0, NULL, FILE_CURRENT);
1038 ok(offset == sizeof(buf) * 2 + sizeof(pattern), "wrong file offset %d\n", offset);
1039 }
1040
1041 CloseHandle(hFile);
1042
1043 /*** Read File *****************************************************/
1044
1045 hFile = CreateFileA(temp_fname, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, 0);
1046 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA error %d\n", GetLastError());
1047
1048 memset(buf, 0, sizeof(buf));
1049 memset(&ov, 0, sizeof(ov));
1050 S(U(ov)).Offset = PATTERN_OFFSET;
1051 S(U(ov)).OffsetHigh = 0;
1052 rc=ReadFile(hFile, buf, sizeof(pattern), &done, &ov);
1053 /* Win 9x does not support the overlapped I/O on files */
1054 if (rc || GetLastError()!=ERROR_INVALID_PARAMETER) {
1055 ok(rc, "ReadFile error %d\n", GetLastError());
1056 ok(done == sizeof(pattern), "expected number of bytes read %u\n", done);
1057 offset = SetFilePointer(hFile, 0, NULL, FILE_CURRENT);
1058 ok(offset == PATTERN_OFFSET + sizeof(pattern), "wrong file offset %d\n", offset);
1059 ok(!memcmp(buf, pattern, sizeof(pattern)), "pattern match failed\n");
1060 }
1061
1062 CloseHandle(hFile);
1063
1064 ret = DeleteFileA(temp_fname);
1065 ok( ret, "DeleteFileA error %d\n", GetLastError());
1066 }
1067
1068 static void test_LockFile(void)
1069 {
1070 HANDLE handle;
1071 DWORD written;
1072 OVERLAPPED overlapped;
1073 int limited_LockFile;
1074 int limited_UnLockFile;
1075 BOOL ret;
1076
1077 handle = CreateFileA( filename, GENERIC_READ | GENERIC_WRITE,
1078 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
1079 CREATE_ALWAYS, 0, 0 );
1080 if (handle == INVALID_HANDLE_VALUE)
1081 {
1082 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
1083 return;
1084 }
1085 ok( WriteFile( handle, sillytext, strlen(sillytext), &written, NULL ), "write failed\n" );
1086
1087 ok( LockFile( handle, 0, 0, 0, 0 ), "LockFile failed\n" );
1088 ok( UnlockFile( handle, 0, 0, 0, 0 ), "UnlockFile failed\n" );
1089
1090 limited_UnLockFile = 0;
1091 if (UnlockFile( handle, 0, 0, 0, 0 ))
1092 {
1093 limited_UnLockFile = 1;
1094 }
1095
1096 ok( LockFile( handle, 10, 0, 20, 0 ), "LockFile 10,20 failed\n" );
1097 /* overlapping locks must fail */
1098 ok( !LockFile( handle, 12, 0, 10, 0 ), "LockFile 12,10 succeeded\n" );
1099 ok( !LockFile( handle, 5, 0, 6, 0 ), "LockFile 5,6 succeeded\n" );
1100 /* non-overlapping locks must succeed */
1101 ok( LockFile( handle, 5, 0, 5, 0 ), "LockFile 5,5 failed\n" );
1102
1103 ok( !UnlockFile( handle, 10, 0, 10, 0 ), "UnlockFile 10,10 succeeded\n" );
1104 ok( UnlockFile( handle, 10, 0, 20, 0 ), "UnlockFile 10,20 failed\n" );
1105 ok( !UnlockFile( handle, 10, 0, 20, 0 ), "UnlockFile 10,20 again succeeded\n" );
1106 ok( UnlockFile( handle, 5, 0, 5, 0 ), "UnlockFile 5,5 failed\n" );
1107
1108 S(U(overlapped)).Offset = 100;
1109 S(U(overlapped)).OffsetHigh = 0;
1110 overlapped.hEvent = 0;
1111
1112 /* Test for broken LockFileEx a la Windows 95 OSR2. */
1113 if (LockFileEx( handle, 0, 0, 100, 0, &overlapped ))
1114 {
1115 /* LockFileEx is probably OK, test it more. */
1116 ok( LockFileEx( handle, 0, 0, 100, 0, &overlapped ),
1117 "LockFileEx 100,100 failed\n" );
1118 }
1119
1120 /* overlapping shared locks are OK */
1121 S(U(overlapped)).Offset = 150;
1122 limited_UnLockFile || ok( LockFileEx( handle, 0, 0, 100, 0, &overlapped ), "LockFileEx 150,100 failed\n" );
1123
1124 /* but exclusive is not */
1125 ok( !LockFileEx( handle, LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
1126 0, 50, 0, &overlapped ),
1127 "LockFileEx exclusive 150,50 succeeded\n" );
1128 if (!UnlockFileEx( handle, 0, 100, 0, &overlapped ))
1129 { /* UnLockFile is capable. */
1130 S(U(overlapped)).Offset = 100;
1131 ok( !UnlockFileEx( handle, 0, 100, 0, &overlapped ),
1132 "UnlockFileEx 150,100 again succeeded\n" );
1133 }
1134
1135 ret = LockFile( handle, 0, 0x10000000, 0, 0xf0000000 );
1136 if (ret)
1137 {
1138 ok( !LockFile( handle, ~0, ~0, 1, 0 ), "LockFile ~0,1 succeeded\n" );
1139 ok( !LockFile( handle, 0, 0x20000000, 20, 0 ), "LockFile 0x20000000,20 succeeded\n" );
1140 ok( UnlockFile( handle, 0, 0x10000000, 0, 0xf0000000 ), "UnlockFile failed\n" );
1141 }
1142 else /* win9x */
1143 ok( GetLastError() == ERROR_INVALID_PARAMETER, "wrong LockFile error %u\n", GetLastError() );
1144
1145 /* wrap-around lock should not do anything */
1146 /* (but still succeeds on NT4 so we don't check result) */
1147 LockFile( handle, 0, 0x10000000, 0, 0xf0000001 );
1148
1149 limited_LockFile = 0;
1150 if (!LockFile( handle, ~0, ~0, 1, 0 ))
1151 {
1152 limited_LockFile = 1;
1153 }
1154
1155 limited_UnLockFile || ok( UnlockFile( handle, ~0, ~0, 1, 0 ), "Unlockfile ~0,1 failed\n" );
1156
1157 /* zero-byte lock */
1158 ok( LockFile( handle, 100, 0, 0, 0 ), "LockFile 100,0 failed\n" );
1159 limited_LockFile || ok( !LockFile( handle, 98, 0, 4, 0 ), "LockFile 98,4 succeeded\n" );
1160 ok( LockFile( handle, 90, 0, 10, 0 ), "LockFile 90,10 failed\n" );
1161 limited_LockFile || ok( !LockFile( handle, 100, 0, 10, 0 ), "LockFile 100,10 failed\n" );
1162
1163 ok( UnlockFile( handle, 90, 0, 10, 0 ), "UnlockFile 90,10 failed\n" );
1164 !ok( UnlockFile( handle, 100, 0, 10, 0 ), "UnlockFile 100,10 failed\n" );
1165
1166 ok( UnlockFile( handle, 100, 0, 0, 0 ), "UnlockFile 100,0 failed\n" );
1167
1168 CloseHandle( handle );
1169 DeleteFileA( filename );
1170 }
1171
1172 static inline int is_sharing_compatible( DWORD access1, DWORD sharing1, DWORD access2, DWORD sharing2, BOOL is_win9x )
1173 {
1174 if (!is_win9x)
1175 {
1176 if (!access1) sharing1 = FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE;
1177 if (!access2) sharing2 = FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE;
1178 }
1179 else
1180 {
1181 access1 &= ~DELETE;
1182 if (!access1) access1 = GENERIC_READ;
1183
1184 access2 &= ~DELETE;
1185 if (!access2) access2 = GENERIC_READ;
1186 }
1187
1188 if ((access1 & GENERIC_READ) && !(sharing2 & FILE_SHARE_READ)) return 0;
1189 if ((access1 & GENERIC_WRITE) && !(sharing2 & FILE_SHARE_WRITE)) return 0;
1190 if ((access1 & DELETE) && !(sharing2 & FILE_SHARE_DELETE)) return 0;
1191 if ((access2 & GENERIC_READ) && !(sharing1 & FILE_SHARE_READ)) return 0;
1192 if ((access2 & GENERIC_WRITE) && !(sharing1 & FILE_SHARE_WRITE)) return 0;
1193 if ((access2 & DELETE) && !(sharing1 & FILE_SHARE_DELETE)) return 0;
1194 return 1;
1195 }
1196
1197 static void test_file_sharing(void)
1198 {
1199 static const DWORD access_modes[] =
1200 { 0, GENERIC_READ, GENERIC_WRITE, GENERIC_READ|GENERIC_WRITE,
1201 DELETE, GENERIC_READ|DELETE, GENERIC_WRITE|DELETE, GENERIC_READ|GENERIC_WRITE|DELETE };
1202 static const DWORD sharing_modes[] =
1203 { 0, FILE_SHARE_READ,
1204 FILE_SHARE_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE,
1205 FILE_SHARE_DELETE, FILE_SHARE_READ|FILE_SHARE_DELETE,
1206 FILE_SHARE_WRITE|FILE_SHARE_DELETE, FILE_SHARE_READ|FILE_SHARE_WRITE|FILE_SHARE_DELETE };
1207 int a1, s1, a2, s2;
1208 int ret;
1209 HANDLE h, h2;
1210 BOOL is_win9x = FALSE;
1211
1212 /* make sure the file exists */
1213 h = CreateFileA( filename, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0 );
1214 if (h == INVALID_HANDLE_VALUE)
1215 {
1216 ok(0, "couldn't create file \"%s\" (err=%d)\n", filename, GetLastError());
1217 return;
1218 }
1219 is_win9x = GetFileAttributesW(filenameW) == INVALID_FILE_ATTRIBUTES;
1220 CloseHandle( h );
1221
1222 for (a1 = 0; a1 < sizeof(access_modes)/sizeof(access_modes[0]); a1++)
1223 {
1224 for (s1 = 0; s1 < sizeof(sharing_modes)/sizeof(sharing_modes[0]); s1++)
1225 {
1226 /* Win9x doesn't support FILE_SHARE_DELETE */
1227 if (is_win9x && (sharing_modes[s1] & FILE_SHARE_DELETE))
1228 continue;
1229
1230 SetLastError(0xdeadbeef);
1231 h = CreateFileA( filename, access_modes[a1], sharing_modes[s1],
1232 NULL, OPEN_EXISTING, 0, 0 );
1233 if (h == INVALID_HANDLE_VALUE)
1234 {
1235 ok(0,"couldn't create file \"%s\" (err=%d)\n",filename,GetLastError());
1236 return;
1237 }
1238 for (a2 = 0; a2 < sizeof(access_modes)/sizeof(access_modes[0]); a2++)
1239 {
1240 for (s2 = 0; s2 < sizeof(sharing_modes)/sizeof(sharing_modes[0]); s2++)
1241 {
1242 /* Win9x doesn't support FILE_SHARE_DELETE */
1243 if (is_win9x && (sharing_modes[s2] & FILE_SHARE_DELETE))
1244 continue;
1245
1246 SetLastError(0xdeadbeef);
1247 h2 = CreateFileA( filename, access_modes[a2], sharing_modes[s2],
1248 NULL, OPEN_EXISTING, 0, 0 );
1249
1250 if (is_sharing_compatible( access_modes[a1], sharing_modes[s1],
1251 access_modes[a2], sharing_modes[s2], is_win9x ))
1252 {
1253 ret = GetLastError();
1254
1255 ok( h2 != INVALID_HANDLE_VALUE,
1256 "open failed for modes %x/%x/%x/%x\n",
1257 access_modes[a1], sharing_modes[s1],
1258 access_modes[a2], sharing_modes[s2] );
1259 ok( ret == 0xdeadbeef /* Win9x */ ||
1260 ret == 0, /* XP */
1261 "wrong error code %d\n", ret );
1262
1263 CloseHandle( h2 );
1264 }
1265 else
1266 {
1267 ret = GetLastError();
1268
1269 ok( h2 == INVALID_HANDLE_VALUE,
1270 "open succeeded for modes %x/%x/%x/%x\n",
1271 access_modes[a1], sharing_modes[s1],
1272 access_modes[a2], sharing_modes[s2] );
1273 ok( ret == ERROR_SHARING_VIOLATION,
1274 "wrong error code %d\n", ret );
1275 }
1276 }
1277 }
1278 CloseHandle( h );
1279 }
1280 }
1281
1282 SetLastError(0xdeadbeef);
1283 h = CreateFileA( filename, GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_ALWAYS, 0, 0 );
1284 ok( h != INVALID_HANDLE_VALUE, "CreateFileA error %d\n", GetLastError() );
1285
1286 SetLastError(0xdeadbeef);
1287 h2 = CreateFileA( filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0 );
1288 ok( h2 == INVALID_HANDLE_VALUE, "CreateFileA should fail\n");
1289 ok( GetLastError() == ERROR_SHARING_VIOLATION, "wrong error code %d\n", GetLastError() );
1290
1291 h2 = CreateFileA( filename, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, 0 );
1292 ok( h2 != INVALID_HANDLE_VALUE, "CreateFileA error %d\n", GetLastError() );
1293
1294 CloseHandle(h);
1295 CloseHandle(h2);
1296
1297 DeleteFileA( filename );
1298 }
1299
1300 static char get_windows_drive(void)
1301 {
1302 char windowsdir[MAX_PATH];
1303 GetWindowsDirectory(windowsdir, sizeof(windowsdir));
1304 return windowsdir[0];
1305 }
1306
1307 static void test_FindFirstFileA(void)
1308 {
1309 HANDLE handle;
1310 WIN32_FIND_DATAA data;
1311 int err;
1312 char buffer[5] = "C:\\";
1313 char buffer2[100];
1314
1315 /* try FindFirstFileA on "C:\" */
1316 buffer[0] = get_windows_drive();
1317
1318 SetLastError( 0xdeadbeaf );
1319 handle = FindFirstFileA(buffer, &data);
1320 err = GetLastError();
1321 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on root directory should fail\n" );
1322 ok ( err == ERROR_FILE_NOT_FOUND, "Bad Error number %d\n", err );
1323
1324 /* try FindFirstFileA on "C:\*" */
1325 strcpy(buffer2, buffer);
1326 strcat(buffer2, "*");
1327 handle = FindFirstFileA(buffer2, &data);
1328 ok ( handle != INVALID_HANDLE_VALUE, "FindFirstFile on %s should succeed\n", buffer2 );
1329 ok ( strcmp( data.cFileName, "." ) && strcmp( data.cFileName, ".." ),
1330 "FindFirstFile shouldn't return '%s' in drive root\n", data.cFileName );
1331 if (FindNextFileA( handle, &data ))
1332 ok ( strcmp( data.cFileName, "." ) && strcmp( data.cFileName, ".." ),
1333 "FindNextFile shouldn't return '%s' in drive root\n", data.cFileName );
1334 ok ( FindClose(handle) == TRUE, "Failed to close handle %s\n", buffer2 );
1335
1336 /* try FindFirstFileA on windows dir */
1337 GetWindowsDirectory( buffer2, sizeof(buffer2) );
1338 strcat(buffer2, "\\*");
1339 handle = FindFirstFileA(buffer2, &data);
1340 ok( handle != INVALID_HANDLE_VALUE, "FindFirstFile on %s should succeed\n", buffer2 );
1341 ok( !strcmp( data.cFileName, "." ), "FindFirstFile should return '.' first\n" );
1342 ok( FindNextFileA( handle, &data ), "FindNextFile failed\n" );
1343 ok( !strcmp( data.cFileName, ".." ), "FindNextFile should return '..' as second entry\n" );
1344 while (FindNextFileA( handle, &data ))
1345 ok ( strcmp( data.cFileName, "." ) && strcmp( data.cFileName, ".." ),
1346 "FindNextFile shouldn't return '%s'\n", data.cFileName );
1347 ok ( FindClose(handle) == TRUE, "Failed to close handle %s\n", buffer2 );
1348
1349 /* try FindFirstFileA on "C:\foo\" */
1350 SetLastError( 0xdeadbeaf );
1351 strcpy(buffer2, buffer);
1352 strcat(buffer2, "foo\\");
1353 handle = FindFirstFileA(buffer2, &data);
1354 err = GetLastError();
1355 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1356 todo_wine {
1357 ok ( err == ERROR_PATH_NOT_FOUND, "Bad Error number %d\n", err );
1358 }
1359
1360 /* try FindFirstFileA on "C:\foo\bar.txt" */
1361 SetLastError( 0xdeadbeaf );
1362 strcpy(buffer2, buffer);
1363 strcat(buffer2, "foo\\bar.txt");
1364 handle = FindFirstFileA(buffer2, &data);
1365 err = GetLastError();
1366 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1367 ok ( err == ERROR_PATH_NOT_FOUND, "Bad Error number %d\n", err );
1368
1369 /* try FindFirstFileA on "C:\foo\*.*" */
1370 SetLastError( 0xdeadbeaf );
1371 strcpy(buffer2, buffer);
1372 strcat(buffer2, "foo\\*.*");
1373 handle = FindFirstFileA(buffer2, &data);
1374 err = GetLastError();
1375 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1376 ok ( err == ERROR_PATH_NOT_FOUND, "Bad Error number %d\n", err );
1377
1378 /* try FindFirstFileA on "foo\bar.txt" */
1379 SetLastError( 0xdeadbeaf );
1380 strcpy(buffer2, "foo\\bar.txt");
1381 handle = FindFirstFileA(buffer2, &data);
1382 err = GetLastError();
1383 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1384 ok ( err == ERROR_PATH_NOT_FOUND, "Bad Error number %d\n", err );
1385
1386 /* try FindFirstFileA on "c:\nul" */
1387 SetLastError( 0xdeadbeaf );
1388 strcpy(buffer2, buffer);
1389 strcat(buffer2, "nul");
1390 handle = FindFirstFileA(buffer2, &data);
1391 err = GetLastError();
1392 ok( handle != INVALID_HANDLE_VALUE, "FindFirstFile on %s failed\n", buffer2 );
1393 ok( 0 == lstrcmpiA(data.cFileName, "nul"), "wrong name %s\n", data.cFileName );
1394 ok( FILE_ATTRIBUTE_ARCHIVE == data.dwFileAttributes ||
1395 FILE_ATTRIBUTE_DEVICE == data.dwFileAttributes /* Win9x */,
1396 "wrong attributes %x\n", data.dwFileAttributes );
1397 if (data.dwFileAttributes == FILE_ATTRIBUTE_ARCHIVE)
1398 {
1399 ok( 0 == data.nFileSizeHigh, "wrong size %d\n", data.nFileSizeHigh );
1400 ok( 0 == data.nFileSizeLow, "wrong size %d\n", data.nFileSizeLow );
1401 }
1402 SetLastError( 0xdeadbeaf );
1403 ok( !FindNextFileA( handle, &data ), "FindNextFileA succeeded\n" );
1404 ok( GetLastError() == ERROR_NO_MORE_FILES, "bad error %d\n", GetLastError() );
1405 ok( FindClose( handle ), "failed to close handle\n" );
1406
1407 /* try FindFirstFileA on "lpt1" */
1408 SetLastError( 0xdeadbeaf );
1409 strcpy(buffer2, "lpt1");
1410 handle = FindFirstFileA(buffer2, &data);
1411 err = GetLastError();
1412 ok( handle != INVALID_HANDLE_VALUE, "FindFirstFile on %s failed\n", buffer2 );
1413 ok( 0 == lstrcmpiA(data.cFileName, "lpt1"), "wrong name %s\n", data.cFileName );
1414 ok( FILE_ATTRIBUTE_ARCHIVE == data.dwFileAttributes ||
1415 FILE_ATTRIBUTE_DEVICE == data.dwFileAttributes /* Win9x */,
1416 "wrong attributes %x\n", data.dwFileAttributes );
1417 if (data.dwFileAttributes == FILE_ATTRIBUTE_ARCHIVE)
1418 {
1419 ok( 0 == data.nFileSizeHigh, "wrong size %d\n", data.nFileSizeHigh );
1420 ok( 0 == data.nFileSizeLow, "wrong size %d\n", data.nFileSizeLow );
1421 }
1422 SetLastError( 0xdeadbeaf );
1423 ok( !FindNextFileA( handle, &data ), "FindNextFileA succeeded\n" );
1424 ok( GetLastError() == ERROR_NO_MORE_FILES, "bad error %d\n", GetLastError() );
1425 ok( FindClose( handle ), "failed to close handle\n" );
1426
1427 /* try FindFirstFileA on "c:\nul\*" */
1428 SetLastError( 0xdeadbeaf );
1429 strcpy(buffer2, buffer);
1430 strcat(buffer2, "nul\\*");
1431 handle = FindFirstFileA(buffer2, &data);
1432 err = GetLastError();
1433 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1434 ok ( err == ERROR_PATH_NOT_FOUND, "Bad Error number %d\n", err );
1435
1436 /* try FindFirstFileA on "c:\nul*" */
1437 SetLastError( 0xdeadbeaf );
1438 strcpy(buffer2, buffer);
1439 strcat(buffer2, "nul*");
1440 handle = FindFirstFileA(buffer2, &data);
1441 err = GetLastError();
1442 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1443 ok ( err == ERROR_FILE_NOT_FOUND, "Bad Error number %d\n", err );
1444
1445 /* try FindFirstFileA on "c:\foo\bar\nul" */
1446 SetLastError( 0xdeadbeaf );
1447 strcpy(buffer2, buffer);
1448 strcat(buffer2, "foo\\bar\\nul");
1449 handle = FindFirstFileA(buffer2, &data);
1450 err = GetLastError();
1451 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1452 ok ( err == ERROR_PATH_NOT_FOUND, "Bad Error number %d\n", err );
1453
1454 /* try FindFirstFileA on "c:\foo\nul\bar" */
1455 SetLastError( 0xdeadbeaf );
1456 strcpy(buffer2, buffer);
1457 strcat(buffer2, "foo\\nul\\bar");
1458 handle = FindFirstFileA(buffer2, &data);
1459 err = GetLastError();
1460 ok ( handle == INVALID_HANDLE_VALUE, "FindFirstFile on %s should Fail\n", buffer2 );
1461 ok ( err == ERROR_PATH_NOT_FOUND, "Bad Error number %d\n", err );
1462 }
1463
1464 static void test_FindNextFileA(void)
1465 {
1466 HANDLE handle;
1467 WIN32_FIND_DATAA search_results;
1468 int err;
1469 char buffer[5] = "C:\\*";
1470
1471 buffer[0] = get_windows_drive();
1472 handle = FindFirstFileA(buffer,&search_results);
1473 ok ( handle != INVALID_HANDLE_VALUE, "FindFirstFile on C:\\* should succeed\n" );
1474 while (FindNextFile(handle, &search_results))
1475 {
1476 /* get to the end of the files */
1477 }
1478 ok ( FindClose(handle) == TRUE, "Failed to close handle\n");
1479 err = GetLastError();
1480 ok ( err == ERROR_NO_MORE_FILES, "GetLastError should return ERROR_NO_MORE_FILES\n");
1481 }
1482
1483 static void test_FindFirstFileExA(void)
1484 {
1485 WIN32_FIND_DATAA search_results;
1486 HANDLE handle;
1487
1488 if (!pFindFirstFileExA)
1489 {
1490 skip("FindFirstFileExA() is missing\n");
1491 return;
1492 }
1493
1494 CreateDirectoryA("test-dir", NULL);
1495 _lclose(_lcreat("test-dir\\file1", 0));
1496 _lclose(_lcreat("test-dir\\file2", 0));
1497 CreateDirectoryA("test-dir\\dir1", NULL);
1498 /* FindExLimitToDirectories is ignored */
1499 SetLastError(0xdeadbeef);
1500 handle = pFindFirstFileExA("test-dir\\*", FindExInfoStandard, &search_results, FindExSearchLimitToDirectories, NULL, 0);
1501 if (handle == INVALID_HANDLE_VALUE && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
1502 {
1503 skip("FindFirstFileExA is not implemented\n");
1504 goto cleanup;
1505 }
1506 ok(handle != INVALID_HANDLE_VALUE, "FindFirstFile failed (err=%u)\n", GetLastError());
1507 ok(strcmp(search_results.cFileName, ".") == 0, "First entry should be '.', is %s\n", search_results.cFileName);
1508
1509 #define CHECK_NAME(fn) (strcmp((fn), "file1") == 0 || strcmp((fn), "file2") == 0 || strcmp((fn), "dir1") == 0)
1510
1511 ok(FindNextFile(handle, &search_results), "Fetching second file failed\n");
1512 ok(strcmp(search_results.cFileName, "..") == 0, "Second entry should be '..' is %s\n", search_results.cFileName);
1513
1514 ok(FindNextFile(handle, &search_results), "Fetching third file failed\n");
1515 ok(CHECK_NAME(search_results.cFileName), "Invalid third entry - %s\n", search_results.cFileName);
1516
1517 ok(FindNextFile(handle, &search_results), "Fetching fourth file failed\n");
1518 ok(CHECK_NAME(search_results.cFileName), "Invalid fourth entry - %s\n", search_results.cFileName);
1519
1520 ok(FindNextFile(handle, &search_results), "Fetching fifth file failed\n");
1521 ok(CHECK_NAME(search_results.cFileName), "Invalid fifth entry - %s\n", search_results.cFileName);
1522
1523 #undef CHECK_NAME
1524
1525 ok(FindNextFile(handle, &search_results) == FALSE, "Fetching sixth file should failed\n");
1526
1527 FindClose( handle );
1528
1529 cleanup:
1530 DeleteFileA("test-dir\\file1");
1531 DeleteFileA("test-dir\\file2");
1532 RemoveDirectoryA("test-dir\\dir1");
1533 RemoveDirectoryA("test-dir");
1534 }
1535
1536 static int test_Mapfile_createtemp(HANDLE *handle)
1537 {
1538 SetFileAttributesA(filename,FILE_ATTRIBUTE_NORMAL);
1539 DeleteFile(filename);
1540 *handle = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, 0,
1541 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
1542 if (*handle != INVALID_HANDLE_VALUE) {
1543
1544 return 1;
1545 }
1546
1547 return 0;
1548 }
1549
1550 static void test_MapFile(void)
1551 {
1552 HANDLE handle;
1553 HANDLE hmap;
1554
1555 ok(test_Mapfile_createtemp(&handle), "Couldn't create test file.\n");
1556
1557 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0, 0x1000, "named_file_map" );
1558 ok( hmap != NULL, "mapping should work, I named it!\n" );
1559
1560 ok( CloseHandle( hmap ), "can't close mapping handle\n");
1561
1562 /* We have to close file before we try new stuff with mapping again.
1563 Else we would always succeed on XP or block descriptors on 95. */
1564 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0, 0, NULL );
1565 ok( hmap != NULL, "We should still be able to map!\n" );
1566 ok( CloseHandle( hmap ), "can't close mapping handle\n");
1567 ok( CloseHandle( handle ), "can't close file handle\n");
1568 handle = NULL;
1569
1570 ok(test_Mapfile_createtemp(&handle), "Couldn't create test file.\n");
1571
1572 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0, 0, NULL );
1573 ok( hmap == NULL, "mapped zero size file\n");
1574 ok( GetLastError() == ERROR_FILE_INVALID, "not ERROR_FILE_INVALID\n");
1575
1576 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0x80000000, 0, NULL );
1577 ok( hmap == NULL || broken(hmap != NULL) /* NT4 */, "mapping should fail\n");
1578 /* GetLastError() varies between win9x and WinNT and also depends on the filesystem */
1579 if ( hmap )
1580 CloseHandle( hmap );
1581
1582 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0x80000000, 0x10000, NULL );
1583 ok( hmap == NULL || broken(hmap != NULL) /* NT4 */, "mapping should fail\n");
1584 /* GetLastError() varies between win9x and WinNT and also depends on the filesystem */
1585 if ( hmap )
1586 CloseHandle( hmap );
1587
1588 /* On XP you can now map again, on Win 95 you cannot. */
1589
1590 ok( CloseHandle( handle ), "can't close file handle\n");
1591 ok( DeleteFileA( filename ), "DeleteFile failed after map\n" );
1592 }
1593
1594 static void test_GetFileType(void)
1595 {
1596 DWORD type;
1597 HANDLE h = CreateFileA( filename, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0 );
1598 ok( h != INVALID_HANDLE_VALUE, "open %s failed\n", filename );
1599 type = GetFileType(h);
1600 ok( type == FILE_TYPE_DISK, "expected type disk got %d\n", type );
1601 CloseHandle( h );
1602 h = CreateFileA( "nul", GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
1603 ok( h != INVALID_HANDLE_VALUE, "open nul failed\n" );
1604 type = GetFileType(h);
1605 ok( type == FILE_TYPE_CHAR, "expected type char for nul got %d\n", type );
1606 CloseHandle( h );
1607 DeleteFileA( filename );
1608 }
1609
1610 static int completion_count;
1611
1612 static void CALLBACK FileIOComplete(DWORD dwError, DWORD dwBytes, LPOVERLAPPED ovl)
1613 {
1614 /* printf("(%ld, %ld, %p { %ld, %ld, %ld, %ld, %p })\n", dwError, dwBytes, ovl, ovl->Internal, ovl->InternalHigh, ovl->Offset, ovl->OffsetHigh, ovl->hEvent);*/
1615 ReleaseSemaphore(ovl->hEvent, 1, NULL);
1616 completion_count++;
1617 }
1618
1619 static void test_async_file_errors(void)
1620 {
1621 char szFile[MAX_PATH];
1622 HANDLE hSem = CreateSemaphoreW(NULL, 1, 1, NULL);
1623 HANDLE hFile;
1624 LPVOID lpBuffer = HeapAlloc(GetProcessHeap(), 0, 4096);
1625 OVERLAPPED ovl;
1626 S(U(ovl)).Offset = 0;
1627 S(U(ovl)).OffsetHigh = 0;
1628 ovl.hEvent = hSem;
1629 completion_count = 0;
1630 szFile[0] = '\0';
1631 GetWindowsDirectoryA(szFile, sizeof(szFile)/sizeof(szFile[0])-1-strlen("\\win.ini"));
1632 strcat(szFile, "\\win.ini");
1633 hFile = CreateFileA(szFile, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
1634 NULL, OPEN_ALWAYS, FILE_FLAG_OVERLAPPED, NULL);
1635 if (hFile == INVALID_HANDLE_VALUE) /* win9x doesn't like FILE_SHARE_DELETE */
1636 hFile = CreateFileA(szFile, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE,
1637 NULL, OPEN_ALWAYS, FILE_FLAG_OVERLAPPED, NULL);
1638 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA(%s ...) failed\n", szFile);
1639 while (TRUE)
1640 {
1641 BOOL res;
1642 DWORD count;
1643 while (WaitForSingleObjectEx(hSem, INFINITE, TRUE) == WAIT_IO_COMPLETION)
1644 ;
1645 res = ReadFileEx(hFile, lpBuffer, 4096, &ovl, FileIOComplete);
1646 /*printf("Offset = %ld, result = %s\n", ovl.Offset, res ? "TRUE" : "FALSE");*/
1647 if (!res)
1648 break;
1649 if (!GetOverlappedResult(hFile, &ovl, &count, FALSE))
1650 break;
1651 S(U(ovl)).Offset += count;
1652 /* i/o completion routine only called if ReadFileEx returned success.
1653 * we only care about violations of this rule so undo what should have
1654 * been done */
1655 completion_count--;
1656 }
1657 ok(completion_count == 0, "completion routine should only be called when ReadFileEx succeeds (this rule was violated %d times)\n", completion_count);
1658 /*printf("Error = %ld\n", GetLastError());*/
1659 HeapFree(GetProcessHeap(), 0, lpBuffer);
1660 }
1661
1662 static void test_read_write(void)
1663 {
1664 DWORD bytes, ret;
1665 HANDLE hFile;
1666 char temp_path[MAX_PATH];
1667 char filename[MAX_PATH];
1668 static const char prefix[] = "pfx";
1669
1670 ret = GetTempPathA(MAX_PATH, temp_path);
1671 ok(ret != 0, "GetTempPathA error %d\n", GetLastError());
1672 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
1673
1674 ret = GetTempFileNameA(temp_path, prefix, 0, filename);
1675 ok(ret != 0, "GetTempFileNameA error %d\n", GetLastError());
1676
1677 hFile = CreateFileA(filename, GENERIC_READ | GENERIC_WRITE, 0, NULL,
1678 CREATE_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
1679 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA: error %d\n", GetLastError());
1680
1681 SetLastError(12345678);
1682 bytes = 12345678;
1683 ret = WriteFile(hFile, NULL, 0, &bytes, NULL);
1684 ok(ret && GetLastError() == 12345678,
1685 "ret = %d, error %d\n", ret, GetLastError());
1686 ok(!bytes, "bytes = %d\n", bytes);
1687
1688 SetLastError(12345678);
1689 bytes = 12345678;
1690 ret = WriteFile(hFile, NULL, 10, &bytes, NULL);
1691 ok((!ret && GetLastError() == ERROR_INVALID_USER_BUFFER) || /* Win2k */
1692 (ret && GetLastError() == 12345678), /* Win9x */
1693 "ret = %d, error %d\n", ret, GetLastError());
1694 ok(!bytes || /* Win2k */
1695 bytes == 10, /* Win9x */
1696 "bytes = %d\n", bytes);
1697
1698 /* make sure the file contains data */
1699 WriteFile(hFile, "this is the test data", 21, &bytes, NULL);
1700 SetFilePointer(hFile, 0, NULL, FILE_BEGIN);
1701
1702 SetLastError(12345678);
1703 bytes = 12345678;
1704 ret = ReadFile(hFile, NULL, 0, &bytes, NULL);
1705 ok(ret && GetLastError() == 12345678,
1706 "ret = %d, error %d\n", ret, GetLastError());
1707 ok(!bytes, "bytes = %d\n", bytes);
1708
1709 SetLastError(12345678);
1710 bytes = 12345678;
1711 ret = ReadFile(hFile, NULL, 10, &bytes, NULL);
1712 ok(!ret && (GetLastError() == ERROR_NOACCESS || /* Win2k */
1713 GetLastError() == ERROR_INVALID_PARAMETER), /* Win9x */
1714 "ret = %d, error %d\n", ret, GetLastError());
1715 ok(!bytes, "bytes = %d\n", bytes);
1716
1717 ret = CloseHandle(hFile);
1718 ok( ret, "CloseHandle: error %d\n", GetLastError());
1719 ret = DeleteFileA(filename);
1720 ok( ret, "DeleteFileA: error %d\n", GetLastError());
1721 }
1722
1723 static void test_OpenFile(void)
1724 {
1725 HFILE hFile;
1726 OFSTRUCT ofs;
1727 BOOL ret;
1728 DWORD retval;
1729
1730 static const char file[] = "regedit.exe";
1731 static const char foo[] = ".\\foo-bar-foo.baz";
1732 static const char *foo_too_long = ".\\foo-bar-foo.baz+++++++++++++++"
1733 "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
1734 "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
1735 "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
1736 "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
1737 "+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++";
1738 char buff[MAX_PATH];
1739 char buff_long[4*MAX_PATH];
1740 char filled_0xA5[OFS_MAXPATHNAME];
1741 char *p;
1742 UINT length;
1743
1744 /* Check for existing file */
1745 length = GetWindowsDirectoryA(buff, MAX_PATH);
1746
1747 if (length + sizeof(file) < MAX_PATH)
1748 {
1749 p = buff + strlen(buff);
1750 if (p > buff && p[-1] != '\\') *p++ = '\\';
1751 strcpy( p, file );
1752 memset(&ofs, 0xA5, sizeof(ofs));
1753 SetLastError(0xfaceabee);
1754
1755 hFile = OpenFile(buff, &ofs, OF_EXIST);
1756 ok( hFile == TRUE, "%s not found : %d\n", buff, GetLastError() );
1757 ok( GetLastError() == 0xfaceabee || GetLastError() == ERROR_SUCCESS,
1758 "GetLastError() returns %d\n", GetLastError() );
1759 ok( ofs.cBytes == sizeof(ofs), "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1760 ok( ofs.nErrCode == ERROR_SUCCESS, "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1761 ok( lstrcmpiA(ofs.szPathName, buff) == 0,
1762 "OpenFile returned '%s', but was expected to return '%s' or string filled with 0xA5\n",
1763 ofs.szPathName, buff );
1764 }
1765
1766 memset(&filled_0xA5, 0xA5, OFS_MAXPATHNAME);
1767 length = GetCurrentDirectoryA(MAX_PATH, buff);
1768
1769 /* Check for nonexistent file */
1770 if (length + sizeof(foo) < MAX_PATH)
1771 {
1772 p = buff + strlen(buff);
1773 if (p > buff && p[-1] != '\\') *p++ = '\\';
1774 strcpy( p, foo + 2 );
1775 memset(&ofs, 0xA5, sizeof(ofs));
1776 SetLastError(0xfaceabee);
1777
1778 hFile = OpenFile(foo, &ofs, OF_EXIST);
1779 ok( hFile == HFILE_ERROR, "hFile != HFILE_ERROR : %d\n", GetLastError());
1780 ok( GetLastError() == ERROR_FILE_NOT_FOUND, "GetLastError() returns %d\n", GetLastError() );
1781 todo_wine
1782 ok( ofs.cBytes == 0xA5, "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1783 ok( ofs.nErrCode == ERROR_FILE_NOT_FOUND, "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1784 ok( lstrcmpiA(ofs.szPathName, buff) == 0 || strncmp(ofs.szPathName, filled_0xA5, OFS_MAXPATHNAME) == 0,
1785 "OpenFile returned '%s', but was expected to return '%s' or string filled with 0xA5\n",
1786 ofs.szPathName, buff );
1787 }
1788
1789 length = GetCurrentDirectoryA(MAX_PATH, buff_long);
1790 length += lstrlenA(foo_too_long + 1);
1791
1792 /* Check for nonexistent file with too long filename */
1793 if (length >= OFS_MAXPATHNAME && length < sizeof(buff_long))
1794 {
1795 lstrcatA(buff_long, foo_too_long + 1); /* Avoid '.' during concatenation */
1796 memset(&ofs, 0xA5, sizeof(ofs));
1797 SetLastError(0xfaceabee);
1798
1799 hFile = OpenFile(foo_too_long, &ofs, OF_EXIST);
1800 ok( hFile == HFILE_ERROR, "hFile != HFILE_ERROR : %d\n", GetLastError());
1801 ok( GetLastError() == ERROR_INVALID_DATA || GetLastError() == ERROR_FILENAME_EXCED_RANGE,
1802 "GetLastError() returns %d\n", GetLastError() );
1803 todo_wine
1804 ok( ofs.cBytes == 0xA5, "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1805 ok( ofs.nErrCode == ERROR_INVALID_DATA || ofs.nErrCode == ERROR_FILENAME_EXCED_RANGE,
1806 "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1807 ok( strncmp(ofs.szPathName, filled_0xA5, OFS_MAXPATHNAME) == 0,
1808 "OpenFile returned '%s', but was expected to return string filled with 0xA5\n",
1809 ofs.szPathName );
1810 }
1811
1812 length = GetCurrentDirectoryA(MAX_PATH, buff) + sizeof(filename);
1813
1814 if (length >= MAX_PATH)
1815 {
1816 trace("Buffer too small, requested length = %d, but MAX_PATH = %d. Skipping test.\n", length, MAX_PATH);
1817 return;
1818 }
1819 p = buff + strlen(buff);
1820 if (p > buff && p[-1] != '\\') *p++ = '\\';
1821 strcpy( p, filename );
1822
1823 memset(&ofs, 0xA5, sizeof(ofs));
1824 SetLastError(0xfaceabee);
1825 /* Create an empty file */
1826 hFile = OpenFile(filename, &ofs, OF_CREATE);
1827 ok( hFile != HFILE_ERROR, "OpenFile failed to create nonexistent file\n" );
1828 ok( GetLastError() == 0xfaceabee || GetLastError() == ERROR_SUCCESS,
1829 "GetLastError() returns %d\n", GetLastError() );
1830 ok( ofs.cBytes == sizeof(OFSTRUCT), "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1831 ok( ofs.nErrCode == ERROR_SUCCESS || broken(ofs.nErrCode != ERROR_SUCCESS) /* win9x */,
1832 "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1833 ret = CloseHandle((HANDLE)hFile);
1834 ok( ret == TRUE, "CloseHandle() returns %d\n", ret );
1835 retval = GetFileAttributesA(filename);
1836 ok( retval != INVALID_FILE_ATTRIBUTES, "GetFileAttributesA: error %d\n", GetLastError() );
1837
1838 memset(&ofs, 0xA5, sizeof(ofs));
1839 SetLastError(0xfaceabee);
1840 /* Check various opening options: */
1841 /* for reading only, */
1842 hFile = OpenFile(filename, &ofs, OF_READ);
1843 ok( hFile != HFILE_ERROR, "OpenFile failed on read\n" );
1844 ok( GetLastError() == 0xfaceabee || GetLastError() == ERROR_SUCCESS,
1845 "GetLastError() returns %d\n", GetLastError() );
1846 ok( ofs.cBytes == sizeof(OFSTRUCT), "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1847 ok( ofs.nErrCode == ERROR_SUCCESS || broken(ofs.nErrCode != ERROR_SUCCESS) /* win9x */,
1848 "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1849 ok( lstrcmpiA(ofs.szPathName, buff) == 0,
1850 "OpenFile returned '%s', but was expected to return '%s'\n", ofs.szPathName, buff );
1851 ret = CloseHandle((HANDLE)hFile);
1852 ok( ret == TRUE, "CloseHandle() returns %d\n", ret );
1853
1854 memset(&ofs, 0xA5, sizeof(ofs));
1855 SetLastError(0xfaceabee);
1856 /* for writing only, */
1857 hFile = OpenFile(filename, &ofs, OF_WRITE);
1858 ok( hFile != HFILE_ERROR, "OpenFile failed on write\n" );
1859 ok( GetLastError() == 0xfaceabee || GetLastError() == ERROR_SUCCESS,
1860 "GetLastError() returns %d\n", GetLastError() );
1861 ok( ofs.cBytes == sizeof(OFSTRUCT), "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1862 ok( ofs.nErrCode == ERROR_SUCCESS || broken(ofs.nErrCode != ERROR_SUCCESS) /* win9x */,
1863 "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1864 ok( lstrcmpiA(ofs.szPathName, buff) == 0,
1865 "OpenFile returned '%s', but was expected to return '%s'\n", ofs.szPathName, buff );
1866 ret = CloseHandle((HANDLE)hFile);
1867 ok( ret == TRUE, "CloseHandle() returns %d\n", ret );
1868
1869 memset(&ofs, 0xA5, sizeof(ofs));
1870 SetLastError(0xfaceabee);
1871 /* for reading and writing, */
1872 hFile = OpenFile(filename, &ofs, OF_READWRITE);
1873 ok( hFile != HFILE_ERROR, "OpenFile failed on read/write\n" );
1874 ok( GetLastError() == 0xfaceabee || GetLastError() == ERROR_SUCCESS,
1875 "GetLastError() returns %d\n", GetLastError() );
1876 ok( ofs.cBytes == sizeof(OFSTRUCT), "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1877 ok( ofs.nErrCode == ERROR_SUCCESS || broken(ofs.nErrCode != ERROR_SUCCESS) /* win9x */,
1878 "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1879 ok( lstrcmpiA(ofs.szPathName, buff) == 0,
1880 "OpenFile returned '%s', but was expected to return '%s'\n", ofs.szPathName, buff );
1881 ret = CloseHandle((HANDLE)hFile);
1882 ok( ret == TRUE, "CloseHandle() returns %d\n", ret );
1883
1884 memset(&ofs, 0xA5, sizeof(ofs));
1885 SetLastError(0xfaceabee);
1886 /* for checking file presence. */
1887 hFile = OpenFile(filename, &ofs, OF_EXIST);
1888 ok( hFile == 1, "OpenFile failed on finding our created file\n" );
1889 ok( GetLastError() == 0xfaceabee || GetLastError() == ERROR_SUCCESS,
1890 "GetLastError() returns %d\n", GetLastError() );
1891 ok( ofs.cBytes == sizeof(OFSTRUCT), "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1892 ok( ofs.nErrCode == ERROR_SUCCESS || broken(ofs.nErrCode != ERROR_SUCCESS) /* win9x */,
1893 "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1894 ok( lstrcmpiA(ofs.szPathName, buff) == 0,
1895 "OpenFile returned '%s', but was expected to return '%s'\n", ofs.szPathName, buff );
1896
1897 memset(&ofs, 0xA5, sizeof(ofs));
1898 SetLastError(0xfaceabee);
1899 /* Delete the file and make sure it doesn't exist anymore */
1900 hFile = OpenFile(filename, &ofs, OF_DELETE);
1901 ok( hFile == 1, "OpenFile failed on delete (%d)\n", hFile );
1902 ok( GetLastError() == 0xfaceabee || GetLastError() == ERROR_SUCCESS,
1903 "GetLastError() returns %d\n", GetLastError() );
1904 ok( ofs.cBytes == sizeof(OFSTRUCT), "OpenFile set ofs.cBytes to %d\n", ofs.cBytes );
1905 ok( ofs.nErrCode == ERROR_SUCCESS || broken(ofs.nErrCode != ERROR_SUCCESS) /* win9x */,
1906 "OpenFile set ofs.nErrCode to %d\n", ofs.nErrCode );
1907 ok( lstrcmpiA(ofs.szPathName, buff) == 0,
1908 "OpenFile returned '%s', but was expected to return '%s'\n", ofs.szPathName, buff );
1909
1910 retval = GetFileAttributesA(filename);
1911 ok( retval == INVALID_FILE_ATTRIBUTES, "GetFileAttributesA succeeded on deleted file\n" );
1912 }
1913
1914 static void test_overlapped(void)
1915 {
1916 OVERLAPPED ov;
1917 DWORD r, result;
1918
1919 /* GetOverlappedResult crashes if the 2nd or 3rd param are NULL */
1920
1921 memset( &ov, 0, sizeof ov );
1922 result = 1;
1923 r = GetOverlappedResult(0, &ov, &result, 0);
1924 if (r)
1925 ok( result == 0, "wrong result %u\n", result );
1926 else /* win9x */
1927 ok( GetLastError() == ERROR_INVALID_HANDLE, "wrong error %u\n", GetLastError() );
1928
1929 result = 0;
1930 ov.Internal = 0;
1931 ov.InternalHigh = 0xabcd;
1932 r = GetOverlappedResult(0, &ov, &result, 0);
1933 if (r)
1934 ok( result == 0xabcd, "wrong result %u\n", result );
1935 else /* win9x */
1936 ok( GetLastError() == ERROR_INVALID_HANDLE, "wrong error %u\n", GetLastError() );
1937
1938 SetLastError( 0xb00 );
1939 result = 0;
1940 ov.Internal = STATUS_INVALID_HANDLE;
1941 ov.InternalHigh = 0xabcd;
1942 r = GetOverlappedResult(0, &ov, &result, 0);
1943 ok( GetLastError() == ERROR_INVALID_HANDLE, "wrong error %u\n", GetLastError() );
1944 ok( r == FALSE, "should return false\n");
1945 ok( result == 0xabcd || result == 0 /* win9x */, "wrong result %u\n", result );
1946
1947 SetLastError( 0xb00 );
1948 result = 0;
1949 ov.Internal = STATUS_PENDING;
1950 ov.InternalHigh = 0xabcd;
1951 r = GetOverlappedResult(0, &ov, &result, 0);
1952 ok( GetLastError() == ERROR_IO_INCOMPLETE || GetLastError() == ERROR_INVALID_HANDLE /* win9x */,
1953 "wrong error %u\n", GetLastError() );
1954 ok( r == FALSE, "should return false\n");
1955 ok( result == 0, "wrong result %u\n", result );
1956
1957 SetLastError( 0xb00 );
1958 ov.hEvent = CreateEvent( NULL, 1, 1, NULL );
1959 ov.Internal = STATUS_PENDING;
1960 ov.InternalHigh = 0xabcd;
1961 r = GetOverlappedResult(0, &ov, &result, 0);
1962 ok( GetLastError() == ERROR_IO_INCOMPLETE || GetLastError() == ERROR_INVALID_HANDLE /* win9x */,
1963 "wrong error %u\n", GetLastError() );
1964 ok( r == FALSE, "should return false\n");
1965
1966 ResetEvent( ov.hEvent );
1967
1968 SetLastError( 0xb00 );
1969 ov.Internal = STATUS_PENDING;
1970 ov.InternalHigh = 0;
1971 r = GetOverlappedResult(0, &ov, &result, 0);
1972 ok( GetLastError() == ERROR_IO_INCOMPLETE || GetLastError() == ERROR_INVALID_HANDLE /* win9x */,
1973 "wrong error %u\n", GetLastError() );
1974 ok( r == FALSE, "should return false\n");
1975
1976 r = CloseHandle( ov.hEvent );
1977 ok( r == TRUE, "close handle failed\n");
1978 }
1979
1980 static void test_RemoveDirectory(void)
1981 {
1982 int rc;
1983 char directory[] = "removeme";
1984
1985 rc = CreateDirectory(directory, NULL);
1986 ok( rc, "Createdirectory failed, gle=%d\n", GetLastError() );
1987
1988 rc = SetCurrentDirectory(directory);
1989 ok( rc, "SetCurrentDirectory failed, gle=%d\n", GetLastError() );
1990
1991 rc = RemoveDirectory(".");
1992 if (!rc)
1993 {
1994 rc = SetCurrentDirectory("..");
1995 ok( rc, "SetCurrentDirectory failed, gle=%d\n", GetLastError() );
1996
1997 rc = RemoveDirectory(directory);
1998 ok( rc, "RemoveDirectory failed, gle=%d\n", GetLastError() );
1999 }
2000 }
2001
2002 static BOOL check_file_time( const FILETIME *ft1, const FILETIME *ft2, UINT tolerance )
2003 {
2004 ULONGLONG t1 = ((ULONGLONG)ft1->dwHighDateTime << 32) | ft1->dwLowDateTime;
2005 ULONGLONG t2 = ((ULONGLONG)ft2->dwHighDateTime << 32) | ft2->dwLowDateTime;
2006 return abs(t1 - t2) <= tolerance;
2007 }
2008
2009 static void test_ReplaceFileA(void)
2010 {
2011 char replaced[MAX_PATH], replacement[MAX_PATH], backup[MAX_PATH];
2012 HANDLE hReplacedFile, hReplacementFile, hBackupFile;
2013 static const char replacedData[] = "file-to-replace";
2014 static const char replacementData[] = "new-file";
2015 static const char backupData[] = "backup-file";
2016 FILETIME ftReplaced, ftReplacement, ftBackup;
2017 static const char prefix[] = "pfx";
2018 char temp_path[MAX_PATH];
2019 DWORD ret;
2020 BOOL retok;
2021
2022 if (!pReplaceFileA)
2023 {
2024 skip("ReplaceFileA() is missing\n");
2025 return;
2026 }
2027
2028 ret = GetTempPathA(MAX_PATH, temp_path);
2029 ok(ret != 0, "GetTempPathA error %d\n", GetLastError());
2030 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
2031
2032 ret = GetTempFileNameA(temp_path, prefix, 0, replaced);
2033 ok(ret != 0, "GetTempFileNameA error (replaced) %d\n", GetLastError());
2034
2035 ret = GetTempFileNameA(temp_path, prefix, 0, replacement);
2036 ok(ret != 0, "GetTempFileNameA error (replacement) %d\n", GetLastError());
2037
2038 ret = GetTempFileNameA(temp_path, prefix, 0, backup);
2039 ok(ret != 0, "GetTempFileNameA error (backup) %d\n", GetLastError());
2040
2041 /* place predictable data in the file to be replaced */
2042 hReplacedFile = CreateFileA(replaced, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
2043 ok(hReplacedFile != INVALID_HANDLE_VALUE,
2044 "failed to open replaced file\n");
2045 retok = WriteFile(hReplacedFile, replacedData, sizeof(replacedData), &ret, NULL );
2046 ok( retok && ret == sizeof(replacedData),
2047 "WriteFile error (replaced) %d\n", GetLastError());
2048 ok(GetFileSize(hReplacedFile, NULL) == sizeof(replacedData),
2049 "replaced file has wrong size\n");
2050 /* place predictable data in the file to be the replacement */
2051 hReplacementFile = CreateFileA(replacement, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
2052 ok(hReplacementFile != INVALID_HANDLE_VALUE,
2053 "failed to open replacement file\n");
2054 retok = WriteFile(hReplacementFile, replacementData, sizeof(replacementData), &ret, NULL );
2055 ok( retok && ret == sizeof(replacementData),
2056 "WriteFile error (replacement) %d\n", GetLastError());
2057 ok(GetFileSize(hReplacementFile, NULL) == sizeof(replacementData),
2058 "replacement file has wrong size\n");
2059 /* place predictable data in the backup file (to be over-written) */
2060 hBackupFile = CreateFileA(backup, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
2061 ok(hBackupFile != INVALID_HANDLE_VALUE,
2062 "failed to open backup file\n");
2063 retok = WriteFile(hBackupFile, backupData, sizeof(backupData), &ret, NULL );
2064 ok( retok && ret == sizeof(backupData),
2065 "WriteFile error (replacement) %d\n", GetLastError());
2066 ok(GetFileSize(hBackupFile, NULL) == sizeof(backupData),
2067 "backup file has wrong size\n");
2068 /* change the filetime on the "replaced" file to ensure that it changes */
2069 ret = GetFileTime(hReplacedFile, NULL, NULL, &ftReplaced);
2070 ok( ret, "GetFileTime error (replaced) %d\n", GetLastError());
2071 ftReplaced.dwLowDateTime -= 600000000; /* 60 second */
2072 ret = SetFileTime(hReplacedFile, NULL, NULL, &ftReplaced);
2073 ok( ret, "SetFileTime error (replaced) %d\n", GetLastError());
2074 GetFileTime(hReplacedFile, NULL, NULL, &ftReplaced); /* get the actual time back */
2075 CloseHandle(hReplacedFile);
2076 /* change the filetime on the backup to ensure that it changes */
2077 ret = GetFileTime(hBackupFile, NULL, NULL, &ftBackup);
2078 ok( ret, "GetFileTime error (backup) %d\n", GetLastError());
2079 ftBackup.dwLowDateTime -= 1200000000; /* 120 second */
2080 ret = SetFileTime(hBackupFile, NULL, NULL, &ftBackup);
2081 ok( ret, "SetFileTime error (backup) %d\n", GetLastError());
2082 GetFileTime(hBackupFile, NULL, NULL, &ftBackup); /* get the actual time back */
2083 CloseHandle(hBackupFile);
2084 /* get the filetime on the replacement file to perform checks */
2085 ret = GetFileTime(hReplacementFile, NULL, NULL, &ftReplacement);
2086 ok( ret, "GetFileTime error (replacement) %d\n", GetLastError());
2087 CloseHandle(hReplacementFile);
2088
2089 /* perform replacement w/ backup
2090 * TODO: flags are not implemented
2091 */
2092 SetLastError(0xdeadbeef);
2093 ret = pReplaceFileA(replaced, replacement, backup, 0, 0, 0);
2094 ok(ret, "ReplaceFileA: unexpected error %d\n", GetLastError());
2095 /* make sure that the backup has the size of the old "replaced" file */
2096 hBackupFile = CreateFileA(backup, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
2097 ok(hBackupFile != INVALID_HANDLE_VALUE,
2098 "failed to open backup file\n");
2099 ret = GetFileSize(hBackupFile, NULL);
2100 ok(ret == sizeof(replacedData),
2101 "backup file has wrong size %d\n", ret);
2102 /* make sure that the "replaced" file has the size of the replacement file */
2103 hReplacedFile = CreateFileA(replaced, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
2104 ok(hReplacedFile != INVALID_HANDLE_VALUE,
2105 "failed to open replaced file\n");
2106 ret = GetFileSize(hReplacedFile, NULL);
2107 ok(ret == sizeof(replacementData),
2108 "replaced file has wrong size %d\n", ret);
2109 /* make sure that the replacement file no-longer exists */
2110 hReplacementFile = CreateFileA(replacement, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
2111 ok(hReplacementFile == INVALID_HANDLE_VALUE,
2112 "unexpected error, replacement file should not exist %d\n", GetLastError());
2113 /* make sure that the backup has the old "replaced" filetime */
2114 ret = GetFileTime(hBackupFile, NULL, NULL, &ftBackup);
2115 ok( ret, "GetFileTime error (backup %d\n", GetLastError());
2116 ok(check_file_time(&ftBackup, &ftReplaced, 20000000), "backup file has wrong filetime\n");
2117 CloseHandle(hBackupFile);
2118 /* make sure that the "replaced" has the old replacement filetime */
2119 ret = GetFileTime(hReplacedFile, NULL, NULL, &ftReplaced);
2120 ok( ret, "GetFileTime error (backup %d\n", GetLastError());
2121 ok(check_file_time(&ftReplaced, &ftReplacement, 20000000),
2122 "replaced file has wrong filetime %x%08x / %x%08x\n",
2123 ftReplaced.dwHighDateTime, ftReplaced.dwLowDateTime,
2124 ftReplacement.dwHighDateTime, ftReplacement.dwLowDateTime );
2125 CloseHandle(hReplacedFile);
2126
2127 /* re-create replacement file for pass w/o backup (blank) */
2128 ret = GetTempFileNameA(temp_path, prefix, 0, replacement);
2129 ok(ret != 0, "GetTempFileNameA error (replacement) %d\n", GetLastError());
2130 /* perform replacement w/o backup
2131 * TODO: flags are not implemented
2132 */
2133 SetLastError(0xdeadbeef);
2134 ret = pReplaceFileA(replaced, replacement, NULL, 0, 0, 0);
2135 ok(ret, "ReplaceFileA: unexpected error %d\n", GetLastError());
2136
2137 /* re-create replacement file for pass w/ backup (backup-file not existing) */
2138 ret = GetTempFileNameA(temp_path, prefix, 0, replacement);
2139 ok(ret != 0, "GetTempFileNameA error (replacement) %d\n", GetLastError());
2140 ret = DeleteFileA(backup);
2141 ok(ret, "DeleteFileA: error (backup) %d\n", GetLastError());
2142 /* perform replacement w/ backup (no pre-existing backup)
2143 * TODO: flags are not implemented
2144 */
2145 SetLastError(0xdeadbeef);
2146 ret = pReplaceFileA(replaced, replacement, backup, 0, 0, 0);
2147 ok(ret, "ReplaceFileA: unexpected error %d\n", GetLastError());
2148
2149 /* re-create replacement file for pass w/ no permissions to "replaced" */
2150 ret = GetTempFileNameA(temp_path, prefix, 0, replacement);
2151 ok(ret != 0, "GetTempFileNameA error (replacement) %d\n", GetLastError());
2152 ret = SetFileAttributesA(replaced, FILE_ATTRIBUTE_READONLY);
2153 ok(ret, "SetFileAttributesA: error setting to read only %d\n", GetLastError());
2154 /* perform replacement w/ backup (no permission to "replaced")
2155 * TODO: flags are not implemented
2156 */
2157 SetLastError(0xdeadbeef);
2158 ret = pReplaceFileA(replaced, replacement, backup, 0, 0, 0);
2159 ok(ret != ERROR_UNABLE_TO_REMOVE_REPLACED, "ReplaceFileA: unexpected error %d\n", GetLastError());
2160 /* make sure that the replacement file still exists */
2161 hReplacementFile = CreateFileA(replacement, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
2162 ok(hReplacementFile != INVALID_HANDLE_VALUE ||
2163 broken(GetLastError() == ERROR_FILE_NOT_FOUND), /* win2k */
2164 "unexpected error, replacement file should still exist %d\n", GetLastError());
2165 CloseHandle(hReplacementFile);
2166 ret = SetFileAttributesA(replaced, FILE_ATTRIBUTE_NORMAL);
2167 ok(ret, "SetFileAttributesA: error setting to normal %d\n", GetLastError());
2168
2169 /* replacement file still exists, make pass w/o "replaced" */
2170 ret = DeleteFileA(replaced);
2171 ok(ret, "DeleteFileA: error (replaced) %d\n", GetLastError());
2172 /* perform replacement w/ backup (no pre-existing backup or "replaced")
2173 * TODO: flags are not implemented
2174 */
2175 SetLastError(0xdeadbeef);
2176 ret = pReplaceFileA(replaced, replacement, backup, 0, 0, 0);
2177 ok(!ret && GetLastError() == ERROR_FILE_NOT_FOUND,
2178 "ReplaceFileA: unexpected error %d\n", GetLastError());
2179
2180 /* perform replacement w/o existing "replacement" file
2181 * TODO: flags are not implemented
2182 */
2183 SetLastError(0xdeadbeef);
2184 ret = pReplaceFileA(replaced, replacement, NULL, 0, 0, 0);
2185 ok(!ret && GetLastError() == ERROR_FILE_NOT_FOUND,
2186 "ReplaceFileA: unexpected error %d\n", GetLastError());
2187
2188 /*
2189 * if the first round (w/ backup) worked then as long as there is no
2190 * failure then there is no need to check this round (w/ backup is the
2191 * more complete case)
2192 */
2193
2194 /* delete temporary files, replacement and replaced are already deleted */
2195 ret = DeleteFileA(backup);
2196 ok(ret ||
2197 broken(GetLastError() == ERROR_ACCESS_DENIED), /* win2k */
2198 "DeleteFileA: error (backup) %d\n", GetLastError());
2199 }
2200
2201 /*
2202 * ReplaceFileW is a simpler case of ReplaceFileA, there is no
2203 * need to be as thorough.
2204 */
2205 static void test_ReplaceFileW(void)
2206 {
2207 WCHAR replaced[MAX_PATH], replacement[MAX_PATH], backup[MAX_PATH];
2208 static const WCHAR prefix[] = {'p','f','x',0};
2209 WCHAR temp_path[MAX_PATH];
2210 DWORD ret;
2211
2212 if (!pReplaceFileW)
2213 {
2214 skip("ReplaceFileW() is missing\n");
2215 return;
2216 }
2217
2218 ret = GetTempPathW(MAX_PATH, temp_path);
2219 if (ret==0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
2220 return;
2221 ok(ret != 0, "GetTempPathW error %d\n", GetLastError());
2222 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
2223
2224 ret = GetTempFileNameW(temp_path, prefix, 0, replaced);
2225 ok(ret != 0, "GetTempFileNameW error (replaced) %d\n", GetLastError());
2226
2227 ret = GetTempFileNameW(temp_path, prefix, 0, replacement);
2228 ok(ret != 0, "GetTempFileNameW error (replacement) %d\n", GetLastError());
2229
2230 ret = GetTempFileNameW(temp_path, prefix, 0, backup);
2231 ok(ret != 0, "GetTempFileNameW error (backup) %d\n", GetLastError());
2232
2233 ret = pReplaceFileW(replaced, replacement, backup, 0, 0, 0);
2234 ok(ret, "ReplaceFileW: error %d\n", GetLastError());
2235
2236 ret = GetTempFileNameW(temp_path, prefix, 0, replacement);
2237 ok(ret != 0, "GetTempFileNameW error (replacement) %d\n", GetLastError());
2238 ret = pReplaceFileW(replaced, replacement, NULL, 0, 0, 0);
2239 ok(ret, "ReplaceFileW: error %d\n", GetLastError());
2240
2241 ret = GetTempFileNameW(temp_path, prefix, 0, replacement);
2242 ok(ret != 0, "GetTempFileNameW error (replacement) %d\n", GetLastError());
2243 ret = DeleteFileW(backup);
2244 ok(ret, "DeleteFileW: error (backup) %d\n", GetLastError());
2245 ret = pReplaceFileW(replaced, replacement, backup, 0, 0, 0);
2246 ok(ret, "ReplaceFileW: error %d\n", GetLastError());
2247
2248 ret = GetTempFileNameW(temp_path, prefix, 0, replacement);
2249 ok(ret != 0, "GetTempFileNameW error (replacement) %d\n", GetLastError());
2250 ret = SetFileAttributesW(replaced, FILE_ATTRIBUTE_READONLY);
2251 ok(ret, "SetFileAttributesW: error setting to read only %d\n", GetLastError());
2252
2253 ret = pReplaceFileW(replaced, replacement, backup, 0, 0, 0);
2254 ok(ret != ERROR_UNABLE_TO_REMOVE_REPLACED,
2255 "ReplaceFileW: unexpected error %d\n", GetLastError());
2256 ret = SetFileAttributesW(replaced, FILE_ATTRIBUTE_NORMAL);
2257 ok(ret, "SetFileAttributesW: error setting to normal %d\n", GetLastError());
2258
2259 ret = DeleteFileW(replaced);
2260 ok(ret, "DeleteFileW: error (replaced) %d\n", GetLastError());
2261 ret = pReplaceFileW(replaced, replacement, backup, 0, 0, 0);
2262 ok(!ret, "ReplaceFileW: error %d\n", GetLastError());
2263
2264 ret = pReplaceFileW(replaced, replacement, NULL, 0, 0, 0);
2265 ok(!ret && GetLastError() == ERROR_FILE_NOT_FOUND,
2266 "ReplaceFileW: unexpected error %d\n", GetLastError());
2267
2268 ret = DeleteFileW(backup);
2269 ok(ret ||
2270 broken(GetLastError() == ERROR_ACCESS_DENIED), /* win2k */
2271 "DeleteFileW: error (backup) %d\n", GetLastError());
2272 }
2273
2274 START_TEST(file)
2275 {
2276 InitFunctionPointers();
2277
2278 test__hread( );
2279 test__hwrite( );
2280 test__lclose( );
2281 test__lcreat( );
2282 test__llseek( );
2283 test__llopen( );
2284 test__lread( );
2285 test__lwrite( );
2286 test_GetTempFileNameA();
2287 test_CopyFileA();
2288 test_CopyFileW();
2289 test_CreateFileA();
2290 test_CreateFileW();
2291 test_DeleteFileA();
2292 test_DeleteFileW();
2293 test_MoveFileA();
2294 test_MoveFileW();
2295 test_FindFirstFileA();
2296 test_FindNextFileA();
2297 test_FindFirstFileExA();
2298 test_LockFile();
2299 test_file_sharing();
2300 test_offset_in_overlapped_structure();
2301 test_MapFile();
2302 test_GetFileType();
2303 test_async_file_errors();
2304 test_read_write();
2305 test_OpenFile();
2306 test_overlapped();
2307 test_RemoveDirectory();
2308 test_ReplaceFileA();
2309 test_ReplaceFileW();
2310 }
2311
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.