forked from koding/multiconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmulticonfig_test.go
286 lines (241 loc) · 6.14 KB
/
multiconfig_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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
package multiconfig
import (
"testing"
"time"
"github.com/google/go-cmp/cmp"
)
type (
Server struct {
Name string `required:"true"`
Port int `default:"6060"`
ID int64
Labels []int
Enabled bool
Users []string
Postgres Postgres
unexported string
Interval time.Duration
}
// Postgres holds Postgresql database related configuration
Postgres struct {
Enabled bool
Port int `required:"true" customRequired:"yes"`
Hosts []string `required:"true"`
DBName string `default:"configdb"`
AvailabilityRatio float64
unexported string
}
TaggedServer struct {
Name string `required:"true"`
Postgres `structs:",flatten"`
}
FlattenedServer struct {
Postgres Postgres
}
CamelCaseServer struct {
AccessKey string
Normal string
DBName string `default:"configdb"`
AvailabilityRatio float64
}
// App holds services including an API, a Database and a Server
App struct {
API API
Service1 AppServer
Service2 AppServer
Mongo Database
}
AppServer struct {
Scheme string `default:"https"`
Host string
Port int
Username string
Password string
}
API struct {
AppServer
Test bool
}
Database struct {
AppServer
DBName string
}
)
var (
testTOML = "testdata/config.toml"
testJSON = "testdata/config.json"
testYAML = "testdata/config.yaml"
)
func getDefaultServer() *Server {
return &Server{
Name: "koding",
Port: 6060,
Enabled: true,
ID: 1234567890,
Labels: []int{123, 456},
Users: []string{"ankara", "istanbul"},
Interval: 10 * time.Second,
Postgres: Postgres{
Enabled: true,
Port: 5432,
Hosts: []string{"192.168.2.1", "192.168.2.2", "192.168.2.3"},
DBName: "configdb",
AvailabilityRatio: 8.23,
},
}
}
func getDefaultCamelCaseServer() *CamelCaseServer {
return &CamelCaseServer{
AccessKey: "123456",
Normal: "normal",
DBName: "configdb",
AvailabilityRatio: 8.23,
}
}
func getDefaultApp() *App {
return &App{
API: API{
AppServer: AppServer{
Scheme: "https",
Host: "api.myapp.com",
Port: 81,
},
Test: false,
},
Service1: AppServer{
Scheme: "https",
Host: "service1.myapp.com",
Port: 82,
},
Service2: AppServer{
Scheme: "https",
Host: "service2.myapp.com",
Port: 83,
},
Mongo: Database{
DBName: "myDatabase",
AppServer: AppServer{
Scheme: "mongodb",
Host: "localhost",
Port: 27017,
Username: "admin",
Password: "admin",
},
},
}
}
func TestNewWithPath(t *testing.T) {
var _ Loader = NewWithPath(testTOML)
}
func TestLoad(t *testing.T) {
m := NewWithPath(testTOML)
s := new(Server)
if err := m.Load(s); err != nil {
t.Error(err)
}
testStruct(t, s, getDefaultServer())
}
func TestDefaultLoader(t *testing.T) {
m := New()
s := new(Server)
if err := m.Load(s); err != nil {
t.Error(err)
}
if err := m.Validate(s); err != nil {
t.Error(err)
}
testStruct(t, s, getDefaultServer())
s.Name = ""
if err := m.Validate(s); err == nil {
t.Error("Name should be required")
}
}
func testStruct(t *testing.T, s *Server, d *Server) {
if s.Name != d.Name {
t.Errorf("Name value is wrong: %s, want: %s", s.Name, d.Name)
}
if s.Port != d.Port {
t.Errorf("Port value is wrong: %d, want: %d", s.Port, d.Port)
}
if s.Enabled != d.Enabled {
t.Errorf("Enabled value is wrong: %t, want: %t", s.Enabled, d.Enabled)
}
if s.Interval != d.Interval {
t.Errorf("Interval value is wrong: %v, want: %v", s.Interval, d.Interval)
}
if s.ID != d.ID {
t.Errorf("ID value is wrong: %v, want: %v", s.ID, d.ID)
}
if len(s.Labels) != len(d.Labels) {
t.Errorf("Labels value is wrong: %d, want: %d", len(s.Labels), len(d.Labels))
} else {
for i, label := range d.Labels {
if s.Labels[i] != label {
t.Errorf("Label is wrong for index: %d, label: %d, want: %d", i, s.Labels[i], label)
}
}
}
if len(s.Users) != len(d.Users) {
t.Errorf("Users value is wrong: %d, want: %d", len(s.Users), len(d.Users))
} else {
for i, user := range d.Users {
if s.Users[i] != user {
t.Errorf("User is wrong for index: %d, user: %s, want: %s", i, s.Users[i], user)
}
}
}
testPostgres(t, s.Postgres, d.Postgres)
}
func testFlattenedStruct(t *testing.T, s *FlattenedServer, d *Server) {
// Explicitly state that Enabled should be true, no need to check
// `x == true` infact.
testPostgres(t, s.Postgres, d.Postgres)
}
func testPostgres(t *testing.T, s Postgres, d Postgres) {
if s.Enabled != d.Enabled {
t.Errorf("Postgres enabled is wrong %t, want: %t", s.Enabled, d.Enabled)
}
if s.Port != d.Port {
t.Errorf("Postgres Port value is wrong: %d, want: %d", s.Port, d.Port)
}
if s.DBName != d.DBName {
t.Errorf("DBName is wrong: %s, want: %s", s.DBName, d.DBName)
}
if s.AvailabilityRatio != d.AvailabilityRatio {
t.Errorf("AvailabilityRatio is wrong: %f, want: %f", s.AvailabilityRatio, d.AvailabilityRatio)
}
if len(s.Hosts) != len(d.Hosts) {
// do not continue testing if this fails, because others is depending on this test
t.Fatalf("Hosts len is wrong: %v, want: %v", s.Hosts, d.Hosts)
}
for i, host := range d.Hosts {
if s.Hosts[i] != host {
t.Fatalf("Hosts number %d is wrong: %v, want: %v", i, s.Hosts[i], host)
}
}
}
func testCamelcaseStruct(t *testing.T, s *CamelCaseServer, d *CamelCaseServer) {
if s.AccessKey != d.AccessKey {
t.Errorf("AccessKey is wrong: %s, want: %s", s.AccessKey, d.AccessKey)
}
if s.Normal != d.Normal {
t.Errorf("Normal is wrong: %s, want: %s", s.Normal, d.Normal)
}
if s.DBName != d.DBName {
t.Errorf("DBName is wrong: %s, want: %s", s.DBName, d.DBName)
}
if s.AvailabilityRatio != d.AvailabilityRatio {
t.Errorf("AvailabilityRatio is wrong: %f, want: %f", s.AvailabilityRatio, d.AvailabilityRatio)
}
}
func TestLoadApp(t *testing.T) {
m := NewWithPath(testTOML)
app := new(App)
if err := m.Load(app); err != nil {
t.Error(err)
}
opts := cmp.AllowUnexported(Server{}, Postgres{})
if diff := cmp.Diff(getDefaultApp(), app, opts); diff != "" {
t.Errorf("diff = %s", diff)
}
}