2019-02-01 09:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
* Copyright (C) 2019 WireGuard LLC. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
package setupapi
|
|
|
|
|
|
|
|
import (
|
2019-02-04 07:23:55 +00:00
|
|
|
"strings"
|
2019-02-01 09:58:06 +00:00
|
|
|
"syscall"
|
|
|
|
"testing"
|
|
|
|
|
2019-02-18 03:44:41 +00:00
|
|
|
"golang.zx2c4.com/wireguard/tun/wintun/guid"
|
2019-02-01 09:58:06 +00:00
|
|
|
"golang.org/x/sys/windows"
|
|
|
|
)
|
|
|
|
|
2019-02-01 11:17:09 +00:00
|
|
|
var deviceClassNetGUID = windows.GUID{0x4d36e972, 0xe325, 0x11ce, [8]byte{0xbf, 0xc1, 0x08, 0x00, 0x2b, 0xe1, 0x03, 0x18}}
|
2019-02-01 10:39:57 +00:00
|
|
|
var computerName string
|
2019-02-01 09:58:06 +00:00
|
|
|
|
2019-02-01 10:39:57 +00:00
|
|
|
func init() {
|
|
|
|
computerName, _ = windows.ComputerName()
|
|
|
|
}
|
2019-02-01 09:58:06 +00:00
|
|
|
|
2019-02-04 10:49:26 +00:00
|
|
|
func TestSetupDiCreateDeviceInfoListEx(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiCreateDeviceInfoListEx(&deviceClassNetGUID, 0, "")
|
|
|
|
if err == nil {
|
|
|
|
devInfoList.Close()
|
|
|
|
} else {
|
|
|
|
t.Errorf("Error calling SetupDiCreateDeviceInfoListEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
devInfoList, err = SetupDiCreateDeviceInfoListEx(&deviceClassNetGUID, 0, computerName)
|
|
|
|
if err == nil {
|
|
|
|
devInfoList.Close()
|
|
|
|
} else {
|
|
|
|
t.Errorf("Error calling SetupDiCreateDeviceInfoListEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
devInfoList, err = SetupDiCreateDeviceInfoListEx(nil, 0, "")
|
|
|
|
if err == nil {
|
|
|
|
devInfoList.Close()
|
|
|
|
} else {
|
|
|
|
t.Errorf("Error calling SetupDiCreateDeviceInfoListEx(nil): %s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-04 14:21:19 +00:00
|
|
|
func TestSetupDiGetDeviceInfoListDetail(t *testing.T) {
|
2019-02-01 11:17:09 +00:00
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
2019-02-01 10:39:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
2019-02-01 12:00:44 +00:00
|
|
|
defer devInfoList.Close()
|
2019-02-01 10:39:57 +00:00
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
data, err := devInfoList.GetDeviceInfoListDetail()
|
2019-02-01 10:39:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
2019-02-04 10:45:37 +00:00
|
|
|
} else {
|
|
|
|
if data.ClassGUID != deviceClassNetGUID {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
|
|
|
}
|
2019-02-01 10:39:57 +00:00
|
|
|
|
2019-02-04 10:45:37 +00:00
|
|
|
if data.RemoteMachineHandle != windows.Handle(0) {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine handle")
|
|
|
|
}
|
2019-02-01 10:39:57 +00:00
|
|
|
|
2019-02-07 21:23:03 +00:00
|
|
|
if data.GetRemoteMachineName() != "" {
|
2019-02-04 10:45:37 +00:00
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine name")
|
|
|
|
}
|
2019-02-01 10:39:57 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 14:21:19 +00:00
|
|
|
devInfoList, err = SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), computerName)
|
2019-02-01 10:39:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
2019-02-01 12:00:44 +00:00
|
|
|
defer devInfoList.Close()
|
2019-02-01 10:39:57 +00:00
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
data, err = devInfoList.GetDeviceInfoListDetail()
|
2019-02-01 10:39:57 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
2019-02-04 10:45:37 +00:00
|
|
|
} else {
|
|
|
|
if data.ClassGUID != deviceClassNetGUID {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
|
|
|
}
|
2019-02-01 10:39:57 +00:00
|
|
|
|
2019-02-04 10:45:37 +00:00
|
|
|
if data.RemoteMachineHandle == windows.Handle(0) {
|
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned NULL remote machine handle")
|
|
|
|
}
|
2019-02-01 10:39:57 +00:00
|
|
|
|
2019-02-07 21:23:03 +00:00
|
|
|
if data.GetRemoteMachineName() != computerName {
|
2019-02-04 10:45:37 +00:00
|
|
|
t.Error("SetupDiGetDeviceInfoListDetail returned different remote machine name")
|
|
|
|
}
|
2019-02-01 10:39:57 +00:00
|
|
|
}
|
2019-02-07 21:23:03 +00:00
|
|
|
|
|
|
|
data = &DevInfoListDetailData{}
|
|
|
|
data.SetRemoteMachineName("foobar")
|
|
|
|
if data.GetRemoteMachineName() != "foobar" {
|
|
|
|
t.Error("DevInfoListDetailData.(Get|Set)RemoteMachineName() differ")
|
|
|
|
}
|
2019-02-01 10:39:57 +00:00
|
|
|
}
|
2019-02-01 11:17:09 +00:00
|
|
|
|
2019-02-04 14:21:19 +00:00
|
|
|
func TestSetupDiCreateDeviceInfo(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiCreateDeviceInfoListEx(&deviceClassNetGUID, 0, computerName)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiCreateDeviceInfoListEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
deviceClassNetName, err := SetupDiClassNameFromGuidEx(&deviceClassNetGUID, computerName)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassNameFromGuidEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
devInfoData, err := devInfoList.CreateDeviceInfo(deviceClassNetName, &deviceClassNetGUID, "This is a test device", 0, DICD_GENERATE_ID)
|
2019-02-04 14:21:19 +00:00
|
|
|
if err != nil {
|
|
|
|
// Access denied is expected, as the SetupDiCreateDeviceInfo() require elevation to succeed.
|
|
|
|
if errWin, ok := err.(syscall.Errno); !ok || errWin != windows.ERROR_ACCESS_DENIED {
|
|
|
|
t.Errorf("Error calling SetupDiCreateDeviceInfo: %s", err.Error())
|
|
|
|
}
|
|
|
|
} else if devInfoData.ClassGUID != deviceClassNetGUID {
|
|
|
|
t.Error("SetupDiCreateDeviceInfo returned different class GUID")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-01 11:17:09 +00:00
|
|
|
func TestSetupDiEnumDeviceInfo(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
2019-02-01 12:00:44 +00:00
|
|
|
defer devInfoList.Close()
|
2019-02-01 11:17:09 +00:00
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
2019-02-05 07:45:44 +00:00
|
|
|
data, err := devInfoList.EnumDeviceInfo(i)
|
2019-02-01 11:17:09 +00:00
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if data.ClassGUID != deviceClassNetGUID {
|
|
|
|
t.Error("SetupDiEnumDeviceInfo returned different class GUID")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-01 12:00:44 +00:00
|
|
|
|
2019-02-05 15:29:17 +00:00
|
|
|
func TestDevInfo_BuildDriverInfoList(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
|
|
|
deviceData, err := devInfoList.EnumDeviceInfo(i)
|
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
const driverType SPDIT = SPDIT_COMPATDRIVER
|
|
|
|
err = devInfoList.BuildDriverInfoList(deviceData, driverType)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiBuildDriverInfoList: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.DestroyDriverInfoList(deviceData, driverType)
|
|
|
|
|
2019-02-07 22:12:58 +00:00
|
|
|
var selectedDriverData *DrvInfoData
|
2019-02-05 15:29:17 +00:00
|
|
|
for j := 0; true; j++ {
|
|
|
|
driverData, err := devInfoList.EnumDriverInfo(deviceData, driverType, j)
|
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
if driverData.DriverType == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-02-06 19:17:47 +00:00
|
|
|
if !driverData.IsNewer(windows.Filetime{}, 0) {
|
|
|
|
t.Error("Driver should have non-zero date and version")
|
|
|
|
}
|
|
|
|
if !driverData.IsNewer(windows.Filetime{HighDateTime: driverData.DriverDate.HighDateTime}, 0) {
|
|
|
|
t.Error("Driver should have non-zero date and version")
|
|
|
|
}
|
|
|
|
if driverData.IsNewer(windows.Filetime{HighDateTime: driverData.DriverDate.HighDateTime + 1}, 0) {
|
|
|
|
t.Error("Driver should report newer version on high-date-time")
|
|
|
|
}
|
|
|
|
if !driverData.IsNewer(windows.Filetime{HighDateTime: driverData.DriverDate.HighDateTime, LowDateTime: driverData.DriverDate.LowDateTime}, 0) {
|
|
|
|
t.Error("Driver should have non-zero version")
|
|
|
|
}
|
|
|
|
if driverData.IsNewer(windows.Filetime{HighDateTime: driverData.DriverDate.HighDateTime, LowDateTime: driverData.DriverDate.LowDateTime + 1}, 0) {
|
|
|
|
t.Error("Driver should report newer version on low-date-time")
|
|
|
|
}
|
|
|
|
if driverData.IsNewer(windows.Filetime{HighDateTime: driverData.DriverDate.HighDateTime, LowDateTime: driverData.DriverDate.LowDateTime}, driverData.DriverVersion) {
|
|
|
|
t.Error("Driver should not be newer than itself")
|
|
|
|
}
|
|
|
|
if driverData.IsNewer(windows.Filetime{HighDateTime: driverData.DriverDate.HighDateTime, LowDateTime: driverData.DriverDate.LowDateTime}, driverData.DriverVersion+1) {
|
|
|
|
t.Error("Driver should report newer version on version")
|
|
|
|
}
|
|
|
|
|
2019-02-05 15:29:17 +00:00
|
|
|
err = devInfoList.SetSelectedDriver(deviceData, driverData)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiSetSelectedDriver: %s", err.Error())
|
|
|
|
} else {
|
|
|
|
selectedDriverData = driverData
|
|
|
|
}
|
|
|
|
|
2019-02-06 19:18:44 +00:00
|
|
|
driverDetailData, err := devInfoList.GetDriverInfoDetail(deviceData, driverData)
|
2019-02-05 15:29:17 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDriverInfoDetail: %s", err.Error())
|
|
|
|
}
|
2019-02-06 19:18:44 +00:00
|
|
|
|
|
|
|
if driverDetailData.IsCompatible("foobar-aab6e3a4-144e-4786-88d3-6cec361e1edd") {
|
|
|
|
t.Error("Invalid HWID compatibitlity reported")
|
|
|
|
}
|
2019-02-07 22:45:11 +00:00
|
|
|
if !driverDetailData.IsCompatible(strings.ToUpper(driverDetailData.GetHardwareID())) {
|
2019-02-06 19:18:44 +00:00
|
|
|
t.Error("HWID compatibitlity missed")
|
|
|
|
}
|
2019-02-07 22:45:11 +00:00
|
|
|
a := driverDetailData.GetCompatIDs()
|
|
|
|
for k := range a {
|
|
|
|
if !driverDetailData.IsCompatible(strings.ToUpper(a[k])) {
|
2019-02-06 19:18:44 +00:00
|
|
|
t.Error("HWID compatibitlity missed")
|
|
|
|
}
|
|
|
|
}
|
2019-02-05 15:29:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
selectedDriverData2, err := devInfoList.GetSelectedDriver(deviceData)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetSelectedDriver: %s", err.Error())
|
|
|
|
} else if *selectedDriverData != *selectedDriverData2 {
|
|
|
|
t.Error("SetupDiGetSelectedDriver should return driver selected with SetupDiSetSelectedDriver")
|
|
|
|
}
|
|
|
|
}
|
2019-02-07 22:12:58 +00:00
|
|
|
|
|
|
|
data := &DrvInfoData{}
|
|
|
|
data.SetDescription("foobar")
|
|
|
|
if data.GetDescription() != "foobar" {
|
|
|
|
t.Error("DrvInfoData.(Get|Set)Description() differ")
|
|
|
|
}
|
|
|
|
data.SetMfgName("foobar")
|
|
|
|
if data.GetMfgName() != "foobar" {
|
|
|
|
t.Error("DrvInfoData.(Get|Set)MfgName() differ")
|
|
|
|
}
|
|
|
|
data.SetProviderName("foobar")
|
|
|
|
if data.GetProviderName() != "foobar" {
|
|
|
|
t.Error("DrvInfoData.(Get|Set)ProviderName() differ")
|
|
|
|
}
|
2019-02-05 15:29:17 +00:00
|
|
|
}
|
|
|
|
|
2019-02-04 14:21:19 +00:00
|
|
|
func TestSetupDiGetClassDevsEx(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "PCI", 0, DIGCF_PRESENT, DevInfo(0), computerName)
|
|
|
|
if err == nil {
|
|
|
|
devInfoList.Close()
|
|
|
|
} else {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
devInfoList, err = SetupDiGetClassDevsEx(nil, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err == nil {
|
|
|
|
devInfoList.Close()
|
|
|
|
t.Errorf("SetupDiGetClassDevsEx(nil, ...) should fail")
|
|
|
|
} else {
|
|
|
|
if errWin, ok := err.(syscall.Errno); !ok || errWin != 87 /*ERROR_INVALID_PARAMETER*/ {
|
|
|
|
t.Errorf("SetupDiGetClassDevsEx(nil, ...) should fail with ERROR_INVALID_PARAMETER")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-01 12:00:44 +00:00
|
|
|
func TestSetupDiOpenDevRegKey(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
2019-02-05 07:45:44 +00:00
|
|
|
data, err := devInfoList.EnumDeviceInfo(i)
|
2019-02-01 12:00:44 +00:00
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
key, err := devInfoList.OpenDevRegKey(data, DICS_FLAG_GLOBAL, 0, DIREG_DRV, windows.KEY_READ)
|
2019-02-01 12:00:44 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiOpenDevRegKey: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer key.Close()
|
|
|
|
}
|
|
|
|
}
|
2019-02-01 12:59:53 +00:00
|
|
|
|
2019-02-05 10:44:47 +00:00
|
|
|
func TestSetupDiGetDeviceRegistryProperty(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
|
|
|
data, err := devInfoList.EnumDeviceInfo(i)
|
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err := devInfoList.GetDeviceRegistryProperty(data, SPDRP_CLASS)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceRegistryProperty(SPDRP_CLASS): %s", err.Error())
|
|
|
|
} else if class, ok := val.(string); !ok || strings.ToLower(class) != "net" {
|
|
|
|
t.Errorf("SetupDiGetDeviceRegistryProperty(SPDRP_CLASS) should return \"Net\"")
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err = devInfoList.GetDeviceRegistryProperty(data, SPDRP_CLASSGUID)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceRegistryProperty(SPDRP_CLASSGUID): %s", err.Error())
|
2019-02-07 17:49:21 +00:00
|
|
|
} else if valStr, ok := val.(string); !ok {
|
|
|
|
t.Errorf("SetupDiGetDeviceRegistryProperty(SPDRP_CLASSGUID) should return string")
|
|
|
|
} else {
|
|
|
|
classGUID, err := guid.FromString(valStr)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error parsing GUID returned by SetupDiGetDeviceRegistryProperty(SPDRP_CLASSGUID): %s", err.Error())
|
|
|
|
} else if *classGUID != deviceClassNetGUID {
|
|
|
|
t.Errorf("SetupDiGetDeviceRegistryProperty(SPDRP_CLASSGUID) should return %x", deviceClassNetGUID)
|
|
|
|
}
|
|
|
|
}
|
2019-02-05 10:44:47 +00:00
|
|
|
|
|
|
|
val, err = devInfoList.GetDeviceRegistryProperty(data, SPDRP_COMPATIBLEIDS)
|
|
|
|
if err != nil {
|
|
|
|
// Some devices have no SPDRP_COMPATIBLEIDS.
|
|
|
|
if errWin, ok := err.(syscall.Errno); !ok || errWin != 13 /*windows.ERROR_INVALID_DATA*/ {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceRegistryProperty(SPDRP_COMPATIBLEIDS): %s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err = devInfoList.GetDeviceRegistryProperty(data, SPDRP_CONFIGFLAGS)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceRegistryProperty(SPDRP_CONFIGFLAGS): %s", err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
val, err = devInfoList.GetDeviceRegistryProperty(data, SPDRP_DEVICE_POWER_DATA)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetDeviceRegistryProperty(SPDRP_DEVICE_POWER_DATA): %s", err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-01 12:59:53 +00:00
|
|
|
func TestSetupDiGetDeviceInstallParams(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
2019-02-05 07:45:44 +00:00
|
|
|
data, err := devInfoList.EnumDeviceInfo(i)
|
2019-02-01 12:59:53 +00:00
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
_, err = devInfoList.GetDeviceInstallParams(data)
|
2019-02-01 12:59:53 +00:00
|
|
|
if err != nil {
|
2019-02-05 07:45:44 +00:00
|
|
|
t.Errorf("Error calling SetupDiGetDeviceInstallParams: %s", err.Error())
|
2019-02-01 12:59:53 +00:00
|
|
|
}
|
|
|
|
}
|
2019-02-07 21:35:03 +00:00
|
|
|
|
|
|
|
params := &DevInstallParams{}
|
|
|
|
params.SetDriverPath("foobar")
|
|
|
|
if params.GetDriverPath() != "foobar" {
|
|
|
|
t.Error("DevInstallParams.(Get|Set)DriverPath() differ")
|
|
|
|
}
|
2019-02-01 12:59:53 +00:00
|
|
|
}
|
2019-02-04 14:21:19 +00:00
|
|
|
|
|
|
|
func TestSetupDiClassNameFromGuidEx(t *testing.T) {
|
|
|
|
deviceClassNetName, err := SetupDiClassNameFromGuidEx(&deviceClassNetGUID, "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassNameFromGuidEx: %s", err.Error())
|
|
|
|
} else if strings.ToLower(deviceClassNetName) != "net" {
|
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(%x) should return \"Net\"", deviceClassNetGUID)
|
|
|
|
}
|
|
|
|
|
|
|
|
deviceClassNetName, err = SetupDiClassNameFromGuidEx(&deviceClassNetGUID, computerName)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassNameFromGuidEx: %s", err.Error())
|
|
|
|
} else if strings.ToLower(deviceClassNetName) != "net" {
|
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(%x) should return \"Net\"", deviceClassNetGUID)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = SetupDiClassNameFromGuidEx(nil, "")
|
|
|
|
if err == nil {
|
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(nil) should fail")
|
|
|
|
} else {
|
|
|
|
if errWin, ok := err.(syscall.Errno); !ok || errWin != 1784 /*ERROR_INVALID_USER_BUFFER*/ {
|
|
|
|
t.Errorf("SetupDiClassNameFromGuidEx(nil) should fail with ERROR_INVALID_USER_BUFFER")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSetupDiClassGuidsFromNameEx(t *testing.T) {
|
|
|
|
ClassGUIDs, err := SetupDiClassGuidsFromNameEx("Net", "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassGuidsFromNameEx: %s", err.Error())
|
|
|
|
} else {
|
|
|
|
found := false
|
|
|
|
for i := range ClassGUIDs {
|
|
|
|
if ClassGUIDs[i] == deviceClassNetGUID {
|
|
|
|
found = true
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !found {
|
|
|
|
t.Errorf("SetupDiClassGuidsFromNameEx(\"Net\") should return %x", deviceClassNetGUID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ClassGUIDs, err = SetupDiClassGuidsFromNameEx("foobar-34274a51-a6e6-45f0-80d6-c62be96dd5fe", computerName)
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiClassGuidsFromNameEx: %s", err.Error())
|
|
|
|
} else if len(ClassGUIDs) != 0 {
|
|
|
|
t.Errorf("SetupDiClassGuidsFromNameEx(\"foobar-34274a51-a6e6-45f0-80d6-c62be96dd5fe\") should return an empty GUID set")
|
|
|
|
}
|
|
|
|
}
|
2019-02-04 14:50:59 +00:00
|
|
|
|
|
|
|
func TestSetupDiGetSelectedDevice(t *testing.T) {
|
|
|
|
devInfoList, err := SetupDiGetClassDevsEx(&deviceClassNetGUID, "", 0, DIGCF_PRESENT, DevInfo(0), "")
|
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetClassDevsEx: %s", err.Error())
|
|
|
|
}
|
|
|
|
defer devInfoList.Close()
|
|
|
|
|
|
|
|
for i := 0; true; i++ {
|
2019-02-05 07:45:44 +00:00
|
|
|
data, err := devInfoList.EnumDeviceInfo(i)
|
2019-02-04 14:50:59 +00:00
|
|
|
if err != nil {
|
|
|
|
if errWin, ok := err.(syscall.Errno); ok && errWin == 259 /*ERROR_NO_MORE_ITEMS*/ {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
err = devInfoList.SetSelectedDevice(data)
|
2019-02-04 14:50:59 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiSetSelectedDevice: %s", err.Error())
|
|
|
|
}
|
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
data2, err := devInfoList.GetSelectedDevice()
|
2019-02-04 14:50:59 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Errorf("Error calling SetupDiGetSelectedDevice: %s", err.Error())
|
|
|
|
} else if *data != *data2 {
|
|
|
|
t.Error("SetupDiGetSelectedDevice returned different data than was set by SetupDiSetSelectedDevice")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-05 07:45:44 +00:00
|
|
|
err = devInfoList.SetSelectedDevice(nil)
|
2019-02-04 14:50:59 +00:00
|
|
|
if err == nil {
|
|
|
|
t.Errorf("SetupDiSetSelectedDevice(nil) should fail")
|
|
|
|
} else {
|
|
|
|
if errWin, ok := err.(syscall.Errno); !ok || errWin != 87 /*ERROR_INVALID_PARAMETER*/ {
|
|
|
|
t.Errorf("SetupDiSetSelectedDevice(nil) should fail with ERROR_INVALID_USER_BUFFER")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-06 19:15:40 +00:00
|
|
|
|
|
|
|
func TestUTF16ToBuf(t *testing.T) {
|
|
|
|
buf := []uint16{0x0123, 0x4567, 0x89ab, 0xcdef}
|
|
|
|
buf2 := UTF16ToBuf(buf)
|
|
|
|
if len(buf)*2 != len(buf2) ||
|
|
|
|
cap(buf)*2 != cap(buf2) ||
|
|
|
|
buf2[0] != 0x23 || buf2[1] != 0x01 ||
|
|
|
|
buf2[2] != 0x67 || buf2[3] != 0x45 ||
|
|
|
|
buf2[4] != 0xab || buf2[5] != 0x89 ||
|
|
|
|
buf2[6] != 0xef || buf2[7] != 0xcd {
|
|
|
|
t.Errorf("SetupDiSetSelectedDevice(nil) should fail with ERROR_INVALID_USER_BUFFER")
|
|
|
|
}
|
|
|
|
}
|