2006-06-13 19:13:32 +02:00
/*
* Devinst tests
*
* Copyright 2006 Christian Gmeiner
*
* 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 . , 51 Franklin St , Fifth Floor , Boston , MA 02110 - 1301 , USA
*/
# include <stdarg.h>
2007-10-11 23:06:06 +02:00
# include <stdio.h>
2011-09-27 00:15:07 +02:00
2006-06-13 19:13:32 +02:00
# include "windef.h"
# include "winbase.h"
# include "wingdi.h"
# include "winuser.h"
# include "winreg.h"
2006-09-09 13:25:30 +02:00
# include "guiddef.h"
2006-06-13 19:13:32 +02:00
# include "setupapi.h"
# include "wine/test.h"
2010-10-12 21:34:24 +02:00
static BOOL is_wow64 ;
2006-08-15 17:40:31 +02:00
/* function pointers */
2007-09-20 02:45:12 +02:00
static HDEVINFO ( WINAPI * pSetupDiCreateDeviceInfoList ) ( GUID * , HWND ) ;
2006-08-15 17:40:31 +02:00
static HDEVINFO ( WINAPI * pSetupDiCreateDeviceInfoListExW ) ( GUID * , HWND , PCWSTR , PVOID ) ;
2007-09-21 20:34:03 +02:00
static BOOL ( WINAPI * pSetupDiCreateDeviceInterfaceA ) ( HDEVINFO , PSP_DEVINFO_DATA , const GUID * , PCSTR , DWORD , PSP_DEVICE_INTERFACE_DATA ) ;
2007-10-12 17:24:27 +02:00
static BOOL ( WINAPI * pSetupDiCallClassInstaller ) ( DI_FUNCTION , HDEVINFO , PSP_DEVINFO_DATA ) ;
2006-08-15 17:40:31 +02:00
static BOOL ( WINAPI * pSetupDiDestroyDeviceInfoList ) ( HDEVINFO ) ;
2007-09-20 02:45:12 +02:00
static BOOL ( WINAPI * pSetupDiEnumDeviceInfo ) ( HDEVINFO , DWORD , PSP_DEVINFO_DATA ) ;
2007-09-21 20:34:03 +02:00
static BOOL ( WINAPI * pSetupDiEnumDeviceInterfaces ) ( HDEVINFO , PSP_DEVINFO_DATA , const GUID * , DWORD , PSP_DEVICE_INTERFACE_DATA ) ;
2010-09-11 23:15:19 +02:00
static BOOL ( WINAPI * pSetupDiGetINFClassA ) ( PCSTR , LPGUID , PSTR , DWORD , PDWORD ) ;
2007-10-11 23:06:06 +02:00
static BOOL ( WINAPI * pSetupDiInstallClassA ) ( HWND , PCSTR , DWORD , HSPFILEQ ) ;
2006-09-09 13:25:30 +02:00
static HKEY ( WINAPI * pSetupDiOpenClassRegKeyExA ) ( GUID * , REGSAM , DWORD , PCSTR , PVOID ) ;
2007-10-12 17:24:27 +02:00
static HKEY ( WINAPI * pSetupDiOpenDevRegKey ) ( HDEVINFO , PSP_DEVINFO_DATA , DWORD , DWORD , DWORD , REGSAM ) ;
static HKEY ( WINAPI * pSetupDiCreateDevRegKeyW ) ( HDEVINFO , PSP_DEVINFO_DATA , DWORD , DWORD , DWORD , HINF , PCWSTR ) ;
2007-09-20 02:45:12 +02:00
static BOOL ( WINAPI * pSetupDiCreateDeviceInfoA ) ( HDEVINFO , PCSTR , GUID * , PCSTR , HWND , DWORD , PSP_DEVINFO_DATA ) ;
2008-04-17 18:28:04 +02:00
static BOOL ( WINAPI * pSetupDiCreateDeviceInfoW ) ( HDEVINFO , PCWSTR , GUID * , PCWSTR , HWND , DWORD , PSP_DEVINFO_DATA ) ;
2007-09-20 02:46:11 +02:00
static BOOL ( WINAPI * pSetupDiGetDeviceInstanceIdA ) ( HDEVINFO , PSP_DEVINFO_DATA , PSTR , DWORD , PDWORD ) ;
2007-09-21 20:38:33 +02:00
static BOOL ( WINAPI * pSetupDiGetDeviceInterfaceDetailA ) ( HDEVINFO , PSP_DEVICE_INTERFACE_DATA , PSP_DEVICE_INTERFACE_DETAIL_DATA_A , DWORD , PDWORD , PSP_DEVINFO_DATA ) ;
2008-03-28 12:17:06 +01:00
static BOOL ( WINAPI * pSetupDiGetDeviceInterfaceDetailW ) ( HDEVINFO , PSP_DEVICE_INTERFACE_DATA , PSP_DEVICE_INTERFACE_DETAIL_DATA_W , DWORD , PDWORD , PSP_DEVINFO_DATA ) ;
2007-09-20 18:16:01 +02:00
static BOOL ( WINAPI * pSetupDiRegisterDeviceInfo ) ( HDEVINFO , PSP_DEVINFO_DATA , DWORD , PSP_DETSIG_CMPPROC , PVOID , PSP_DEVINFO_DATA ) ;
2013-09-23 00:37:16 +02:00
static HDEVINFO ( WINAPI * pSetupDiGetClassDevsA ) ( const GUID * , LPCSTR , HWND , DWORD ) ;
static HDEVINFO ( WINAPI * pSetupDiGetClassDevsW ) ( const GUID * , LPCWSTR , HWND , DWORD ) ;
2008-04-17 18:28:04 +02:00
static BOOL ( WINAPI * pSetupDiSetDeviceRegistryPropertyA ) ( HDEVINFO , PSP_DEVINFO_DATA , DWORD , const BYTE * , DWORD ) ;
static BOOL ( WINAPI * pSetupDiSetDeviceRegistryPropertyW ) ( HDEVINFO , PSP_DEVINFO_DATA , DWORD , const BYTE * , DWORD ) ;
static BOOL ( WINAPI * pSetupDiGetDeviceRegistryPropertyA ) ( HDEVINFO , PSP_DEVINFO_DATA , DWORD , PDWORD , PBYTE , DWORD , PDWORD ) ;
static BOOL ( WINAPI * pSetupDiGetDeviceRegistryPropertyW ) ( HDEVINFO , PSP_DEVINFO_DATA , DWORD , PDWORD , PBYTE , DWORD , PDWORD ) ;
2016-12-07 11:03:01 +01:00
static BOOL ( WINAPI * pSetupDiRemoveDevice ) ( HDEVINFO , PSP_DEVINFO_DATA ) ;
static BOOL ( WINAPI * pSetupDiRemoveDeviceInterface ) ( HDEVINFO , PSP_DEVICE_INTERFACE_DATA ) ;
2010-10-12 21:34:24 +02:00
static BOOL ( WINAPI * pIsWow64Process ) ( HANDLE , PBOOL ) ;
2006-08-15 17:40:31 +02:00
2008-05-26 11:45:25 +02:00
/* This is a unique guid for testing purposes */
static GUID guid = { 0x6a55b5a4 , 0x3f65 , 0x11db , { 0xb7 , 0x04 , 0x00 , 0x11 , 0x95 , 0x5c , 0x2b , 0xdb } } ;
2006-08-15 17:40:31 +02:00
static void init_function_pointers ( void )
{
2010-10-12 21:34:24 +02:00
HMODULE hSetupAPI = GetModuleHandleA ( " setupapi.dll " ) ;
HMODULE hKernel32 = GetModuleHandleA ( " kernel32.dll " ) ;
2006-08-15 17:40:31 +02:00
2007-09-20 02:45:12 +02:00
pSetupDiCreateDeviceInfoA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiCreateDeviceInfoA " ) ;
2008-04-17 18:28:04 +02:00
pSetupDiCreateDeviceInfoW = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiCreateDeviceInfoW " ) ;
2007-09-20 02:45:12 +02:00
pSetupDiCreateDeviceInfoList = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiCreateDeviceInfoList " ) ;
2007-07-31 09:30:55 +02:00
pSetupDiCreateDeviceInfoListExW = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiCreateDeviceInfoListExW " ) ;
2007-09-21 20:34:03 +02:00
pSetupDiCreateDeviceInterfaceA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiCreateDeviceInterfaceA " ) ;
2007-07-31 09:30:55 +02:00
pSetupDiDestroyDeviceInfoList = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiDestroyDeviceInfoList " ) ;
2007-10-12 17:24:27 +02:00
pSetupDiCallClassInstaller = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiCallClassInstaller " ) ;
2007-09-20 02:45:12 +02:00
pSetupDiEnumDeviceInfo = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiEnumDeviceInfo " ) ;
2007-09-21 20:34:03 +02:00
pSetupDiEnumDeviceInterfaces = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiEnumDeviceInterfaces " ) ;
2007-09-20 02:46:11 +02:00
pSetupDiGetDeviceInstanceIdA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetDeviceInstanceIdA " ) ;
2007-09-21 20:38:33 +02:00
pSetupDiGetDeviceInterfaceDetailA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetDeviceInterfaceDetailA " ) ;
2008-03-28 12:17:06 +01:00
pSetupDiGetDeviceInterfaceDetailW = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetDeviceInterfaceDetailW " ) ;
2007-10-11 23:06:06 +02:00
pSetupDiInstallClassA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiInstallClassA " ) ;
2007-07-31 09:30:55 +02:00
pSetupDiOpenClassRegKeyExA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiOpenClassRegKeyExA " ) ;
2007-10-12 17:24:27 +02:00
pSetupDiOpenDevRegKey = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiOpenDevRegKey " ) ;
pSetupDiCreateDevRegKeyW = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiCreateDevRegKeyW " ) ;
2007-09-20 18:16:01 +02:00
pSetupDiRegisterDeviceInfo = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiRegisterDeviceInfo " ) ;
2008-03-28 18:38:46 +01:00
pSetupDiGetClassDevsA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetClassDevsA " ) ;
2008-04-17 18:28:04 +02:00
pSetupDiGetClassDevsW = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetClassDevsW " ) ;
2010-09-11 23:15:19 +02:00
pSetupDiGetINFClassA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetINFClassA " ) ;
2008-04-17 18:28:04 +02:00
pSetupDiSetDeviceRegistryPropertyA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiSetDeviceRegistryPropertyA " ) ;
pSetupDiSetDeviceRegistryPropertyW = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiSetDeviceRegistryPropertyW " ) ;
pSetupDiGetDeviceRegistryPropertyA = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetDeviceRegistryPropertyA " ) ;
pSetupDiGetDeviceRegistryPropertyW = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiGetDeviceRegistryPropertyW " ) ;
2016-12-07 11:03:01 +01:00
pSetupDiRemoveDeviceInterface = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiRemoveDeviceInterface " ) ;
pSetupDiRemoveDevice = ( void * ) GetProcAddress ( hSetupAPI , " SetupDiRemoveDevice " ) ;
2010-10-12 21:34:24 +02:00
pIsWow64Process = ( void * ) GetProcAddress ( hKernel32 , " IsWow64Process " ) ;
2006-08-15 17:40:31 +02:00
}
2006-06-13 19:13:32 +02:00
2008-12-13 12:05:24 +01:00
static LSTATUS devinst_RegDeleteTreeW ( HKEY hKey , LPCWSTR lpszSubKey )
2007-11-01 23:04:03 +01:00
{
LONG ret ;
DWORD dwMaxSubkeyLen , dwMaxValueLen ;
DWORD dwMaxLen , dwSize ;
WCHAR szNameBuf [ MAX_PATH ] , * lpszName = szNameBuf ;
HKEY hSubKey = hKey ;
if ( lpszSubKey )
{
ret = RegOpenKeyExW ( hKey , lpszSubKey , 0 , KEY_READ , & hSubKey ) ;
if ( ret ) return ret ;
}
/* Get highest length for keys, values */
ret = RegQueryInfoKeyW ( hSubKey , NULL , NULL , NULL , NULL ,
& dwMaxSubkeyLen , NULL , NULL , & dwMaxValueLen , NULL , NULL , NULL ) ;
if ( ret ) goto cleanup ;
dwMaxSubkeyLen + + ;
dwMaxValueLen + + ;
dwMaxLen = max ( dwMaxSubkeyLen , dwMaxValueLen ) ;
if ( dwMaxLen > sizeof ( szNameBuf ) / sizeof ( WCHAR ) )
{
/* Name too big: alloc a buffer for it */
if ( ! ( lpszName = HeapAlloc ( GetProcessHeap ( ) , 0 , dwMaxLen * sizeof ( WCHAR ) ) ) )
{
ret = ERROR_NOT_ENOUGH_MEMORY ;
goto cleanup ;
}
}
/* Recursively delete all the subkeys */
while ( TRUE )
{
dwSize = dwMaxLen ;
if ( RegEnumKeyExW ( hSubKey , 0 , lpszName , & dwSize , NULL ,
NULL , NULL , NULL ) ) break ;
ret = devinst_RegDeleteTreeW ( hSubKey , lpszName ) ;
if ( ret ) goto cleanup ;
}
if ( lpszSubKey )
ret = RegDeleteKeyW ( hKey , lpszSubKey ) ;
else
while ( TRUE )
{
dwSize = dwMaxLen ;
if ( RegEnumValueW ( hKey , 0 , lpszName , & dwSize ,
NULL , NULL , NULL , NULL ) ) break ;
ret = RegDeleteValueW ( hKey , lpszName ) ;
if ( ret ) goto cleanup ;
}
cleanup :
/* Free buffer if allocated */
if ( lpszName ! = szNameBuf )
HeapFree ( GetProcessHeap ( ) , 0 , lpszName ) ;
if ( lpszSubKey )
RegCloseKey ( hSubKey ) ;
return ret ;
}
2016-12-07 11:03:01 +01:00
static void test_SetupDiCreateDeviceInfoListEx ( void )
2006-06-13 19:13:32 +02:00
{
HDEVINFO devlist ;
BOOL ret ;
DWORD error ;
2006-08-05 18:28:04 +02:00
static CHAR notnull [ ] = " NotNull " ;
2006-06-13 19:13:32 +02:00
static const WCHAR machine [ ] = { ' d ' , ' u ' , ' m ' , ' m ' , ' y ' , 0 } ;
2011-06-09 20:35:11 +02:00
static const WCHAR empty [ ] = { 0 } ;
2006-06-13 19:13:32 +02:00
SetLastError ( 0xdeadbeef ) ;
/* create empty DeviceInfoList, but set Reserved to a value, which is not NULL */
2006-08-15 17:40:31 +02:00
devlist = pSetupDiCreateDeviceInfoListExW ( NULL , NULL , NULL , notnull ) ;
2006-06-13 19:13:32 +02:00
error = GetLastError ( ) ;
2007-04-25 13:28:44 +02:00
if ( error = = ERROR_CALL_NOT_IMPLEMENTED )
{
2009-02-23 10:41:15 +01:00
win_skip ( " SetupDiCreateDeviceInfoListExW is not implemented \n " ) ;
2007-04-25 13:28:44 +02:00
return ;
}
2006-10-10 00:35:04 +02:00
ok ( devlist = = INVALID_HANDLE_VALUE , " SetupDiCreateDeviceInfoListExW failed : %p %d (expected %p) \n " , devlist , error , INVALID_HANDLE_VALUE ) ;
ok ( error = = ERROR_INVALID_PARAMETER , " GetLastError returned wrong value : %d, (expected %d) \n " , error , ERROR_INVALID_PARAMETER ) ;
2006-06-13 19:13:32 +02:00
SetLastError ( 0xdeadbeef ) ;
/* create empty DeviceInfoList, but set MachineName to something */
2006-08-15 17:40:31 +02:00
devlist = pSetupDiCreateDeviceInfoListExW ( NULL , NULL , machine , NULL ) ;
2006-06-13 19:13:32 +02:00
error = GetLastError ( ) ;
2016-09-06 19:15:24 +02:00
if ( error = = ERROR_CALL_NOT_IMPLEMENTED )
{
/* win10 reports ERROR_CALL_NOT_IMPLEMENTED at first here */
win_skip ( " SetupDiCreateDeviceInfoListExW is not implemented \n " ) ;
return ;
}
2006-10-10 00:35:04 +02:00
ok ( devlist = = INVALID_HANDLE_VALUE , " SetupDiCreateDeviceInfoListExW failed : %p %d (expected %p) \n " , devlist , error , INVALID_HANDLE_VALUE ) ;
2009-01-26 01:26:52 +01:00
ok ( error = = ERROR_INVALID_MACHINENAME | | error = = ERROR_MACHINE_UNAVAILABLE , " GetLastError returned wrong value : %d, (expected %d or %d) \n " , error , ERROR_INVALID_MACHINENAME , ERROR_MACHINE_UNAVAILABLE ) ;
2006-06-13 19:13:32 +02:00
/* create empty DeviceInfoList */
2006-08-15 17:40:31 +02:00
devlist = pSetupDiCreateDeviceInfoListExW ( NULL , NULL , NULL , NULL ) ;
2006-10-10 00:35:04 +02:00
ok ( devlist & & devlist ! = INVALID_HANDLE_VALUE , " SetupDiCreateDeviceInfoListExW failed : %p %d (expected != %p) \n " , devlist , error , INVALID_HANDLE_VALUE ) ;
2006-06-13 19:13:32 +02:00
/* destroy DeviceInfoList */
2006-08-15 17:40:31 +02:00
ret = pSetupDiDestroyDeviceInfoList ( devlist ) ;
2006-10-10 00:35:04 +02:00
ok ( ret , " SetupDiDestroyDeviceInfoList failed : %d \n " , error ) ;
2011-06-09 20:35:11 +02:00
/* create empty DeviceInfoList with empty machine name */
devlist = pSetupDiCreateDeviceInfoListExW ( NULL , NULL , empty , NULL ) ;
ok ( devlist & & devlist ! = INVALID_HANDLE_VALUE , " SetupDiCreateDeviceInfoListExW failed : %p %d (expected != %p) \n " , devlist , error , INVALID_HANDLE_VALUE ) ;
/* destroy DeviceInfoList */
ret = pSetupDiDestroyDeviceInfoList ( devlist ) ;
ok ( ret , " SetupDiDestroyDeviceInfoList failed : %d \n " , error ) ;
2006-06-13 19:13:32 +02:00
}
2006-09-09 13:25:30 +02:00
static void test_SetupDiOpenClassRegKeyExA ( void )
{
2006-09-21 16:15:14 +02:00
static const CHAR guidString [ ] = " {6a55b5a4-3f65-11db-b704-0011955c2bdb} " ;
2006-09-09 13:25:30 +02:00
HKEY hkey ;
2006-09-28 21:03:22 +02:00
/* Check return value for nonexistent key */
2006-09-18 15:33:50 +02:00
hkey = pSetupDiOpenClassRegKeyExA ( & guid , KEY_ALL_ACCESS ,
2006-09-09 13:25:30 +02:00
DIOCR_INSTALLER , NULL , NULL ) ;
ok ( hkey = = INVALID_HANDLE_VALUE ,
" returned %p (expected INVALID_HANDLE_VALUE) \n " , hkey ) ;
2006-09-21 16:15:14 +02:00
/* Test it for a key that exists */
hkey = SetupDiOpenClassRegKey ( NULL , KEY_ALL_ACCESS ) ;
if ( hkey ! = INVALID_HANDLE_VALUE )
{
HKEY classKey ;
if ( RegCreateKeyA ( hkey , guidString , & classKey ) = = ERROR_SUCCESS )
{
RegCloseKey ( classKey ) ;
SetLastError ( 0xdeadbeef ) ;
classKey = pSetupDiOpenClassRegKeyExA ( & guid , KEY_ALL_ACCESS ,
DIOCR_INSTALLER , NULL , NULL ) ;
ok ( classKey ! = INVALID_HANDLE_VALUE ,
2006-10-10 00:35:04 +02:00
" opening class registry key failed with error %d \n " ,
2006-09-21 16:15:14 +02:00
GetLastError ( ) ) ;
if ( classKey ! = INVALID_HANDLE_VALUE )
RegCloseKey ( classKey ) ;
RegDeleteKeyA ( hkey , guidString ) ;
}
else
trace ( " failed to create registry key for test \n " ) ;
2008-05-26 10:47:08 +02:00
RegCloseKey ( hkey ) ;
2006-09-21 16:15:14 +02:00
}
else
2016-12-07 11:03:01 +01:00
trace ( " failed to open classes key %u \n " , GetLastError ( ) ) ;
2006-09-09 13:25:30 +02:00
}
2007-10-11 23:06:06 +02:00
static void create_inf_file ( LPCSTR filename )
{
DWORD dwNumberOfBytesWritten ;
2013-10-29 04:53:23 +01:00
HANDLE hf = CreateFileA ( filename , GENERIC_WRITE , 0 , NULL ,
CREATE_ALWAYS , FILE_ATTRIBUTE_NORMAL , NULL ) ;
2007-10-11 23:06:06 +02:00
2008-12-05 04:49:40 +01:00
static const char data [ ] =
" [Version] \n "
" Signature= \" $Chicago$ \" \n "
" Class=Bogus \n "
" ClassGUID={6a55b5a4-3f65-11db-b704-0011955c2bdb} \n "
" [ClassInstall32] \n "
" AddReg=BogusClass.NT.AddReg \n "
" [BogusClass.NT.AddReg] \n "
" HKR,,,, \" Wine test devices \" \n " ;
WriteFile ( hf , data , sizeof ( data ) - 1 , & dwNumberOfBytesWritten , NULL ) ;
2007-10-11 23:06:06 +02:00
CloseHandle ( hf ) ;
}
static void get_temp_filename ( LPSTR path )
{
static char curr [ MAX_PATH ] = { 0 } ;
char temp [ MAX_PATH ] ;
LPSTR ptr ;
if ( ! * curr )
GetCurrentDirectoryA ( MAX_PATH , curr ) ;
GetTempFileNameA ( curr , " set " , 0 , temp ) ;
ptr = strrchr ( temp , ' \\ ' ) ;
lstrcpyA ( path , ptr + 1 ) ;
}
static void testInstallClass ( void )
{
static const WCHAR classKey [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' \\ ' , ' C ' , ' l ' , ' a ' , ' s ' , ' s ' , ' \\ ' ,
' { ' , ' 6 ' , ' a ' , ' 5 ' , ' 5 ' , ' b ' , ' 5 ' , ' a ' , ' 4 ' , ' - ' , ' 3 ' , ' f ' , ' 6 ' , ' 5 ' , ' - ' ,
' 1 ' , ' 1 ' , ' d ' , ' b ' , ' - ' , ' b ' , ' 7 ' , ' 0 ' , ' 4 ' , ' - ' ,
' 0 ' , ' 0 ' , ' 1 ' , ' 1 ' , ' 9 ' , ' 5 ' , ' 5 ' , ' c ' , ' 2 ' , ' b ' , ' d ' , ' b ' , ' } ' , 0 } ;
2007-10-12 17:23:43 +02:00
char tmpfile [ MAX_PATH ] ;
2007-10-11 23:06:06 +02:00
BOOL ret ;
tmpfile [ 0 ] = ' . ' ;
tmpfile [ 1 ] = ' \\ ' ;
get_temp_filename ( tmpfile + 2 ) ;
create_inf_file ( tmpfile + 2 ) ;
ret = pSetupDiInstallClassA ( NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiInstallClassA ( NULL , NULL , DI_NOVCP , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiInstallClassA ( NULL , tmpfile + 2 , DI_NOVCP , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiInstallClassA ( NULL , tmpfile + 2 , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_FILE_NOT_FOUND ,
" Expected ERROR_FILE_NOT_FOUND, got %08x \n " , GetLastError ( ) ) ;
2008-05-04 14:30:17 +02:00
/* The next call will succeed. Information is put into the registry but the
* location ( s ) is / are depending on the Windows version .
*/
2007-10-11 23:06:06 +02:00
ret = pSetupDiInstallClassA ( NULL , tmpfile , 0 , NULL ) ;
ok ( ret , " SetupDiInstallClassA failed: %08x \n " , GetLastError ( ) ) ;
2008-06-23 10:26:29 +02:00
ok ( ! RegDeleteKeyW ( HKEY_LOCAL_MACHINE , classKey ) ,
" Couldn't delete classkey \n " ) ;
2013-10-29 04:53:23 +01:00
DeleteFileA ( tmpfile ) ;
2007-10-11 23:06:06 +02:00
}
2007-09-20 02:45:12 +02:00
static void testCreateDeviceInfo ( void )
{
BOOL ret ;
HDEVINFO set ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( NULL , NULL , NULL , NULL , NULL , 0 , NULL ) ;
2008-05-21 17:00:11 +02:00
ok ( ! ret , " Expected failure \n " ) ;
ok ( GetLastError ( ) = = ERROR_INVALID_DEVINST_NAME | |
2008-06-23 09:47:48 +02:00
GetLastError ( ) = = ERROR_INVALID_PARAMETER /* NT4 */ ,
2008-05-21 17:00:11 +02:00
" Unexpected last error, got %08x \n " , GetLastError ( ) ) ;
2007-09-20 02:45:12 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( NULL , " Root \\ LEGACY_BOGUS \\ 0000 " , NULL ,
NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLEHANDLE, got %08x \n " , GetLastError ( ) ) ;
set = pSetupDiCreateDeviceInfoList ( & guid , NULL ) ;
ok ( set ! = NULL , " SetupDiCreateDeviceInfoList failed: %08x \n " ,
GetLastError ( ) ) ;
if ( set )
{
SP_DEVINFO_DATA devInfo = { 0 } ;
DWORD i ;
2008-05-27 15:24:15 +02:00
static GUID deadbeef =
{ 0xdeadbeef , 0xdead , 0xbeef , { 0xde , 0xad , 0xbe , 0xef , 0xde , 0xad , 0xbe , 0xef } } ;
2016-09-12 19:29:15 +02:00
2008-05-27 15:24:15 +02:00
/* No GUID given */
2007-09-20 02:45:12 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " Root \\ LEGACY_BOGUS \\ 0000 " , NULL ,
NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
2016-12-07 11:03:01 +01:00
2008-05-27 15:24:15 +02:00
/* We can't add device information to the set with a different GUID */
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " Root \\ LEGACY_BOGUS \\ 0000 " ,
& deadbeef , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_CLASS_MISMATCH ,
" Expected ERROR_CLASS_MISMATCH, got %08x \n " , GetLastError ( ) ) ;
2016-12-07 11:03:01 +01:00
2007-09-20 02:45:12 +02:00
/* Finally, with all three required parameters, this succeeds: */
ret = pSetupDiCreateDeviceInfoA ( set , " Root \\ LEGACY_BOGUS \\ 0000 " , & guid ,
NULL , NULL , 0 , NULL ) ;
2008-05-21 17:03:49 +02:00
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
2007-09-20 02:45:12 +02:00
/* This fails because the device ID already exists.. */
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " Root \\ LEGACY_BOGUS \\ 0000 " , & guid ,
NULL , NULL , 0 , & devInfo ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_DEVINST_ALREADY_EXISTS ,
" Expected ERROR_DEVINST_ALREADY_EXISTS, got %08x \n " , GetLastError ( ) ) ;
/* whereas this "fails" because cbSize is wrong.. */
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " LEGACY_BOGUS " , & guid , NULL , NULL ,
DICD_GENERATE_ID , & devInfo ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_USER_BUFFER ,
" Expected ERROR_INVALID_USER_BUFFER, got %08x \n " , GetLastError ( ) ) ;
2008-05-27 15:24:15 +02:00
/* and this finally succeeds. */
2007-09-20 02:45:12 +02:00
devInfo . cbSize = sizeof ( devInfo ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " LEGACY_BOGUS " , & guid , NULL , NULL ,
DICD_GENERATE_ID , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
/* There were three devices added, however - the second failure just
* resulted in the SP_DEVINFO_DATA not getting copied .
*/
SetLastError ( 0xdeadbeef ) ;
i = 0 ;
while ( pSetupDiEnumDeviceInfo ( set , i , & devInfo ) )
i + + ;
ok ( i = = 3 , " Expected 3 devices, got %d \n " , i ) ;
ok ( GetLastError ( ) = = ERROR_NO_MORE_ITEMS ,
" SetupDiEnumDeviceInfo failed: %08x \n " , GetLastError ( ) ) ;
2008-05-28 18:17:19 +02:00
2016-12-07 11:03:01 +01:00
ret = pSetupDiRemoveDevice ( set , & devInfo ) ;
todo_wine ok ( ret , " got %u \n " , GetLastError ( ) ) ;
pSetupDiDestroyDeviceInfoList ( set ) ;
2008-05-27 15:31:58 +02:00
}
2007-09-20 02:45:12 +02:00
}
2007-09-20 02:46:11 +02:00
static void testGetDeviceInstanceId ( void )
{
BOOL ret ;
HDEVINFO set ;
SP_DEVINFO_DATA devInfo = { 0 } ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInstanceIdA ( NULL , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
2008-05-21 17:18:12 +02:00
" Expected ERROR_INVALID_HANDLE, got %08x \n " , GetLastError ( ) ) ;
2007-09-20 02:46:11 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInstanceIdA ( NULL , & devInfo , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
2008-05-21 17:18:12 +02:00
" Expected ERROR_INVALID_HANDLE, got %08x \n " , GetLastError ( ) ) ;
2007-09-20 02:46:11 +02:00
set = pSetupDiCreateDeviceInfoList ( & guid , NULL ) ;
ok ( set ! = NULL , " SetupDiCreateDeviceInfoList failed: %08x \n " ,
GetLastError ( ) ) ;
if ( set )
{
char instanceID [ MAX_PATH ] ;
DWORD size ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInstanceIdA ( set , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInstanceIdA ( set , & devInfo , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInstanceIdA ( set , & devInfo , NULL , 0 , & size ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
devInfo . cbSize = sizeof ( devInfo ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInstanceIdA ( set , & devInfo , NULL , 0 , & size ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " Root \\ LEGACY_BOGUS \\ 0000 " , & guid ,
NULL , NULL , 0 , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInstanceIdA ( set , & devInfo , NULL , 0 , & size ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiGetDeviceInstanceIdA ( set , & devInfo , instanceID ,
sizeof ( instanceID ) , NULL ) ;
ok ( ret , " SetupDiGetDeviceInstanceIdA failed: %08x \n " , GetLastError ( ) ) ;
ok ( ! lstrcmpA ( instanceID , " ROOT \\ LEGACY_BOGUS \\ 0000 " ) ,
" Unexpected instance ID %s \n " , instanceID ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " LEGACY_BOGUS " , & guid ,
NULL , NULL , DICD_GENERATE_ID , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiGetDeviceInstanceIdA ( set , & devInfo , instanceID ,
sizeof ( instanceID ) , NULL ) ;
ok ( ret , " SetupDiGetDeviceInstanceIdA failed: %08x \n " , GetLastError ( ) ) ;
2008-06-23 17:47:49 +02:00
/* NT4 returns 'Root' and W2K and above 'ROOT' */
ok ( ! lstrcmpiA ( instanceID , " ROOT \\ LEGACY_BOGUS \\ 0001 " ) ,
2007-09-20 02:46:11 +02:00
" Unexpected instance ID %s \n " , instanceID ) ;
2016-12-07 11:03:01 +01:00
ret = pSetupDiRemoveDevice ( set , & devInfo ) ;
todo_wine ok ( ret , " got %u \n " , GetLastError ( ) ) ;
2007-09-20 02:46:11 +02:00
pSetupDiDestroyDeviceInfoList ( set ) ;
}
}
2007-09-20 18:16:01 +02:00
static void testRegisterDeviceInfo ( void )
{
2016-12-07 11:03:01 +01:00
static const WCHAR bogus [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' E ' , ' n ' , ' u ' , ' m ' , ' \\ ' , ' U ' , ' S ' , ' B ' , ' \\ ' , ' B ' , ' O ' , ' G ' , ' U ' , ' S ' , 0 } ;
2007-09-20 18:16:01 +02:00
BOOL ret ;
HDEVINFO set ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiRegisterDeviceInfo ( NULL , NULL , 0 , NULL , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %d \n " , GetLastError ( ) ) ;
set = pSetupDiCreateDeviceInfoList ( & guid , NULL ) ;
ok ( set ! = NULL , " SetupDiCreateDeviceInfoList failed: %d \n " , GetLastError ( ) ) ;
if ( set )
{
SP_DEVINFO_DATA devInfo = { 0 } ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiRegisterDeviceInfo ( set , NULL , 0 , NULL , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiRegisterDeviceInfo ( set , & devInfo , 0 , NULL , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %d \n " , GetLastError ( ) ) ;
devInfo . cbSize = sizeof ( devInfo ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiRegisterDeviceInfo ( set , & devInfo , 0 , NULL , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %d \n " , GetLastError ( ) ) ;
2016-12-07 11:03:01 +01:00
2007-09-20 18:16:01 +02:00
ret = pSetupDiCreateDeviceInfoA ( set , " USB \\ BOGUS \\ 0000 " , & guid ,
NULL , NULL , 0 , & devInfo ) ;
2016-12-07 11:03:01 +01:00
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiRegisterDeviceInfo ( set , & devInfo , 0 , NULL , NULL , NULL ) ;
ok ( ret , " SetupDiRegisterDeviceInfo failed: %d \n " , GetLastError ( ) ) ;
ret = pSetupDiRemoveDevice ( set , & devInfo ) ;
todo_wine ok ( ret , " got %u \n " , GetLastError ( ) ) ;
2007-09-20 18:16:01 +02:00
pSetupDiDestroyDeviceInfoList ( set ) ;
2016-12-07 11:03:01 +01:00
/* remove once Wine is fixed */
devinst_RegDeleteTreeW ( HKEY_LOCAL_MACHINE , bogus ) ;
2007-09-20 18:16:01 +02:00
}
}
2007-09-21 20:34:03 +02:00
static void testCreateDeviceInterface ( void )
{
BOOL ret ;
HDEVINFO set ;
2008-06-23 15:48:16 +02:00
if ( ! pSetupDiCreateDeviceInterfaceA | | ! pSetupDiEnumDeviceInterfaces )
2007-09-21 20:34:03 +02:00
{
2009-02-23 10:41:15 +01:00
win_skip ( " SetupDiCreateDeviceInterfaceA and/or SetupDiEnumDeviceInterfaces are not available \n " ) ;
2007-09-21 20:34:03 +02:00
return ;
}
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInterfaceA ( NULL , NULL , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInterfaceA ( NULL , NULL , & guid , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %d \n " , GetLastError ( ) ) ;
set = pSetupDiCreateDeviceInfoList ( & guid , NULL ) ;
ok ( set ! = NULL , " SetupDiCreateDeviceInfoList failed: %d \n " , GetLastError ( ) ) ;
if ( set )
{
SP_DEVINFO_DATA devInfo = { 0 } ;
SP_DEVICE_INTERFACE_DATA interfaceData = { sizeof ( interfaceData ) ,
{ 0 } } ;
2007-09-21 20:36:37 +02:00
DWORD i ;
2007-09-21 20:34:03 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInterfaceA ( set , NULL , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInterfaceA ( set , & devInfo , NULL , NULL , 0 ,
NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %d \n " , GetLastError ( ) ) ;
devInfo . cbSize = sizeof ( devInfo ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " ROOT \\ LEGACY_BOGUS \\ 0000 " , & guid ,
NULL , NULL , 0 , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInterfaceA ( set , & devInfo , NULL , NULL , 0 ,
NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_USER_BUFFER ,
" Expected ERROR_INVALID_USER_BUFFER, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiCreateDeviceInterfaceA ( set , & devInfo , & guid , NULL , 0 ,
NULL ) ;
ok ( ret , " SetupDiCreateDeviceInterfaceA failed: %08x \n " , GetLastError ( ) ) ;
/* Creating the same interface a second time succeeds */
ret = pSetupDiCreateDeviceInterfaceA ( set , & devInfo , & guid , NULL , 0 ,
NULL ) ;
ok ( ret , " SetupDiCreateDeviceInterfaceA failed: %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiCreateDeviceInterfaceA ( set , & devInfo , & guid , " Oogah " , 0 ,
NULL ) ;
ok ( ret , " SetupDiCreateDeviceInterfaceA failed: %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiEnumDeviceInterfaces ( set , & devInfo , & guid , 0 ,
& interfaceData ) ;
ok ( ret , " SetupDiEnumDeviceInterfaces failed: %d \n " , GetLastError ( ) ) ;
2007-09-21 20:36:37 +02:00
i = 0 ;
while ( pSetupDiEnumDeviceInterfaces ( set , & devInfo , & guid , i ,
& interfaceData ) )
i + + ;
ok ( i = = 2 , " expected 2 interfaces, got %d \n " , i ) ;
ok ( GetLastError ( ) = = ERROR_NO_MORE_ITEMS ,
" SetupDiEnumDeviceInterfaces failed: %08x \n " , GetLastError ( ) ) ;
2008-05-26 20:03:00 +02:00
2016-12-07 11:03:01 +01:00
for ( i = 0 ; i < 2 ; i + + )
2008-05-26 20:03:00 +02:00
{
2016-12-07 11:03:01 +01:00
ret = pSetupDiEnumDeviceInterfaces ( set , & devInfo , & guid , i , & interfaceData ) ;
ok ( ret , " SetupDiEnumDeviceInterfaces failed: %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiRemoveDeviceInterface ( set , & interfaceData ) ;
todo_wine ok ( ret , " SetupDiRemoveDeviceInterface failed: %08x \n " , GetLastError ( ) ) ;
2008-05-26 20:03:00 +02:00
}
2016-12-07 11:03:01 +01:00
ret = pSetupDiRemoveDevice ( set , & devInfo ) ;
todo_wine ok ( ret , " got %u \n " , GetLastError ( ) ) ;
ret = pSetupDiDestroyDeviceInfoList ( set ) ;
ok ( ret , " SetupDiDestroyDeviceInfoList failed: %08x \n " , GetLastError ( ) ) ;
2007-09-21 20:34:03 +02:00
}
}
2007-09-21 20:38:33 +02:00
static void testGetDeviceInterfaceDetail ( void )
{
2008-05-26 17:25:42 +02:00
static const WCHAR bogus [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' E ' , ' n ' , ' u ' , ' m ' , ' \\ ' , ' R ' , ' o ' , ' o ' , ' t ' , ' \\ ' ,
' L ' , ' E ' , ' G ' , ' A ' , ' C ' , ' Y ' , ' _ ' , ' B ' , ' O ' , ' G ' , ' U ' , ' S ' , 0 } ;
static const WCHAR devclass [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' \\ ' , ' D ' , ' e ' , ' v ' , ' i ' , ' c ' , ' e ' , ' C ' , ' l ' , ' a ' , ' s ' , ' s ' , ' e ' , ' s ' , ' \\ ' ,
' { ' , ' 6 ' , ' a ' , ' 5 ' , ' 5 ' , ' b ' , ' 5 ' , ' a ' , ' 4 ' , ' - ' , ' 3 ' , ' f ' , ' 6 ' , ' 5 ' , ' - ' ,
' 1 ' , ' 1 ' , ' d ' , ' b ' , ' - ' , ' b ' , ' 7 ' , ' 0 ' , ' 4 ' , ' - ' ,
' 0 ' , ' 0 ' , ' 1 ' , ' 1 ' , ' 9 ' , ' 5 ' , ' 5 ' , ' c ' , ' 2 ' , ' b ' , ' d ' , ' b ' , ' } ' , 0 } ;
2016-12-07 11:03:01 +01:00
BOOL ret ;
HDEVINFO set ;
2007-09-21 20:38:33 +02:00
2008-06-23 15:48:16 +02:00
if ( ! pSetupDiCreateDeviceInterfaceA | | ! pSetupDiGetDeviceInterfaceDetailA )
2007-09-21 20:38:33 +02:00
{
2009-02-23 10:41:15 +01:00
win_skip ( " SetupDiCreateDeviceInterfaceA and/or SetupDiGetDeviceInterfaceDetailA are not available \n " ) ;
2007-09-21 20:38:33 +02:00
return ;
}
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInterfaceDetailA ( NULL , NULL , NULL , 0 , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %d \n " , GetLastError ( ) ) ;
set = pSetupDiCreateDeviceInfoList ( & guid , NULL ) ;
ok ( set ! = NULL , " SetupDiCreateDeviceInfoList failed: %d \n " , GetLastError ( ) ) ;
if ( set )
{
SP_DEVINFO_DATA devInfo = { sizeof ( devInfo ) , { 0 } } ;
SP_DEVICE_INTERFACE_DATA interfaceData = { sizeof ( interfaceData ) ,
{ 0 } } ;
DWORD size = 0 ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInterfaceDetailA ( set , NULL , NULL , 0 , NULL ,
NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %d \n " , GetLastError ( ) ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " ROOT \\ LEGACY_BOGUS \\ 0000 " , & guid ,
NULL , NULL , 0 , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInterfaceA ( set , & devInfo , & guid , NULL , 0 ,
& interfaceData ) ;
ok ( ret , " SetupDiCreateDeviceInterfaceA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInterfaceDetailA ( set , & interfaceData , NULL ,
0 , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInterfaceDetailA ( set , & interfaceData , NULL ,
100 , NULL , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_USER_BUFFER ,
" Expected ERROR_INVALID_USER_BUFFER, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInterfaceDetailA ( set , & interfaceData , NULL ,
0 , & size , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %d \n " , GetLastError ( ) ) ;
if ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER )
{
2007-09-21 20:39:27 +02:00
static const char path [ ] =
" \\ \\ ? \\ root#legacy_bogus#0000#{6a55b5a4-3f65-11db-b704-0011955c2bdb} " ;
2008-06-11 14:57:42 +02:00
static const char path_w2k [ ] =
" \\ \\ ? \\ root#legacy_bogus#0000#{6a55b5a4-3f65-11db-b704-0011955c2bdb} \\ " ;
2007-09-21 20:38:33 +02:00
LPBYTE buf = HeapAlloc ( GetProcessHeap ( ) , 0 , size ) ;
SP_DEVICE_INTERFACE_DETAIL_DATA_A * detail =
( SP_DEVICE_INTERFACE_DETAIL_DATA_A * ) buf ;
2008-07-21 22:14:01 +02:00
DWORD expectedsize = FIELD_OFFSET ( SP_DEVICE_INTERFACE_DETAIL_DATA_W , DevicePath ) + sizeof ( WCHAR ) * ( 1 + strlen ( path ) ) ;
2007-09-21 20:38:33 +02:00
detail - > cbSize = 0 ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInterfaceDetailA ( set , & interfaceData , detail ,
size , & size , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_USER_BUFFER ,
" Expected ERROR_INVALID_USER_BUFFER, got %08x \n " , GetLastError ( ) ) ;
detail - > cbSize = size ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceInterfaceDetailA ( set , & interfaceData , detail ,
size , & size , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_USER_BUFFER ,
" Expected ERROR_INVALID_USER_BUFFER, got %08x \n " , GetLastError ( ) ) ;
detail - > cbSize = sizeof ( SP_DEVICE_INTERFACE_DETAIL_DATA_A ) ;
2008-02-25 20:19:53 +01:00
SetLastError ( 0xdeadbeef ) ;
2007-09-21 20:38:33 +02:00
ret = pSetupDiGetDeviceInterfaceDetailA ( set , & interfaceData , detail ,
size , & size , NULL ) ;
ok ( ret , " SetupDiGetDeviceInterfaceDetailA failed: %d \n " ,
GetLastError ( ) ) ;
2008-06-11 14:57:42 +02:00
ok ( ! lstrcmpiA ( path , detail - > DevicePath ) | |
! lstrcmpiA ( path_w2k , detail - > DevicePath ) , " Unexpected path %s \n " ,
detail - > DevicePath ) ;
2008-03-27 05:38:53 +01:00
/* Check SetupDiGetDeviceInterfaceDetailW */
2008-06-23 15:48:16 +02:00
ret = pSetupDiGetDeviceInterfaceDetailW ( set , & interfaceData , NULL , 0 , & size , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got error code: %d \n " , GetLastError ( ) ) ;
ok ( expectedsize = = size | |
( expectedsize + sizeof ( WCHAR ) ) = = size /* W2K adds a backslash */ ,
" SetupDiGetDeviceInterfaceDetailW returned wrong reqsize, got %d \n " ,
size ) ;
2008-03-28 12:17:06 +01:00
2007-09-21 20:38:33 +02:00
HeapFree ( GetProcessHeap ( ) , 0 , buf ) ;
}
2016-12-07 11:03:01 +01:00
ret = pSetupDiEnumDeviceInterfaces ( set , & devInfo , & guid , 0 , & interfaceData ) ;
ok ( ret , " SetupDiEnumDeviceInterfaces failed: %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiRemoveDeviceInterface ( set , & interfaceData ) ;
todo_wine ok ( ret , " SetupDiRemoveDeviceInterface failed: %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiRemoveDevice ( set , & devInfo ) ;
todo_wine ok ( ret , " got %u \n " , GetLastError ( ) ) ;
2007-09-21 20:38:33 +02:00
pSetupDiDestroyDeviceInfoList ( set ) ;
2008-05-26 17:25:42 +02:00
2016-12-07 11:03:01 +01:00
/* remove once Wine is fixed */
devinst_RegDeleteTreeW ( HKEY_LOCAL_MACHINE , bogus ) ;
devinst_RegDeleteTreeW ( HKEY_LOCAL_MACHINE , devclass ) ;
2007-09-21 20:38:33 +02:00
}
}
2007-10-12 17:24:27 +02:00
static void testDevRegKey ( void )
{
static const WCHAR classKey [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' \\ ' , ' C ' , ' l ' , ' a ' , ' s ' , ' s ' , ' \\ ' ,
' { ' , ' 6 ' , ' a ' , ' 5 ' , ' 5 ' , ' b ' , ' 5 ' , ' a ' , ' 4 ' , ' - ' , ' 3 ' , ' f ' , ' 6 ' , ' 5 ' , ' - ' ,
' 1 ' , ' 1 ' , ' d ' , ' b ' , ' - ' , ' b ' , ' 7 ' , ' 0 ' , ' 4 ' , ' - ' ,
' 0 ' , ' 0 ' , ' 1 ' , ' 1 ' , ' 9 ' , ' 5 ' , ' 5 ' , ' c ' , ' 2 ' , ' b ' , ' d ' , ' b ' , ' } ' , 0 } ;
2008-05-26 15:41:31 +02:00
static const WCHAR bogus [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' E ' , ' n ' , ' u ' , ' m ' , ' \\ ' , ' R ' , ' o ' , ' o ' , ' t ' , ' \\ ' ,
' L ' , ' E ' , ' G ' , ' A ' , ' C ' , ' Y ' , ' _ ' , ' B ' , ' O ' , ' G ' , ' U ' , ' S ' , 0 } ;
2007-10-12 17:24:27 +02:00
BOOL ret ;
HDEVINFO set ;
2008-05-26 12:13:07 +02:00
HKEY key = NULL ;
2007-10-12 17:24:27 +02:00
2008-05-26 12:13:07 +02:00
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiCreateDevRegKeyW ( NULL , NULL , 0 , 0 , 0 , NULL , NULL ) ;
ok ( key = = INVALID_HANDLE_VALUE ,
" Expected INVALID_HANDLE_VALUE, got %p \n " , key ) ;
ok ( GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %08x \n " , GetLastError ( ) ) ;
2007-10-12 17:24:27 +02:00
set = pSetupDiCreateDeviceInfoList ( & guid , NULL ) ;
ok ( set ! = NULL , " SetupDiCreateDeviceInfoList failed: %d \n " , GetLastError ( ) ) ;
if ( set )
{
SP_DEVINFO_DATA devInfo = { sizeof ( devInfo ) , { 0 } } ;
2008-05-26 15:41:31 +02:00
LONG res ;
2007-10-12 17:24:27 +02:00
2008-05-26 15:41:31 +02:00
/* The device info key shouldn't be there */
res = RegOpenKeyW ( HKEY_LOCAL_MACHINE , bogus , & key ) ;
ok ( res ! = ERROR_SUCCESS , " Expected key to not exist \n " ) ;
RegCloseKey ( key ) ;
/* Create the device information */
2007-10-12 17:24:27 +02:00
ret = pSetupDiCreateDeviceInfoA ( set , " ROOT \\ LEGACY_BOGUS \\ 0000 " , & guid ,
NULL , NULL , 0 , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
2008-05-26 15:41:31 +02:00
/* The device info key should have been created */
ok ( ! RegOpenKeyW ( HKEY_LOCAL_MACHINE , bogus , & key ) ,
" Expected registry key to exist \n " ) ;
RegCloseKey ( key ) ;
2007-10-12 17:24:27 +02:00
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( NULL , NULL , 0 , 0 , 0 , 0 ) ;
2008-05-26 11:32:37 +02:00
ok ( ! key | | key = = INVALID_HANDLE_VALUE ,
" Expected INVALID_HANDLE_VALUE or a NULL key (NT4) \n " ) ;
ok ( GetLastError ( ) = = ERROR_INVALID_HANDLE ,
2007-10-12 17:24:27 +02:00
" Expected ERROR_INVALID_HANDLE, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , NULL , 0 , 0 , 0 , 0 ) ;
ok ( key = = INVALID_HANDLE_VALUE & &
GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , 0 , 0 , 0 , 0 ) ;
ok ( key = = INVALID_HANDLE_VALUE & &
GetLastError ( ) = = ERROR_INVALID_FLAGS ,
" Expected ERROR_INVALID_FLAGS, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , DICS_FLAG_GLOBAL , 0 , 0 , 0 ) ;
ok ( key = = INVALID_HANDLE_VALUE & &
GetLastError ( ) = = ERROR_INVALID_FLAGS ,
" Expected ERROR_INVALID_FLAGS, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , DICS_FLAG_GLOBAL , 0 ,
DIREG_BOTH , 0 ) ;
ok ( key = = INVALID_HANDLE_VALUE & &
GetLastError ( ) = = ERROR_INVALID_FLAGS ,
" Expected ERROR_INVALID_FLAGS, got %d \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , DICS_FLAG_GLOBAL , 0 ,
DIREG_DRV , 0 ) ;
ok ( key = = INVALID_HANDLE_VALUE & &
GetLastError ( ) = = ERROR_DEVINFO_NOT_REGISTERED ,
" Expected ERROR_DEVINFO_NOT_REGISTERED, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiRegisterDeviceInfo ( set , & devInfo , 0 , NULL , NULL , NULL ) ;
ok ( ret , " SetupDiRegisterDeviceInfo failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , DICS_FLAG_GLOBAL , 0 ,
DIREG_DRV , 0 ) ;
/* The software key isn't created by default */
ok ( key = = INVALID_HANDLE_VALUE & &
GetLastError ( ) = = ERROR_KEY_DOES_NOT_EXIST ,
2008-06-19 10:45:02 +02:00
" Expected ERROR_KEY_DOES_NOT_EXIST, got %08x \n " , GetLastError ( ) ) ;
2007-10-12 17:24:27 +02:00
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , DICS_FLAG_GLOBAL , 0 ,
DIREG_DEV , 0 ) ;
todo_wine
ok ( key = = INVALID_HANDLE_VALUE & &
GetLastError ( ) = = ERROR_KEY_DOES_NOT_EXIST ,
2008-06-19 10:45:02 +02:00
" Expected ERROR_KEY_DOES_NOT_EXIST, got %08x \n " , GetLastError ( ) ) ;
2007-10-12 17:24:27 +02:00
SetLastError ( 0xdeadbeef ) ;
2008-05-26 15:41:31 +02:00
/* The class key shouldn't be there */
res = RegOpenKeyW ( HKEY_LOCAL_MACHINE , classKey , & key ) ;
todo_wine
ok ( res ! = ERROR_SUCCESS , " Expected key to not exist \n " ) ;
RegCloseKey ( key ) ;
/* Create the device reg key */
2007-10-12 17:24:27 +02:00
key = pSetupDiCreateDevRegKeyW ( set , & devInfo , DICS_FLAG_GLOBAL , 0 ,
DIREG_DRV , NULL , NULL ) ;
2009-01-26 01:26:52 +01:00
/* Vista and higher don't actually create the key */
ok ( key ! = INVALID_HANDLE_VALUE | | GetLastError ( ) = = ERROR_KEY_DOES_NOT_EXIST ,
" SetupDiCreateDevRegKey failed: %08x \n " , GetLastError ( ) ) ;
if ( key ! = INVALID_HANDLE_VALUE )
{
RegCloseKey ( key ) ;
/* The class key should have been created */
ok ( ! RegOpenKeyW ( HKEY_LOCAL_MACHINE , classKey , & key ) ,
" Expected registry key to exist \n " ) ;
RegCloseKey ( key ) ;
SetLastError ( 0xdeadbeef ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , DICS_FLAG_GLOBAL , 0 ,
DIREG_DRV , 0 ) ;
todo_wine
ok ( key = = INVALID_HANDLE_VALUE & &
( GetLastError ( ) = = ERROR_INVALID_DATA | |
GetLastError ( ) = = ERROR_ACCESS_DENIED ) , /* win2k3 */
" Expected ERROR_INVALID_DATA or ERROR_ACCESS_DENIED, got %08x \n " , GetLastError ( ) ) ;
key = pSetupDiOpenDevRegKey ( set , & devInfo , DICS_FLAG_GLOBAL , 0 ,
DIREG_DRV , KEY_READ ) ;
ok ( key ! = INVALID_HANDLE_VALUE , " SetupDiOpenDevRegKey failed: %08x \n " ,
GetLastError ( ) ) ;
2016-12-07 11:03:01 +01:00
RegCloseKey ( key ) ;
2009-01-26 01:26:52 +01:00
}
2008-05-26 16:42:17 +02:00
2016-12-07 11:03:01 +01:00
ret = pSetupDiRemoveDevice ( set , & devInfo ) ;
todo_wine ok ( ret , " got %u \n " , GetLastError ( ) ) ;
pSetupDiDestroyDeviceInfoList ( set ) ;
2008-05-26 15:41:31 +02:00
2016-12-07 11:03:01 +01:00
/* remove once Wine is fixed */
devinst_RegDeleteTreeW ( HKEY_LOCAL_MACHINE , bogus ) ;
devinst_RegDeleteTreeW ( HKEY_LOCAL_MACHINE , classKey ) ;
2007-10-12 17:24:27 +02:00
}
}
2008-03-28 18:38:46 +01:00
static void testRegisterAndGetDetail ( void )
{
2016-12-07 11:03:01 +01:00
static const WCHAR classKey [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
2008-05-26 16:42:17 +02:00
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
2016-12-07 11:03:01 +01:00
' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' \\ ' , ' C ' , ' l ' , ' a ' , ' s ' , ' s ' , ' \\ ' ,
2008-05-26 16:42:17 +02:00
' { ' , ' 6 ' , ' a ' , ' 5 ' , ' 5 ' , ' b ' , ' 5 ' , ' a ' , ' 4 ' , ' - ' , ' 3 ' , ' f ' , ' 6 ' , ' 5 ' , ' - ' ,
' 1 ' , ' 1 ' , ' d ' , ' b ' , ' - ' , ' b ' , ' 7 ' , ' 0 ' , ' 4 ' , ' - ' ,
' 0 ' , ' 0 ' , ' 1 ' , ' 1 ' , ' 9 ' , ' 5 ' , ' 5 ' , ' c ' , ' 2 ' , ' b ' , ' d ' , ' b ' , ' } ' , 0 } ;
2016-12-07 11:03:01 +01:00
static const WCHAR bogus [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' E ' , ' n ' , ' u ' , ' m ' , ' \\ ' , ' R ' , ' o ' , ' o ' , ' t ' , ' \\ ' ,
' L ' , ' E ' , ' G ' , ' A ' , ' C ' , ' Y ' , ' _ ' , ' B ' , ' O ' , ' G ' , ' U ' , ' S ' , 0 } ;
HDEVINFO set , set2 ;
BOOL ret ;
SP_DEVINFO_DATA devInfo = { sizeof ( SP_DEVINFO_DATA ) , { 0 } } ;
SP_DEVICE_INTERFACE_DATA interfaceData = { sizeof ( interfaceData ) , { 0 } } ;
SP_DEVICE_INTERFACE_DATA interfaceData2 = { sizeof ( interfaceData2 ) , { 0 } } ;
DWORD dwSize = 0 ;
HKEY key ;
LONG res ;
2008-03-28 18:38:46 +01:00
2008-06-23 16:16:43 +02:00
if ( ! pSetupDiCreateDeviceInterfaceA | | ! pSetupDiEnumDeviceInterfaces | |
! pSetupDiGetDeviceInterfaceDetailA )
{
2009-02-23 10:41:15 +01:00
win_skip ( " Needed functions are not available \n " ) ;
2008-06-23 16:16:43 +02:00
return ;
}
2008-03-28 18:38:46 +01:00
SetLastError ( 0xdeadbeef ) ;
set = pSetupDiGetClassDevsA ( & guid , NULL , 0 , DIGCF_ALLCLASSES ) ;
ok ( set ! = INVALID_HANDLE_VALUE , " SetupDiGetClassDevsA failed: %08x \n " ,
GetLastError ( ) ) ;
2016-12-07 11:03:01 +01:00
res = RegOpenKeyW ( HKEY_LOCAL_MACHINE , bogus , & key ) ;
ok ( res ! = ERROR_SUCCESS , " Expected key to not exist \n " ) ;
RegCloseKey ( key ) ;
2008-03-28 18:38:46 +01:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( set , " LEGACY_BOGUS " , & guid , NULL , 0 ,
DICD_GENERATE_ID , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInterfaceA ( set , & devInfo , & guid , NULL , 0 , & interfaceData ) ;
ok ( ret , " SetupDiCreateDeviceInterfaceA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiRegisterDeviceInfo ( set , & devInfo , 0 , NULL , NULL , NULL ) ;
ok ( ret , " SetupDiRegisterDeviceInfo failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
2016-12-07 11:03:01 +01:00
set2 = pSetupDiGetClassDevsA ( & guid , NULL , 0 , DIGCF_DEVICEINTERFACE ) ;
ok ( set2 ! = INVALID_HANDLE_VALUE , " SetupDiGetClassDevsA failed: %08x \n " ,
2008-03-28 18:38:46 +01:00
GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
2016-12-07 11:03:01 +01:00
ret = pSetupDiEnumDeviceInterfaces ( set2 , NULL , & guid , 0 , & interfaceData2 ) ;
2008-03-28 18:38:46 +01:00
ok ( ret , " SetupDiEnumDeviceInterfaces failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
2016-12-07 11:03:01 +01:00
ret = pSetupDiGetDeviceInterfaceDetailA ( set2 , & interfaceData2 , NULL , 0 , & dwSize , NULL ) ;
2008-03-28 18:38:46 +01:00
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %08x \n " , GetLastError ( ) ) ;
if ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER )
{
static const char path [ ] =
" \\ \\ ? \\ root#legacy_bogus#0000#{6a55b5a4-3f65-11db-b704-0011955c2bdb} " ;
2016-12-07 11:03:01 +01:00
static const char path_w10 [ ] =
2010-10-12 21:34:24 +02:00
" \\ \\ ? \\ root#legacy_bogus#0001#{6a55b5a4-3f65-11db-b704-0011955c2bdb} " ;
2008-06-11 14:57:42 +02:00
static const char path_w2k [ ] =
2010-10-12 21:34:24 +02:00
" \\ \\ ? \\ root#legacy_bogus#0000#{6a55b5a4-3f65-11db-b704-0011955c2bdb} \\ " ;
2008-03-28 18:38:46 +01:00
PSP_DEVICE_INTERFACE_DETAIL_DATA_A detail = NULL ;
2008-12-08 04:06:20 +01:00
detail = HeapAlloc ( GetProcessHeap ( ) , 0 , dwSize ) ;
2008-03-28 18:38:46 +01:00
if ( detail )
{
2009-01-09 23:22:42 +01:00
detail - > cbSize = sizeof ( * detail ) ;
2008-03-28 18:38:46 +01:00
SetLastError ( 0xdeadbeef ) ;
2016-12-07 11:03:01 +01:00
ret = pSetupDiGetDeviceInterfaceDetailA ( set2 , & interfaceData2 ,
2008-03-28 18:38:46 +01:00
detail , dwSize , & dwSize , NULL ) ;
ok ( ret , " SetupDiGetDeviceInterfaceDetailA failed: %08x \n " , GetLastError ( ) ) ;
2016-12-07 11:03:01 +01:00
ok ( ! lstrcmpiA ( path , detail - > DevicePath ) | |
! lstrcmpiA ( path_w10 , detail - > DevicePath ) | |
! lstrcmpiA ( path_w2k , detail - > DevicePath ) ,
" Unexpected path %s \n " , detail - > DevicePath ) ;
2008-03-28 18:38:46 +01:00
HeapFree ( GetProcessHeap ( ) , 0 , detail ) ;
}
}
2016-12-07 11:03:01 +01:00
ret = pSetupDiRemoveDeviceInterface ( set , & interfaceData ) ;
todo_wine ok ( ret , " SetupDiRemoveDeviceInterface failed: %08x \n " , GetLastError ( ) ) ;
2008-05-26 16:42:17 +02:00
2016-12-07 11:03:01 +01:00
ret = pSetupDiRemoveDevice ( set , & devInfo ) ;
todo_wine ok ( ret , " got %u \n " , GetLastError ( ) ) ;
2008-05-26 16:42:17 +02:00
2016-12-07 11:03:01 +01:00
pSetupDiDestroyDeviceInfoList ( set ) ;
pSetupDiDestroyDeviceInfoList ( set2 ) ;
/* remove once Wine is fixed */
devinst_RegDeleteTreeW ( HKEY_LOCAL_MACHINE , bogus ) ;
devinst_RegDeleteTreeW ( HKEY_LOCAL_MACHINE , classKey ) ;
2008-03-28 18:38:46 +01:00
}
2009-01-29 21:58:48 +01:00
static void testDeviceRegistryPropertyA ( void )
2008-04-17 18:28:04 +02:00
{
HDEVINFO set ;
SP_DEVINFO_DATA devInfo = { sizeof ( SP_DEVINFO_DATA ) , { 0 } } ;
CHAR devName [ ] = " LEGACY_BOGUS " ;
CHAR friendlyName [ ] = " Bogus " ;
CHAR buf [ 6 ] = " " ;
DWORD buflen = 6 ;
DWORD size ;
DWORD regType ;
BOOL ret ;
2008-05-26 17:42:15 +02:00
LONG res ;
HKEY key ;
static const CHAR bogus [ ] =
" System \\ CurrentControlSet \\ Enum \\ Root \\ LEGACY_BOGUS " ;
2008-04-17 18:28:04 +02:00
SetLastError ( 0xdeadbeef ) ;
set = pSetupDiGetClassDevsA ( & guid , NULL , 0 , DIGCF_DEVICEINTERFACE ) ;
ok ( set ! = INVALID_HANDLE_VALUE , " SetupDiGetClassDevsA failed: %08x \n " ,
GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoA ( set , devName , & guid , NULL , NULL ,
DICD_GENERATE_ID , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyA ( NULL , NULL , - 1 , NULL , 0 ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyA ( set , NULL , - 1 , NULL , 0 ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyA ( set , & devInfo , - 1 , NULL , 0 ) ;
todo_wine
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_REG_PROPERTY ,
" Expected ERROR_INVALID_REG_PROPERTY, got %08x \n " , GetLastError ( ) ) ;
2008-05-21 03:32:40 +02:00
/* GetLastError() returns nonsense in win2k3 */
2008-04-17 18:28:04 +02:00
ret = pSetupDiSetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , 0 ) ;
todo_wine
2008-05-21 03:32:40 +02:00
ok ( ! ret , " Expected failure, got %d \n " , ret ) ;
2008-04-17 18:28:04 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
( PBYTE ) friendlyName , buflen ) ;
ok ( ret , " SetupDiSetDeviceRegistryPropertyA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( NULL , NULL , - 1 , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( set , NULL , - 1 , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( set , & devInfo , - 1 , NULL , NULL , 0 , NULL ) ;
todo_wine
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_REG_PROPERTY ,
" Expected ERROR_INVALID_REG_PROPERTY, got %08x \n " , GetLastError ( ) ) ;
2008-05-21 03:32:40 +02:00
/* GetLastError() returns nonsense in win2k3 */
2008-04-17 18:28:04 +02:00
ret = pSetupDiGetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , NULL , buflen , NULL ) ;
2008-05-21 03:32:40 +02:00
ok ( ! ret , " Expected failure, got %d \n " , ret ) ;
2008-04-17 18:28:04 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , NULL , 0 , & size ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %08x \n " , GetLastError ( ) ) ;
ok ( buflen = = size , " Unexpected size: %d \n " , size ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , ( PBYTE ) buf , buflen , NULL ) ;
ok ( ret , " SetupDiGetDeviceRegistryPropertyA failed: %08x \n " , GetLastError ( ) ) ;
ok ( ! lstrcmpiA ( friendlyName , buf ) , " Unexpected property \n " ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
& regType , ( PBYTE ) buf , buflen , NULL ) ;
ok ( ret , " SetupDiGetDeviceRegistryPropertyA failed: %08x \n " , GetLastError ( ) ) ;
ok ( ! lstrcmpiA ( friendlyName , buf ) , " Unexpected value of property \n " ) ;
ok ( regType = = REG_SZ , " Unexpected type of property: %d \n " , regType ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , 0 ) ;
ok ( ret , " SetupDiSetDeviceRegistryPropertyA failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , ( PBYTE ) buf , buflen , & size ) ;
todo_wine
2017-05-02 05:14:57 +02:00
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_DATA ,
" Expected ERROR_INVALID_DATA, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiGetDeviceRegistryPropertyA ( set , & devInfo , SPDRP_HARDWAREID ,
NULL , NULL , 0 , & size ) ;
2008-04-17 18:28:04 +02:00
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_DATA ,
" Expected ERROR_INVALID_DATA, got %08x \n " , GetLastError ( ) ) ;
pSetupDiDestroyDeviceInfoList ( set ) ;
2008-05-26 17:42:15 +02:00
res = RegOpenKeyA ( HKEY_LOCAL_MACHINE , bogus , & key ) ;
2010-10-12 21:34:24 +02:00
if ( ! is_wow64 )
todo_wine ok ( res = = ERROR_FILE_NOT_FOUND , " Expected key to not exist \n " ) ;
2008-05-26 17:42:15 +02:00
/* FIXME: Remove when Wine is fixed */
if ( res = = ERROR_SUCCESS )
{
/* Wine doesn't delete the information currently */
RegDeleteKeyA ( HKEY_LOCAL_MACHINE , bogus ) ;
}
2008-04-17 18:28:04 +02:00
}
2009-01-29 21:58:48 +01:00
static void testDeviceRegistryPropertyW ( void )
2008-04-17 18:28:04 +02:00
{
HDEVINFO set ;
SP_DEVINFO_DATA devInfo = { sizeof ( SP_DEVINFO_DATA ) , { 0 } } ;
WCHAR devName [ ] = { ' L ' , ' E ' , ' G ' , ' A ' , ' C ' , ' Y ' , ' _ ' , ' B ' , ' O ' , ' G ' , ' U ' , ' S ' , 0 } ;
WCHAR friendlyName [ ] = { ' B ' , ' o ' , ' g ' , ' u ' , ' s ' , 0 } ;
WCHAR buf [ 6 ] = { 0 } ;
DWORD buflen = 6 * sizeof ( WCHAR ) ;
DWORD size ;
DWORD regType ;
BOOL ret ;
2008-05-26 17:42:15 +02:00
LONG res ;
HKEY key ;
static const WCHAR bogus [ ] = { ' S ' , ' y ' , ' s ' , ' t ' , ' e ' , ' m ' , ' \\ ' ,
' C ' , ' u ' , ' r ' , ' r ' , ' e ' , ' n ' , ' t ' , ' C ' , ' o ' , ' n ' , ' t ' , ' r ' , ' o ' , ' l ' , ' S ' , ' e ' , ' t ' , ' \\ ' ,
' E ' , ' n ' , ' u ' , ' m ' , ' \\ ' , ' R ' , ' o ' , ' o ' , ' t ' , ' \\ ' ,
' L ' , ' E ' , ' G ' , ' A ' , ' C ' , ' Y ' , ' _ ' , ' B ' , ' O ' , ' G ' , ' U ' , ' S ' , 0 } ;
2008-04-17 18:28:04 +02:00
SetLastError ( 0xdeadbeef ) ;
set = pSetupDiGetClassDevsW ( & guid , NULL , 0 , DIGCF_DEVICEINTERFACE ) ;
ok ( set ! = INVALID_HANDLE_VALUE , " SetupDiGetClassDevsW failed: %08x \n " ,
GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiCreateDeviceInfoW ( set , devName , & guid , NULL , NULL ,
DICD_GENERATE_ID , & devInfo ) ;
ok ( ret , " SetupDiCreateDeviceInfoW failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyW ( NULL , NULL , - 1 , NULL , 0 ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyW ( set , NULL , - 1 , NULL , 0 ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyW ( set , & devInfo , - 1 , NULL , 0 ) ;
todo_wine
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_REG_PROPERTY ,
" Expected ERROR_INVALID_REG_PROPERTY, got %08x \n " , GetLastError ( ) ) ;
2008-05-21 03:32:40 +02:00
/* GetLastError() returns nonsense in win2k3 */
2008-04-17 18:28:04 +02:00
ret = pSetupDiSetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , 0 ) ;
todo_wine
2008-05-21 03:32:40 +02:00
ok ( ! ret , " Expected failure, got %d \n " , ret ) ;
2008-04-17 18:28:04 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
( PBYTE ) friendlyName , buflen ) ;
ok ( ret , " SetupDiSetDeviceRegistryPropertyW failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( NULL , NULL , - 1 , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_HANDLE ,
" Expected ERROR_INVALID_HANDLE, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( set , NULL , - 1 , NULL , NULL , 0 , NULL ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_PARAMETER ,
" Expected ERROR_INVALID_PARAMETER, got %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( set , & devInfo , - 1 , NULL , NULL , 0 , NULL ) ;
todo_wine
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_REG_PROPERTY ,
" Expected ERROR_INVALID_REG_PROPERTY, got %08x \n " , GetLastError ( ) ) ;
2008-05-21 03:32:40 +02:00
/* GetLastError() returns nonsense in win2k3 */
2008-04-17 18:28:04 +02:00
ret = pSetupDiGetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , NULL , buflen , NULL ) ;
2008-05-21 03:32:40 +02:00
ok ( ! ret , " Expected failure, got %d \n " , ret ) ;
2008-04-17 18:28:04 +02:00
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , NULL , 0 , & size ) ;
ok ( ! ret & & GetLastError ( ) = = ERROR_INSUFFICIENT_BUFFER ,
" Expected ERROR_INSUFFICIENT_BUFFER, got %08x \n " , GetLastError ( ) ) ;
ok ( buflen = = size , " Unexpected size: %d \n " , size ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , ( PBYTE ) buf , buflen , NULL ) ;
ok ( ret , " SetupDiGetDeviceRegistryPropertyW failed: %08x \n " , GetLastError ( ) ) ;
ok ( ! lstrcmpiW ( friendlyName , buf ) , " Unexpected property \n " ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
& regType , ( PBYTE ) buf , buflen , NULL ) ;
ok ( ret , " SetupDiGetDeviceRegistryPropertyW failed: %08x \n " , GetLastError ( ) ) ;
ok ( ! lstrcmpiW ( friendlyName , buf ) , " Unexpected value of property \n " ) ;
ok ( regType = = REG_SZ , " Unexpected type of property: %d \n " , regType ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiSetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , 0 ) ;
ok ( ret , " SetupDiSetDeviceRegistryPropertyW failed: %08x \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_FRIENDLYNAME ,
NULL , ( PBYTE ) buf , buflen , & size ) ;
todo_wine
2017-05-02 05:14:57 +02:00
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_DATA ,
" Expected ERROR_INVALID_DATA, got %08x \n " , GetLastError ( ) ) ;
ret = pSetupDiGetDeviceRegistryPropertyW ( set , & devInfo , SPDRP_HARDWAREID ,
NULL , NULL , 0 , & size ) ;
2008-04-17 18:28:04 +02:00
ok ( ! ret & & GetLastError ( ) = = ERROR_INVALID_DATA ,
" Expected ERROR_INVALID_DATA, got %08x \n " , GetLastError ( ) ) ;
pSetupDiDestroyDeviceInfoList ( set ) ;
2008-05-26 17:42:15 +02:00
res = RegOpenKeyW ( HKEY_LOCAL_MACHINE , bogus , & key ) ;
2010-10-12 21:34:24 +02:00
if ( ! is_wow64 )
todo_wine ok ( res = = ERROR_FILE_NOT_FOUND , " Expected key to not exist \n " ) ;
2008-05-26 17:42:15 +02:00
/* FIXME: Remove when Wine is fixed */
if ( res = = ERROR_SUCCESS )
{
/* Wine doesn't delete the information currently */
RegDeleteKeyW ( HKEY_LOCAL_MACHINE , bogus ) ;
}
2008-04-17 18:28:04 +02:00
}
2010-09-11 23:15:19 +02:00
static void testSetupDiGetINFClassA ( void )
{
static const char inffile [ ] = " winetest.inf " ;
static const char content [ ] = " [Version] \r \n \r \n " ;
2013-12-17 21:42:11 +01:00
static const char * signatures [ ] = { " \" $CHICAGO$ \" " , " \" $Windows NT$ \" " } ;
2010-09-11 23:15:19 +02:00
char cn [ MAX_PATH ] ;
char filename [ MAX_PATH ] ;
DWORD count ;
BOOL retval ;
GUID guid ;
HANDLE h ;
2013-12-17 21:42:11 +01:00
int i ;
2010-09-11 23:15:19 +02:00
if ( ! pSetupDiGetINFClassA )
{
win_skip ( " SetupDiGetINFClassA not present \n " ) ;
return ;
}
count = GetTempPathA ( MAX_PATH , filename ) ;
if ( ! count )
{
win_skip ( " GetTempPathA failed \n " ) ;
return ;
}
strcat ( filename , inffile ) ;
DeleteFileA ( filename ) ;
/* not existing file */
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
if ( ERROR_CALL_NOT_IMPLEMENTED = = GetLastError ( ) )
{
skip ( " SetupDiGetINFClassA is not implemented \n " ) ;
return ;
}
ok ( ERROR_FILE_NOT_FOUND = = GetLastError ( ) ,
" expected error ERROR_FILE_NOT_FOUND, got %u \n " , GetLastError ( ) ) ;
/* missing file wins against other invalid parameter */
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , NULL , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_FILE_NOT_FOUND = = GetLastError ( ) ,
" expected error ERROR_FILE_NOT_FOUND, got %u \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , NULL , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_FILE_NOT_FOUND = = GetLastError ( ) ,
" expected error ERROR_FILE_NOT_FOUND, got %u \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , 0 , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_FILE_NOT_FOUND = = GetLastError ( ) ,
" expected error ERROR_FILE_NOT_FOUND, got %u \n " , GetLastError ( ) ) ;
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , NULL ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_FILE_NOT_FOUND = = GetLastError ( ) ,
" expected error ERROR_FILE_NOT_FOUND, got %u \n " , GetLastError ( ) ) ;
/* test file content */
h = CreateFileA ( filename , GENERIC_WRITE , 0 , NULL , CREATE_ALWAYS ,
FILE_ATTRIBUTE_NORMAL , NULL ) ;
if ( h = = INVALID_HANDLE_VALUE )
{
win_skip ( " failed to create file %s (error %u) \n " , filename , GetLastError ( ) ) ;
return ;
}
CloseHandle ( h ) ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
2013-12-17 21:42:11 +01:00
for ( i = 0 ; i < sizeof ( signatures ) / sizeof ( char * ) ; i + + )
2010-09-11 23:15:19 +02:00
{
2016-12-07 11:03:01 +01:00
trace ( " testing signature %s \n " , signatures [ i ] ) ;
2013-12-17 21:42:11 +01:00
h = CreateFileA ( filename , GENERIC_WRITE , 0 , NULL , CREATE_ALWAYS ,
FILE_ATTRIBUTE_NORMAL , NULL ) ;
if ( h = = INVALID_HANDLE_VALUE )
{
win_skip ( " failed to create file %s (error %u) \n " , filename , GetLastError ( ) ) ;
return ;
}
WriteFile ( h , content , sizeof ( content ) , & count , NULL ) ;
CloseHandle ( h ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
WritePrivateProfileStringA ( " Version " , " Signature " , signatures [ i ] , filename ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
2010-09-29 23:05:03 +02:00
2013-12-17 21:42:11 +01:00
WritePrivateProfileStringA ( " Version " , " Class " , " WINE " , filename ) ;
2010-09-29 23:05:03 +02:00
2013-12-17 21:42:11 +01:00
count = 0xdeadbeef ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , & count ) ;
ok ( retval , " expected SetupDiGetINFClassA to succeed! error %u \n " , GetLastError ( ) ) ;
ok ( count = = 5 , " expected count==5, got %u \n " , count ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
count = 0xdeadbeef ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , 5 , & count ) ;
ok ( retval , " expected SetupDiGetINFClassA to succeed! error %u \n " , GetLastError ( ) ) ;
ok ( count = = 5 , " expected count==5, got %u \n " , count ) ;
2010-09-29 23:05:03 +02:00
2013-12-17 21:42:11 +01:00
count = 0xdeadbeef ;
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , 4 , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_INSUFFICIENT_BUFFER = = GetLastError ( ) ,
" expected error ERROR_INSUFFICIENT_BUFFER, got %u \n " , GetLastError ( ) ) ;
ok ( count = = 5 , " expected count==5, got %u \n " , count ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
/* invalid parameter */
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( NULL , & guid , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_INVALID_PARAMETER = = GetLastError ( ) ,
" expected error ERROR_INVALID_PARAMETER, got %u \n " , GetLastError ( ) ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , NULL , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_INVALID_PARAMETER = = GetLastError ( ) ,
" expected error ERROR_INVALID_PARAMETER, got %u \n " , GetLastError ( ) ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , NULL , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_INVALID_PARAMETER = = GetLastError ( ) ,
" expected error ERROR_INVALID_PARAMETER, got %u \n " , GetLastError ( ) ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , 0 , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( ERROR_INSUFFICIENT_BUFFER = = GetLastError ( ) | |
ERROR_INVALID_PARAMETER = = GetLastError ( ) ,
" expected error ERROR_INSUFFICIENT_BUFFER or ERROR_INVALID_PARAMETER, "
" got %u \n " , GetLastError ( ) ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
DeleteFileA ( filename ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
WritePrivateProfileStringA ( " Version " , " Signature " , signatures [ i ] , filename ) ;
WritePrivateProfileStringA ( " Version " , " ClassGUID " , " WINE " , filename ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
SetLastError ( 0xdeadbeef ) ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , & count ) ;
ok ( ! retval , " expected SetupDiGetINFClassA to fail! \n " ) ;
ok ( RPC_S_INVALID_STRING_UUID = = GetLastError ( ) | |
ERROR_INVALID_PARAMETER = = GetLastError ( ) ,
" expected error RPC_S_INVALID_STRING_UUID or ERROR_INVALID_PARAMETER, "
" got %u \n " , GetLastError ( ) ) ;
/* network adapter guid */
WritePrivateProfileStringA ( " Version " , " ClassGUID " ,
" {4d36e972-e325-11ce-bfc1-08002be10318} " , filename ) ;
/* this test succeeds only if the guid is known to the system */
count = 0xdeadbeef ;
retval = SetupDiGetINFClassA ( filename , & guid , cn , MAX_PATH , & count ) ;
ok ( retval , " expected SetupDiGetINFClassA to succeed! error %u \n " , GetLastError ( ) ) ;
todo_wine
ok ( count = = 4 , " expected count==4, got %u(%s) \n " , count , cn ) ;
2010-09-11 23:15:19 +02:00
2013-12-17 21:42:11 +01:00
DeleteFileA ( filename ) ;
}
2010-09-11 23:15:19 +02:00
}
2006-06-13 19:13:32 +02:00
START_TEST ( devinst )
{
2016-12-19 11:38:52 +01:00
HKEY hkey ;
2011-02-28 22:06:23 +01:00
init_function_pointers ( ) ;
2006-08-15 17:40:31 +02:00
2016-12-19 11:38:52 +01:00
if ( ( hkey = SetupDiOpenClassRegKey ( NULL , KEY_ALL_ACCESS ) ) = = INVALID_HANDLE_VALUE )
{
skip ( " needs admin rights \n " ) ;
return ;
}
RegCloseKey ( hkey ) ;
2010-10-12 21:34:24 +02:00
if ( pIsWow64Process )
pIsWow64Process ( GetCurrentProcess ( ) , & is_wow64 ) ;
2008-06-23 15:48:16 +02:00
if ( pSetupDiCreateDeviceInfoListExW )
2006-08-15 17:40:31 +02:00
test_SetupDiCreateDeviceInfoListEx ( ) ;
else
2009-02-23 10:41:15 +01:00
win_skip ( " SetupDiCreateDeviceInfoListExW is not available \n " ) ;
2006-09-09 13:25:30 +02:00
if ( pSetupDiOpenClassRegKeyExA )
test_SetupDiOpenClassRegKeyExA ( ) ;
else
2009-02-23 10:41:15 +01:00
win_skip ( " SetupDiOpenClassRegKeyExA is not available \n " ) ;
2008-06-20 15:43:59 +02:00
2007-10-11 23:06:06 +02:00
testInstallClass ( ) ;
2007-09-20 02:45:12 +02:00
testCreateDeviceInfo ( ) ;
2007-09-20 02:46:11 +02:00
testGetDeviceInstanceId ( ) ;
2007-09-20 18:16:01 +02:00
testRegisterDeviceInfo ( ) ;
2007-09-21 20:34:03 +02:00
testCreateDeviceInterface ( ) ;
2007-09-21 20:38:33 +02:00
testGetDeviceInterfaceDetail ( ) ;
2007-10-12 17:24:27 +02:00
testDevRegKey ( ) ;
2008-03-28 18:38:46 +01:00
testRegisterAndGetDetail ( ) ;
2008-04-17 18:28:04 +02:00
testDeviceRegistryPropertyA ( ) ;
testDeviceRegistryPropertyW ( ) ;
2010-09-11 23:15:19 +02:00
testSetupDiGetINFClassA ( ) ;
2006-06-13 19:13:32 +02:00
}