-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloader_properties_test.go
236 lines (185 loc) · 5.14 KB
/
loader_properties_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
// Copyright The ActForGood Authors.
// Use of this source code is governed by an MIT-style
// license that can be found in the LICENSE file or at
// https://github.com/actforgood/xconf/blob/main/LICENSE.
package xconf_test
import (
"fmt"
"os"
"testing"
"github.com/actforgood/xconf"
)
var propertiesConfigMap = map[string]any{
"properties_foo": "bar",
"properties_baz": "bar",
"properties_year": "2022",
"properties_temperature": "37.5",
}
const propertiesFilePath = "testdata/config.properties"
func TestPropertiesFileLoader(t *testing.T) {
t.Parallel()
t.Run("success - valid file,valid content", testPropertiesFileLoaderWithValidFile)
t.Run("error - valid file,invalid content", testPropertiesFileLoaderWithInvalidFileContent)
t.Run("error - not found file", testPropertiesFileLoaderWithNotFoundFile)
t.Run("success - safe-mutable config map", testPropertiesFileLoaderReturnsSafeMutableConfigMap)
}
func testPropertiesFileLoaderWithValidFile(t *testing.T) {
t.Parallel()
// arrange
subject := xconf.PropertiesFileLoader(propertiesFilePath)
// act
config, err := subject.Load()
// assert
assertNil(t, err)
assertEqual(t, propertiesConfigMap, config)
}
func testPropertiesFileLoaderWithInvalidFileContent(t *testing.T) {
t.Parallel()
// arrange
var (
filePath = propertiesFilePath + invalidFileExt
subject = xconf.PropertiesFileLoader(filePath)
)
// act
config, err := subject.Load()
// assert
assertNil(t, config)
assertNotNil(t, err)
}
func testPropertiesFileLoaderWithNotFoundFile(t *testing.T) {
t.Parallel()
// arrange
var (
filePath = "testdata/path/does/not/exist/config.properties"
subject = xconf.PropertiesFileLoader(filePath)
)
// act
config, err := subject.Load()
// assert
assertNil(t, config)
assertTrue(t, os.IsNotExist(err))
}
func testPropertiesFileLoaderReturnsSafeMutableConfigMap(t *testing.T) {
t.Parallel()
// arrange
subject := xconf.PropertiesFileLoader(propertiesFilePath)
// act
config1, err1 := subject.Load()
// assert
assertNil(t, err1)
assertEqual(t, propertiesConfigMap, config1)
// modify first returned value, expect second returned value to be initial one.
config1["properties_foo"] = "test properties string modified"
config1["properties_another_key"] = "some properties value"
// act
config2, err2 := subject.Load()
// assert
assertNil(t, err2)
assertEqual(t, propertiesConfigMap, config2)
assertEqual(
t,
map[string]any{
"properties_foo": "bar",
"properties_baz": "bar",
"properties_year": "2022",
"properties_temperature": "37.5",
},
propertiesConfigMap,
)
}
func TestPropertiesBytesLoader(t *testing.T) {
t.Parallel()
t.Run("success - valid content", testPropertiesBytesLoaderWithValidContent)
t.Run("error - invalid content", testPropertiesBytesLoaderWithInvalidContent)
t.Run("success - safe-mutable config map", testPropertiesBytesLoaderReturnsSafeMutableConfigMap)
}
func testPropertiesBytesLoaderWithValidContent(t *testing.T) {
t.Parallel()
// arrange
var (
content = `properties_foo = bar
properties_baz = ${properties_foo}
properties_year=2022
properties_temperature=37.5`
subject = xconf.PropertiesBytesLoader([]byte(content))
)
// act
config, err := subject.Load()
// assert
assertNil(t, err)
assertEqual(t, propertiesConfigMap, config)
}
func testPropertiesBytesLoaderWithInvalidContent(t *testing.T) {
t.Parallel()
// arrange
var (
content = `foo=bar
baz=${foo invalid properties content`
subject = xconf.PropertiesBytesLoader([]byte(content))
)
// act
config, err := subject.Load()
// assert
assertNil(t, config)
assertNotNil(t, err)
}
func testPropertiesBytesLoaderReturnsSafeMutableConfigMap(t *testing.T) {
t.Parallel()
// arrange
var (
content = `properties_foo = bar
properties_baz = ${properties_foo}
properties_year=2022
properties_temperature=37.5`
subject = xconf.PropertiesBytesLoader([]byte(content))
)
// act
config1, err1 := subject.Load()
// assert
assertNil(t, err1)
assertEqual(t, propertiesConfigMap, config1)
// modify first returned value, expect second returned value to be initial one.
config1["properties_foo"] = "test properties string modified"
config1["properties_another_key"] = "some properties value"
// act
config2, err2 := subject.Load()
// assert
assertNil(t, err2)
assertEqual(t, propertiesConfigMap, config2)
assertEqual(
t,
map[string]any{
"properties_foo": "bar",
"properties_baz": "bar",
"properties_year": "2022",
"properties_temperature": "37.5",
},
propertiesConfigMap,
)
}
func BenchmarkPropertiesFileLoader(b *testing.B) {
subject := xconf.PropertiesFileLoader(propertiesFilePath)
b.ReportAllocs()
b.ResetTimer()
for n := 0; n < b.N; n++ {
_, err := subject.Load()
if err != nil {
b.Error(err)
}
}
}
func ExamplePropertiesFileLoader() {
loader := xconf.PropertiesFileLoader("testdata/config.properties")
configMap, err := loader.Load()
if err != nil {
panic(err)
}
for key, value := range configMap {
fmt.Println(key+":", value)
}
// Unordered output:
// properties_foo: bar
// properties_baz: bar
// properties_year: 2022
// properties_temperature: 37.5
}