-
Notifications
You must be signed in to change notification settings - Fork 6
/
result_test.go
74 lines (67 loc) · 1.27 KB
/
result_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
package modver
import (
"bytes"
"encoding/json"
"fmt"
"testing"
)
func TestPretty(t *testing.T) {
buf := new(bytes.Buffer)
Pretty(buf, Minor)
if buf.String() != "Minor\n" {
t.Errorf("got %s, want Minor\\n", buf)
}
buf.Reset()
res := rwrap(Minor, "foo")
Pretty(buf, res)
const want = "foo\n Minor\n"
if buf.String() != want {
t.Errorf("got %s, want %s", buf, want)
}
}
func TestMarshalResultCode(t *testing.T) {
cases := []struct {
rc ResultCode
want string
wantErr bool
}{{
rc: None,
want: `"None"`,
}, {
rc: Patchlevel,
want: `"Patchlevel"`,
}, {
rc: Minor,
want: `"Minor"`,
}, {
rc: Major,
want: `"Major"`,
}, {
rc: ResultCode(42),
wantErr: true,
}}
for i, tc := range cases {
t.Run(fmt.Sprintf("case_%02d", i+1), func(t *testing.T) {
got, err := json.Marshal(tc.rc)
if err != nil && tc.wantErr {
return
}
if err != nil {
t.Fatal(err)
}
if tc.wantErr {
t.Fatal("got no error but want one")
}
if string(got) != tc.want {
t.Errorf("marshaling: got %s, want %s", string(got), tc.want)
}
var rc ResultCode
if err := json.Unmarshal(got, &rc); err != nil {
t.Fatal(err)
}
if rc != tc.rc {
t.Errorf("unmarshaling: got %v, want %v", rc, tc.rc)
}
})
}
}