mirror of
https://git.zx2c4.com/wireguard-go
synced 2024-11-15 01:05:15 +01:00
Stop accessing SetupDiGetDeviceInfoListDetail() output on error
The data returned by SetupDiGetDeviceInfoListDetail() is nil on error which will cause the test to crash should the function fail. Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
parent
e821cdabd2
commit
963be8e993
@ -99,18 +99,18 @@ func TestSetupDiGetDeviceInfoListDetailLocal(t *testing.T) {
|
|||||||
data, err := SetupDiGetDeviceInfoListDetail(devInfoList)
|
data, err := SetupDiGetDeviceInfoListDetail(devInfoList)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
||||||
}
|
} else {
|
||||||
|
if data.ClassGUID != deviceClassNetGUID {
|
||||||
|
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
||||||
|
}
|
||||||
|
|
||||||
if data.ClassGUID != deviceClassNetGUID {
|
if data.RemoteMachineHandle != windows.Handle(0) {
|
||||||
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine handle")
|
||||||
}
|
}
|
||||||
|
|
||||||
if data.RemoteMachineHandle != windows.Handle(0) {
|
if data.RemoteMachineName != "" {
|
||||||
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine handle")
|
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine name")
|
||||||
}
|
}
|
||||||
|
|
||||||
if data.RemoteMachineName != "" {
|
|
||||||
t.Error("SetupDiGetDeviceInfoListDetail returned non-NULL remote machine name")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -124,18 +124,18 @@ func TestSetupDiGetDeviceInfoListDetailRemote(t *testing.T) {
|
|||||||
data, err := SetupDiGetDeviceInfoListDetail(devInfoList)
|
data, err := SetupDiGetDeviceInfoListDetail(devInfoList)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
t.Errorf("Error calling SetupDiGetDeviceInfoListDetail: %s", err.Error())
|
||||||
}
|
} else {
|
||||||
|
if data.ClassGUID != deviceClassNetGUID {
|
||||||
|
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
||||||
|
}
|
||||||
|
|
||||||
if data.ClassGUID != deviceClassNetGUID {
|
if data.RemoteMachineHandle == windows.Handle(0) {
|
||||||
t.Error("SetupDiGetDeviceInfoListDetail returned different class GUID")
|
t.Error("SetupDiGetDeviceInfoListDetail returned NULL remote machine handle")
|
||||||
}
|
}
|
||||||
|
|
||||||
if data.RemoteMachineHandle == windows.Handle(0) {
|
if data.RemoteMachineName != computerName {
|
||||||
t.Error("SetupDiGetDeviceInfoListDetail returned NULL remote machine handle")
|
t.Error("SetupDiGetDeviceInfoListDetail returned different remote machine name")
|
||||||
}
|
}
|
||||||
|
|
||||||
if data.RemoteMachineName != computerName {
|
|
||||||
t.Error("SetupDiGetDeviceInfoListDetail returned different remote machine name")
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user