forked from florianl/go-tc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
q_choke_test.go
42 lines (37 loc) · 842 Bytes
/
q_choke_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
package tc
import (
"testing"
"github.com/google/go-cmp/cmp"
)
func TestChoke(t *testing.T) {
tests := map[string]struct {
val Choke
err1 error
err2 error
}{
"empty": {},
"simple": {val: Choke{MaxP: 42}},
}
for name, testcase := range tests {
t.Run(name, func(t *testing.T) {
data, err1 := marshalChoke(&testcase.val)
if err1 != nil {
if testcase.err1 != nil && testcase.err1.Error() == err1.Error() {
return
}
t.Fatalf("Unexpected error: %v", err1)
}
val := Choke{}
err2 := unmarshalChoke(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("Choke missmatch (want +got):\n%s", diff)
}
})
}
}