-
Notifications
You must be signed in to change notification settings - Fork 2
/
marshal_test.go
149 lines (143 loc) · 2.89 KB
/
marshal_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
package systemdconf
import (
"io/ioutil"
"strings"
"testing"
"github.com/google/go-cmp/cmp"
)
func TestMarshalFile(t *testing.T) {
unmarshal, err := ioutil.ReadFile("testdata/unmarshal.conf")
if err != nil {
panic("failed to read testdata/unmarshal.conf: " + err.Error())
}
marshal, err := ioutil.ReadFile("testdata/marshal.conf")
if err != nil {
panic("failed to read testdata/marshal.conf: " + err.Error())
}
var s fileTest
err = Unmarshal(unmarshal, &s)
if err != nil {
t.Fatalf("Unmarshal() = %v; want nil", err)
}
b, err := Marshal(s)
if err != nil {
t.Fatalf("Marshal() = %v; want nil", err)
}
if diff := cmp.Diff(marshal, b, nil); diff != "" {
t.Errorf("Marshal() mismatch (-want +got):\n%s", diff)
}
}
func TestMarshalShouldFail(t *testing.T) {
tests := []struct {
Name, Expected string
V interface{}
}{
{
Name: "nil",
Expected: "expected value, got nil",
V: nil,
},
{
Name: "non-struct file",
Expected: "expected struct, got bool",
V: true,
},
{
Name: "non-struct section",
Expected: "expected struct, got int",
V: struct {
Section1 struct {
Entry *string
}
Section2 int
}{},
},
{
Name: "duplicated entry names",
Expected: "conflicts with field struct",
V: struct {
Section1 struct {
Entry string
Duplicated1 string `systemd:"Entry"`
Duplicated2 string `systemd:"Entry"`
}
}{
Section1: struct {
Entry string
Duplicated1 string `systemd:"Entry"`
Duplicated2 string `systemd:"Entry"`
}{},
},
},
{
Name: "unsupported entry type",
Expected: "unsupported type",
V: struct {
Section1 struct {
Entry string
}
Section2 struct {
Entry int
}
}{},
},
{
Name: "unsupported entry slice type",
Expected: "unsupported type",
V: struct {
Section1 struct {
Entry string
}
Section2 struct {
Entry []int
}
}{
Section2: struct {
Entry []int
}{
Entry: []int{0},
},
},
},
}
for _, td := range tests {
t.Run(td.Name, func(t *testing.T) {
_, err := Marshal(td.V)
if err == nil || !strings.Contains(err.Error(), td.Expected) {
t.Errorf("Marshal() = _, %v; does not contain %s", err, td.Expected)
}
})
}
}
func TestMarshalWithMarshaler(t *testing.T) {
expected := []byte(`[Section]
Key=success: ok
`)
s := marshalTest{
Section: struct {
Key marshalType
}{
Key: "ok",
},
}
b, err := Marshal(s)
if err != nil {
t.Fatalf("Marshal() = %v; want nil", err)
}
if diff := cmp.Diff(expected, b, nil); diff != "" {
t.Errorf("Marshal() mismatch (-want +got):\n%s", diff)
}
}
func TestMarshalShouldFailOnMarshalerError(t *testing.T) {
s := marshalTest{
Section: struct {
Key marshalType
}{
Key: "fail",
},
}
_, err := Marshal(s)
if err == nil {
t.Errorf("Marshal() = nil; want non-nil")
}
}