-
Notifications
You must be signed in to change notification settings - Fork 9
/
experiment_test.go
507 lines (413 loc) · 11.7 KB
/
experiment_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
package experiment_test
import (
"context"
"errors"
"fmt"
"sync"
"testing"
"time"
"github.com/jelmersnoeck/experiment/v3"
)
func TestRun(t *testing.T) {
t.Run("sequential", func(t *testing.T) {
t.Run("basic", func(t *testing.T) {
testRun(t)
})
t.Run("timeouts", func(t *testing.T) {
testWithTimeout(t)
})
})
t.Run("concurrent", func(t *testing.T) {
t.Run("basic", func(t *testing.T) {
testRun(t, experiment.WithConcurrency())
})
t.Run("timeouts", func(t *testing.T) {
testWithTimeout(t, experiment.WithConcurrency())
})
})
}
func testRun(t *testing.T, config ...experiment.ConfigFunc) {
t.Run("it should record", func(t *testing.T) {
tcs := map[string]struct {
pubFunc func(context.Context, experiment.Observation[string]) error
}{
"a success": {
pubFunc: func(_ context.Context, o experiment.Observation[string]) error {
if o.Name == "correct" && !o.Success {
t.Errorf("Expected a success, got mismatch")
}
return nil
},
},
"a mismatch": {
pubFunc: func(_ context.Context, o experiment.Observation[string]) error {
if o.Name == "mismatch" && o.Success {
t.Errorf("Expected a mismatch, got success")
}
return nil
},
},
"an error": {
pubFunc: func(_ context.Context, o experiment.Observation[string]) error {
if o.Name == "error" && o.Error == nil {
t.Errorf("Expected an error, got none")
}
return nil
},
},
"the panic in the CandidatePanicError": {
pubFunc: func(_ context.Context, o experiment.Observation[string]) error {
if o.Name == "panic" {
var panicError experiment.CandidatePanicError
if !errors.As(o.Error, &panicError) {
t.Errorf("Expected CandidatePanicError, got %T", o.Error)
}
if panicError.Panic == nil {
t.Errorf("Expected a panic, did not record one")
}
}
return nil
},
},
"the clean control": {
pubFunc: func(_ context.Context, o experiment.Observation[string]) error {
if o.Name != "control" && o.Error == nil {
if o.ControlValue != "Cleaned control" {
t.Errorf("Expected value to be '%s', got '%s'", "Cleaned Control", o.ControlValue)
}
}
return nil
},
},
"the clean control value": {
pubFunc: func(_ context.Context, o experiment.Observation[string]) error {
if o.Error == nil && o.Success {
cleaned := fmt.Sprintf("Cleaned %s", o.Value)
if o.CleanValue != cleaned {
t.Errorf("Expected value to be '%s', got '%s'", cleaned, o.CleanValue)
}
}
return nil
},
},
}
for name, tc := range tcs {
t.Run(name, func(t *testing.T) {
ctx := context.Background()
exp, pub := testExperiment(config...)
var pubRun bool
pub.fnc = func(ctx context.Context, o experiment.Observation[string]) error {
pubRun = true
return tc.pubFunc(ctx, o)
}
if _, err := exp.Run(ctx); err != nil {
t.Errorf("Expected no error for running, got %s", err)
}
if err := exp.Publish(ctx); err != nil {
t.Errorf("Expected no error for publishing, got %s", err)
}
if pubRun != true {
t.Error("Expected publisher to run, it did not")
}
})
}
})
t.Run("it should return the correct value", func(t *testing.T) {
ctx := context.Background()
exp, _ := testExperiment(config...)
val, err := exp.Run(ctx)
if val != "control" {
t.Errorf("Expected value to be 'control', got '%s'", val)
}
if err != nil {
t.Errorf("Expected error to be 'nil', got '%s'", err.Error())
}
})
}
func TestRun_Before(t *testing.T) {
ctx := context.Background()
exp := experiment.New[string]()
exp.Force(true)
exp.Control(func(context.Context) (string, error) {
return "", nil
})
t.Run("with an error", func(t *testing.T) {
expected := errors.New("before error")
exp.Before(func(context.Context) error {
return expected
})
_, err := exp.Run(ctx)
if expected != err {
t.Errorf("Expected error '%v', got '%v'", expected, err)
}
})
t.Run("without an error", func(t *testing.T) {
var ran bool
exp.Before(func(context.Context) error {
ran = true
return nil
})
exp.Run(ctx)
if !ran {
t.Errorf("Expected before to have run, did not")
}
})
}
func TestRun_Ignore(t *testing.T) {
exp, pub := testExperiment(experiment.WithPercentage(100))
exp.Ignore(true)
var count int
var lock sync.Mutex
pub.fnc = func(_ context.Context, _ experiment.Observation[string]) error {
lock.Lock()
defer lock.Unlock()
count++
return nil
}
exp.Run(context.Background())
if count != 0 {
t.Errorf("Expected '0' observations, got '%d'", count)
}
}
func testWithTimeout(t *testing.T, o ...experiment.ConfigFunc) {
contextTimeout := 10 * time.Millisecond
timeFunc := func(ctx context.Context, dur time.Duration) error {
tick := time.NewTicker(dur)
select {
case <-ctx.Done():
return ctx.Err()
case <-tick.C:
return nil
}
}
t.Run("with slow control", func(t *testing.T) {
exp := experiment.New[string](o...)
exp.Force(true)
var hasRun bool
exp.Control(func(ctx context.Context) (string, error) {
hasRun = true
return "", timeFunc(ctx, time.Minute)
})
ctx, cancel := context.WithTimeout(context.Background(), contextTimeout)
defer cancel()
_, err := exp.Run(ctx)
if !hasRun {
t.Errorf("expected control to have run")
}
if !errors.Is(err, context.DeadlineExceeded) {
t.Errorf("expected deadline exceeded")
}
})
t.Run("with slow candidate", func(t *testing.T) {
pub := &testPublisher[string]{}
exp := experiment.New[string](o...).WithPublisher(pub)
exp.Force(true)
var hasRun bool
exp.Control(func(ctx context.Context) (string, error) {
return "", nil
})
exp.Candidate("candidate", func(ctx context.Context) (string, error) {
hasRun = true
return "", timeFunc(ctx, time.Minute)
})
ctx, cancel := context.WithTimeout(context.Background(), contextTimeout)
defer cancel()
_, err := exp.Run(ctx)
if !hasRun {
t.Errorf("expected candidate to have run")
}
if err != nil {
t.Errorf("expected no error from the control function, got %s", err)
}
// time.Sleep(time.Second)
var candidateErr error
pub.fnc = func(_ context.Context, o experiment.Observation[string]) error {
if o.Name == "candidate" {
candidateErr = o.Error
}
return nil
}
if err := exp.Publish(context.Background()); err != nil {
t.Errorf("expected publishing to succeed, got error %s", err)
}
if !errors.Is(candidateErr, context.DeadlineExceeded) {
t.Errorf("expected candidate to have exceeded the deadline, got %s error", candidateErr)
}
})
t.Run("with everything timely", func(t *testing.T) {
pub := &testPublisher[string]{}
exp := experiment.New[string](o...).WithPublisher(pub)
exp.Force(true)
var hasRun bool
exp.Control(func(ctx context.Context) (string, error) {
return "", nil
})
exp.Candidate("candidate", func(ctx context.Context) (string, error) {
hasRun = true
return "", nil
})
ctx, cancel := context.WithTimeout(context.Background(), contextTimeout)
defer cancel()
_, err := exp.Run(ctx)
if !hasRun {
t.Errorf("expected candidate to have run")
}
if err != nil {
t.Errorf("expected no error from the control function, got %s", err)
}
var candidateErr error
pub.fnc = func(_ context.Context, o experiment.Observation[string]) error {
if o.Name == "candidate" {
candidateErr = o.Error
}
return nil
}
if err := exp.Publish(context.Background()); err != nil {
t.Errorf("expected publishing to succeed, got error %s", err)
}
if candidateErr != nil {
t.Errorf("expected no candidate error, got %s", candidateErr)
}
})
}
func TestRun_ContextPropagation(t *testing.T) {
exp := experiment.New[string](experiment.WithTimeout(time.Second))
exp.Force(true)
key := func(s string) *string { return &s }("key")
exp.Control(func(ctx context.Context) (string, error) {
if value := ctx.Value(key); value != "value" {
t.Errorf("expected context key to have value, got %s", value)
}
return "", nil
})
exp.Candidate("candidate", func(ctx context.Context) (string, error) {
if value := ctx.Value(key); value != "value" {
t.Errorf("expected context key to have value, got %s", value)
}
return "", nil
})
ctx := context.WithValue(context.Background(), key, "value")
_, err := exp.Run(ctx)
if err != nil {
t.Errorf("Expected no error, got %s", err)
}
}
func TestRun_WithConcurrency(t *testing.T) {
exp := experiment.New[string]()
exp.Force(true)
var count int
var lock sync.Mutex
expected := 5
eChan := make(chan bool)
fnc := func(name string) experiment.CandidateFunc[string] {
return func(context.Context) (string, error) {
lock.Lock()
defer lock.Unlock()
count++
eChan <- true
return name, nil
}
}
exp.Control(fnc("control"))
exp.Candidate("correct", fnc("correct"))
exp.Candidate("mismatch", fnc("mismatch"))
exp.Candidate("error", func(context.Context) (string, error) {
lock.Lock()
defer lock.Unlock()
count++
eChan <- true
return "", errors.New("errored")
})
exp.Candidate("panic", func(context.Context) (string, error) {
lock.Lock()
defer lock.Unlock()
count++
eChan <- true
panic("candidate")
})
ctx, cancel := context.WithTimeout(context.Background(), time.Second)
defer cancel()
// run this in a goroutine so we can check for the messages coming in on the
// eChan channel.
go func() {
if _, err := exp.Run(ctx); err != nil {
t.Errorf("Expected no error running, got %s", err)
}
}()
checkLoop:
for i := 0; i < expected; i++ {
select {
case <-eChan:
case <-ctx.Done():
t.Errorf("Expected to run the experiment within one second")
break checkLoop
}
}
if count != expected {
t.Errorf("Expected '%d' observations, got '%d'", expected, count)
}
}
func TestPublish_Errors(t *testing.T) {
pub := &testPublisher[string]{}
pub.fnc = func(ctx context.Context, o experiment.Observation[string]) error {
return errors.New(o.Name)
}
exp := experiment.New[string]().WithPublisher(pub)
exp.Force(true)
exp.Control(func(context.Context) (string, error) {
return "control", nil
})
exp.Candidate("correct", func(context.Context) (string, error) {
return "control", nil
})
exp.Candidate("mismatch", func(context.Context) (string, error) {
return "mismatch", nil
})
ctx := context.Background()
if _, err := exp.Run(ctx); err != nil {
t.Errorf("Expected no error, got %s", err)
}
var publishErr *experiment.PublishError
if err := exp.Publish(ctx); !errors.As(err, &publishErr) {
t.Errorf("Expected PublishError error, got %s", err)
}
if len := len(publishErr.Unwrap()); len != 3 {
t.Errorf("Expected 3 errors, got %d", len)
}
}
func testExperiment(cfg ...experiment.ConfigFunc) (*experiment.Experiment[string], *testPublisher[string]) {
pub := &testPublisher[string]{}
exp := experiment.New[string](cfg...).WithPublisher(pub)
exp.Force(true)
exp.Control(func(context.Context) (string, error) {
return "control", nil
})
exp.Candidate("correct", func(context.Context) (string, error) {
return "control", nil
})
exp.Candidate("mismatch", func(context.Context) (string, error) {
return "mismatch", nil
})
exp.Candidate("error", func(context.Context) (string, error) {
return "", errors.New("errored")
})
exp.Candidate("panic", func(context.Context) (string, error) {
panic("candidate")
})
exp.Compare(func(control, candidate string) bool {
return control == candidate
})
exp.Clean(func(c string) string {
return fmt.Sprintf("Cleaned %s", c)
})
return exp, pub
}
type testPublisher[C any] struct {
fnc func(context.Context, experiment.Observation[C]) error
}
func (t *testPublisher[C]) Publish(ctx context.Context, o experiment.Observation[C]) error {
if t.fnc != nil {
return t.fnc(ctx, o)
}
return nil
}