-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader_test.go
267 lines (202 loc) · 6.76 KB
/
loader_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
package goconf
import (
"fmt"
"io"
"os"
"testing"
"gotest.tools/assert"
)
// DummyMapDecoder is used to test the RegisterFormat method
type DummyMapDecoder struct {
// ID identifies the dummy decoder for test purposes
ID string
}
// Decode implements MapDecoder for DummyMapDecoder
func (d DummyMapDecoder) Decode(r io.Reader, m *map[string]interface{}) error {
return nil
}
// tempFilesTxt holds the contents of temporary files which will be created for
// testing purposes. Keys are arbitrary IDs which are used to refer to these
// temporary files in the future.
var tempFilesTxt = map[string][]byte{
"a": []byte("key1 = \"value1\""),
"b": []byte("key2 = \"value2\""),
"c": []byte("key3 = \"value3\""),
"bool-false": []byte("foo = false"),
}
// configFile is a dummy configuration file struct definition passed to
// Loader.Load in a few tests
type configFile struct {
Key1 string `mapstructure:"key1" validate:"required"`
Key2 string `mapstructure:"key2" validate:"required"`
Key3 string `mapstructure:"key3" validate:"required"`
}
// defaultConfigFile is a dummy configuration file struct compatible with the
// configFile struct, but with a default value specified for Key3
type defaultConfigFile struct {
Key1 string `mapstructure:"key1" validate:"required"`
Key2 string `mapstructure:"key2" validate:"required" default:"key2default"`
Key3 string `mapstructure:"key3" validate:"required" default:"key3default"`
}
// boolConfigFile is a dummy configuration file struct definition with a bool
// field. Used with the bool-false tempFilesTxt.
type boolConfigFile struct {
Foo bool `mapstructure:"foo" default:"true"`
}
// expectedConfigFile holds the values which Loader.Load should place in a
// configFile struct when called
var expectedConfigFile = configFile{
Key1: "value1",
Key2: "value2",
Key3: "value3",
}
// placeTempFiles creates temporary files for testing purposes. The names
// argumen can only include keys which are present in the tempFilesTxt map.
func placeTempFiles(t *testing.T, names []string) map[string]*os.File {
// Place temp files
files := map[string]*os.File{}
for _, name := range names {
path := fmt.Sprintf("/tmp/goconf-config-%s.toml", name)
f, err := os.Create(path)
assert.NilError(t, err, "failed to open config file %s", name)
files[name] = f
}
for name, f := range files {
_, err := f.Write(tempFilesTxt[name])
assert.NilError(t, err, "failed to write to config file %s",
name)
}
return files
}
// cleanupTempFiles removes temp files provided by PlaceTempFiles. The files
// argument should be the map returned by placeTempFiles.
func cleanupTempFiles(t *testing.T, files map[string]*os.File) {
for name, f := range files {
assert.NilError(t, f.Close(), "failed to close config"+
"file %s", name)
}
for name := range files {
path := fmt.Sprintf("/tmp/goconf-config-%s.toml", name)
assert.NilError(t, os.Remove(path), "failed to remove"+
"config file %s", name)
}
}
// TestRegisterFormat ensures MapDecoders are properly added to the formats map
func TestRegisterFormat(t *testing.T) {
// Setup loader
loader := NewLoader()
loader.RegisterFormat(".foo", DummyMapDecoder{ID: ".foo"})
loader.RegisterFormat("", DummyMapDecoder{ID: ""})
// Assert
fooDecoder, ok := loader.formats[".foo"]
assert.Equal(t, ok, true, ".foo dummy map decoder not present")
assert.Equal(t, fooDecoder.(DummyMapDecoder).ID, ".foo")
emptyDecoder, ok := loader.formats[""]
assert.Equal(t, ok, true, "empty string dummy map decoder not present")
assert.Equal(t, emptyDecoder.(DummyMapDecoder).ID, "")
}
// TestAddConfigPath ensures paths are added to the configPaths array
func TestAddConfigPath(t *testing.T) {
// Setup loader
loader := NewLoader()
loader.AddConfigPath("AAA")
loader.AddConfigPath("BBB")
loader.AddConfigPath("CCC")
// Assert
assert.DeepEqual(t, loader.configPaths, []string{"AAA", "BBB", "CCC"})
}
// TestLoad ensures Load reads and decodes configuration files
func TestLoad(t *testing.T) {
// Place temp files
tmpFiles := placeTempFiles(t, []string{"a", "b", "c"})
defer cleanupTempFiles(t, tmpFiles)
// Setup loader
loader := NewDefaultLoader()
loader.AddConfigPath("/tmp/goconf-config-*.toml")
// Load
actualConfig := configFile{}
err := loader.Load(&actualConfig)
// Assert
assert.NilError(t, err, "failed to load configuration")
assert.DeepEqual(t, actualConfig, expectedConfigFile)
}
// TestLoadValidate ensures Load validates after reading files into a struct
func TestLoadValidate(t *testing.T) {
// Place temp files
tmpFiles := placeTempFiles(t, []string{"a", "b"})
defer cleanupTempFiles(t, tmpFiles)
// Setup loader
loader := NewDefaultLoader()
loader.AddConfigPath("/tmp/goconf-config-*.toml")
// Load
actualConfig := configFile{}
err := loader.Load(&actualConfig)
// Assert
assert.Equal(t, err.Error(), "failed to validate configuration "+
"struct: Key: 'configFile.Key3' Error:Field validation for "+
"'Key3' failed on the 'required' tag")
}
// TestLoadDirCheck ensures Load errors if a config path is a directory
func TestLoadDirCheck(t *testing.T) {
// Setup loader
loader := NewDefaultLoader()
loader.AddConfigPath(".")
// Load
cfg := configFile{}
err := loader.Load(&cfg)
assert.Equal(t, err.Error(), "configuration path \".\" is a directory"+
", cannot be")
}
// TestLoadDefaults ensures Load sets default values in a struct
func TestLoadDefaults(t *testing.T) {
// Place temp files
tmpFiles := placeTempFiles(t, []string{"a", "b"})
defer cleanupTempFiles(t, tmpFiles)
// Setup loader
loader := NewDefaultLoader()
loader.AddConfigPath("/tmp/goconf-config-*.toml")
// Load
cfg := defaultConfigFile{}
err := loader.Load(&cfg)
// Assert
assert.NilError(t, err)
expectedCfg := defaultConfigFile{
Key1: expectedConfigFile.Key1,
Key2: expectedConfigFile.Key2,
Key3: "key3default",
}
assert.DeepEqual(t, cfg, expectedCfg)
}
// TestLoadFalseBoolDefault ensures defaults for bool fields are set correctly
func TestLoadFalseBoolDefault(t *testing.T) {
// Place temp files
tmpFiles := placeTempFiles(t, []string{"bool-false"})
defer cleanupTempFiles(t, tmpFiles)
// Setup loader
loader := NewDefaultLoader()
loader.AddConfigPath("/tmp/goconf-config-*.toml")
// Load
cfg := boolConfigFile{}
err := loader.Load(&cfg)
// Assert
assert.NilError(t, err)
expectedCfg := boolConfigFile{
Foo: false,
}
assert.DeepEqual(t, cfg, expectedCfg)
}
// TestLoadTrueBoolDefault ensures defaults for bool fields are set correctly
func TestLoadTrueBoolDefault(t *testing.T) {
// Setup loader
loader := NewDefaultLoader()
loader.AddConfigPath("/tmp/goconf-config-*.toml")
// Load
cfg := boolConfigFile{}
err := loader.Load(&cfg)
// Assert
assert.NilError(t, err)
expectedCfg := boolConfigFile{
Foo: true,
}
assert.DeepEqual(t, cfg, expectedCfg)
}