forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m_vlan_test.go
44 lines (39 loc) · 1013 Bytes
/
m_vlan_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
package tc
import (
"fmt"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestVLan(t *testing.T) {
tests := map[string]struct {
val VLan
err1 error
err2 error
}{
"empty": {err1: fmt.Errorf("VLan options are missing")},
"simple": {val: VLan{Parms: &VLanParms{Index: 42, Action: 1}}},
"invalidArgument": {val: VLan{Tm: &Tcft{Install: 1}}, err1: ErrNoArgAlter},
}
for name, testcase := range tests {
t.Run(name, func(t *testing.T) {
data, err1 := marshalVlan(&testcase.val)
if err1 != nil {
if testcase.err1 != nil && testcase.err1.Error() == err1.Error() {
return
}
t.Fatalf("Unexpected error: %v", err1)
}
val := VLan{}
err2 := unmarshalVLan(data, &val)
if err2 != nil {
if testcase.err2 != nil && testcase.err2.Error() == err2.Error() {
return
}
t.Fatalf("Unexpected error: %v", err2)
}
if diff := cmp.Diff(val, testcase.val); diff != "" {
t.Fatalf("VLan missmatch (want +got):\n%s", diff)
}
})
}
}