-
Notifications
You must be signed in to change notification settings - Fork 2
/
dials_test.go
966 lines (827 loc) · 25.5 KB
/
dials_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
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
package dials
import (
"context"
"errors"
"fmt"
"reflect"
"runtime"
"strconv"
"strings"
"sync/atomic"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestFill(t *testing.T) {
type testConfig struct {
Foo string
}
tc := testConfig{
Foo: "foo",
}
// no sources, just passing the defaults
d, err := Config(context.Background(), &tc)
require.NoError(t, err)
filledConfig := &testConfig{}
d.Fill(filledConfig)
assert.Equal(t, "foo", filledConfig.Foo)
// this should be a noop, just make sure it doesn't fail/block
if _, _, verifyErr := d.EnableVerification(context.Background()); verifyErr != nil {
t.Errorf("unexpectedly failing config %+v: %s", d.View(), verifyErr)
}
}
type fakeSource struct {
outVal interface{}
}
func (f *fakeSource) Value(_ context.Context, t *Type) (reflect.Value, error) {
return reflect.ValueOf(f.outVal).Convert(t.t), nil
}
type fakeWatchingSource struct {
fakeSource
t *Type
args WatchArgs
}
func (f *fakeWatchingSource) Watch(_ context.Context, t *Type, args WatchArgs) error {
f.args = args
f.t = t
return nil
}
func (f *fakeWatchingSource) send(ctx context.Context, val reflect.Value) {
f.args.ReportNewValue(ctx, val.Convert(f.t.t))
}
func TestConfigWithoutVerifier(t *testing.T) {
t.Parallel()
type testConfig struct {
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
d, err := Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
require.NoError(t, err)
// pull in the existing value and verify that it works as intended.
// overwrite our original "base" to verify deep-copying is doing its job.
d.Fill(&base)
assert.Equal(t, "foozle", base.Foo)
// Push a new value, that should overlay on top of the base
fimStr := "fim"
fimConfig := ptrifiedConfig{
Foo: &fimStr,
}
w.send(ctx, reflect.ValueOf(fimConfig))
c := <-d.Events()
assert.Equal(t, "fim", c.Foo)
assert.Equal(t, "fim", d.View().Foo)
// push another empty config
w.send(ctx, reflect.ValueOf(emptyConf))
finalConf := <-d.Events()
assert.Equal(t, "foo", finalConf.Foo)
assert.Equal(t, "foo", d.View().Foo)
}
// failVerifier is a struct with a Verify() method that always fails with an error
type failVerifier struct{}
var errFailVerifier = errors.New("fail")
func (failVerifier) Verify() error {
return errFailVerifier
}
var _ VerifiedConfig = (*failVerifier)(nil)
func TestConfigWithFailVerifier(t *testing.T) {
t.Parallel()
type testConfig struct {
failVerifier
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
_, err := Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
if !errors.Is(err, errFailVerifier) {
t.Fatalf("unexpected error: got %s; expected %s", err, errFailVerifier)
}
}
func TestConfigWithSkippedInitialVerify(t *testing.T) {
t.Parallel()
type testConfig struct {
failVerifier
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
_, err := Params[testConfig]{
SkipInitialVerification: true,
}.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
assert.NoError(t, err)
}
func TestConfigWithDelayInitialVerifyFailNoWatch(t *testing.T) {
t.Parallel()
type testConfig struct {
failVerifier
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
s := fakeSource{outVal: foozleConfig}
d, err := Params[testConfig]{
DelayInitialVerification: true,
}.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &s)
assert.NoError(t, err)
c, tok, verifyErr := d.EnableVerification(ctx)
if verifyErr == nil {
// we have the failVerifier embedded, this should never pass
t.Errorf("unexpectedly passing config %+v with token %v", c, tok)
}
}
func TestConfigWithDelayInitialVerifyFailWatchNoGlobalCBSuppress(t *testing.T) {
t.Parallel()
type ptrifiedConfig struct {
Valid *bool
Foo *string
}
base := configurableVerifier{
Valid: false,
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Valid: nil,
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
globalCfgCh := make(chan *configurableVerifier, 1)
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
d, err := Params[configurableVerifier]{
OnNewConfig: func(ctx context.Context, oc, nc *configurableVerifier) { globalCfgCh <- nc },
DelayInitialVerification: true,
}.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
assert.NoError(t, err)
if c, tok, verifyErr := d.EnableVerification(ctx); verifyErr == nil {
t.Errorf("unexpectedly passing config %+v with token %v", c, tok)
}
newCfg := make(chan *configurableVerifier)
_, initSerial := d.ViewVersion()
d.RegisterCallback(ctx, initSerial, func(ctx context.Context, oc, nc *configurableVerifier) { newCfg <- nc })
// make it valid
trueVar := true
w.send(ctx, reflect.ValueOf(ptrifiedConfig{
Valid: &trueVar,
},
))
// wait for the new config callbacks to complete
<-globalCfgCh
nc := <-newCfg
if _, _, verifyErr := d.EnableVerification(ctx); verifyErr != nil {
t.Errorf("unexpectedly failing config %+v: %s", nc, verifyErr)
}
}
func TestConfigWithDelayInitialVerifyFailWatchlobalCBSuppress(t *testing.T) {
t.Parallel()
type ptrifiedConfig struct {
Valid *bool
Foo *string
}
base := configurableVerifier{
Valid: false,
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Valid: nil,
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
errCBCh := make(chan error, 1)
expglobalCBCall := make(chan struct{})
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
d, err := Params[configurableVerifier]{
OnNewConfig: func(ctx context.Context, oc, nc *configurableVerifier) {
select {
case <-expglobalCBCall:
default:
t.Errorf("global new config callback executed before VerifyEnable success; cfg: %+v", nc)
}
},
OnWatchedError: func(ctx context.Context, err error, oc, nc *configurableVerifier) {
select {
case <-expglobalCBCall:
errCBCh <- err
default:
t.Errorf("global error callback executed before VerifyEnable success; cfg: %+v", nc)
}
},
DelayInitialVerification: true,
CallGlobalCallbacksAfterVerificationEnabled: true,
}.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
assert.NoError(t, err)
if c, tok, verifyErr := d.EnableVerification(ctx); verifyErr == nil {
t.Errorf("unexpectedly passing config %+v with token %v", c, tok)
}
newCfg := make(chan *configurableVerifier, 1)
_, initSerial := d.ViewVersion()
d.RegisterCallback(ctx, initSerial, func(ctx context.Context, oc, nc *configurableVerifier) { newCfg <- nc })
// make it valid
trueVar := true
w.send(ctx, reflect.ValueOf(ptrifiedConfig{
Valid: &trueVar,
},
))
// wait for the new config callbacks to complete
nc := <-newCfg
if _, _, verifyErr := d.EnableVerification(ctx); verifyErr != nil {
t.Errorf("unexpectedly failing config %+v: %s", nc, verifyErr)
return
}
close(expglobalCBCall)
// send an "invalid" config:
itsybitsy := "itsybitsy"
falseVar := false
w.send(ctx, reflect.ValueOf(ptrifiedConfig{
Valid: &falseVar,
Foo: &itsybitsy,
},
))
select {
case e := <-errCBCh:
if e != errFailVerifier {
t.Errorf("unexpected error on invalid config: %s", e)
}
case c := <-newCfg:
t.Errorf("unexpected new config callback (with supposedly invalid config): %+v", c)
}
ittybitty := "ittybitty"
w.send(ctx, reflect.ValueOf(ptrifiedConfig{
Valid: &trueVar,
Foo: &ittybitty,
},
))
finalCfg := <-newCfg
if finalCfg.Foo != ittybitty {
t.Errorf("unexpected value for Foo: %q; expected %q", finalCfg.Foo, ittybitty)
}
}
// successVerifier is a struct with a Verify() method that never fails with an error
type successVerifier struct{}
func (successVerifier) Verify() error {
return nil
}
var _ VerifiedConfig = (*successVerifier)(nil)
func TestConfigWithSuccessVerifier(t *testing.T) {
t.Parallel()
type testConfig struct {
successVerifier
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
d, err := Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
require.NoError(t, err)
// pull in the existing value and verify that it works as intended.
// overwrite our original "base" to verify deep-copying is doing its job.
d.Fill(&base)
assert.Equal(t, "foozle", base.Foo)
// Push a new value, that should overlay on top of the base
fimStr := "fim"
fimConfig := ptrifiedConfig{
Foo: &fimStr,
}
w.send(ctx, reflect.ValueOf(fimConfig))
c := <-d.Events()
assert.Equal(t, "fim", c.Foo)
assert.Equal(t, "fim", d.View().Foo)
// push another empty config
w.send(ctx, reflect.ValueOf(emptyConf))
finalConf := <-d.Events()
assert.Equal(t, "foo", finalConf.Foo)
assert.Equal(t, "foo", d.View().Foo)
// this should be a noop, just make sure it doesn't fail/block
if _, _, verifyErr := d.EnableVerification(ctx); verifyErr != nil {
t.Errorf("unexpectedly failing config %+v: %s", finalConf, verifyErr)
}
}
// configurableVerifier is a struct with a Verify() method that fails depending
// on the value of valid.
type configurableVerifier struct {
Valid bool
Foo string
}
func (c configurableVerifier) Verify() error {
if c.Valid {
return nil
}
return errFailVerifier
}
var _ VerifiedConfig = (*configurableVerifier)(nil)
func TestConfigWithConfigureVerifier(t *testing.T) {
t.Parallel()
trueVal := true
falseVal := false
type ptrifiedConfig struct {
Valid *bool
Foo *string
}
base := configurableVerifier{
Valid: true,
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Valid: nil,
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Valid: &trueVal,
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
errCh := make(chan error, 1)
params := Params[configurableVerifier]{
OnWatchedError: func(ctx context.Context, err error, _, _ *configurableVerifier) { errCh <- err },
}
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
d, err := params.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
require.NoError(t, err)
// pull in the existing value and verify that it works as intended.
// overwrite our original "base" to verify deep-copying is doing its job.
d.Fill(&base)
assert.Equal(t, "foozle", base.Foo)
// Push a new value, that should overlay on top of the base
fimStr := "fim"
fimConfig := ptrifiedConfig{
Foo: &fimStr,
}
w.send(ctx, reflect.ValueOf(fimConfig))
select {
case c := <-d.Events():
assert.Equal(t, "fim", c.Foo)
assert.Equal(t, "fim", d.View().Foo)
case err := <-errCh:
t.Errorf("unexpected error from monitor: %s", err)
}
// send a config with Valid set to false
invalidStr := "invalid"
invalidConfig := ptrifiedConfig{Valid: &falseVal, Foo: &invalidStr}
w.send(ctx, reflect.ValueOf(invalidConfig))
select {
case unexpectedConf := <-d.Events():
assert.Equal(t, "foo", unexpectedConf.Foo)
assert.Equal(t, "foo", d.View().Foo)
assert.False(t, unexpectedConf.Valid)
assert.False(t, d.View().Valid)
case err := <-errCh:
if !errors.Is(err, errFailVerifier) {
t.Errorf("unexpected error from verification failure: %s", err)
}
}
// push another empty config
w.send(ctx, reflect.ValueOf(emptyConf))
select {
case finalConf := <-d.Events():
assert.Equal(t, "foo", finalConf.Foo)
assert.Equal(t, "foo", d.View().Foo)
// this should be a noop, just make sure it doesn't fail/block
if _, _, verifyErr := d.EnableVerification(ctx); verifyErr != nil {
t.Errorf("unexpectedly failing config %+v: %s", finalConf, verifyErr)
}
case err := <-errCh:
t.Errorf("unexpected error from monitor: %s", err)
}
}
func TestWatcherWithDoneAndErrorCallback(t *testing.T) {
t.Parallel()
type testConfig struct {
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
reportedErrCh := make(chan error)
p := Params[testConfig]{
OnWatchedError: func(ctx context.Context, err error, oldConfig, newConfig *testConfig) {
assert.Nil(t, newConfig)
assert.NotNil(t, oldConfig)
reportedErrCh <- err
},
}
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
d, err := p.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
require.NoError(t, err)
// pull in the existing value and verify that it works as intended.
// overwrite our original "base" to verify deep-copying is doing its job.
d.Fill(&base)
assert.Equal(t, "foozle", base.Foo)
// Push a new value, that should overlay on top of the base
fimStr := "fim"
fimConfig := ptrifiedConfig{
Foo: &fimStr,
}
w.send(ctx, reflect.ValueOf(fimConfig))
c := <-d.Events()
assert.Equal(t, "fim", c.Foo)
assert.Equal(t, "fim", d.View().Foo)
// push another empty config
w.send(ctx, reflect.ValueOf(emptyConf))
finalConf := <-d.Events()
assert.Equal(t, "foo", finalConf.Foo)
assert.Equal(t, "foo", d.View().Foo)
repErr := errors.New("fizzlebizzle")
assert.NoError(t, w.args.ReportError(ctx, repErr))
receiveErr := <-reportedErrCh
assert.Truef(t, errors.Is(receiveErr, repErr), "received %s", receiveErr)
w.args.Done(ctx)
runtime.Gosched()
// after this point, reporting an error should either panic, block indefinitely or do nothing
toCtx, toCancel := context.WithTimeout(ctx, time.Microsecond)
defer toCancel()
assert.Error(t, w.args.ReportError(toCtx, repErr))
select {
case w.args.(*watchArgs).c <- nil:
t.Errorf("watchargs channel had successful send after Done() call")
default:
}
select {
case e := <-reportedErrCh:
t.Errorf("unexpected call to error callback after shutdown: %s", e)
default:
}
}
func TestConfigWithNewConfigCallbacks(t *testing.T) {
t.Parallel()
type testConfig struct {
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
emptyConf := ptrifiedConfig{
Foo: nil,
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
oldConf := make(chan *testConfig, 1)
newConf := make(chan *testConfig)
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
p := Params[testConfig]{
OnWatchedError: nil,
SkipInitialVerification: false,
OnNewConfig: func(ctx context.Context, oldConfig, newConfig *testConfig) {
oldConf <- oldConfig
newConf <- newConfig
},
}
d, err := p.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
require.NoError(t, err)
// pull in the existing value and verify that it works as intended.
// overwrite our original "base" to verify deep-copying is doing its job.
d.Fill(&base)
assert.Equal(t, "foozle", base.Foo)
_, initSerial := d.ViewVersion()
// no catch-up for either of these. We've registered the config with
// the only version of the config that's ever existed (for this dials object).
// we'll unregister it immediately.
assert.True(t, d.RegisterCallback(ctx, initSerial, func(ctx context.Context, oldConf, newConf *testConfig) {
t.Error("unexpected call of config with current version")
})(ctx), "unregister failed")
// similar, but using a zero-value for the serial (again, unregister immediately
assert.True(t, d.RegisterCallback(ctx, CfgSerial[testConfig]{}, func(ctx context.Context, oldConf, newConf *testConfig) {
t.Error("unexpected call of config with zero-valued serial")
})(ctx), "unregister failed")
// We'll be setting this value on the next config (just a bit below).
fimStr := "fim"
// we'll register 30 callbacks, and then unregister them after the next event
cbcalls := uint32(0)
unregCBs := make([]UnregisterCBFunc, 30)
for z := range unregCBs {
idx := z
CBcallCount := 0
cb := func(ctx context.Context, oldConf, newConf *testConfig) {
atomic.AddUint32(&cbcalls, 1)
assert.Equalf(t, newConf.Foo, fimStr, "cb %d", idx)
CBcallCount++
if CBcallCount > 1 {
t.Errorf("callback %d called too many times: %d", idx, CBcallCount)
}
}
unregCBs[z] = d.RegisterCallback(ctx, initSerial, cb)
}
// Push a new value, that should overlay on top of the base
fimConfig := ptrifiedConfig{
Foo: &fimStr,
}
w.send(ctx, reflect.ValueOf(fimConfig))
c := <-newConf
assert.Equal(t, "fim", c.Foo)
oc := <-oldConf
assert.Equal(t, "foozle", oc.Foo)
assert.Equal(t, "fim", d.View().Foo)
// unregister all the callbacks we registered above.
for _, unregCB := range unregCBs {
assert.True(t, unregCB(ctx))
}
// we're now certain that all our callbacks have been called and
// unregistered. Check the value of cbcalls.
assert.Equal(t, uint32(len(unregCBs)), atomic.LoadUint32(&cbcalls))
// push another empty config
w.send(ctx, reflect.ValueOf(emptyConf))
finalConf := <-newConf
assert.Equal(t, "foo", finalConf.Foo)
ocFinal := <-oldConf
assert.Equal(t, "fim", ocFinal.Foo)
assert.Equal(t, "foo", d.View().Foo)
// this should be a noop, just make sure it doesn't fail/block
if _, _, verifyErr := d.EnableVerification(ctx); verifyErr != nil {
t.Errorf("unexpectedly failing config %+v: %s", finalConf, verifyErr)
}
}
func TestConfigWithNewConfigCallbacksSaturate(t *testing.T) {
t.Parallel()
type testConfig struct {
Foo string
Gen uint64
}
type ptrifiedConfig struct {
Foo *string
Gen *uint64
}
base := testConfig{
Foo: "foo",
Gen: 0,
}
emptyConf := ptrifiedConfig{
Foo: nil,
Gen: nil,
}
uint64Ptr := func(z uint64) *uint64 {
return &z
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
Gen: uint64Ptr(0),
}
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// give oldConf a large capacity (we don't want to block on both)
oldConf := make(chan *testConfig, 128)
// we'll use this to block up the callback goroutine
newConf := make(chan *testConfig)
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
p := Params[testConfig]{
OnWatchedError: nil,
SkipInitialVerification: false,
OnNewConfig: func(ctx context.Context, oldConfig, newConfig *testConfig) {
oldConf <- oldConfig
newConf <- newConfig
},
}
d, err := p.Config(ctx, &base, &fakeSource{outVal: emptyConf}, &w)
require.NoError(t, err)
// pull in the existing value and verify that it works as intended.
// overwrite our original "base" to verify deep-copying is doing its job.
d.Fill(&base)
assert.Equal(t, "foozle", base.Foo)
_, initSerial := d.ViewVersion()
// we don't actually want to fill up the event channel, but give enough configs
cfgCnt := cap(d.cbch) - 20
// we'll register 30 callbacks, and then unregister them after the next event
cbcalls := uint32(0)
unregCBs := make([]UnregisterCBFunc, 30)
for z := range unregCBs {
idx := z
CBcallCount := 0
cb := func(ctx context.Context, oldConf, newConf *testConfig) {
atomic.AddUint32(&cbcalls, 1)
expFooVal := "fizzle" + strconv.Itoa(CBcallCount)
if CBcallCount == cfgCnt {
expFooVal = "fim"
}
assert.Equalf(t, newConf.Foo, expFooVal, "cb %d", idx)
CBcallCount++
if CBcallCount > cfgCnt+1 {
t.Errorf("callback %d called too many times: %d", idx, CBcallCount)
}
}
unregCBs[z] = d.RegisterCallback(ctx, initSerial, cb)
}
// Before we send new events, make sure that everything's caught up
// (the unregister call waits until its message is processed)
assert.True(t, d.RegisterCallback(ctx, CfgSerial[testConfig]{}, func(ctx context.Context, oldConf, newConf *testConfig) {
t.Error("unexpected call of config with zero-valued serial")
})(ctx), "unregister failed")
for z := 0; z < cfgCnt; z++ {
expFooVal := "fizzle" + strconv.Itoa(z)
fimConfig := ptrifiedConfig{
Foo: &expFooVal,
Gen: uint64Ptr(uint64(z) + 1),
}
w.send(ctx, reflect.ValueOf(fimConfig))
}
// We now have a channel full of deferred callbacks, which will get
// delivered (since we filled up the channel).
fullVers, fullSerial := d.ViewVersion()
if !strings.HasPrefix(fullVers.Foo, "fizzle") {
t.Errorf("unexpected fullVers.Foo prefix: %s", fullVers.Foo)
}
if fullVers.Gen > uint64(cfgCnt) {
t.Errorf("Gen value too large: %d", fullVers.Gen)
}
regUnregDone := make(chan struct{})
// this will block until we've cleared out the newConf values.
go func() {
assert.True(t, d.RegisterCallback(ctx, fullSerial, func(ctx context.Context, oldConf, newConf *testConfig) {
// we have a race in registration, skip anything with a
// generation between the one on fullVers and the last
// enqueued value so far
if newConf.Gen > fullVers.Gen && newConf.Gen <= uint64(cfgCnt) {
return
}
t.Errorf("unexpected call of config with later version (got Gen: %d)", newConf.Gen)
})(ctx), "unregister failed")
close(regUnregDone)
}()
for z := 0; z < cfgCnt; z++ {
c := <-newConf
expFooVal := "fizzle" + strconv.Itoa(int(c.Gen-1))
assert.Equal(t, expFooVal, c.Foo)
<-oldConf
}
// now, our unregister should have completed
<-regUnregDone
// We'll be setting this value on the next config (just a bit below).
fimStr := "fim"
// Push a new value, that should overlay on top of the base
fimConfig := ptrifiedConfig{
Foo: &fimStr,
Gen: uint64Ptr(uint64(cfgCnt) + 2),
}
w.send(ctx, reflect.ValueOf(fimConfig))
c := <-newConf
assert.Equal(t, "fim", c.Foo)
assert.Equal(t, uint64(cfgCnt)+2, c.Gen)
oc := <-oldConf
assert.Equal(t, "fizzle43", oc.Foo)
assert.Equal(t, uint64(cfgCnt), oc.Gen)
assert.Equal(t, "fim", d.View().Foo)
// unregister all the callbacks we registered above.
for _, unregCB := range unregCBs {
assert.True(t, unregCB(ctx))
}
// we're now certain that all our callbacks have been called and
// unregistered. Check the value of cbcalls.
assert.Equal(t, uint32(len(unregCBs)*(cfgCnt+1)), atomic.LoadUint32(&cbcalls))
// push another empty config
w.send(ctx, reflect.ValueOf(emptyConf))
finalConf := <-newConf
assert.Equal(t, "foo", finalConf.Foo)
ocFinal := <-oldConf
assert.Equal(t, "fim", ocFinal.Foo)
assert.Equal(t, "foo", d.View().Foo)
}
func ExampleDials_RegisterCallback() {
// setup a cancelable context so the monitor goroutine gets shutdown.
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
type testConfig struct {
Foo string
}
type ptrifiedConfig struct {
Foo *string
}
base := testConfig{
Foo: "foo",
}
// Push a new value, that should overlay on top of the base
foozleStr := "foozle"
foozleConfig := ptrifiedConfig{
Foo: &foozleStr,
}
w := fakeWatchingSource{fakeSource: fakeSource{outVal: foozleConfig}}
d, dialsErr := Config(ctx, &base, &w)
if dialsErr != nil {
panic("unexpected error: " + dialsErr.Error())
}
cfg, serialToken := d.ViewVersion()
fmt.Printf("Foo: %s\n", cfg.Foo)
unregCB := d.RegisterCallback(ctx, serialToken, func(ctx context.Context, oldCfg, newCfg *testConfig) {
panic("not getting called this time")
})
unregCB(ctx)
// Output:
// Foo: foozle
}