-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwatch_test.go
462 lines (370 loc) · 10.2 KB
/
watch_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
package main
import (
"bytes"
"crypto/rand"
"encoding/base64"
"encoding/json"
"fmt"
"io/ioutil"
"os"
"os/exec"
"path"
"testing"
"time"
consulapi "github.com/hashicorp/consul/api"
)
const delay = 500 * time.Millisecond
var (
sslConsulConfig = ConsulConfig{
Addr: "localhost:8501",
DC: "dc1",
KeyFile: "test_data/agent.key",
CertFile: "test_data/agent.cert",
CAFile: "test_data/ca.cert",
UseTLS: true,
}
httpConsulConfig = ConsulConfig{
Addr: "localhost:8500",
DC: "dc1",
}
)
var (
sslConsul *consulapi.Client
httpConsul *consulapi.Client
)
func init() {
var err error
if sslConsul, err = buildConsulClient(sslConsulConfig); err != nil {
fmt.Fprintf(os.Stderr, "It was not possible to create consul client: %v\n", err)
}
if httpConsul, err = buildConsulClient(httpConsulConfig); err != nil {
fmt.Fprintf(os.Stderr, "It was not possible to create consul client: %v\n", err)
}
}
func createRandomBytes(length int) []byte {
bytes := make([]byte, length)
rand.Read(bytes)
return bytes
}
func createTempDir(t *testing.T) string {
tempDir, err := ioutil.TempDir("", "fsconsul_test")
defer os.RemoveAll(tempDir)
if err != nil {
t.Fatalf("Failed to create temp dir: %v", err)
}
return tempDir
}
func writeToConsul(t *testing.T, prefix, key string, client *consulapi.Client) []byte {
token := os.Getenv("TOKEN")
dc := os.Getenv("DC")
if dc == "" {
dc = "dc1"
}
kv := client.KV()
writeOptions := &consulapi.WriteOptions{Token: token, Datacenter: dc}
// Delete all keys in the prefixed KV space
if _, err := kv.DeleteTree(prefix, writeOptions); err != nil {
t.Fatalf("err: %v", err)
}
// Put a test KV
encodedValue := make([]byte, base64.StdEncoding.EncodedLen(1024))
base64.StdEncoding.Encode(encodedValue, createRandomBytes(1024))
p := &consulapi.KVPair{Key: key, Flags: 42, Value: encodedValue}
if _, err := kv.Put(p, writeOptions); err != nil {
t.Fatalf("err: %v", err)
}
return encodedValue
}
func writeFileToConsul(t *testing.T, prefix, key string, file string, client *consulapi.Client) []byte {
token := os.Getenv("TOKEN")
dc := os.Getenv("DC")
if dc == "" {
dc = "dc1"
}
kv := client.KV()
writeOptions := &consulapi.WriteOptions{Token: token, Datacenter: dc}
// Delete all keys in the prefixed KV space
if _, err := kv.DeleteTree(prefix, writeOptions); err != nil {
t.Fatalf("err: %v", err)
}
fileBytes, err := ioutil.ReadFile(file);
if err != nil {
t.Fatalf("err: %v", err)
}
p := &consulapi.KVPair{Key: key, Flags: 42, Value: fileBytes}
if _, err := kv.Put(p, writeOptions); err != nil {
t.Fatalf("err: %v", err)
}
return fileBytes
}
func deleteKeyFromConsul(t *testing.T, key string, client *consulapi.Client) {
token := os.Getenv("TOKEN")
dc := os.Getenv("DC")
if dc == "" {
dc = "dc1"
}
kv := client.KV()
writeOptions := &consulapi.WriteOptions{Token: token, Datacenter: dc}
if _, err := kv.Delete(key, writeOptions); err != nil {
t.Fatalf("err: %v", err)
}
}
var configBlobs = []struct {
json, key string
}{
{
`{
"mappings" : [{
"onchange": "date",
"prefix": "simple_file"
}]
}`,
"randomEntry",
}, {
`{
"mappings" : [{
"onchange": "date",
"prefix": "nested/file"
}]
}`,
"simple_file",
}, {
`{
"mappings" : [{
"onchange": "date",
"prefix": "gotest/randombytes"
}]
}`,
"entry",
},
}
func TestConfigBlobs(t *testing.T) {
for _, consul := range []struct {
config ConsulConfig
client *consulapi.Client
}{
//{sslConsulConfig, sslConsul},
{httpConsulConfig, httpConsul},
} {
for _, test := range configBlobs {
var config WatchConfig
tempDir := createTempDir(t)
err := json.Unmarshal([]byte(test.json), &config)
if err != nil {
t.Fatalf("Failed to parse JSON due to %v", err)
}
config.Consul = consul.config
key := config.Mappings[0].Prefix + "/" + test.key
fmt.Println("Starting test with key", key)
// Run the fsconsul listener in the background
go func() {
config.Mappings[0].Path = tempDir + "/"
rvalue := watchAndExec(&config)
if rvalue == -1 {
t.Fatalf("Failed to run watchAndExec")
}
if config.Mappings[0].Path[len(config.Mappings[0].Path)-1] == 34 {
t.Fatalf("Config path should have trailing spaces stripped")
}
}()
encodedValue := writeToConsul(t, config.Mappings[0].Prefix, key, consul.client)
// Give ourselves a little bit of time for the watcher to read the file
time.Sleep(delay)
fileValue, err := ioutil.ReadFile(path.Join(tempDir, test.key))
if err != nil {
t.Fatalf("err: %v", err)
}
if !bytes.Equal(encodedValue, fileValue) {
t.Fatal("Unmatched values")
}
}
}
}
var deleteableConfigBlobs = []struct {
json, key string
}{
{
`{
"mappings" : [{
"onchange": "date",
"prefix": "simple_file"
}]
}`,
"randomEntry",
}, {
`{
"mappings" : [{
"onchange": "date",
"prefix": "nested/file"
}]
}`,
"simple_file",
}, {
`{
"mappings" : [{
"onchange": "date",
"prefix": "gotest/randombytes"
}]
}`,
"entry",
},
}
func TestConfigBlobsForDelete(t *testing.T) {
for _, consul := range []struct {
config ConsulConfig
client *consulapi.Client
}{
//{sslConsulConfig, sslConsul},
{httpConsulConfig, httpConsul},
} {
for _, test := range deleteableConfigBlobs {
var config WatchConfig
tempDir := createTempDir(t)
err := json.Unmarshal([]byte(test.json), &config)
if err != nil {
t.Fatalf("Failed to parse JSON due to %v", err)
}
config.Consul = consul.config
key := config.Mappings[0].Prefix + "/" + test.key
fmt.Println("Starting test with key", key)
// Run the fsconsul listener in the background
go func() {
config.Mappings[0].Path = tempDir + "/"
rvalue := watchAndExec(&config)
if rvalue == -1 {
t.Fatalf("Failed to run watchAndExec")
}
if config.Mappings[0].Path[len(config.Mappings[0].Path)-1] == 34 {
t.Fatalf("Config path should have trailing spaces stripped")
}
}()
encodedValue := writeToConsul(t, config.Mappings[0].Prefix, key, consul.client)
// Give ourselves a little bit of time for the watcher to read the file
time.Sleep(delay)
keyfilePath := path.Join(tempDir, test.key)
fileValue, err := ioutil.ReadFile(keyfilePath)
if err != nil {
t.Fatalf("err: %v", err)
}
if !bytes.Equal(encodedValue, fileValue) {
t.Fatal("Unmatched values")
}
deleteKeyFromConsul(t, key, consul.client)
// Give ourselves a little bit of time for the watcher to delete the file
time.Sleep(100 * time.Millisecond)
if _, err := os.Stat(keyfilePath); os.IsExist(err) {
t.Fatalf("Key file still exists even after delete")
}
}
}
}
var simpleConfigBlob = struct {
json, key string
}{
`{
"mappings" : [{
"onchange": "date",
"prefix": "simple_file"
}]
}`,
"killMe",
}
// TODO: This is platform specific and will only work well on unix. Not sure how to make this
// work on Windows.
func countOpenFiles() int {
out, err := exec.Command("/bin/sh", "-c", fmt.Sprintf("lsof -p %v | grep REG", os.Getpid())).Output()
if err != nil {
fmt.Println("Failed to get open file count due to ", err)
return 100000
}
fmt.Println(string(out))
lines := bytes.Count(out, []byte("\n"))
return lines - 1
}
// Validate that we are properly closing file and process handles by running 100
// updates to a key (and thus, 100 file writes and 100 invocations of OnChange).
func TestAgainstLeaks(t *testing.T) {
var config WatchConfig
err := json.Unmarshal([]byte(simpleConfigBlob.json), &config)
key := config.Mappings[0].Prefix + "/" + simpleConfigBlob.key
tempDir := createTempDir(t)
if err != nil {
t.Fatalf("Failed to parse JSON due to %v", err)
}
// Run the fsconsul listener in the background
go func() {
config.Mappings[0].Path = tempDir + "/"
rvalue := watchAndExec(&config)
if rvalue == -1 {
t.Fatalf("Failed to run watchAndExec")
}
if config.Mappings[0].Path[len(config.Mappings[0].Path)-1] == 34 {
t.Fatalf("Config path should have trailing spaces stripped")
}
}()
for i := 0; i < 100; i++ {
_ = writeToConsul(t, config.Mappings[0].Prefix, key, httpConsul)
// Give ourselves a little bit of time for the watcher to read the file
time.Sleep(100 * time.Millisecond)
}
deleteKeyFromConsul(t, key, httpConsul)
openFileCount := countOpenFiles()
// Validate that number of open files is not bananas.
fmt.Printf("There are %d open files\n", openFileCount)
if openFileCount > 10 {
t.Fatalf("There are %d open files. That's too damn high.", openFileCount)
}
}
var simpleKeystoreConfigBlob = struct {
json, key string
}{
`{
"mappings" : [{
"onchange": "date",
"prefix": "crypt_file",
"keystore": "test_data/ks/"
}]
}`,
"decryptTest",
}
// Write an encrypted file to consul, check resultant fs file for decrypted match
func TestFileDecryption(t *testing.T) {
var config WatchConfig
err := json.Unmarshal([]byte(simpleKeystoreConfigBlob.json), &config)
key := config.Mappings[0].Prefix + "/" + simpleKeystoreConfigBlob.key
tempDir := createTempDir(t)
if err != nil {
t.Fatalf("Failed to parse JSON due to %v", err)
}
// Run the fsconsul listener in the background
go func() {
config.Mappings[0].Path = tempDir + "/"
rvalue := watchAndExec(&config)
if rvalue == -1 {
t.Fatalf("Failed to run watchAndExec")
}
if config.Mappings[0].Path[len(config.Mappings[0].Path)-1] == 34 {
t.Fatalf("Config path should have trailing spaces stripped")
}
}()
// Read the encrypted mock file and load it into consul so we can verify it matches
// the expected decrypted file later when watcher writes on the filesystem.
_ = writeFileToConsul(t, config.Mappings[0].Prefix, key, "test_data/encrypted_file", httpConsul)
// Give ourselves a little bit of time for the watcher to read the file
time.Sleep(200 * time.Millisecond)
keyfilePath := path.Join(tempDir, simpleKeystoreConfigBlob.key)
// The output we are testing
actualFileWritten, err := ioutil.ReadFile(keyfilePath)
if err != nil {
t.Fatalf("err: %v", err)
}
// The golden version we expect
expectedDecyptedFile, err := ioutil.ReadFile("test_data/decrypted_file")
if err != nil {
t.Fatalf("err: %v", err)
}
// Test passes if they match.
if !bytes.Equal(actualFileWritten, expectedDecyptedFile) {
t.Fatal("Unmatched values - Decryption may have failed.")
}
}