forked from koding/multiconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multiconfig_test.go
212 lines (175 loc) · 4.9 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
package multiconfig
import (
"testing"
"time"
)
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"`
}
)
type FlattenedServer struct {
Postgres Postgres
}
type CamelCaseServer struct {
AccessKey string
Normal string
DBName string `default:"configdb"`
AvailabilityRatio float64
}
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 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)
}
}