2 * Unit tests for file functions in Wine
4 * Copyright (c) 2002, 2004 Jakob Eriksson
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "wine/test.h"
31 static int dll_capable(const char *dll, const char *function)
33 HMODULE module = GetModuleHandleA(dll);
34 if (!module) return 0;
36 return (GetProcAddress(module, function) != NULL);
40 LPCSTR filename = "testfile.xxx";
42 "en larvig liten text dx \033 gx hej 84 hej 4484 ! \001\033 bla bl\na.. bla bla."
43 "1234 43 4kljf lf &%%%&&&&&& 34 4 34 3############# 33 3 3 3 # 3## 3"
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 "sdlkfjasdlkfj a dslkj adsklf \n \nasdklf askldfa sdlkf \nsadklf asdklf asdf ";
54 static void test__hread( void )
63 SetFileAttributesA(filename,FILE_ATTRIBUTE_NORMAL); /* be sure to remove stale files */
64 DeleteFileA( filename );
65 filehandle = _lcreat( filename, 0 );
66 if (filehandle == HFILE_ERROR)
68 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
72 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
74 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
76 filehandle = _lopen( filename, OF_READ );
78 ok( HFILE_ERROR != filehandle, "couldn't open file \"%s\" again (err=%ld)\n", filename, GetLastError( ) );
80 bytes_read = _hread( filehandle, buffer, 2 * strlen( sillytext ) );
82 ok( lstrlenA( sillytext ) == bytes_read, "file read size error\n" );
84 for (bytes_wanted = 0; bytes_wanted < lstrlenA( sillytext ); bytes_wanted++)
86 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
87 ok( _hread( filehandle, buffer, bytes_wanted ) == bytes_wanted, "erratic _hread return value\n" );
88 for (i = 0; i < bytes_wanted; i++)
90 ok( buffer[i] == sillytext[i], "that's not what's written\n" );
94 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
96 ret = DeleteFileA( filename );
97 ok( ret != 0, "DeleteFile failed (%ld)\n", GetLastError( ) );
101 static void test__hwrite( void )
110 HLOCAL memory_object;
114 filehandle = _lcreat( filename, 0 );
115 if (filehandle == HFILE_ERROR)
117 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
121 ok( HFILE_ERROR != _hwrite( filehandle, "", 0 ), "_hwrite complains\n" );
123 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
125 filehandle = _lopen( filename, OF_READ );
127 bytes_read = _hread( filehandle, buffer, 1);
129 ok( 0 == bytes_read, "file read size error\n" );
131 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
133 filehandle = _lopen( filename, OF_READWRITE );
137 srand( (unsigned)time( NULL ) );
138 for (blocks = 0; blocks < 100; blocks++)
140 for (i = 0; i < (long)sizeof( buffer ); i++)
143 checksum[0] = checksum[0] + buffer[i];
145 ok( HFILE_ERROR != _hwrite( filehandle, buffer, sizeof( buffer ) ), "_hwrite complains\n" );
146 bytes_written = bytes_written + sizeof( buffer );
149 ok( HFILE_ERROR != _hwrite( filehandle, checksum, 1 ), "_hwrite complains\n" );
152 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
154 memory_object = LocalAlloc( LPTR, bytes_written );
156 ok( 0 != memory_object, "LocalAlloc fails. (Could be out of memory.)\n" );
158 contents = LocalLock( memory_object );
160 filehandle = _lopen( filename, OF_READ );
162 contents = LocalLock( memory_object );
164 ok( NULL != contents, "LocalLock whines\n" );
166 ok( bytes_written == _hread( filehandle, contents, bytes_written), "read length differ from write length\n" );
172 checksum[0] = checksum[0] + contents[i];
175 while (i < bytes_written - 1);
177 ok( checksum[0] == contents[i], "stored checksum differ from computed checksum\n" );
179 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
181 ret = DeleteFileA( filename );
182 ok( ret != 0, "DeleteFile failed (%ld)\n", GetLastError( ) );
186 static void test__lclose( void )
191 filehandle = _lcreat( filename, 0 );
192 if (filehandle == HFILE_ERROR)
194 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
198 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
200 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
202 ret = DeleteFileA( filename );
203 ok( ret != 0, "DeleteFile failed (%ld)\n", GetLastError( ) );
207 static void test__lcreat( void )
211 WIN32_FIND_DATAA search_results;
212 char slashname[] = "testfi/";
217 filehandle = _lcreat( filename, 0 );
218 if (filehandle == HFILE_ERROR)
220 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
224 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
226 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
228 ok( _hread( filehandle, buffer, strlen( sillytext ) ) == lstrlenA( sillytext ), "erratic _hread return value\n" );
230 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
232 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should be able to find file\n" );
234 ret = DeleteFileA(filename);
235 ok( ret != 0, "DeleteFile failed (%ld)\n", GetLastError());
237 filehandle = _lcreat( filename, 1 ); /* readonly */
238 ok( HFILE_ERROR != filehandle, "couldn't create file \"%s\" (err=%ld)\n", filename, GetLastError( ) );
240 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite shouldn't be able to write never the less\n" );
242 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
244 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should be able to find file\n" );
246 ok( 0 == DeleteFileA( filename ), "shouldn't be able to delete a readonly file\n" );
248 ok( SetFileAttributesA(filename, FILE_ATTRIBUTE_NORMAL ) != 0, "couldn't change attributes on file\n" );
250 ok( DeleteFileA( filename ) != 0, "now it should be possible to delete the file!\n" );
252 filehandle = _lcreat( filename, 2 );
253 ok( HFILE_ERROR != filehandle, "couldn't create file \"%s\" (err=%ld)\n", filename, GetLastError( ) );
255 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
257 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
259 ok( _hread( filehandle, buffer, strlen( sillytext ) ) == lstrlenA( sillytext ), "erratic _hread return value\n" );
261 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
263 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should STILL be able to find file\n" );
265 ret = DeleteFileA( filename );
266 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
268 filehandle = _lcreat( filename, 4 ); /* SYSTEM file */
269 ok( HFILE_ERROR != filehandle, "couldn't create file \"%s\" (err=%ld)\n", filename, GetLastError( ) );
271 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
273 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
275 ok( _hread( filehandle, buffer, strlen( sillytext ) ) == lstrlenA( sillytext ), "erratic _hread return value\n" );
277 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
279 ok( INVALID_HANDLE_VALUE != FindFirstFileA( filename, &search_results ), "should STILL be able to find file\n" );
281 ret = DeleteFileA( filename );
282 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
284 filehandle=_lcreat (slashname, 0); /* illegal name */
285 if (HFILE_ERROR==filehandle) {
287 ok (err==ERROR_INVALID_NAME || err==ERROR_PATH_NOT_FOUND,
288 "creating file \"%s\" failed with error %d\n", slashname, err);
289 } else { /* only NT succeeds */
291 find=FindFirstFileA (slashname, &search_results);
292 if (INVALID_HANDLE_VALUE!=find)
294 ret = FindClose (find);
295 ok (0 != ret, "FindClose complains (%ld)\n", GetLastError ());
296 slashname[strlen(slashname)-1]=0;
297 ok (!strcmp (slashname, search_results.cFileName),
298 "found unexpected name \"%s\"\n", search_results.cFileName);
299 ok (FILE_ATTRIBUTE_ARCHIVE==search_results.dwFileAttributes,
300 "attributes of file \"%s\" are 0x%04lx\n", search_results.cFileName,
301 search_results.dwFileAttributes);
303 ret = DeleteFileA( slashname );
304 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
307 filehandle=_lcreat (filename, 8); /* illegal attribute */
308 if (HFILE_ERROR==filehandle)
309 ok (0, "couldn't create volume label \"%s\"\n", filename);
312 find=FindFirstFileA (filename, &search_results);
313 if (INVALID_HANDLE_VALUE==find)
314 ok (0, "file \"%s\" not found\n", filename);
316 ret = FindClose(find);
317 ok ( 0 != ret, "FindClose complains (%ld)\n", GetLastError ());
318 ok (!strcmp (filename, search_results.cFileName),
319 "found unexpected name \"%s\"\n", search_results.cFileName);
320 ok (FILE_ATTRIBUTE_ARCHIVE==search_results.dwFileAttributes,
321 "attributes of file \"%s\" are 0x%04lx\n", search_results.cFileName,
322 search_results.dwFileAttributes);
324 ret = DeleteFileA( filename );
325 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
330 static void test__llseek( void )
338 filehandle = _lcreat( filename, 0 );
339 if (filehandle == HFILE_ERROR)
341 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
345 for (i = 0; i < 400; i++)
347 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
349 ok( HFILE_ERROR != _llseek( filehandle, 400 * strlen( sillytext ), FILE_CURRENT ), "should be able to seek\n" );
350 ok( HFILE_ERROR != _llseek( filehandle, 27 + 35 * strlen( sillytext ), FILE_BEGIN ), "should be able to seek\n" );
352 bytes_read = _hread( filehandle, buffer, 1);
353 ok( 1 == bytes_read, "file read size error\n" );
354 ok( buffer[0] == sillytext[27], "_llseek error, it got lost seeking\n" );
355 ok( HFILE_ERROR != _llseek( filehandle, -400 * strlen( sillytext ), FILE_END ), "should be able to seek\n" );
357 bytes_read = _hread( filehandle, buffer, 1);
358 ok( 1 == bytes_read, "file read size error\n" );
359 ok( buffer[0] == sillytext[0], "_llseek error, it got lost seeking\n" );
360 ok( HFILE_ERROR != _llseek( filehandle, 1000000, FILE_END ), "should be able to seek past file; poor, poor Windows programmers\n" );
361 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
363 ret = DeleteFileA( filename );
364 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
368 static void test__llopen( void )
375 filehandle = _lcreat( filename, 0 );
376 if (filehandle == HFILE_ERROR)
378 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
382 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
383 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
385 filehandle = _lopen( filename, OF_READ );
386 ok( HFILE_ERROR == _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite shouldn't be able to write!\n" );
387 bytes_read = _hread( filehandle, buffer, strlen( sillytext ) );
388 ok( strlen( sillytext ) == bytes_read, "file read size error\n" );
389 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
391 filehandle = _lopen( filename, OF_READWRITE );
392 bytes_read = _hread( filehandle, buffer, 2 * strlen( sillytext ) );
393 ok( strlen( sillytext ) == bytes_read, "file read size error\n" );
394 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite should write just fine\n" );
395 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
397 filehandle = _lopen( filename, OF_WRITE );
398 ok( HFILE_ERROR == _hread( filehandle, buffer, 1 ), "you should only be able to write this file\n" );
399 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite should write just fine\n" );
400 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
402 ret = DeleteFileA( filename );
403 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
404 /* TODO - add tests for the SHARE modes - use two processes to pull this one off */
408 static void test__lread( void )
417 filehandle = _lcreat( filename, 0 );
418 if (filehandle == HFILE_ERROR)
420 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
424 ok( HFILE_ERROR != _hwrite( filehandle, sillytext, strlen( sillytext ) ), "_hwrite complains\n" );
426 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
428 filehandle = _lopen( filename, OF_READ );
430 ok( HFILE_ERROR != filehandle, "couldn't open file \"%s\" again (err=%ld)\n", filename, GetLastError());
432 bytes_read = _lread( filehandle, buffer, 2 * strlen( sillytext ) );
434 ok( lstrlenA( sillytext ) == bytes_read, "file read size error\n" );
436 for (bytes_wanted = 0; bytes_wanted < strlen( sillytext ); bytes_wanted++)
438 ok( 0 == _llseek( filehandle, 0, FILE_BEGIN ), "_llseek complains\n" );
439 ok( _lread( filehandle, buffer, bytes_wanted ) == bytes_wanted, "erratic _hread return value\n" );
440 for (i = 0; i < bytes_wanted; i++)
442 ok( buffer[i] == sillytext[i], "that's not what's written\n" );
446 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
448 ret = DeleteFileA( filename );
449 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
453 static void test__lwrite( void )
462 HLOCAL memory_object;
466 filehandle = _lcreat( filename, 0 );
467 if (filehandle == HFILE_ERROR)
469 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
473 ok( HFILE_ERROR != _lwrite( filehandle, "", 0 ), "_hwrite complains\n" );
475 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
477 filehandle = _lopen( filename, OF_READ );
479 bytes_read = _hread( filehandle, buffer, 1);
481 ok( 0 == bytes_read, "file read size error\n" );
483 ok( HFILE_ERROR != _lclose(filehandle), "_lclose complains\n" );
485 filehandle = _lopen( filename, OF_READWRITE );
489 srand( (unsigned)time( NULL ) );
490 for (blocks = 0; blocks < 100; blocks++)
492 for (i = 0; i < (long)sizeof( buffer ); i++)
495 checksum[0] = checksum[0] + buffer[i];
497 ok( HFILE_ERROR != _lwrite( filehandle, buffer, sizeof( buffer ) ), "_hwrite complains\n" );
498 bytes_written = bytes_written + sizeof( buffer );
501 ok( HFILE_ERROR != _lwrite( filehandle, checksum, 1 ), "_hwrite complains\n" );
504 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
506 memory_object = LocalAlloc( LPTR, bytes_written );
508 ok( 0 != memory_object, "LocalAlloc fails, could be out of memory\n" );
510 contents = LocalLock( memory_object );
512 filehandle = _lopen( filename, OF_READ );
514 contents = LocalLock( memory_object );
516 ok( NULL != contents, "LocalLock whines\n" );
518 ok( bytes_written == _hread( filehandle, contents, bytes_written), "read length differ from write length\n" );
524 checksum[0] += contents[i];
527 while (i < bytes_written - 1);
529 ok( checksum[0] == contents[i], "stored checksum differ from computed checksum\n" );
531 ok( HFILE_ERROR != _lclose( filehandle ), "_lclose complains\n" );
533 ret = DeleteFileA( filename );
534 ok( ret, "DeleteFile failed (%ld)\n", GetLastError( ) );
537 static void test_CopyFileA(void)
539 char temp_path[MAX_PATH];
540 char source[MAX_PATH], dest[MAX_PATH];
541 static const char prefix[] = "pfx";
548 ret = GetTempPathA(MAX_PATH, temp_path);
549 ok(ret != 0, "GetTempPathA error %ld\n", GetLastError());
550 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
552 ret = GetTempFileNameA(temp_path, prefix, 0, source);
553 ok(ret != 0, "GetTempFileNameA error %ld\n", GetLastError());
555 /* make the source have not zero size */
556 hfile = CreateFileA(source, GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
557 ok(hfile != INVALID_HANDLE_VALUE, "failed to open source file\n");
558 retok = WriteFile(hfile, prefix, sizeof(prefix), &ret, NULL );
559 ok( retok && ret == sizeof(prefix),
560 "WriteFile error %ld\n", GetLastError());
561 ok(GetFileSize(hfile, NULL) == sizeof(prefix), "source file has wrong size\n");
562 /* get the file time and change it to prove the difference */
563 ret = GetFileTime(hfile, NULL, NULL, &ft1);
564 ok( ret, "GetFileTime error %ld\n", GetLastError());
565 ft1.dwLowDateTime -= 600000000; /* 60 second */
566 ret = SetFileTime(hfile, NULL, NULL, &ft1);
567 ok( ret, "SetFileTime error %ld\n", GetLastError());
568 GetFileTime(hfile, NULL, NULL, &ft1); /* get the actual time back */
571 ret = GetTempFileNameA(temp_path, prefix, 0, dest);
572 ok(ret != 0, "GetTempFileNameA error %ld\n", GetLastError());
574 SetLastError(0xdeadbeef);
575 ret = CopyFileA(source, dest, TRUE);
576 ok(!ret && GetLastError() == ERROR_FILE_EXISTS,
577 "CopyFileA: unexpected error %ld\n", GetLastError());
579 ret = CopyFileA(source, dest, FALSE);
580 ok(ret, "CopyFileA: error %ld\n", GetLastError());
582 /* make sure that destination has correct size */
583 hfile = CreateFileA(dest, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
584 ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file\n");
585 ret = GetFileSize(hfile, NULL);
586 ok(ret == sizeof(prefix), "destination file has wrong size %ld\n", ret);
588 /* make sure that destination has the same filetime */
589 ret = GetFileTime(hfile, NULL, NULL, &ft2);
590 ok( ret, "GetFileTime error %ld\n", GetLastError());
591 ok(CompareFileTime(&ft1, &ft2) == 0, "destination file has wrong filetime\n");
593 SetLastError(0xdeadbeef);
594 ret = CopyFileA(source, dest, FALSE);
595 ok(!ret && GetLastError() == ERROR_SHARING_VIOLATION,
596 "CopyFileA: ret = %ld, unexpected error %ld\n", ret, GetLastError());
598 /* make sure that destination still has correct size */
599 ret = GetFileSize(hfile, NULL);
600 ok(ret == sizeof(prefix), "destination file has wrong size %ld\n", ret);
601 retok = ReadFile(hfile, buf, sizeof(buf), &ret, NULL);
602 ok( retok && ret == sizeof(prefix),
603 "ReadFile: error %ld\n", GetLastError());
604 ok(!memcmp(prefix, buf, sizeof(prefix)), "buffer contents mismatch\n");
607 ret = DeleteFileA(source);
608 ok(ret, "DeleteFileA: error %ld\n", GetLastError());
609 ret = DeleteFileA(dest);
610 ok(ret, "DeleteFileA: error %ld\n", GetLastError());
613 static void test_CopyFileW(void)
615 WCHAR temp_path[MAX_PATH];
616 WCHAR source[MAX_PATH], dest[MAX_PATH];
617 static const WCHAR prefix[] = {'p','f','x',0};
620 ret = GetTempPathW(MAX_PATH, temp_path);
621 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
623 ok(ret != 0, "GetTempPathW error %ld\n", GetLastError());
624 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
626 ret = GetTempFileNameW(temp_path, prefix, 0, source);
627 ok(ret != 0, "GetTempFileNameW error %ld\n", GetLastError());
629 ret = GetTempFileNameW(temp_path, prefix, 0, dest);
630 ok(ret != 0, "GetTempFileNameW error %ld\n", GetLastError());
632 ret = CopyFileW(source, dest, TRUE);
633 ok(!ret && GetLastError() == ERROR_FILE_EXISTS,
634 "CopyFileW: unexpected error %ld\n", GetLastError());
636 ret = CopyFileW(source, dest, FALSE);
637 ok(ret, "CopyFileW: error %ld\n", GetLastError());
639 ret = DeleteFileW(source);
640 ok(ret, "DeleteFileW: error %ld\n", GetLastError());
641 ret = DeleteFileW(dest);
642 ok(ret, "DeleteFileW: error %ld\n", GetLastError());
645 static void test_CreateFileA(void)
648 char temp_path[MAX_PATH];
649 char filename[MAX_PATH];
650 static const char prefix[] = "pfx";
653 ret = GetTempPathA(MAX_PATH, temp_path);
654 ok(ret != 0, "GetTempPathA error %ld\n", GetLastError());
655 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
657 ret = GetTempFileNameA(temp_path, prefix, 0, filename);
658 ok(ret != 0, "GetTempFileNameA error %ld\n", GetLastError());
660 hFile = CreateFileA(filename, GENERIC_READ, 0, NULL,
661 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
662 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_FILE_EXISTS,
663 "CREATE_NEW should fail if file exists and last error value should be ERROR_FILE_EXISTS\n");
665 ret = DeleteFileA(filename);
666 ok(ret, "DeleteFileA: error %ld\n", GetLastError());
669 static void test_CreateFileW(void)
672 WCHAR temp_path[MAX_PATH];
673 WCHAR filename[MAX_PATH];
674 static const WCHAR emptyW[]={'\0'};
675 static const WCHAR prefix[] = {'p','f','x',0};
676 static const WCHAR bogus[] = { '\\', '\\', '.', '\\', 'B', 'O', 'G', 'U', 'S', 0 };
679 ret = GetTempPathW(MAX_PATH, temp_path);
680 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
682 ok(ret != 0, "GetTempPathW error %ld\n", GetLastError());
683 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
685 ret = GetTempFileNameW(temp_path, prefix, 0, filename);
686 ok(ret != 0, "GetTempFileNameW error %ld\n", GetLastError());
688 hFile = CreateFileW(filename, GENERIC_READ, 0, NULL,
689 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
690 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_FILE_EXISTS,
691 "CREATE_NEW should fail if file exists and last error value should be ERROR_FILE_EXISTS\n");
693 ret = DeleteFileW(filename);
694 ok(ret, "DeleteFileW: error %ld\n", GetLastError());
696 #if 0 /* this test crashes on NT4.0 */
697 hFile = CreateFileW(NULL, GENERIC_READ, 0, NULL,
698 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
699 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_PATH_NOT_FOUND,
700 "CreateFileW(NULL) returned ret=%p error=%ld\n",hFile,GetLastError());
703 hFile = CreateFileW(emptyW, GENERIC_READ, 0, NULL,
704 CREATE_NEW, FILE_FLAG_RANDOM_ACCESS, 0);
705 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_PATH_NOT_FOUND,
706 "CreateFileW(\"\") returned ret=%p error=%ld\n",hFile,GetLastError());
708 /* test the result of opening a nonexistent driver name */
709 hFile = CreateFileW(bogus, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
710 OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
711 ok(hFile == INVALID_HANDLE_VALUE && GetLastError() == ERROR_FILE_NOT_FOUND,
712 "CreateFileW on invalid VxD name returned ret=%p error=%ld\n",hFile,GetLastError());
715 static void test_GetTempFileNameA(void)
719 char expected[MAX_PATH + 10];
720 char windowsdir[MAX_PATH + 10];
721 char windowsdrive[3];
723 result = GetWindowsDirectory(windowsdir, sizeof(windowsdir));
724 ok(result < sizeof(windowsdir), "windowsdir is abnormally long!\n");
725 ok(result != 0, "GetWindowsDirectory: error %ld\n", GetLastError());
727 /* If the Windows directory is the root directory, it ends in backslash, not else. */
728 if (strlen(windowsdir) != 3) /* As in "C:\" or "F:\" */
730 strcat(windowsdir, "\\");
733 windowsdrive[0] = windowsdir[0];
734 windowsdrive[1] = windowsdir[1];
735 windowsdrive[2] = '\0';
737 result = GetTempFileNameA(windowsdrive, "abc", 1, out);
738 ok(result != 0, "GetTempFileNameA: error %ld\n", GetLastError());
739 ok(((out[0] == windowsdrive[0]) && (out[1] == ':')) && (out[2] == '\\'),
740 "GetTempFileNameA: first three characters should be %c:\\, string was actually %s\n",
741 windowsdrive[0], out);
743 result = GetTempFileNameA(windowsdir, "abc", 2, out);
744 ok(result != 0, "GetTempFileNameA: error %ld\n", GetLastError());
746 strcat(expected, windowsdir);
747 strcat(expected, "abc2.tmp");
748 ok(lstrcmpiA(out, expected) == 0, "GetTempFileNameA: Unexpected output \"%s\" vs \"%s\"\n",
752 static void test_DeleteFileA( void )
756 ret = DeleteFileA(NULL);
757 ok(!ret && (GetLastError() == ERROR_INVALID_PARAMETER ||
758 GetLastError() == ERROR_PATH_NOT_FOUND),
759 "DeleteFileA(NULL) returned ret=%d error=%ld\n",ret,GetLastError());
761 ret = DeleteFileA("");
762 ok(!ret && (GetLastError() == ERROR_PATH_NOT_FOUND ||
763 GetLastError() == ERROR_BAD_PATHNAME),
764 "DeleteFileA(\"\") returned ret=%d error=%ld\n",ret,GetLastError());
766 ret = DeleteFileA("nul");
767 ok(!ret && (GetLastError() == ERROR_FILE_NOT_FOUND ||
768 GetLastError() == ERROR_INVALID_PARAMETER ||
769 GetLastError() == ERROR_ACCESS_DENIED),
770 "DeleteFileA(\"nul\") returned ret=%d error=%ld\n",ret,GetLastError());
773 static void test_DeleteFileW( void )
776 static const WCHAR emptyW[]={'\0'};
778 ret = DeleteFileW(NULL);
779 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
781 ok(!ret && GetLastError() == ERROR_PATH_NOT_FOUND,
782 "DeleteFileW(NULL) returned ret=%d error=%ld\n",ret,GetLastError());
784 ret = DeleteFileW(emptyW);
785 ok(!ret && GetLastError() == ERROR_PATH_NOT_FOUND,
786 "DeleteFileW(\"\") returned ret=%d error=%ld\n",ret,GetLastError());
789 #define IsDotDir(x) ((x[0] == '.') && ((x[1] == 0) || ((x[1] == '.') && (x[2] == 0))))
791 static void test_MoveFileA(void)
793 char tempdir[MAX_PATH];
794 char source[MAX_PATH], dest[MAX_PATH];
795 static const char prefix[] = "pfx";
798 ret = GetTempPathA(MAX_PATH, tempdir);
799 ok(ret != 0, "GetTempPathA error %ld\n", GetLastError());
800 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
802 ret = GetTempFileNameA(tempdir, prefix, 0, source);
803 ok(ret != 0, "GetTempFileNameA error %ld\n", GetLastError());
805 ret = GetTempFileNameA(tempdir, prefix, 0, dest);
806 ok(ret != 0, "GetTempFileNameA error %ld\n", GetLastError());
808 ret = MoveFileA(source, dest);
809 ok(!ret && GetLastError() == ERROR_ALREADY_EXISTS,
810 "MoveFileA: unexpected error %ld\n", GetLastError());
812 ret = DeleteFileA(dest);
813 ok(ret, "DeleteFileA: error %ld\n", GetLastError());
815 ret = MoveFileA(source, dest);
816 ok(ret, "MoveFileA: failed, error %ld\n", GetLastError());
818 lstrcatA(tempdir, "Remove Me");
819 ret = CreateDirectoryA(tempdir, NULL);
820 ok(ret == TRUE, "CreateDirectoryA failed\n");
822 lstrcpyA(source, dest);
823 lstrcpyA(dest, tempdir);
824 lstrcatA(dest, "\\wild?.*");
825 /* FIXME: if we create a file with wildcards we can't delete it now that DeleteFile works correctly */
826 ret = MoveFileA(source, dest);
827 ok(!ret, "MoveFileA: shouldn't move to wildcard file\n");
828 ok(GetLastError() == ERROR_INVALID_NAME || /* NT */
829 GetLastError() == ERROR_FILE_NOT_FOUND, /* Win9x */
830 "MoveFileA: with wildcards, unexpected error %ld\n", GetLastError());
831 if (ret || (GetLastError() != ERROR_INVALID_NAME))
834 char temppath[MAX_PATH];
837 lstrcpyA(temppath, tempdir);
838 lstrcatA(temppath, "\\*.*");
839 hFind = FindFirstFileA(temppath, &fd);
840 if (INVALID_HANDLE_VALUE != hFind)
845 lpName = fd.cAlternateFileName;
847 lpName = fd.cFileName;
848 ok(IsDotDir(lpName), "MoveFileA: wildcards file created!\n");
850 while (FindNextFileA(hFind, &fd));
854 ret = DeleteFileA(source);
855 ok(ret, "DeleteFileA: error %ld\n", GetLastError());
856 ret = DeleteFileA(dest);
857 ok(!ret, "DeleteFileA: error %ld\n", GetLastError());
858 ret = RemoveDirectoryA(tempdir);
859 ok(ret, "DeleteDirectoryA: error %ld\n", GetLastError());
862 static void test_MoveFileW(void)
864 WCHAR temp_path[MAX_PATH];
865 WCHAR source[MAX_PATH], dest[MAX_PATH];
866 static const WCHAR prefix[] = {'p','f','x',0};
869 ret = GetTempPathW(MAX_PATH, temp_path);
870 if (ret==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
872 ok(ret != 0, "GetTempPathW error %ld\n", GetLastError());
873 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
875 ret = GetTempFileNameW(temp_path, prefix, 0, source);
876 ok(ret != 0, "GetTempFileNameW error %ld\n", GetLastError());
878 ret = GetTempFileNameW(temp_path, prefix, 0, dest);
879 ok(ret != 0, "GetTempFileNameW error %ld\n", GetLastError());
881 ret = MoveFileW(source, dest);
882 ok(!ret && GetLastError() == ERROR_ALREADY_EXISTS,
883 "CopyFileW: unexpected error %ld\n", GetLastError());
885 ret = DeleteFileW(source);
886 ok(ret, "DeleteFileW: error %ld\n", GetLastError());
887 ret = DeleteFileW(dest);
888 ok(ret, "DeleteFileW: error %ld\n", GetLastError());
891 #define PATTERN_OFFSET 0x10
893 static void test_offset_in_overlapped_structure(void)
899 BYTE buf[256], pattern[] = "TeSt";
901 char temp_path[MAX_PATH], temp_fname[MAX_PATH];
904 ret =GetTempPathA(MAX_PATH, temp_path);
905 ok( ret, "GetTempPathA error %ld\n", GetLastError());
906 ret =GetTempFileNameA(temp_path, "pfx", 0, temp_fname);
907 ok( ret, "GetTempFileNameA error %ld\n", GetLastError());
909 /*** Write File *****************************************************/
911 hFile = CreateFileA(temp_fname, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
912 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA error %ld\n", GetLastError());
914 for(i = 0; i < sizeof(buf); i++) buf[i] = i;
915 ret = WriteFile(hFile, buf, sizeof(buf), &done, NULL);
916 ok( ret, "WriteFile error %ld\n", GetLastError());
917 ok(done == sizeof(buf), "expected number of bytes written %lu\n", done);
919 memset(&ov, 0, sizeof(ov));
920 S(U(ov)).Offset = PATTERN_OFFSET;
921 S(U(ov)).OffsetHigh = 0;
922 rc=WriteFile(hFile, pattern, sizeof(pattern), &done, &ov);
923 /* Win 9x does not support the overlapped I/O on files */
924 if (rc || GetLastError()!=ERROR_INVALID_PARAMETER) {
925 ok(rc, "WriteFile error %ld\n", GetLastError());
926 ok(done == sizeof(pattern), "expected number of bytes written %lu\n", done);
927 /*trace("Current offset = %04lx\n", SetFilePointer(hFile, 0, NULL, FILE_CURRENT));*/
928 ok(SetFilePointer(hFile, 0, NULL, FILE_CURRENT) == (PATTERN_OFFSET + sizeof(pattern)),
929 "expected file offset %d\n", PATTERN_OFFSET + sizeof(pattern));
931 S(U(ov)).Offset = sizeof(buf) * 2;
932 S(U(ov)).OffsetHigh = 0;
933 ret = WriteFile(hFile, pattern, sizeof(pattern), &done, &ov);
934 ok( ret, "WriteFile error %ld\n", GetLastError());
935 ok(done == sizeof(pattern), "expected number of bytes written %lu\n", done);
936 /*trace("Current offset = %04lx\n", SetFilePointer(hFile, 0, NULL, FILE_CURRENT));*/
937 ok(SetFilePointer(hFile, 0, NULL, FILE_CURRENT) == (sizeof(buf) * 2 + sizeof(pattern)),
938 "expected file offset %d\n", sizeof(buf) * 2 + sizeof(pattern));
943 /*** Read File *****************************************************/
945 hFile = CreateFileA(temp_fname, GENERIC_READ, 0, NULL, OPEN_EXISTING, 0, 0);
946 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA error %ld\n", GetLastError());
948 memset(buf, 0, sizeof(buf));
949 memset(&ov, 0, sizeof(ov));
950 S(U(ov)).Offset = PATTERN_OFFSET;
951 S(U(ov)).OffsetHigh = 0;
952 rc=ReadFile(hFile, buf, sizeof(pattern), &done, &ov);
953 /* Win 9x does not support the overlapped I/O on files */
954 if (rc || GetLastError()!=ERROR_INVALID_PARAMETER) {
955 ok(rc, "ReadFile error %ld\n", GetLastError());
956 ok(done == sizeof(pattern), "expected number of bytes read %lu\n", done);
957 /*trace("Current offset = %04lx\n", SetFilePointer(hFile, 0, NULL, FILE_CURRENT));*/
958 ok(SetFilePointer(hFile, 0, NULL, FILE_CURRENT) == (PATTERN_OFFSET + sizeof(pattern)),
959 "expected file offset %d\n", PATTERN_OFFSET + sizeof(pattern));
960 ok(!memcmp(buf, pattern, sizeof(pattern)), "pattern match failed\n");
965 ret = DeleteFileA(temp_fname);
966 ok( ret, "DeleteFileA error %ld\n", GetLastError());
969 static void test_LockFile(void)
973 OVERLAPPED overlapped;
974 int limited_LockFile;
975 int limited_UnLockFile;
976 int lockfileex_capable;
978 handle = CreateFileA( filename, GENERIC_READ | GENERIC_WRITE,
979 FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
980 CREATE_ALWAYS, 0, 0 );
981 if (handle == INVALID_HANDLE_VALUE)
983 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
986 ok( WriteFile( handle, sillytext, strlen(sillytext), &written, NULL ), "write failed\n" );
988 ok( LockFile( handle, 0, 0, 0, 0 ), "LockFile failed\n" );
989 ok( UnlockFile( handle, 0, 0, 0, 0 ), "UnlockFile failed\n" );
991 limited_UnLockFile = 0;
992 if (UnlockFile( handle, 0, 0, 0, 0 ))
994 limited_UnLockFile = 1;
997 ok( LockFile( handle, 10, 0, 20, 0 ), "LockFile 10,20 failed\n" );
998 /* overlapping locks must fail */
999 ok( !LockFile( handle, 12, 0, 10, 0 ), "LockFile 12,10 succeeded\n" );
1000 ok( !LockFile( handle, 5, 0, 6, 0 ), "LockFile 5,6 succeeded\n" );
1001 /* non-overlapping locks must succeed */
1002 ok( LockFile( handle, 5, 0, 5, 0 ), "LockFile 5,5 failed\n" );
1004 ok( !UnlockFile( handle, 10, 0, 10, 0 ), "UnlockFile 10,10 succeeded\n" );
1005 ok( UnlockFile( handle, 10, 0, 20, 0 ), "UnlockFile 10,20 failed\n" );
1006 ok( !UnlockFile( handle, 10, 0, 20, 0 ), "UnlockFile 10,20 again succeeded\n" );
1007 ok( UnlockFile( handle, 5, 0, 5, 0 ), "UnlockFile 5,5 failed\n" );
1009 S(U(overlapped)).Offset = 100;
1010 S(U(overlapped)).OffsetHigh = 0;
1011 overlapped.hEvent = 0;
1013 lockfileex_capable = dll_capable("kernel32", "LockFileEx");
1014 if (lockfileex_capable)
1016 /* Test for broken LockFileEx a la Windows 95 OSR2. */
1017 if (LockFileEx( handle, 0, 0, 100, 0, &overlapped ))
1019 /* LockFileEx is probably OK, test it more. */
1020 ok( LockFileEx( handle, 0, 0, 100, 0, &overlapped ),
1021 "LockFileEx 100,100 failed\n" );
1025 /* overlapping shared locks are OK */
1026 S(U(overlapped)).Offset = 150;
1027 limited_UnLockFile || ok( LockFileEx( handle, 0, 0, 100, 0, &overlapped ), "LockFileEx 150,100 failed\n" );
1029 /* but exclusive is not */
1030 if (lockfileex_capable)
1032 ok( !LockFileEx( handle, LOCKFILE_EXCLUSIVE_LOCK|LOCKFILE_FAIL_IMMEDIATELY,
1033 0, 50, 0, &overlapped ),
1034 "LockFileEx exclusive 150,50 succeeded\n" );
1035 if (dll_capable("kernel32.dll", "UnlockFileEx"))
1037 if (!UnlockFileEx( handle, 0, 100, 0, &overlapped ))
1038 { /* UnLockFile is capable. */
1039 S(U(overlapped)).Offset = 100;
1040 ok( !UnlockFileEx( handle, 0, 100, 0, &overlapped ),
1041 "UnlockFileEx 150,100 again succeeded\n" );
1046 ok( LockFile( handle, 0, 0x10000000, 0, 0xf0000000 ), "LockFile failed\n" );
1047 ok( !LockFile( handle, ~0, ~0, 1, 0 ), "LockFile ~0,1 succeeded\n" );
1048 ok( !LockFile( handle, 0, 0x20000000, 20, 0 ), "LockFile 0x20000000,20 succeeded\n" );
1049 ok( UnlockFile( handle, 0, 0x10000000, 0, 0xf0000000 ), "UnlockFile failed\n" );
1051 /* wrap-around lock should not do anything */
1052 /* (but still succeeds on NT4 so we don't check result) */
1053 LockFile( handle, 0, 0x10000000, 0, 0xf0000001 );
1055 limited_LockFile = 0;
1056 if (!LockFile( handle, ~0, ~0, 1, 0 ))
1058 limited_LockFile = 1;
1061 limited_UnLockFile || ok( UnlockFile( handle, ~0, ~0, 1, 0 ), "Unlockfile ~0,1 failed\n" );
1063 /* zero-byte lock */
1064 ok( LockFile( handle, 100, 0, 0, 0 ), "LockFile 100,0 failed\n" );
1065 limited_LockFile || ok( !LockFile( handle, 98, 0, 4, 0 ), "LockFile 98,4 succeeded\n" );
1066 ok( LockFile( handle, 90, 0, 10, 0 ), "LockFile 90,10 failed\n" );
1067 limited_LockFile || ok( !LockFile( handle, 100, 0, 10, 0 ), "LockFile 100,10 failed\n" );
1069 ok( UnlockFile( handle, 90, 0, 10, 0 ), "UnlockFile 90,10 failed\n" );
1070 !ok( UnlockFile( handle, 100, 0, 10, 0 ), "UnlockFile 100,10 failed\n" );
1072 ok( UnlockFile( handle, 100, 0, 0, 0 ), "UnlockFile 100,0 failed\n" );
1074 CloseHandle( handle );
1075 DeleteFileA( filename );
1078 static inline int is_sharing_compatible( DWORD access1, DWORD sharing1, DWORD access2, DWORD sharing2 )
1080 if (!access1 || !access2) return 1;
1081 if ((access1 & GENERIC_READ) && !(sharing2 & FILE_SHARE_READ)) return 0;
1082 if ((access1 & GENERIC_WRITE) && !(sharing2 & FILE_SHARE_WRITE)) return 0;
1083 if ((access2 & GENERIC_READ) && !(sharing1 & FILE_SHARE_READ)) return 0;
1084 if ((access2 & GENERIC_WRITE) && !(sharing1 & FILE_SHARE_WRITE)) return 0;
1088 static void test_file_sharing(void)
1090 static const DWORD access_modes[4] = { 0, GENERIC_READ, GENERIC_WRITE, GENERIC_READ|GENERIC_WRITE };
1091 static const DWORD sharing_modes[4] = { 0, FILE_SHARE_READ, FILE_SHARE_WRITE, FILE_SHARE_READ|FILE_SHARE_WRITE };
1096 /* make sure the file exists */
1097 h = CreateFileA( filename, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0 );
1098 if (h == INVALID_HANDLE_VALUE)
1100 ok(0, "couldn't create file \"%s\" (err=%ld)\n", filename, GetLastError());
1105 for (a1 = 0; a1 < 4; a1++)
1107 for (s1 = 0; s1 < 4; s1++)
1109 h = CreateFileA( filename, access_modes[a1], sharing_modes[s1],
1110 NULL, OPEN_EXISTING, 0, 0 );
1111 if (h == INVALID_HANDLE_VALUE)
1113 ok(0,"couldn't create file \"%s\" (err=%ld)\n",filename,GetLastError());
1116 for (a2 = 0; a2 < 4; a2++)
1118 for (s2 = 0; s2 < 4; s2++)
1120 SetLastError(0xdeadbeef);
1121 h2 = CreateFileA( filename, access_modes[a2], sharing_modes[s2],
1122 NULL, OPEN_EXISTING, 0, 0 );
1123 if (is_sharing_compatible( access_modes[a1], sharing_modes[s1],
1124 access_modes[a2], sharing_modes[s2] ))
1126 ret = GetLastError();
1127 ok( ERROR_SHARING_VIOLATION == ret || 0 == ret,
1128 "Windows 95 sets GetLastError() = ERROR_SHARING_VIOLATION and\n"
1129 " Windows XP GetLastError() = 0, but now it is %d.\n"
1130 " indexes = %d, %d, %d, %d\n"
1131 " modes =\n %lx/%lx/%lx/%lx\n",
1134 access_modes[a1], sharing_modes[s1],
1135 access_modes[a2], sharing_modes[s2]
1140 ok( h2 == INVALID_HANDLE_VALUE,
1141 "open succeeded for modes %lx/%lx/%lx/%lx\n",
1142 access_modes[a1], sharing_modes[s1],
1143 access_modes[a2], sharing_modes[s2] );
1144 if (h2 == INVALID_HANDLE_VALUE)
1145 ok( GetLastError() == ERROR_SHARING_VIOLATION,
1146 "wrong error code %ld\n", GetLastError() );
1148 if (h2 != INVALID_HANDLE_VALUE) CloseHandle( h2 );
1155 SetLastError(0xdeadbeef);
1156 h = CreateFileA( filename, GENERIC_READ|GENERIC_WRITE, FILE_SHARE_READ, NULL, OPEN_ALWAYS, 0, 0 );
1157 ok( h != INVALID_HANDLE_VALUE, "CreateFileA error %ld\n", GetLastError() );
1159 SetLastError(0xdeadbeef);
1160 h2 = CreateFileA( filename, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0 );
1161 ok( h2 == INVALID_HANDLE_VALUE, "CreateFileA should fail\n");
1162 ok( GetLastError() == ERROR_SHARING_VIOLATION, "wrong error code %ld\n", GetLastError() );
1164 h2 = CreateFileA( filename, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, 0 );
1165 ok( h2 != INVALID_HANDLE_VALUE, "CreateFileA error %ld\n", GetLastError() );
1170 DeleteFileA( filename );
1173 static char get_windows_drive(void)
1175 char windowsdir[MAX_PATH];
1176 GetWindowsDirectory(windowsdir, sizeof(windowsdir));
1177 return windowsdir[0];
1180 static void test_FindFirstFileA(void)
1183 WIN32_FIND_DATAA search_results;
1185 char buffer[5] = "C:\\";
1187 /* try FindFirstFileA on "C:\" */
1188 buffer[0] = get_windows_drive();
1189 handle = FindFirstFileA(buffer,&search_results);
1190 err = GetLastError();
1191 ok ( handle == INVALID_HANDLE_VALUE , "FindFirstFile on root directory should Fail\n");
1192 if (handle == INVALID_HANDLE_VALUE)
1193 ok ( err == ERROR_FILE_NOT_FOUND, "Bad Error number %d\n", err);
1195 /* try FindFirstFileA on "C:\*" */
1196 strcat(buffer, "*");
1197 handle = FindFirstFileA(buffer,&search_results);
1198 ok ( handle != INVALID_HANDLE_VALUE, "FindFirstFile on %s should succeed\n", buffer );
1199 ok ( FindClose(handle) == TRUE, "Failed to close handle\n");
1202 static void test_FindNextFileA(void)
1205 WIN32_FIND_DATAA search_results;
1207 char buffer[5] = "C:\\*";
1209 buffer[0] = get_windows_drive();
1210 handle = FindFirstFileA(buffer,&search_results);
1211 ok ( handle != INVALID_HANDLE_VALUE, "FindFirstFile on C:\\* should succeed\n" );
1212 while (FindNextFile(handle, &search_results))
1214 /* get to the end of the files */
1216 ok ( FindClose(handle) == TRUE, "Failed to close handle\n");
1217 err = GetLastError();
1218 ok ( err == ERROR_NO_MORE_FILES, "GetLastError should return ERROR_NO_MORE_FILES\n");
1221 static int test_Mapfile_createtemp(HANDLE *handle)
1223 SetFileAttributesA(filename,FILE_ATTRIBUTE_NORMAL);
1224 DeleteFile(filename);
1225 *handle = CreateFile(filename, GENERIC_READ|GENERIC_WRITE, 0, 0,
1226 CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);
1227 if (*handle != INVALID_HANDLE_VALUE) {
1235 static void test_MapFile(void)
1240 ok(test_Mapfile_createtemp(&handle), "Couldn't create test file.\n");
1242 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0, 0x1000, "named_file_map" );
1243 ok( hmap != NULL, "mapping should work, I named it!\n" );
1245 ok( CloseHandle( hmap ), "can't close mapping handle\n");
1247 /* We have to close file before we try new stuff with mapping again.
1248 Else we would always succeed on XP or block descriptors on 95. */
1249 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0, 0, NULL );
1250 ok( hmap != NULL, "We should still be able to map!\n" );
1251 ok( CloseHandle( hmap ), "can't close mapping handle\n");
1252 ok( CloseHandle( handle ), "can't close file handle\n");
1255 ok(test_Mapfile_createtemp(&handle), "Couldn't create test file.\n");
1257 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0, 0, NULL );
1258 ok( hmap == NULL, "mapped zero size file\n");
1259 ok( GetLastError() == ERROR_FILE_INVALID, "not ERROR_FILE_INVALID\n");
1261 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0x1000, 0, NULL );
1262 ok( hmap == NULL, "mapping should fail\n");
1263 /* GetLastError() varies between win9x and WinNT and also depends on the filesystem */
1265 hmap = CreateFileMapping( handle, NULL, PAGE_READWRITE, 0x1000, 0x10000, NULL );
1266 ok( hmap == NULL, "mapping should fail\n");
1267 /* GetLastError() varies between win9x and WinNT and also depends on the filesystem */
1269 /* On XP you can now map again, on Win 95 you cannot. */
1271 ok( CloseHandle( handle ), "can't close file handle\n");
1272 ok( DeleteFileA( filename ), "DeleteFile failed after map\n" );
1275 static void test_GetFileType(void)
1278 HANDLE h = CreateFileA( filename, GENERIC_READ|GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, 0, 0 );
1279 ok( h != INVALID_HANDLE_VALUE, "open %s failed\n", filename );
1280 type = GetFileType(h);
1281 ok( type == FILE_TYPE_DISK, "expected type disk got %ld\n", type );
1283 h = CreateFileA( "nul", GENERIC_READ|GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, 0 );
1284 ok( h != INVALID_HANDLE_VALUE, "open nul failed\n" );
1285 type = GetFileType(h);
1286 ok( type == FILE_TYPE_CHAR, "expected type char for nul got %ld\n", type );
1288 DeleteFileA( filename );
1291 static int completion_count;
1293 static void CALLBACK FileIOComplete(DWORD dwError, DWORD dwBytes, LPOVERLAPPED ovl)
1295 /* printf("(%ld, %ld, %p { %ld, %ld, %ld, %ld, %p })\n", dwError, dwBytes, ovl, ovl->Internal, ovl->InternalHigh, ovl->Offset, ovl->OffsetHigh, ovl->hEvent);*/
1296 ReleaseSemaphore(ovl->hEvent, 1, NULL);
1300 static void test_async_file_errors(void)
1302 char szFile[MAX_PATH];
1303 HANDLE hSem = CreateSemaphoreW(NULL, 1, 1, NULL);
1305 LPVOID lpBuffer = HeapAlloc(GetProcessHeap(), 0, 4096);
1307 S(U(ovl)).Offset = 0;
1308 S(U(ovl)).OffsetHigh = 0;
1310 completion_count = 0;
1312 GetWindowsDirectoryA(szFile, sizeof(szFile)/sizeof(szFile[0])-1-strlen("\\win.ini"));
1313 strcat(szFile, "\\win.ini");
1314 hFile = CreateFileA(szFile, GENERIC_READ, FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE, NULL, OPEN_ALWAYS, FILE_FLAG_OVERLAPPED, NULL);
1315 ok(hFile != NULL, "CreateFileA(%s ...) failed\n", szFile);
1319 while (WaitForSingleObjectEx(hSem, INFINITE, TRUE) == WAIT_IO_COMPLETION)
1321 res = ReadFileEx(hFile, lpBuffer, 4096, &ovl, FileIOComplete);
1322 /*printf("Offset = %ld, result = %s\n", ovl.Offset, res ? "TRUE" : "FALSE");*/
1325 S(U(ovl)).Offset += 4096;
1326 /* i/o completion routine only called if ReadFileEx returned success.
1327 * we only care about violations of this rule so undo what should have
1331 ok(completion_count == 0, "completion routine should only be called when ReadFileEx succeeds (this rule was violated %d times)\n", completion_count);
1332 /*printf("Error = %ld\n", GetLastError());*/
1335 static void test_read_write(void)
1339 char temp_path[MAX_PATH];
1340 char filename[MAX_PATH];
1341 static const char prefix[] = "pfx";
1343 ret = GetTempPathA(MAX_PATH, temp_path);
1344 ok(ret != 0, "GetTempPathA error %ld\n", GetLastError());
1345 ok(ret < MAX_PATH, "temp path should fit into MAX_PATH\n");
1347 ret = GetTempFileNameA(temp_path, prefix, 0, filename);
1348 ok(ret != 0, "GetTempFileNameA error %ld\n", GetLastError());
1350 hFile = CreateFileA(filename, GENERIC_READ | GENERIC_WRITE, 0, NULL,
1351 CREATE_ALWAYS, FILE_FLAG_RANDOM_ACCESS, 0);
1352 ok(hFile != INVALID_HANDLE_VALUE, "CreateFileA: error %ld\n", GetLastError());
1354 SetLastError(12345678);
1356 ret = WriteFile(hFile, NULL, 0, &bytes, NULL);
1357 ok(ret && GetLastError() == 12345678,
1358 "ret = %ld, error %ld\n", ret, GetLastError());
1359 ok(!bytes, "bytes = %ld\n", bytes);
1361 SetLastError(12345678);
1363 ret = WriteFile(hFile, NULL, 10, &bytes, NULL);
1364 ok((!ret && GetLastError() == ERROR_INVALID_USER_BUFFER) || /* Win2k */
1365 (ret && GetLastError() == 12345678), /* Win9x */
1366 "ret = %ld, error %ld\n", ret, GetLastError());
1367 ok(!bytes || /* Win2k */
1368 bytes == 10, /* Win9x */
1369 "bytes = %ld\n", bytes);
1371 SetLastError(12345678);
1373 ret = ReadFile(hFile, NULL, 0, &bytes, NULL);
1374 ok(ret && GetLastError() == 12345678,
1375 "ret = %ld, error %ld\n", ret, GetLastError());
1376 ok(!bytes, "bytes = %ld\n", bytes);
1378 SetLastError(12345678);
1380 ret = ReadFile(hFile, NULL, 10, &bytes, NULL);
1381 ok(!ret && (GetLastError() == ERROR_NOACCESS || /* Win2k */
1382 GetLastError() == ERROR_INVALID_PARAMETER), /* Win9x */
1383 "ret = %ld, error %ld\n", ret, GetLastError());
1384 ok(!bytes, "bytes = %ld\n", bytes);
1386 ret = CloseHandle(hFile);
1387 ok( ret, "CloseHandle: error %ld\n", GetLastError());
1388 ret = DeleteFileA(filename);
1389 ok( ret, "DeleteFileA: error %ld\n", GetLastError());
1402 test_GetTempFileNameA();
1411 test_FindFirstFileA();
1412 test_FindNextFileA();
1414 test_file_sharing();
1415 test_offset_in_overlapped_structure();
1418 test_async_file_errors();