forked from DataDog/ebpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
syscalls_test.go
50 lines (42 loc) · 1.15 KB
/
syscalls_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
38
39
40
41
42
43
44
45
46
47
48
49
50
package ebpf
import (
"strings"
"testing"
"github.com/ismhong/ebpf/internal/testutils"
"github.com/ismhong/ebpf/internal/unix"
)
func TestObjNameCharacters(t *testing.T) {
for in, valid := range map[string]bool{
"test": true,
"": true,
"a-b": false,
"yeah so": false,
"dot.": objNameAllowsDot() == nil,
} {
result := strings.IndexFunc(in, invalidBPFObjNameChar) == -1
if result != valid {
t.Errorf("Name '%s' classified incorrectly", in)
}
}
}
func TestObjName(t *testing.T) {
name := newBPFObjName("more_than_16_characters_long")
if name[len(name)-1] != 0 {
t.Error("newBPFObjName doesn't null terminate")
}
if len(name) != unix.BPF_OBJ_NAME_LEN {
t.Errorf("Name is %d instead of %d bytes long", len(name), unix.BPF_OBJ_NAME_LEN)
}
}
func TestHaveObjName(t *testing.T) {
testutils.CheckFeatureTest(t, haveObjName)
}
func TestObjNameAllowsDot(t *testing.T) {
testutils.CheckFeatureTest(t, objNameAllowsDot)
}
func TestHaveNestedMaps(t *testing.T) {
testutils.CheckFeatureTest(t, haveNestedMaps)
}
func TestHaveMapMutabilityModifiers(t *testing.T) {
testutils.CheckFeatureTest(t, haveMapMutabilityModifiers)
}