-
Notifications
You must be signed in to change notification settings - Fork 732
/
Copy pathtypes_windows_test.go
37 lines (29 loc) · 1.03 KB
/
types_windows_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package ebpf
import (
"os"
"testing"
"github.com/go-quicktest/qt"
"golang.org/x/sys/windows"
)
func TestWindowsProgramTypeForGUID(t *testing.T) {
xdpGUID := windows.GUID{
Data1: 0xf1832a85, Data2: 0x85d5, Data3: 0x45b0,
Data4: [...]byte{0x98, 0xa0, 0x70, 0x69, 0xd6, 0x30, 0x13, 0xb0},
}
_, err := WindowsProgramTypeForGUID("{00000000-0000-0000-0000-000000000001}")
qt.Assert(t, qt.ErrorIs(err, os.ErrNotExist))
programType, err := WindowsProgramTypeForGUID(xdpGUID.String())
qt.Assert(t, qt.IsNil(err))
qt.Assert(t, qt.Equals(WindowsXDP, programType))
}
func TestWindowsAttachTypeForGUID(t *testing.T) {
xdpGUID := windows.GUID{
Data1: 0x85e0d8ef, Data2: 0x579e, Data3: 0x4931,
Data4: [...]byte{0xb0, 0x72, 0x8e, 0xe2, 0x26, 0xbb, 0x2e, 0x9d},
}
_, err := WindowsAttachTypeForGUID("{00000000-0000-0000-0000-000000000001}")
qt.Assert(t, qt.ErrorIs(err, os.ErrNotExist))
attachType, err := WindowsAttachTypeForGUID(xdpGUID.String())
qt.Assert(t, qt.IsNil(err))
qt.Assert(t, qt.Equals(AttachWindowsXDP, attachType))
}