kernel32: Add a CopyFile test.

This commit is contained in:
Damjan Jovanovic 2010-06-15 07:22:43 +02:00 committed by Alexandre Julliard
parent 5c5b9a6933
commit 6e5a22c733
1 changed files with 13 additions and 5 deletions

View File

@ -640,7 +640,7 @@ static void test_CopyFileA(void)
ok(hfile != INVALID_HANDLE_VALUE, "failed to open source file, error %d\n", GetLastError()); ok(hfile != INVALID_HANDLE_VALUE, "failed to open source file, error %d\n", GetLastError());
retok = CopyFileA(source, dest, FALSE); retok = CopyFileA(source, dest, FALSE);
ok(retok, ok(retok,
"copying from an r+w opened and r shared file failed (ret=%d, err=%d)\n", ret, GetLastError()); "copying from an r+w opened and r shared file failed (ret=%d, err=%d)\n", retok, GetLastError());
CloseHandle(hfile); CloseHandle(hfile);
/* copying from a delete-locked source is unreliable */ /* copying from a delete-locked source is unreliable */
@ -648,7 +648,7 @@ static void test_CopyFileA(void)
ok(hfile != INVALID_HANDLE_VALUE, "failed to open source file, error %d\n", GetLastError()); ok(hfile != INVALID_HANDLE_VALUE, "failed to open source file, error %d\n", GetLastError());
retok = CopyFileA(source, dest, FALSE); retok = CopyFileA(source, dest, FALSE);
ok((!retok && GetLastError() == ERROR_SHARING_VIOLATION) || broken(retok) /* 98, Vista, 2k8, 7 */, ok((!retok && GetLastError() == ERROR_SHARING_VIOLATION) || broken(retok) /* 98, Vista, 2k8, 7 */,
"copying from a delete-locked file failed (ret=%d, err=%d)\n", ret, GetLastError()); "copying from a delete-locked file failed (ret=%d, err=%d)\n", retok, GetLastError());
CloseHandle(hfile); CloseHandle(hfile);
/* copying to a write-locked destination fails */ /* copying to a write-locked destination fails */
@ -656,7 +656,7 @@ static void test_CopyFileA(void)
ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file, error %d\n", GetLastError()); ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file, error %d\n", GetLastError());
retok = CopyFileA(source, dest, FALSE); retok = CopyFileA(source, dest, FALSE);
ok(!retok && GetLastError() == ERROR_SHARING_VIOLATION, ok(!retok && GetLastError() == ERROR_SHARING_VIOLATION,
"copying to a write-locked file didn't fail (ret=%d, err=%d)\n", ret, GetLastError()); "copying to a write-locked file didn't fail (ret=%d, err=%d)\n", retok, GetLastError());
CloseHandle(hfile); CloseHandle(hfile);
/* copying to a r+w opened, w shared destination mostly succeeds */ /* copying to a r+w opened, w shared destination mostly succeeds */
@ -664,7 +664,7 @@ static void test_CopyFileA(void)
ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file, error %d\n", GetLastError()); ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file, error %d\n", GetLastError());
retok = CopyFileA(source, dest, FALSE); retok = CopyFileA(source, dest, FALSE);
ok(retok || broken(!retok && GetLastError() == ERROR_SHARING_VIOLATION) /* Win 9x */, ok(retok || broken(!retok && GetLastError() == ERROR_SHARING_VIOLATION) /* Win 9x */,
"copying to a r+w opened and w shared file failed (ret=%d, err=%d)\n", ret, GetLastError()); "copying to a r+w opened and w shared file failed (ret=%d, err=%d)\n", retok, GetLastError());
CloseHandle(hfile); CloseHandle(hfile);
/* copying to a delete-locked destination fails, even when the destination is delete-shared */ /* copying to a delete-locked destination fails, even when the destination is delete-shared */
@ -675,10 +675,18 @@ static void test_CopyFileA(void)
{ {
retok = CopyFileA(source, dest, FALSE); retok = CopyFileA(source, dest, FALSE);
ok(!retok && GetLastError() == ERROR_SHARING_VIOLATION, ok(!retok && GetLastError() == ERROR_SHARING_VIOLATION,
"copying to a delete-locked shared file didn't fail (ret=%d, err=%d)\n", ret, GetLastError()); "copying to a delete-locked shared file didn't fail (ret=%d, err=%d)\n", retok, GetLastError());
CloseHandle(hfile); CloseHandle(hfile);
} }
/* copy to a file that's opened the way Wine opens the source */
hfile = CreateFileA(dest, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, 0);
ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file, error %d\n", GetLastError());
retok = CopyFileA(source, dest, FALSE);
ok(retok || broken(GetLastError() == ERROR_SHARING_VIOLATION) /* Win 9x */,
"copying to a file opened the way Wine opens the source failed (ret=%d, err=%d)\n", retok, GetLastError());
CloseHandle(hfile);
/* make sure that destination has correct size */ /* make sure that destination has correct size */
hfile = CreateFileA(dest, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0); hfile = CreateFileA(dest, GENERIC_READ, FILE_SHARE_READ, NULL, OPEN_EXISTING, 0, 0);
ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file\n"); ok(hfile != INVALID_HANDLE_VALUE, "failed to open destination file\n");