forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
f_flow_test.go
78 lines (71 loc) · 1.77 KB
/
f_flow_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 TestFlow(t *testing.T) {
actions := []*Action{
{Kind: "mirred", Mirred: &Mirred{Parms: &MirredParam{Index: 0x1, Capab: 0x0, Action: 0x4,
RefCnt: 0x1, BindCnt: 0x1, Eaction: 0x1, IfIndex: 0x2}}},
}
tests := map[string]struct {
val Flow
err1 error
err2 error
}{
"simple": {val: Flow{
Keys: uint32Ptr(12), Mode: uint32Ptr(34), BaseClass: uint32Ptr(56), RShift: uint32Ptr(78),
Addend: uint32Ptr(90), Mask: uint32Ptr(21), XOR: uint32Ptr(43), Divisor: uint32Ptr(65), PerTurb: uint32Ptr(87),
}},
"with Action": {val: Flow{
Keys: uint32Ptr(13), Mode: uint32Ptr(31),
Actions: &actions,
}},
"with ematch": {val: Flow{
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 := marshalFlow(&testcase.val)
if err1 != nil {
if errors.Is(err1, testcase.err1) {
return
}
t.Fatalf("Unexpected error: %v", err1)
}
val := Flow{}
err2 := unmarshalFlow(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("Flow missmatch (want +got):\n%s", diff)
}
})
}
t.Run("nil", func(t *testing.T) {
_, err := marshalFlow(nil)
if !errors.Is(err, ErrNoArg) {
t.Fatalf("unexpected error: %v", err)
}
})
}