-
Notifications
You must be signed in to change notification settings - Fork 12
/
resolver_test.go
435 lines (395 loc) · 10.6 KB
/
resolver_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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package hcat
import (
"context"
"strings"
"testing"
"text/template"
"time"
"github.com/hashicorp/hcat/dep"
idep "github.com/hashicorp/hcat/internal/dependency"
)
func TestResolverRun(t *testing.T) {
t.Parallel()
t.Run("first-run", func(t *testing.T) {
rv := NewResolver()
tt := echoTemplate("foo")
w := blindWatcher()
defer w.Stop()
w.Register(tt)
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete != false {
t.Fatal("Complete should be false")
}
if string(r.Contents) != "" {
t.Error("bad contents")
}
})
t.Run("no-changes", func(t *testing.T) {
rv := NewResolver()
tt := echoTemplate("foo")
w := blindWatcher()
defer w.Stop()
w.Register(tt)
// Run/Wait/Run to get it completed once
_, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
w.Wait(context.Background())
_, err = rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
// This run should have no changes
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if string(r.Contents) != "foo" {
t.Error("bad contents")
}
if r.NoChange != true {
t.Error("NoChange should be true")
}
if r.Complete != true {
t.Error("Complete should be true")
}
})
t.Run("complete-changes", func(t *testing.T) {
rv := NewResolver()
w := blindWatcher()
defer w.Stop()
tt := echoTemplate("foo")
w.Register(tt)
d := &idep.FakeDep{Name: "foo"}
// seed the cache and the dependency tracking
// maybe abstract out into separate function
regSave := func(d dep.Dependency, value interface{}) {
v := w.track(tt, d) // register with watcher
v.store(value) // view received and recorded data
w.cache.Save(v.ID(), value) // saves data to cache
}
regSave(d, "bar")
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete == false {
t.Fatal("Complete should be true")
}
if string(r.Contents) != "bar" {
t.Fatal("bad contents")
}
if r.NoChange != false {
t.Fatal("NoChange should be false")
}
})
t.Run("not-dirty-should-not-mean-complete", func(t *testing.T) {
// Tests a situation where template has unresolved dependencies
// but they don't count against complete as they haven't been
// marked in use yet.
// Basically this tests a bug where the mark-n-sweep information was
// being used in the complete check erroneously.
rv := NewResolver()
w := blindWatcher()
defer w.Stop()
tt := echoTemplate("foo")
w.Register(tt)
// Run it once to get everything registered
_, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
// Flush the dirty flat and re-run
// pre-fix it would return Complete=true w/ no Contents
tt.isDirty()
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete == true {
t.Fatal("Complete should be false")
}
if string(r.Contents) != "" {
t.Fatal("bad contents")
}
if r.NoChange != true {
t.Fatal("NoChange should be false")
}
})
// actually run using an injected fake dependency
// test dependency echo's back the string arg
t.Run("single-pass-run", func(t *testing.T) {
rv := NewResolver()
w := blindWatcher()
defer w.Stop()
tt := echoTemplate("foo")
w.Register(tt)
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete != false {
t.Fatal("Complete should be false")
}
ctx := context.Background()
w.Wait(ctx) // wait for (fake/instantaneous) dependency resolution
r, err = rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete == false {
t.Fatal("Complete should be true")
}
if r.NoChange != false {
t.Fatal("NoChange should be false")
}
if string(r.Contents) != "foo" {
t.Fatal("Wrong contents:", string(r.Contents))
}
})
// same as above, but with buffering enabled to verify things work with it
t.Run("buffered-single-pass-run", func(t *testing.T) {
rv := NewResolver()
w := blindWatcher()
defer w.Stop()
tt := echoTemplate("foo")
w.Register(tt)
w.SetBufferPeriod(time.Millisecond, time.Second, tt.ID())
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
ctx := context.Background()
w.Wait(ctx) // wait for (fake/instantaneous) dependency resolution
r, err = rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete == false {
t.Fatal("Complete should be true")
}
if r.NoChange != false {
t.Fatal("NoChange should be false")
}
if string(r.Contents) != "foo" {
t.Fatal("Wrong contents:", string(r.Contents))
}
})
// actually run using injected fake dependencies
// dep1 returns a list of words where dep2 echos each
t.Run("multi-pass-run", func(t *testing.T) {
rv := NewResolver()
w := blindWatcher()
defer w.Stop()
tt := echoListTemplate("foo", "bar")
w.Register(tt)
// Run 1, 'words' is registered
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete != false {
t.Fatal("Complete should be flase")
}
ctx := context.Background()
w.Wait(ctx)
// Run 2, loops and registers both nested 'echo' calls
r, err = rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete != false {
t.Fatal("Complete should be false")
}
w.Wait(ctx)
// Run 3-4, fetched 'echo' data comes in and completes the template.
// Due to asynchronous nature of the test, it is indeterminate whether
// the data will be received and used in 1 or 2 checks. So we need to
// loop twice. At the end the 2nd loop the template will be complete or
// something went wrong.
for i := 0; i < 2; i++ {
r, err = rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if r.Complete {
break // complete in 1 pass, break before Wait or it will hang
}
w.Wait(ctx)
}
if r.Complete != true {
t.Fatal("Complete should be true")
}
if r.Complete == false {
t.Fatal("Complete should be true")
}
if r.NoChange != false {
t.Fatal("NoChange should be false")
}
if string(r.Contents) != "foobar" {
t.Fatal("Wrong contents:", string(r.Contents))
}
})
// Test issue where Run/Wait would loop forever as each Run would set the
// buffering timer, triggering a bufferTrigger which exited Wait..
// This shouldn't ever be an issue again with the new implementation.
t.Run("buffered-resolve-loop-hang-check", func(t *testing.T) {
rv := NewResolver()
w := blindWatcher()
defer w.Stop()
tt := echoTemplate("foo")
w.Register(tt)
w.SetBufferPeriod(time.Millisecond, time.Second, tt.ID())
ctx, cancel := context.WithTimeout(context.Background(),
time.Millisecond*30)
defer cancel()
// should stop on second loop
for i := 0; i < 4; i++ {
_, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
select {
case <-w.WaitCh(ctx):
case <-ctx.Done():
return
}
}
t.Error("bad behavior")
})
// Tests that the buffer actually buffers. Uses timed dependencies that
// return once fast and once after a delay. This way it does the initial
// fast run and we can check the contents, then the second batch comes in
// spread out in time but they are should all be included in the second
// update due to buffering. Without buffering it would return after the
// first timed one returns.
t.Run("buffer-timing-test", func(t *testing.T) {
rv := NewResolver()
w := blindWatcher()
defer w.Stop()
tt := timedEchoTemplate("foo")
w.Register(tt)
// Disabling this should fail the test
// Buffer minumum value is used to reset the timer, so to fail with
// buffering on you'll need to set it to <10ms (by a bit to avoid racing)
w.SetBufferPeriod(time.Millisecond*30, time.Millisecond*500, tt.ID())
ctx, cancel := context.WithTimeout(context.Background(),
time.Millisecond*300)
defer cancel()
stageOneComplete := false
stageOneTarget := "foo_0s foo_0s foo_0s"
stageTwoTarget := "foo_10ms foo_20ms foo_30ms"
// run 0 initializes the template and variables, triggering lookups
// run 1 gets the fast responses version
// run 2 gets the delayed responses version
for i := 0; i < 3; i++ {
r, err := rv.Run(tt, w)
if err != nil {
t.Fatal("Run() error:", err)
}
if !r.Complete {
w.Wait(ctx)
continue
}
switch stageOneComplete {
case false:
if string(r.Contents) != stageOneTarget {
t.Errorf("first pass contents wrong. want: '%s', got '%s'",
stageOneTarget, r.Contents)
}
stageOneComplete = true
case true:
if string(r.Contents) != stageTwoTarget {
t.Errorf("second pass contents wrong. want: '%s', got '%s'",
stageTwoTarget, r.Contents)
}
return
}
w.Wait(ctx)
}
t.Error("Updating data failed?!?")
})
}
//////////////////////////
// Helpers
func echoTemplate(data string) *Template {
return NewTemplate(
TemplateInput{
Contents: `{{echo "` + data + `"}}`,
FuncMapMerge: template.FuncMap{"echo": echoFunc},
})
}
func echoFunc(recall Recaller) interface{} {
return func(s string) interface{} {
d := &idep.FakeDep{Name: s}
if value, ok := recall(d); ok {
if value == nil {
return ""
}
return value.(string)
}
return ""
}
}
func wordListFunc(recall Recaller) interface{} {
return func(s ...string) interface{} {
d := &idep.FakeListDep{
Name: "words",
Data: s,
}
if value, ok := recall(d); ok {
if value == nil {
return []string{}
}
return value.([]string)
}
return []string{}
}
}
func echoListTemplate(data ...string) *Template {
list := strings.Join(data, `" "`)
return NewTemplate(
TemplateInput{
Contents: `{{range words "` + list + `"}}{{echo .}}{{end}}`,
FuncMapMerge: template.FuncMap{
"echo": echoFunc,
"words": wordListFunc},
})
}
func timedEchoFunc(delay time.Duration) interface{} {
return func(recall Recaller) interface{} {
return func(s string) interface{} {
d := &idep.FakeTimedUpdateDep{Name: s, Delay: delay}
if value, ok := recall(d); ok {
if value == nil {
return ""
}
return value.(string)
}
return ""
}
}
}
func timedEchoTemplate(data string) *Template {
return NewTemplate(
TemplateInput{
Contents: `{{echo1 "` + data + `"}} ` +
`{{echo2 "` + data + `"}} ` +
`{{echo3 "` + data + `"}}`,
FuncMapMerge: template.FuncMap{
"echo1": timedEchoFunc(time.Millisecond * 10),
"echo2": timedEchoFunc(time.Millisecond * 20),
"echo3": timedEchoFunc(time.Millisecond * 30),
},
})
}
// watcher with no Looker
func blindWatcher() *Watcher {
return NewWatcher(WatcherInput{Cache: NewStore()})
}