2002-03-22 02:00:17 +01:00
|
|
|
/*
|
|
|
|
* Unit test suite for directory functions.
|
|
|
|
*
|
|
|
|
* Copyright 2002 Dmitry Timoshkov
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "wine/test.h"
|
2002-04-01 23:00:26 +02:00
|
|
|
#include "winbase.h"
|
2002-08-27 03:56:08 +02:00
|
|
|
#include "winerror.h"
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
/* If you change something in these tests, please do the same
|
|
|
|
* for GetSystemDirectory tests.
|
|
|
|
*/
|
|
|
|
static void test_GetWindowsDirectoryA(void)
|
|
|
|
{
|
|
|
|
UINT len, len_with_null;
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
|
2002-12-12 04:54:23 +01:00
|
|
|
len_with_null = GetWindowsDirectoryA(NULL, 0);
|
|
|
|
ok(len_with_null <= MAX_PATH, "should fit into MAX_PATH");
|
|
|
|
|
2002-03-22 02:00:17 +01:00
|
|
|
lstrcpyA(buf, "foo");
|
|
|
|
len_with_null = GetWindowsDirectoryA(buf, 1);
|
|
|
|
ok(lstrcmpA(buf, "foo") == 0, "should not touch the buffer");
|
|
|
|
|
|
|
|
lstrcpyA(buf, "foo");
|
|
|
|
len = GetWindowsDirectoryA(buf, len_with_null - 1);
|
|
|
|
ok(lstrcmpA(buf, "foo") == 0, "should not touch the buffer");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null, "GetWindowsDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null);
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
lstrcpyA(buf, "foo");
|
|
|
|
len = GetWindowsDirectoryA(buf, len_with_null);
|
|
|
|
ok(lstrcmpA(buf, "foo") != 0, "should touch the buffer");
|
2002-12-18 03:22:51 +01:00
|
|
|
ok(len == strlen(buf), "returned length should be equal to the length of string");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null-1, "GetWindowsDirectoryA returned %d, expected %d",
|
|
|
|
len, len_with_null-1);
|
2002-03-22 02:00:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_GetWindowsDirectoryW(void)
|
|
|
|
{
|
|
|
|
UINT len, len_with_null;
|
|
|
|
WCHAR buf[MAX_PATH];
|
|
|
|
static const WCHAR fooW[] = {'f','o','o',0};
|
|
|
|
|
2002-12-12 04:54:23 +01:00
|
|
|
len_with_null = GetWindowsDirectoryW(NULL, 0);
|
|
|
|
if (len_with_null==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
return;
|
|
|
|
ok(len_with_null <= MAX_PATH, "should fit into MAX_PATH");
|
|
|
|
|
2002-03-22 02:00:17 +01:00
|
|
|
lstrcpyW(buf, fooW);
|
2002-12-12 04:54:23 +01:00
|
|
|
len = GetWindowsDirectoryW(buf, 1);
|
2002-03-22 02:00:17 +01:00
|
|
|
ok(lstrcmpW(buf, fooW) == 0, "should not touch the buffer");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null, "GetWindowsDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null);
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
lstrcpyW(buf, fooW);
|
|
|
|
len = GetWindowsDirectoryW(buf, len_with_null - 1);
|
|
|
|
ok(lstrcmpW(buf, fooW) == 0, "should not touch the buffer");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null, "GetWindowsDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null);
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
lstrcpyW(buf, fooW);
|
|
|
|
len = GetWindowsDirectoryW(buf, len_with_null);
|
|
|
|
ok(lstrcmpW(buf, fooW) != 0, "should touch the buffer");
|
|
|
|
ok(len == lstrlenW(buf), "returned length should be equal to the length of string");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null-1, "GetWindowsDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null-1);
|
2002-03-22 02:00:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* If you change something in these tests, please do the same
|
|
|
|
* for GetWindowsDirectory tests.
|
|
|
|
*/
|
|
|
|
static void test_GetSystemDirectoryA(void)
|
|
|
|
{
|
|
|
|
UINT len, len_with_null;
|
|
|
|
char buf[MAX_PATH];
|
|
|
|
|
2002-12-12 04:54:23 +01:00
|
|
|
len_with_null = GetSystemDirectoryA(NULL, 0);
|
|
|
|
ok(len_with_null <= MAX_PATH, "should fit into MAX_PATH");
|
|
|
|
|
2002-03-22 02:00:17 +01:00
|
|
|
lstrcpyA(buf, "foo");
|
2002-12-12 04:54:23 +01:00
|
|
|
len = GetSystemDirectoryA(buf, 1);
|
2002-03-22 02:00:17 +01:00
|
|
|
ok(lstrcmpA(buf, "foo") == 0, "should not touch the buffer");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null, "GetSystemDirectoryA returned %d, expected %d",
|
|
|
|
len, len_with_null);
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
lstrcpyA(buf, "foo");
|
|
|
|
len = GetSystemDirectoryA(buf, len_with_null - 1);
|
|
|
|
ok(lstrcmpA(buf, "foo") == 0, "should not touch the buffer");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null, "GetSystemDirectoryA returned %d, expected %d",
|
|
|
|
len, len_with_null);
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
lstrcpyA(buf, "foo");
|
|
|
|
len = GetSystemDirectoryA(buf, len_with_null);
|
|
|
|
ok(lstrcmpA(buf, "foo") != 0, "should touch the buffer");
|
2002-12-18 03:22:51 +01:00
|
|
|
ok(len == strlen(buf), "returned length should be equal to the length of string");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null-1, "GetSystemDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null-1);
|
2002-03-22 02:00:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_GetSystemDirectoryW(void)
|
|
|
|
{
|
|
|
|
UINT len, len_with_null;
|
|
|
|
WCHAR buf[MAX_PATH];
|
|
|
|
static const WCHAR fooW[] = {'f','o','o',0};
|
|
|
|
|
2002-12-12 04:54:23 +01:00
|
|
|
len_with_null = GetSystemDirectoryW(NULL, 0);
|
|
|
|
if (len_with_null==0 && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
return;
|
|
|
|
ok(len_with_null <= MAX_PATH, "should fit into MAX_PATH");
|
|
|
|
|
2002-03-22 02:00:17 +01:00
|
|
|
lstrcpyW(buf, fooW);
|
2002-12-12 04:54:23 +01:00
|
|
|
len = GetSystemDirectoryW(buf, 1);
|
2002-03-22 02:00:17 +01:00
|
|
|
ok(lstrcmpW(buf, fooW) == 0, "should not touch the buffer");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null, "GetSystemDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null);
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
lstrcpyW(buf, fooW);
|
|
|
|
len = GetSystemDirectoryW(buf, len_with_null - 1);
|
|
|
|
ok(lstrcmpW(buf, fooW) == 0, "should not touch the buffer");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null, "GetSystemDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null);
|
2002-03-22 02:00:17 +01:00
|
|
|
|
|
|
|
lstrcpyW(buf, fooW);
|
|
|
|
len = GetSystemDirectoryW(buf, len_with_null);
|
|
|
|
ok(lstrcmpW(buf, fooW) != 0, "should touch the buffer");
|
|
|
|
ok(len == lstrlenW(buf), "returned length should be equal to the length of string");
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(len == len_with_null-1, "GetSystemDirectoryW returned %d, expected %d",
|
|
|
|
len, len_with_null-1);
|
2002-03-22 02:00:17 +01:00
|
|
|
}
|
|
|
|
|
2002-08-27 03:56:08 +02:00
|
|
|
static void test_CreateDirectoryA(void)
|
|
|
|
{
|
|
|
|
char tmpdir[MAX_PATH];
|
|
|
|
BOOL ret;
|
|
|
|
|
|
|
|
ret = CreateDirectoryA(NULL, NULL);
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(ret == FALSE && (GetLastError() == ERROR_PATH_NOT_FOUND ||
|
|
|
|
GetLastError() == ERROR_INVALID_PARAMETER),
|
|
|
|
"CreateDirectoryA(NULL,NULL): ret=%d error=%ld",ret,GetLastError());
|
2002-08-27 03:56:08 +02:00
|
|
|
|
|
|
|
ret = CreateDirectoryA("", NULL);
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(ret == FALSE && (GetLastError() == ERROR_BAD_PATHNAME ||
|
|
|
|
GetLastError() == ERROR_PATH_NOT_FOUND),
|
|
|
|
"CreateDirectoryA(\"\",NULL): ret=%d error=%ld",ret,GetLastError());
|
2002-08-27 03:56:08 +02:00
|
|
|
|
|
|
|
ret = GetSystemDirectoryA(tmpdir, MAX_PATH);
|
|
|
|
ok(ret < MAX_PATH, "System directory should fit into MAX_PATH");
|
|
|
|
|
|
|
|
ret = SetCurrentDirectoryA(tmpdir);
|
|
|
|
ok(ret == TRUE, "could not chdir to the System directory");
|
|
|
|
|
|
|
|
ret = CreateDirectoryA(".", NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_ALREADY_EXISTS, "should not create existing path");
|
|
|
|
|
|
|
|
ret = CreateDirectoryA("..", NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_ALREADY_EXISTS, "should not create existing path");
|
|
|
|
|
|
|
|
GetTempPathA(MAX_PATH, tmpdir);
|
|
|
|
tmpdir[3] = 0; /* truncate the path */
|
|
|
|
ret = CreateDirectoryA(tmpdir, NULL);
|
2002-12-12 04:54:23 +01:00
|
|
|
ok(ret == FALSE && (GetLastError() == ERROR_ALREADY_EXISTS ||
|
|
|
|
GetLastError() == ERROR_ACCESS_DENIED),
|
|
|
|
"CreateDirectoryA(drive_root): ret=%d error=%ld",ret,GetLastError());
|
2002-08-27 03:56:08 +02:00
|
|
|
|
|
|
|
GetTempPathA(MAX_PATH, tmpdir);
|
|
|
|
lstrcatA(tmpdir, "Please Remove Me");
|
|
|
|
ret = CreateDirectoryA(tmpdir, NULL);
|
|
|
|
ok(ret == TRUE, "CreateDirectoryA should always succeed");
|
|
|
|
|
|
|
|
ret = CreateDirectoryA(tmpdir, NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_ALREADY_EXISTS, "should not create existing path");
|
|
|
|
|
|
|
|
ret = RemoveDirectoryA(tmpdir);
|
|
|
|
ok(ret == TRUE, "RemoveDirectoryA should always succeed");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_CreateDirectoryW(void)
|
|
|
|
{
|
|
|
|
WCHAR tmpdir[MAX_PATH];
|
|
|
|
BOOL ret;
|
|
|
|
static const WCHAR empty_strW[] = { 0 };
|
|
|
|
static const WCHAR tmp_dir_name[] = {'P','l','e','a','s','e',' ','R','e','m','o','v','e',' ','M','e',0};
|
|
|
|
static const WCHAR dotW[] = {'.',0};
|
|
|
|
static const WCHAR dotdotW[] = {'.','.',0};
|
|
|
|
|
|
|
|
ret = CreateDirectoryW(NULL, NULL);
|
2002-12-12 04:54:23 +01:00
|
|
|
if (!ret && GetLastError()==ERROR_CALL_NOT_IMPLEMENTED)
|
|
|
|
return;
|
2002-08-27 03:56:08 +02:00
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_PATH_NOT_FOUND, "should not create NULL path");
|
|
|
|
|
|
|
|
ret = CreateDirectoryW(empty_strW, NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_PATH_NOT_FOUND, "should not create empty path");
|
|
|
|
|
|
|
|
ret = GetSystemDirectoryW(tmpdir, MAX_PATH);
|
|
|
|
ok(ret < MAX_PATH, "System directory should fit into MAX_PATH");
|
|
|
|
|
|
|
|
ret = SetCurrentDirectoryW(tmpdir);
|
|
|
|
ok(ret == TRUE, "could not chdir to the System directory");
|
|
|
|
|
|
|
|
ret = CreateDirectoryW(dotW, NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_ALREADY_EXISTS, "should not create existing path");
|
|
|
|
|
|
|
|
ret = CreateDirectoryW(dotdotW, NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_ALREADY_EXISTS, "should not create existing path");
|
|
|
|
|
|
|
|
GetTempPathW(MAX_PATH, tmpdir);
|
|
|
|
tmpdir[3] = 0; /* truncate the path */
|
|
|
|
ret = CreateDirectoryW(tmpdir, NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_ACCESS_DENIED, "should deny access to the drive root");
|
|
|
|
|
|
|
|
GetTempPathW(MAX_PATH, tmpdir);
|
|
|
|
lstrcatW(tmpdir, tmp_dir_name);
|
|
|
|
ret = CreateDirectoryW(tmpdir, NULL);
|
|
|
|
ok(ret == TRUE, "CreateDirectoryW should always succeed");
|
|
|
|
|
|
|
|
ret = CreateDirectoryW(tmpdir, NULL);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_ALREADY_EXISTS, "should not create existing path");
|
|
|
|
|
|
|
|
ret = RemoveDirectoryW(tmpdir);
|
|
|
|
ok(ret == TRUE, "RemoveDirectoryW should always succeed");
|
|
|
|
}
|
|
|
|
|
2002-03-22 02:00:17 +01:00
|
|
|
START_TEST(directory)
|
|
|
|
{
|
|
|
|
test_GetWindowsDirectoryA();
|
|
|
|
test_GetWindowsDirectoryW();
|
2002-08-27 03:56:08 +02:00
|
|
|
|
2002-03-22 02:00:17 +01:00
|
|
|
test_GetSystemDirectoryA();
|
|
|
|
test_GetSystemDirectoryW();
|
2002-08-27 03:56:08 +02:00
|
|
|
|
|
|
|
test_CreateDirectoryA();
|
|
|
|
test_CreateDirectoryW();
|
2002-03-22 02:00:17 +01:00
|
|
|
}
|