2006-02-06 11:57:02 +01:00
|
|
|
/*
|
|
|
|
* Unit test suite
|
|
|
|
*
|
|
|
|
* Copyright 2006 Stefan Leichter
|
|
|
|
*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2006-02-06 11:57:02 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "wine/test.h"
|
|
|
|
#include "winbase.h"
|
2009-04-29 03:07:12 +02:00
|
|
|
#include <stdio.h>
|
2006-02-06 11:57:02 +01:00
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
static HINSTANCE hdll;
|
|
|
|
static BOOL (WINAPI * pGetVolumeNameForVolumeMountPointA)(LPCSTR, LPSTR, DWORD);
|
|
|
|
static BOOL (WINAPI * pGetVolumeNameForVolumeMountPointW)(LPCWSTR, LPWSTR, DWORD);
|
2008-01-04 14:31:55 +01:00
|
|
|
static HANDLE (WINAPI *pFindFirstVolumeA)(LPSTR,DWORD);
|
|
|
|
static BOOL (WINAPI *pFindNextVolumeA)(HANDLE,LPSTR,DWORD);
|
|
|
|
static BOOL (WINAPI *pFindVolumeClose)(HANDLE);
|
2008-10-15 17:24:28 +02:00
|
|
|
static UINT (WINAPI *pGetLogicalDriveStringsA)(UINT,LPSTR);
|
|
|
|
static UINT (WINAPI *pGetLogicalDriveStringsW)(UINT,LPWSTR);
|
2009-04-29 03:07:12 +02:00
|
|
|
static BOOL (WINAPI *pGetVolumeInformationA)(LPCSTR, LPSTR, DWORD, LPDWORD, LPDWORD, LPDWORD, LPSTR, DWORD);
|
2007-01-20 12:46:34 +01:00
|
|
|
|
|
|
|
/* ############################### */
|
|
|
|
|
2006-02-06 11:57:02 +01:00
|
|
|
static void test_query_dos_deviceA(void)
|
|
|
|
{
|
|
|
|
char drivestr[] = "a:";
|
2009-04-29 21:33:01 +02:00
|
|
|
char *p, *buffer, buffer2[2000];
|
2009-04-29 03:07:12 +02:00
|
|
|
DWORD ret, ret2, buflen=32768;
|
2007-11-11 16:05:09 +01:00
|
|
|
BOOL found = FALSE;
|
|
|
|
|
2009-04-29 21:33:01 +02:00
|
|
|
if (!pFindFirstVolumeA) {
|
|
|
|
win_skip("On win9x, HARDDISK and RAMDISK not present\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-04-29 03:07:12 +02:00
|
|
|
buffer = HeapAlloc( GetProcessHeap(), 0, buflen );
|
|
|
|
ret = QueryDosDeviceA( NULL, buffer, buflen );
|
|
|
|
ok(ret && GetLastError() != ERROR_INSUFFICIENT_BUFFER,
|
|
|
|
"QueryDosDevice buffer too small\n");
|
|
|
|
if (GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
|
|
|
|
HeapFree( GetProcessHeap(), 0, buffer );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
ok(ret, "QueryDosDeviceA failed to return list, last error %u\n", GetLastError());
|
|
|
|
if (ret) {
|
|
|
|
p = buffer;
|
|
|
|
for (;;) {
|
|
|
|
if (!strlen(p)) break;
|
|
|
|
ret2 = QueryDosDeviceA( p, buffer2, sizeof(buffer2) );
|
2009-04-29 21:33:01 +02:00
|
|
|
ok(ret2, "QueryDosDeviceA failed to return current mapping for %s, last error %u\n", p, GetLastError());
|
2009-04-29 03:07:12 +02:00
|
|
|
p += strlen(p) + 1;
|
|
|
|
if (ret <= (p-buffer)) break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-06 11:57:02 +01:00
|
|
|
for (;drivestr[0] <= 'z'; drivestr[0]++) {
|
2009-05-25 10:29:01 +02:00
|
|
|
/* Older W2K fails with ERROR_INSUFFICIENT_BUFFER when buflen is > 32767 */
|
2009-05-22 15:04:53 +02:00
|
|
|
ret = QueryDosDeviceA( drivestr, buffer, buflen - 1);
|
2006-02-06 11:57:02 +01:00
|
|
|
if(ret) {
|
|
|
|
for (p = buffer; *p; p++) *p = toupper(*p);
|
2007-11-11 16:05:09 +01:00
|
|
|
if (strstr(buffer, "HARDDISK") || strstr(buffer, "RAMDISK")) found = TRUE;
|
2006-02-06 11:57:02 +01:00
|
|
|
}
|
|
|
|
}
|
2008-10-23 20:24:49 +02:00
|
|
|
ok(found, "expected at least one devicename to contain HARDDISK or RAMDISK\n");
|
2009-04-29 03:07:12 +02:00
|
|
|
HeapFree( GetProcessHeap(), 0, buffer );
|
2006-02-06 11:57:02 +01:00
|
|
|
}
|
|
|
|
|
2008-01-04 14:31:55 +01:00
|
|
|
static void test_FindFirstVolume(void)
|
|
|
|
{
|
2008-04-16 23:30:19 +02:00
|
|
|
char volume[51];
|
2008-01-04 14:31:55 +01:00
|
|
|
HANDLE handle;
|
|
|
|
|
2008-01-15 11:37:28 +01:00
|
|
|
if (!pFindFirstVolumeA) {
|
|
|
|
skip("FindFirstVolumeA not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-01-04 14:31:55 +01:00
|
|
|
handle = pFindFirstVolumeA( volume, 0 );
|
|
|
|
ok( handle == INVALID_HANDLE_VALUE, "succeeded with short buffer\n" );
|
2008-03-22 13:09:57 +01:00
|
|
|
ok( GetLastError() == ERROR_MORE_DATA || /* XP */
|
|
|
|
GetLastError() == ERROR_FILENAME_EXCED_RANGE, /* Vista */
|
|
|
|
"wrong error %u\n", GetLastError() );
|
2008-01-04 14:31:55 +01:00
|
|
|
handle = pFindFirstVolumeA( volume, 49 );
|
|
|
|
ok( handle == INVALID_HANDLE_VALUE, "succeeded with short buffer\n" );
|
|
|
|
ok( GetLastError() == ERROR_FILENAME_EXCED_RANGE, "wrong error %u\n", GetLastError() );
|
2008-04-16 23:30:19 +02:00
|
|
|
handle = pFindFirstVolumeA( volume, 51 );
|
2008-01-04 14:31:55 +01:00
|
|
|
ok( handle != INVALID_HANDLE_VALUE, "failed err %u\n", GetLastError() );
|
|
|
|
if (handle != INVALID_HANDLE_VALUE)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
|
|
|
ok( strlen(volume) == 49, "bad volume name %s\n", volume );
|
|
|
|
ok( !memcmp( volume, "\\\\?\\Volume{", 11 ), "bad volume name %s\n", volume );
|
|
|
|
ok( !memcmp( volume + 47, "}\\", 2 ), "bad volume name %s\n", volume );
|
|
|
|
} while (pFindNextVolumeA( handle, volume, MAX_PATH ));
|
|
|
|
ok( GetLastError() == ERROR_NO_MORE_FILES, "wrong error %u\n", GetLastError() );
|
|
|
|
pFindVolumeClose( handle );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-07 13:08:31 +01:00
|
|
|
static void test_GetVolumeNameForVolumeMountPointA(void)
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
char volume[MAX_PATH], path[] = "c:\\";
|
2009-05-09 05:57:05 +02:00
|
|
|
DWORD len = sizeof(volume), reti;
|
|
|
|
char temp_path[MAX_PATH];
|
2007-01-07 13:08:31 +01:00
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
/* not present before w2k */
|
|
|
|
if (!pGetVolumeNameForVolumeMountPointA) {
|
|
|
|
skip("GetVolumeNameForVolumeMountPointA not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-09 05:57:05 +02:00
|
|
|
reti = GetTempPathA(MAX_PATH, temp_path);
|
|
|
|
ok(reti != 0, "GetTempPathA error %d\n", GetLastError());
|
|
|
|
ok(reti < MAX_PATH, "temp path should fit into MAX_PATH\n");
|
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(path, volume, 0);
|
2009-05-26 18:47:51 +02:00
|
|
|
ok(ret == FALSE, "GetVolumeNameForVolumeMountPointA succeeded\n");
|
|
|
|
ok(GetLastError() == ERROR_FILENAME_EXCED_RANGE ||
|
|
|
|
GetLastError() == ERROR_INVALID_PARAMETER, /* Vista */
|
|
|
|
"wrong error, last=%d\n", GetLastError());
|
2007-01-07 13:08:31 +01:00
|
|
|
|
|
|
|
if (0) { /* these crash on XP */
|
2007-01-20 12:46:34 +01:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(path, NULL, len);
|
2007-01-07 13:08:31 +01:00
|
|
|
ok(ret == FALSE, "GetVolumeNameForVolumeMountPointA succeeded\n");
|
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(NULL, volume, len);
|
2007-01-07 13:08:31 +01:00
|
|
|
ok(ret == FALSE, "GetVolumeNameForVolumeMountPointA succeeded\n");
|
|
|
|
}
|
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(path, volume, len);
|
2007-01-07 13:08:31 +01:00
|
|
|
ok(ret == TRUE, "GetVolumeNameForVolumeMountPointA failed\n");
|
2009-05-09 05:57:05 +02:00
|
|
|
ok(!strncmp( volume, "\\\\?\\Volume{", 11),
|
|
|
|
"GetVolumeNameForVolumeMountPointA failed to return valid string <%s>\n",
|
|
|
|
volume);
|
|
|
|
|
|
|
|
/* test with too small buffer */
|
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(path, volume, 10);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_FILENAME_EXCED_RANGE,
|
|
|
|
"GetVolumeNameForVolumeMountPointA failed, wrong error returned, was %d, should be ERROR_FILENAME_EXCED_RANGE\n",
|
|
|
|
GetLastError());
|
|
|
|
|
|
|
|
/* Try on a arbitrary directory */
|
2009-11-15 02:45:45 +01:00
|
|
|
/* On FAT filesystems it seems that GetLastError() is set to
|
|
|
|
ERROR_INVALID_FUNCTION. */
|
2009-05-09 05:57:05 +02:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(temp_path, volume, len);
|
2009-11-15 02:45:45 +01:00
|
|
|
ok(ret == FALSE && (GetLastError() == ERROR_NOT_A_REPARSE_POINT ||
|
|
|
|
GetLastError() == ERROR_INVALID_FUNCTION),
|
2009-05-09 05:57:05 +02:00
|
|
|
"GetVolumeNameForVolumeMountPointA failed on %s, last=%d\n",
|
|
|
|
temp_path, GetLastError());
|
|
|
|
|
2009-06-22 10:45:15 +02:00
|
|
|
/* Try on a nonexistent dos drive */
|
2009-05-09 05:57:05 +02:00
|
|
|
path[2] = 0;
|
|
|
|
for (;path[0] <= 'z'; path[0]++) {
|
|
|
|
ret = QueryDosDeviceA( path, volume, len);
|
|
|
|
if(!ret) break;
|
|
|
|
}
|
|
|
|
if (path[0] <= 'z')
|
|
|
|
{
|
|
|
|
path[2] = '\\';
|
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(path, volume, len);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_FILE_NOT_FOUND,
|
|
|
|
"GetVolumeNameForVolumeMountPointA failed on %s, last=%d\n",
|
|
|
|
path, GetLastError());
|
|
|
|
|
2009-06-22 10:45:15 +02:00
|
|
|
/* Try without trailing \ and on a nonexistent dos drive */
|
2009-05-09 05:57:05 +02:00
|
|
|
path[2] = 0;
|
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(path, volume, len);
|
|
|
|
ok(ret == FALSE && GetLastError() == ERROR_INVALID_NAME,
|
|
|
|
"GetVolumeNameForVolumeMountPointA failed on %s, last=%d\n",
|
|
|
|
path, GetLastError());
|
|
|
|
}
|
2007-01-07 13:08:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void test_GetVolumeNameForVolumeMountPointW(void)
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
WCHAR volume[MAX_PATH], path[] = {'c',':','\\',0};
|
|
|
|
DWORD len = sizeof(volume) / sizeof(WCHAR);
|
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
/* not present before w2k */
|
|
|
|
if (!pGetVolumeNameForVolumeMountPointW) {
|
|
|
|
skip("GetVolumeNameForVolumeMountPointW not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = pGetVolumeNameForVolumeMountPointW(path, volume, 0);
|
2009-05-26 18:47:51 +02:00
|
|
|
ok(ret == FALSE, "GetVolumeNameForVolumeMountPointA succeeded\n");
|
|
|
|
ok(GetLastError() == ERROR_FILENAME_EXCED_RANGE ||
|
|
|
|
GetLastError() == ERROR_INVALID_PARAMETER, /* Vista */
|
|
|
|
"wrong error, last=%d\n", GetLastError());
|
2007-01-07 13:08:31 +01:00
|
|
|
|
|
|
|
if (0) { /* these crash on XP */
|
2007-01-20 12:46:34 +01:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointW(path, NULL, len);
|
2007-01-07 13:08:31 +01:00
|
|
|
ok(ret == FALSE, "GetVolumeNameForVolumeMountPointW succeeded\n");
|
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointW(NULL, volume, len);
|
2007-01-07 13:08:31 +01:00
|
|
|
ok(ret == FALSE, "GetVolumeNameForVolumeMountPointW succeeded\n");
|
|
|
|
}
|
|
|
|
|
2007-01-20 12:46:34 +01:00
|
|
|
ret = pGetVolumeNameForVolumeMountPointW(path, volume, len);
|
2007-01-07 13:08:31 +01:00
|
|
|
ok(ret == TRUE, "GetVolumeNameForVolumeMountPointW failed\n");
|
|
|
|
}
|
|
|
|
|
2008-10-15 17:24:28 +02:00
|
|
|
static void test_GetLogicalDriveStringsA(void)
|
|
|
|
{
|
|
|
|
UINT size, size2;
|
|
|
|
char *buf, *ptr;
|
|
|
|
|
|
|
|
if(!pGetLogicalDriveStringsA) {
|
|
|
|
win_skip("GetLogicalDriveStringsA not available\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
size = pGetLogicalDriveStringsA(0, NULL);
|
|
|
|
ok(size%4 == 1, "size = %d\n", size);
|
|
|
|
|
|
|
|
buf = HeapAlloc(GetProcessHeap(), 0, size);
|
|
|
|
|
|
|
|
*buf = 0;
|
|
|
|
size2 = pGetLogicalDriveStringsA(2, buf);
|
|
|
|
ok(size2 == size, "size2 = %d\n", size2);
|
|
|
|
ok(!*buf, "buf changed\n");
|
|
|
|
|
|
|
|
size2 = pGetLogicalDriveStringsA(size, buf);
|
|
|
|
ok(size2 == size-1, "size2 = %d\n", size2);
|
|
|
|
|
|
|
|
for(ptr = buf; ptr < buf+size2; ptr += 4) {
|
2008-10-22 12:31:51 +02:00
|
|
|
ok(('A' <= *ptr && *ptr <= 'Z') ||
|
|
|
|
(broken('a' <= *ptr && *ptr <= 'z')), /* Win9x and WinMe */
|
|
|
|
"device name '%c' is not uppercase\n", *ptr);
|
2008-10-15 17:24:28 +02:00
|
|
|
ok(ptr[1] == ':', "ptr[1] = %c, expected ':'\n", ptr[1]);
|
|
|
|
ok(ptr[2] == '\\', "ptr[2] = %c expected '\\'\n", ptr[2]);
|
|
|
|
ok(!ptr[3], "ptr[3] = %c expected nullbyte\n", ptr[3]);
|
|
|
|
}
|
|
|
|
ok(!*ptr, "buf[size2] is not nullbyte\n");
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void test_GetLogicalDriveStringsW(void)
|
|
|
|
{
|
|
|
|
UINT size, size2;
|
|
|
|
WCHAR *buf, *ptr;
|
|
|
|
|
|
|
|
if(!pGetLogicalDriveStringsW) {
|
|
|
|
win_skip("GetLogicalDriveStringsW not available\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-10-22 13:01:25 +02:00
|
|
|
SetLastError(0xdeadbeef);
|
2008-10-15 17:24:28 +02:00
|
|
|
size = pGetLogicalDriveStringsW(0, NULL);
|
2008-10-22 13:01:25 +02:00
|
|
|
if (size == 0 && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED) {
|
|
|
|
win_skip("GetLogicalDriveStringsW not implemented\n");
|
|
|
|
return;
|
|
|
|
}
|
2008-10-15 17:24:28 +02:00
|
|
|
ok(size%4 == 1, "size = %d\n", size);
|
|
|
|
|
|
|
|
buf = HeapAlloc(GetProcessHeap(), 0, size*sizeof(WCHAR));
|
|
|
|
|
|
|
|
*buf = 0;
|
|
|
|
size2 = pGetLogicalDriveStringsW(2, buf);
|
|
|
|
ok(size2 == size, "size2 = %d\n", size2);
|
|
|
|
ok(!*buf, "buf changed\n");
|
|
|
|
|
|
|
|
size2 = pGetLogicalDriveStringsW(size, buf);
|
|
|
|
ok(size2 == size-1, "size2 = %d\n", size2);
|
|
|
|
|
|
|
|
for(ptr = buf; ptr < buf+size2; ptr += 4) {
|
|
|
|
ok('A' <= *ptr && *ptr <= 'Z', "device name '%c' is not uppercase\n", *ptr);
|
|
|
|
ok(ptr[1] == ':', "ptr[1] = %c, expected ':'\n", ptr[1]);
|
|
|
|
ok(ptr[2] == '\\', "ptr[2] = %c expected '\\'\n", ptr[2]);
|
|
|
|
ok(!ptr[3], "ptr[3] = %c expected nullbyte\n", ptr[3]);
|
|
|
|
}
|
|
|
|
ok(!*ptr, "buf[size2] is not nullbyte\n");
|
|
|
|
|
|
|
|
HeapFree(GetProcessHeap(), 0, buf);
|
|
|
|
}
|
|
|
|
|
2009-04-29 03:07:12 +02:00
|
|
|
static void test_GetVolumeInformationA(void)
|
|
|
|
{
|
|
|
|
BOOL ret;
|
|
|
|
UINT result;
|
|
|
|
char Root_Dir0[]="C:";
|
|
|
|
char Root_Dir1[]="C:\\";
|
|
|
|
char Root_Dir2[]="\\\\?\\C:\\";
|
|
|
|
char volume[MAX_PATH+1];
|
|
|
|
DWORD vol_name_size=MAX_PATH+1, vol_serial_num=-1, max_comp_len=0, fs_flags=0, fs_name_len=MAX_PATH+1;
|
|
|
|
char vol_name_buf[MAX_PATH+1], fs_name_buf[MAX_PATH+1];
|
|
|
|
char windowsdir[MAX_PATH+10];
|
2009-07-13 20:09:37 +02:00
|
|
|
char currentdir[MAX_PATH+1];
|
2009-04-29 03:07:12 +02:00
|
|
|
|
|
|
|
if (!pGetVolumeInformationA) {
|
|
|
|
win_skip("GetVolumeInformationA not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!pGetVolumeNameForVolumeMountPointA) {
|
|
|
|
win_skip("GetVolumeNameForVolumeMountPointA not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get windows drive letter and update strings for testing */
|
|
|
|
result = GetWindowsDirectory(windowsdir, sizeof(windowsdir));
|
|
|
|
ok(result < sizeof(windowsdir), "windowsdir is abnormally long!\n");
|
|
|
|
ok(result != 0, "GetWindowsDirectory: error %d\n", GetLastError());
|
|
|
|
Root_Dir0[0] = windowsdir[0];
|
|
|
|
Root_Dir1[0] = windowsdir[0];
|
|
|
|
Root_Dir2[4] = windowsdir[0];
|
|
|
|
|
|
|
|
/* get the unique volume name for the windows drive */
|
|
|
|
ret = pGetVolumeNameForVolumeMountPointA(Root_Dir1, volume, MAX_PATH);
|
|
|
|
ok(ret == TRUE, "GetVolumeNameForVolumeMountPointA failed\n");
|
|
|
|
|
2009-07-13 20:09:37 +02:00
|
|
|
result = GetCurrentDirectory(MAX_PATH, currentdir);
|
|
|
|
ok(result, "GetCurrentDirectory: error %d\n", GetLastError());
|
|
|
|
|
2009-07-13 20:13:54 +02:00
|
|
|
/* **** now start the tests **** */
|
|
|
|
/* check for error on no trailing \ */
|
|
|
|
if (result > 3)
|
|
|
|
{
|
|
|
|
ret = pGetVolumeInformationA(Root_Dir0, vol_name_buf, vol_name_size, NULL,
|
|
|
|
NULL, NULL, fs_name_buf, fs_name_len);
|
|
|
|
ok(!ret && GetLastError() == ERROR_INVALID_NAME,
|
|
|
|
"GetVolumeInformationA w/o '\\' did not fail, last error %u\n", GetLastError());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
skip("Running on a root directory\n");
|
|
|
|
|
2009-07-13 20:09:37 +02:00
|
|
|
/* check for error on no trailing \ when current dir is root dir */
|
|
|
|
ret = SetCurrentDirectory(Root_Dir1);
|
|
|
|
ok(ret, "SetCurrentDirectory: error %d\n", GetLastError());
|
|
|
|
ret = pGetVolumeInformationA(Root_Dir0, vol_name_buf, vol_name_size, NULL,
|
|
|
|
NULL, NULL, fs_name_buf, fs_name_len);
|
|
|
|
todo_wine
|
|
|
|
ok(ret, "GetVolumeInformationA failed, last error %u\n", GetLastError());
|
|
|
|
|
|
|
|
/* check for error on no trailing \ when current dir is windows dir */
|
|
|
|
ret = SetCurrentDirectory(windowsdir);
|
|
|
|
ok(ret, "SetCurrentDirectory: error %d\n", GetLastError());
|
|
|
|
ret = pGetVolumeInformationA(Root_Dir0, vol_name_buf, vol_name_size, NULL,
|
|
|
|
NULL, NULL, fs_name_buf, fs_name_len);
|
|
|
|
ok(!ret && GetLastError() == ERROR_INVALID_NAME,
|
|
|
|
"GetVolumeInformationA did not fail, last error %u\n", GetLastError());
|
|
|
|
|
|
|
|
/* reset current directory */
|
|
|
|
ret = SetCurrentDirectory(currentdir);
|
|
|
|
ok(ret, "SetCurrentDirectory: error %d\n", GetLastError());
|
|
|
|
|
2009-04-29 03:07:12 +02:00
|
|
|
/* try null root directory to return "root of the current directory" */
|
|
|
|
ret = pGetVolumeInformationA(NULL, vol_name_buf, vol_name_size, NULL,
|
|
|
|
NULL, NULL, fs_name_buf, fs_name_len);
|
|
|
|
ok(ret, "GetVolumeInformationA failed on null root dir, last error %u\n", GetLastError());
|
|
|
|
|
|
|
|
/* Try normal drive letter with trailing \ */
|
|
|
|
ret = pGetVolumeInformationA(Root_Dir1, vol_name_buf, vol_name_size,
|
|
|
|
&vol_serial_num, &max_comp_len, &fs_flags, fs_name_buf, fs_name_len);
|
|
|
|
ok(ret, "GetVolumeInformationA failed, root=%s, last error=%u\n", Root_Dir1, GetLastError());
|
|
|
|
|
|
|
|
/* try again with dirve letter and the "disable parsing" prefix */
|
|
|
|
ret = pGetVolumeInformationA(Root_Dir2, vol_name_buf, vol_name_size,
|
|
|
|
&vol_serial_num, &max_comp_len, &fs_flags, fs_name_buf, fs_name_len);
|
|
|
|
todo_wine ok(ret, "GetVolumeInformationA failed, root=%s, last error=%u\n", Root_Dir2, GetLastError());
|
|
|
|
|
|
|
|
/* try again with unique voluem name */
|
|
|
|
ret = pGetVolumeInformationA(volume, vol_name_buf, vol_name_size,
|
|
|
|
&vol_serial_num, &max_comp_len, &fs_flags, fs_name_buf, fs_name_len);
|
|
|
|
todo_wine ok(ret, "GetVolumeInformationA failed, root=%s, last error=%u\n", volume, GetLastError());
|
|
|
|
|
|
|
|
/* try again with device name space */
|
|
|
|
Root_Dir2[2] = '.';
|
|
|
|
ret = pGetVolumeInformationA(Root_Dir2, vol_name_buf, vol_name_size,
|
|
|
|
&vol_serial_num, &max_comp_len, &fs_flags, fs_name_buf, fs_name_len);
|
|
|
|
todo_wine ok(ret, "GetVolumeInformationA failed, root=%s, last error=%u\n", Root_Dir2, GetLastError());
|
|
|
|
|
|
|
|
/* try again with a directory off the root - should generate error */
|
2009-04-29 21:33:01 +02:00
|
|
|
if (windowsdir[strlen(windowsdir)-1] != '\\') strcat(windowsdir, "\\");
|
2009-04-29 03:07:12 +02:00
|
|
|
ret = pGetVolumeInformationA(windowsdir, vol_name_buf, vol_name_size,
|
|
|
|
&vol_serial_num, &max_comp_len, &fs_flags, fs_name_buf, fs_name_len);
|
|
|
|
todo_wine ok(!ret && GetLastError()==ERROR_DIR_NOT_ROOT,
|
|
|
|
"GetVolumeInformationA failed, root=%s, last error=%u\n", windowsdir, GetLastError());
|
|
|
|
}
|
|
|
|
|
2009-04-29 03:08:36 +02:00
|
|
|
/* Test to check that unique volume name from windows dir mount point */
|
|
|
|
/* matches at least one of the unique volume names returned from the */
|
|
|
|
/* FindFirstVolumeA/FindNextVolumeA list. */
|
|
|
|
static void test_enum_vols(void)
|
|
|
|
{
|
|
|
|
DWORD ret;
|
|
|
|
HANDLE hFind = INVALID_HANDLE_VALUE;
|
|
|
|
char Volume_1[MAX_PATH] = {0};
|
|
|
|
char Volume_2[MAX_PATH] = {0};
|
|
|
|
char path[] = "c:\\";
|
|
|
|
BOOL found = FALSE;
|
|
|
|
char windowsdir[MAX_PATH];
|
|
|
|
|
|
|
|
if (!pGetVolumeNameForVolumeMountPointA) {
|
|
|
|
win_skip("GetVolumeNameForVolumeMountPointA not found\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*get windows drive letter and update strings for testing */
|
|
|
|
ret = GetWindowsDirectory( windowsdir, sizeof(windowsdir) );
|
|
|
|
ok(ret < sizeof(windowsdir), "windowsdir is abnormally long!\n");
|
|
|
|
ok(ret != 0, "GetWindowsDirecory: error %d\n", GetLastError());
|
|
|
|
path[0] = windowsdir[0];
|
|
|
|
|
|
|
|
/* get the unique volume name for the windows drive */
|
|
|
|
ret = pGetVolumeNameForVolumeMountPointA( path, Volume_1, MAX_PATH );
|
|
|
|
ok(ret == TRUE, "GetVolumeNameForVolumeMountPointA failed\n");
|
|
|
|
ok(strlen(Volume_1) == 49, "GetVolumeNameForVolumeMountPointA returned wrong length name %s\n", Volume_1);
|
|
|
|
|
|
|
|
/* get first unique volume name of list */
|
|
|
|
hFind = pFindFirstVolumeA( Volume_2, MAX_PATH );
|
|
|
|
ok(hFind != INVALID_HANDLE_VALUE, "FindFirstVolume failed, err=%u\n",
|
|
|
|
GetLastError());
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
/* validate correct length of unique volume name */
|
|
|
|
ok(strlen(Volume_2) == 49, "Find[First/Next]Volume returned wrong length name %s\n", Volume_1);
|
|
|
|
if (memcmp(Volume_1, Volume_2, 49) == 0)
|
|
|
|
{
|
|
|
|
found = TRUE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (pFindNextVolumeA( hFind, Volume_2, MAX_PATH ));
|
|
|
|
ok(found, "volume name %s not found by Find[First/Next]Volume\n", Volume_1);
|
|
|
|
pFindVolumeClose( hFind );
|
|
|
|
}
|
|
|
|
|
2006-02-06 11:57:02 +01:00
|
|
|
START_TEST(volume)
|
|
|
|
{
|
2007-01-20 12:46:34 +01:00
|
|
|
hdll = GetModuleHandleA("kernel32.dll");
|
|
|
|
pGetVolumeNameForVolumeMountPointA = (void *) GetProcAddress(hdll, "GetVolumeNameForVolumeMountPointA");
|
|
|
|
pGetVolumeNameForVolumeMountPointW = (void *) GetProcAddress(hdll, "GetVolumeNameForVolumeMountPointW");
|
2008-01-04 14:31:55 +01:00
|
|
|
pFindFirstVolumeA = (void *) GetProcAddress(hdll, "FindFirstVolumeA");
|
|
|
|
pFindNextVolumeA = (void *) GetProcAddress(hdll, "FindNextVolumeA");
|
|
|
|
pFindVolumeClose = (void *) GetProcAddress(hdll, "FindVolumeClose");
|
2008-10-15 17:24:28 +02:00
|
|
|
pGetLogicalDriveStringsA = (void *) GetProcAddress(hdll, "GetLogicalDriveStringsA");
|
|
|
|
pGetLogicalDriveStringsW = (void *) GetProcAddress(hdll, "GetLogicalDriveStringsW");
|
2009-04-29 03:07:12 +02:00
|
|
|
pGetVolumeInformationA = (void *) GetProcAddress(hdll, "GetVolumeInformationA");
|
2007-01-20 12:46:34 +01:00
|
|
|
|
2006-02-06 11:57:02 +01:00
|
|
|
test_query_dos_deviceA();
|
2008-01-04 14:31:55 +01:00
|
|
|
test_FindFirstVolume();
|
2007-01-07 13:08:31 +01:00
|
|
|
test_GetVolumeNameForVolumeMountPointA();
|
|
|
|
test_GetVolumeNameForVolumeMountPointW();
|
2008-10-15 17:24:28 +02:00
|
|
|
test_GetLogicalDriveStringsA();
|
|
|
|
test_GetLogicalDriveStringsW();
|
2009-04-29 03:07:12 +02:00
|
|
|
test_GetVolumeInformationA();
|
2009-04-29 03:08:36 +02:00
|
|
|
test_enum_vols();
|
2006-02-06 11:57:02 +01:00
|
|
|
}
|