forked from kelseyhightower/confd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_test.go
478 lines (421 loc) · 8.71 KB
/
template_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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
package template
import (
"fmt"
"io/ioutil"
"os"
"testing"
"github.com/kelseyhightower/confd/backends"
)
const (
tomlFilePath = "test/confd/config.toml"
tmplFilePath = "test/templates/test.conf.tmpl"
)
type templateTest struct {
desc string // description of the test (for helpful errors)
toml string // toml file contents
tmpl string // template file contents
expected string // expected generated file contents
updateStore func(*TemplateResource) // function for setting values in store
}
// templateTests is an array of templateTest structs, each representing a test of
// some aspect of template processing. When the input tmpl and toml files are
// processed, they should produce a config file matching expected.
var templateTests = []templateTest{
templateTest{
desc: "base, get test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/key",
]
`,
tmpl: `
{{with get "/test/key"}}
key: {{base .Key}}
val: {{.Value}}
{{end}}
`,
expected: `
key: key
val: abc
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/key", "abc")
},
},
templateTest{
desc: "gets test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/user",
"/test/pass",
"/nada/url",
]
`,
tmpl: `
{{range gets "/test/*"}}
key: {{.Key}}
val: {{.Value}}
{{end}}
`,
expected: `
key: /test/pass
val: abc
key: /test/user
val: mary
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/user", "mary")
tr.store.Set("/test/pass", "abc")
tr.store.Set("/nada/url", "url")
},
},
templateTest{
desc: "getv test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/url",
"/test/user",
]
`,
tmpl: `
url = {{getv "/test/url"}}
user = {{getv "/test/user"}}
`,
expected: `
url = http://www.abc.com
user = bob
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/url", "http://www.abc.com")
tr.store.Set("/test/user", "bob")
},
},
templateTest{
desc: "getvs test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/user",
"/test/pass",
"/nada/url",
]
`,
tmpl: `
{{range getvs "/test/*"}}
val: {{.}}
{{end}}
`,
expected: `
val: abc
val: mary
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/user", "mary")
tr.store.Set("/test/pass", "abc")
tr.store.Set("/nada/url", "url")
},
},
templateTest{
desc: "split test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data",
]
`,
tmpl: `
{{$data := split (getv "/test/data") ":"}}
f: {{index $data 0}}
br: {{index $data 1}}
bz: {{index $data 2}}
`,
expected: `
f: foo
br: bar
bz: baz
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data", "foo:bar:baz")
},
},
templateTest{
desc: "toUpper test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data/",
]
`,
tmpl: `
{{$data := toUpper (getv "/test/data") }}
key: {{$data}}
`,
expected: `
key: VALUE
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data", `Value`)
},
},
templateTest{
desc: "toLower test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data/",
]
`,
tmpl: `
{{$data := toLower (getv "/test/data") }}
key: {{$data}}
`,
expected: `
key: value
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data", `Value`)
},
},
templateTest{
desc: "json test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data/",
]
`,
tmpl: `
{{range getvs "/test/data/*"}}
{{$data := json .}}
id: {{$data.Id}}
ip: {{$data.IP}}
{{end}}
`,
expected: `
id: host1
ip: 192.168.10.11
id: host2
ip: 192.168.10.12
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data/1", `{"Id":"host1", "IP":"192.168.10.11"}`)
tr.store.Set("/test/data/2", `{"Id":"host2", "IP":"192.168.10.12"}`)
},
},
templateTest{
desc: "jsonArray test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data/",
]
`,
tmpl: `
{{range jsonArray (getv "/test/data/")}}
num: {{.}}
{{end}}
`,
expected: `
num: 1
num: 2
num: 3
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data/", `["1", "2", "3"]`)
},
},
templateTest{
desc: "ls test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data/abc",
"/test/data/def",
"/test/data/ghi",
]
`,
tmpl: `
{{range ls "/test/data"}}
value: {{.}}
{{end}}
`,
expected: `
value: abc
value: def
value: ghi
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data/abc", "123")
tr.store.Set("/test/data/def", "456")
tr.store.Set("/test/data/ghi", "789")
},
},
templateTest{
desc: "lsdir test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data/abc",
"/test/data/def/ghi",
"/test/data/jkl/mno",
]
`,
tmpl: `
{{range lsdir "/test/data"}}
value: {{.}}
{{end}}
`,
expected: `
value: def
value: jkl
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data/abc", "123")
tr.store.Set("/test/data/def/ghi", "456")
tr.store.Set("/test/data/jkl/mno", "789")
},
},
templateTest{
desc: "dir test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data",
"/test/data/abc",
]
`,
tmpl: `
{{with dir "/test/data/abc"}}
dir: {{.}}
{{end}}
`,
expected: `
dir: /test/data
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data", "parent")
tr.store.Set("/test/data/def", "child")
},
},
templateTest{
desc: "ip lookup test",
toml: `
[template]
src = "test.conf.tmpl"
dest = "./tmp/test.conf"
keys = [
"/test/data",
"/test/data/abc",
]
`,
tmpl: `
{{range lookupIP "localhost"}}
ip: {{.}}
{{end}}
`,
expected: `
ip: 127.0.0.1
`,
updateStore: func(tr *TemplateResource) {
tr.store.Set("/test/data", "parent")
tr.store.Set("/test/data/def", "child")
},
},
}
// TestTemplates runs all tests in templateTests
func TestTemplates(t *testing.T) {
for _, tt := range templateTests {
ExecuteTestTemplate(tt, t)
}
}
// ExectureTestTemplate builds a TemplateResource based on the toml and tmpl files described
// in the templateTest, writes a config file, and compares the result against the expectation
// in the templateTest.
func ExecuteTestTemplate(tt templateTest, t *testing.T) {
setupDirectoriesAndFiles(tt, t)
defer os.RemoveAll("test")
tr, err := templateResource()
if err != nil {
t.Errorf(tt.desc + ": failed to create TemplateResource: " + err.Error())
}
tt.updateStore(tr)
if err := tr.createStageFile(); err != nil {
t.Errorf(tt.desc + ": failed createStageFile: " + err.Error())
}
actual, err := ioutil.ReadFile(tr.StageFile.Name())
if err != nil {
t.Errorf(tt.desc + ": failed to read StageFile: " + err.Error())
}
if string(actual) != tt.expected {
t.Errorf(fmt.Sprintf("%v: invalid StageFile. Expected %v, actual %v", tt.desc, tt.expected, string(actual)))
}
}
// setUpDirectoriesAndFiles creates folders for the toml, tmpl, and output files and
// creates the toml and tmpl files as specified in the templateTest struct.
func setupDirectoriesAndFiles(tt templateTest, t *testing.T) {
// create confd directory and toml file
if err := os.MkdirAll("./test/confd", os.ModePerm); err != nil {
t.Errorf(tt.desc + ": failed to created confd directory: " + err.Error())
}
if err := ioutil.WriteFile(tomlFilePath, []byte(tt.toml), os.ModePerm); err != nil {
t.Errorf(tt.desc + ": failed to write toml file: " + err.Error())
}
// create templates directory and tmpl file
if err := os.MkdirAll("./test/templates", os.ModePerm); err != nil {
t.Errorf(tt.desc + ": failed to create template directory: " + err.Error())
}
if err := ioutil.WriteFile(tmplFilePath, []byte(tt.tmpl), os.ModePerm); err != nil {
t.Errorf(tt.desc + ": failed to write toml file: " + err.Error())
}
// create tmp directory for output
if err := os.MkdirAll("./test/tmp", os.ModePerm); err != nil {
t.Errorf(tt.desc + ": failed to create tmp directory: " + err.Error())
}
}
// templateResource creates a templateResource for creating a config file
func templateResource() (*TemplateResource, error) {
backendConf := backends.Config{
Backend: "env"}
client, err := backends.New(backendConf)
if err != nil {
return nil, err
}
config := Config{
StoreClient: client, // not used but must be set
TemplateDir: "./test/templates",
}
tr, err := NewTemplateResource(tomlFilePath, config)
if err != nil {
return nil, err
}
tr.Dest = "./test/tmp/test.conf"
tr.FileMode = 0666
return tr, nil
}