-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathf_cgroup_test.go
78 lines (73 loc) · 1.64 KB
/
f_cgroup_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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
package tc
import (
"errors"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestCgroup(t *testing.T) {
tests := map[string]struct {
val Cgroup
err1 error
err2 error
}{
"simple": {val: Cgroup{Action: &Action{
Kind: "sample",
Sample: &Sample{
Rate: uint32Ptr(1),
TruncSize: uint32Ptr(2),
SampleGroup: uint32Ptr(3),
},
}}},
"with ematch": {val: Cgroup{
Ematch: &Ematch{
Hdr: &EmatchTreeHdr{NMatches: 1},
Matches: &[]EmatchMatch{
{
Hdr: EmatchHdr{MatchID: 0x0, Kind: EmatchU32, Flags: 0x0, Pad: 0x0},
// match 'u32(u16 0x1122 0xffff at nexthdr+4)'
U32Match: &U32Match{
Mask: 0xffff,
Value: 0x1122,
Off: 0x400,
OffMask: 0xffff,
},
},
},
},
}},
}
for name, testcase := range tests {
t.Run(name, func(t *testing.T) {
data, err1 := marshalCgroup(&testcase.val)
if err1 != nil {
if errors.Is(err1, testcase.err1) {
return
}
t.Fatalf("Unexpected error: %v", err1)
}
val := Cgroup{}
err2 := unmarshalCgroup(data, &val)
if err2 != nil {
if errors.Is(err2, testcase.err2) {
return
}
t.Fatalf("Unexpected error: %v", err2)
}
if diff := cmp.Diff(val, testcase.val); diff != "" {
t.Fatalf("Cgroup missmatch (want +got):\n%s", diff)
}
})
}
t.Run("marshal(nil)", func(t *testing.T) {
_, err := marshalCgroup(nil)
if !errors.Is(err, ErrNoArg) {
t.Fatalf("unexpected error: %v", err)
}
})
t.Run("unmarshal(0x0)", func(t *testing.T) {
val := Cgroup{}
if err := unmarshalCgroup([]byte{0x00}, &val); err == nil {
t.Fatalf("expected error but got nil")
}
})
}