forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m_action_test.go
150 lines (142 loc) · 4.25 KB
/
m_action_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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
package tc
import (
"errors"
"fmt"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestAction(t *testing.T) {
tests := map[string]struct {
val Action
err1 error
err2 error
}{
"empty": {err1: fmt.Errorf("kind is missing")},
"unknown Kind": {val: Action{Kind: "test"}, err1: fmt.Errorf("unknown kind 'test'")},
"bpf Without Options": {val: Action{Kind: "bpf", Index: 123}, err1: ErrNoArg},
"simple Bpf": {val: Action{
Kind: "bpf",
Bpf: &ActBpf{FD: uint32Ptr(12), Name: stringPtr("simpleTest"), Parms: &ActBpfParms{Action: 2, Index: 4}},
}},
"connmark": {val: Action{
Kind: "connmark",
ConnMark: &Connmark{Parms: &ConnmarkParam{Index: 42, Action: 1}},
}},
"csum": {val: Action{
Kind: "csum",
CSum: &Csum{Parms: &CsumParms{Index: 1, Capab: 2}},
}},
"defact": {val: Action{
Kind: "defact",
Defact: &Defact{Parms: &DefactParms{Index: 42, Action: 1}},
}},
"ife": {val: Action{
Kind: "ife",
Ife: &Ife{Parms: &IfeParms{Index: 42, Action: 1}},
}},
"ipt": {val: Action{
Kind: "ipt",
Ipt: &Ipt{Table: stringPtr("testTable"), Hook: uint32Ptr(42), Index: uint32Ptr(1984)},
}},
"mirred": {val: Action{
Kind: "mirred",
Mirred: &Mirred{Parms: &MirredParam{Index: 42, Action: 1}},
}},
"mirred+cookie+index": {val: Action{
Kind: "mirred",
Cookie: bytesPtr([]byte{0xAA, 0x55}), Index: uint32(42),
Mirred: &Mirred{Parms: &MirredParam{Index: 42, Action: 1}},
}},
"mirred+stats": {val: Action{
Kind: "mirred",
Mirred: &Mirred{Parms: &MirredParam{Index: 42, Action: 1}},
Stats: &GenStats{
Basic: &GenBasic{Bytes: 8, Packets: 1}, RateEst: &GenRateEst{BytePerSecond: 42, PacketPerSecond: 3},
Queue: &GenQueue{QueueLen: 5, Backlog: 6, Drops: 1, Requeues: 3, Overlimits: 1},
RateEst64: &GenRateEst64{BytePerSecond: 12, PacketPerSecond: 1}, BasicHw: &GenBasic{Bytes: 42, Packets: 3},
},
}},
"nat": {val: Action{
Kind: "nat",
Nat: &Nat{Parms: &NatParms{Index: 42, Action: 1}},
}},
"police": {val: Action{
Kind: "police",
Police: &Police{AvRate: uint32Ptr(1337), Result: uint32Ptr(42)},
}},
"sample": {val: Action{
Kind: "sample",
Sample: &Sample{Parms: &SampleParms{Index: 42, Action: 1}},
}},
"vlan": {val: Action{
Kind: "vlan",
VLan: &VLan{Parms: &VLanParms{Index: 42, Action: 1}},
}},
"tunnel key": {val: Action{
Kind: "tunnel_key",
TunnelKey: &TunnelKey{KeyEncKeyID: uint32Ptr(123)},
}},
"gate": {val: Action{
Kind: "gate",
Gate: &Gate{Parms: &GateParms{Index: 42}, Priority: int32Ptr(21)},
}},
"gact": {val: Action{
Kind: "gact",
Gact: &Gact{Prob: &GactProb{PType: 1}, Parms: &GactParms{Index: 2}},
}},
"mpls": {val: Action{
Kind: "mpls",
MPLS: &MPLS{TC: uint8Ptr(73)},
}},
"skbedit": {val: Action{
Kind: "skbedit",
SkbEdit: &SkbEdit{Priority: uint32Ptr(42)},
}},
}
for name, testcase := range tests {
t.Run(name, func(t *testing.T) {
data, err1 := marshalActions([]*Action{&testcase.val})
if err1 != nil {
if !errors.Is(testcase.err1, err1) {
return
}
t.Fatalf("Unexpected error: %v", err1)
}
newData := injectAttribute(t, data, []byte{0x0}, tcaActPad)
val := []*Action{}
err2 := unmarshalActions(newData, &val)
if err2 != nil {
if !errors.Is(testcase.err2, err2) {
return
}
t.Fatalf("Unexpected error: %v", err2)
}
if diff := cmp.Diff(val, []*Action{&testcase.val}); diff != "" {
t.Fatalf("Action missmatch (-want +got):\n%s", diff)
}
})
}
t.Run("nil", func(t *testing.T) {
_, err := marshalAction(nil, tcaActOptions)
if !errors.Is(err, ErrNoArg) {
t.Fatalf("unexpected error: %v", err)
}
})
t.Run("unmarshalAction(unknown)", func(t *testing.T) {
info := &Action{}
if err := unmarshalAction(generateActUnknown(t), info); err == nil {
t.Fatal("Expected error but got none")
}
})
}
func generateActUnknown(t *testing.T) []byte {
t.Helper()
options := []tcOption{}
options = append(options, tcOption{Interpretation: vtString, Type: tcaActKind, Data: "unknown"})
options = append(options, tcOption{Interpretation: vtBytes, Type: tcaActOptions, Data: []byte{0x42}})
data, err := marshalAttributes(options)
if err != nil {
t.Fatalf("could not generate test data: %v", err)
}
return data
}