-
-
Notifications
You must be signed in to change notification settings - Fork 240
Expand file tree
/
Copy pathcontext_test.go
More file actions
503 lines (400 loc) · 11.1 KB
/
context_test.go
File metadata and controls
503 lines (400 loc) · 11.1 KB
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
package e2e
import (
"context"
"errors"
"net/http"
"net/http/httptest"
"strings"
"sync"
"testing"
"time"
"github.com/gavv/httpexpect/v2"
"github.com/stretchr/testify/assert"
)
const (
TimeOutDuration = 500 * time.Millisecond
)
type waitHandler struct {
mux *http.ServeMux
callCount int
retriesToFail int
retriesDone chan struct{}
sync.RWMutex
}
func (h *waitHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
h.mux.ServeHTTP(w, r)
}
func (h *waitHandler) waitForContextCancellation(w http.ResponseWriter, r *http.Request) {
callCount := h.incrCallCount()
// if retries-to-fail are not set then simply wait for the cancellation
if h.retriesToFail == 0 {
<-r.Context().Done()
} else {
// if retries-to-fail are set then make sure they are exhausted before
// waiting for cancellation
if callCount < h.retriesToFail+1 {
w.WriteHeader(http.StatusInternalServerError)
} else {
h.retriesDone <- struct{}{}
<-r.Context().Done()
}
}
}
func (h *waitHandler) waitForPerRequestTimeout(w http.ResponseWriter, r *http.Request) {
callCount := h.incrCallCount()
// if retries-to-fail are not set or not exhausted yet, simply wait for
// the timeout
if h.retriesToFail == 0 || callCount < h.retriesToFail+1 {
<-r.Context().Done()
} else {
// otherwise succeed
w.WriteHeader(http.StatusOK)
}
}
func (h *waitHandler) incrCallCount() int {
h.Lock()
defer h.Unlock()
h.callCount++
r := h.callCount
return r
}
func (h *waitHandler) getCallCount() int {
h.RLock()
defer h.RUnlock()
return h.callCount
}
func newWaitHandler(retriesToFail int) *waitHandler {
mux := http.NewServeMux()
handler := &waitHandler{
mux: mux,
retriesToFail: retriesToFail,
retriesDone: make(chan struct{}),
}
mux.HandleFunc("/waitForContextCancellation", handler.waitForContextCancellation)
mux.HandleFunc("/waitForPerRequestTimeout", handler.waitForPerRequestTimeout)
return handler
}
func (h *waitHandler) waitForRetries() {
<-h.retriesDone
}
type errorSuppressor struct {
backend *assert.Assertions
formatter httpexpect.Formatter
isExpectedError func(err error) bool
expectedErrorOccurred bool
}
func newErrorSuppressor(
t assert.TestingT, isExpectedError func(err error) bool,
) *errorSuppressor {
return &errorSuppressor{
backend: assert.New(t),
formatter: &httpexpect.DefaultFormatter{},
isExpectedError: isExpectedError,
}
}
func (h *errorSuppressor) Success(ctx *httpexpect.AssertionContext) {
}
func (h *errorSuppressor) Failure(
ctx *httpexpect.AssertionContext, failure *httpexpect.AssertionFailure,
) {
for _, e := range failure.Errors {
if h.isExpectedError(e) {
h.expectedErrorOccurred = true
return
}
}
h.backend.Fail(h.formatter.FormatFailure(ctx, failure))
}
func TestE2EContext_GlobalCancel(t *testing.T) {
handler := newWaitHandler(0)
server := httptest.NewServer(handler)
defer server.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// config with context cancel suppression
suppressor := newErrorSuppressor(t,
func(err error) bool {
return errors.Is(err, context.Canceled)
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
Context: ctx,
AssertionHandler: suppressor,
})
done := make(chan struct{})
go func() {
e.GET("/waitForContextCancellation").
Expect()
done <- struct{}{}
}()
cancel()
<-done
// expected error should occur
assert.True(t, suppressor.expectedErrorOccurred)
}
func TestE2EContext_GlobalWithRetries(t *testing.T) {
if testing.Short() {
t.Skip()
}
maxRetries := 3
retriesToFail := 2
handler := newWaitHandler(retriesToFail)
server := httptest.NewServer(handler)
defer server.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// config with context cancel suppression
suppressor := newErrorSuppressor(t,
func(err error) bool {
return errors.Is(err, context.Canceled)
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
Context: ctx,
AssertionHandler: suppressor,
})
done := make(chan struct{})
go func() {
e.GET("/waitForContextCancellation").
WithMaxRetries(maxRetries).
Expect()
done <- struct{}{}
}()
handler.waitForRetries() // wait for the retries-set-to-fail
cancel() // cancel the rest
<-done
// expected error should occur
assert.True(t, suppressor.expectedErrorOccurred)
// first call + retries to fail should be the call count
assert.Equal(t, retriesToFail+1, handler.getCallCount())
}
func TestE2EContext_PerRequest(t *testing.T) {
handler := newWaitHandler(0)
server := httptest.NewServer(handler)
defer server.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// config with context cancel suppression
suppressor := newErrorSuppressor(t,
func(err error) bool {
return errors.Is(err, context.Canceled)
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
AssertionHandler: suppressor,
})
done := make(chan struct{})
go func() {
e.GET("/waitForContextCancellation").
WithContext(ctx).
Expect()
done <- struct{}{}
}()
cancel()
<-done
// expected error should occur
assert.True(t, suppressor.expectedErrorOccurred)
}
func TestE2EContext_PerRequestWithRetries(t *testing.T) {
if testing.Short() {
t.Skip()
}
maxRetries := 3
retriesToFail := 2
handler := newWaitHandler(retriesToFail)
server := httptest.NewServer(handler)
defer server.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// config with context cancel suppression
suppressor := newErrorSuppressor(t,
func(err error) bool {
return errors.Is(err, context.Canceled)
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
AssertionHandler: suppressor,
})
done := make(chan struct{})
go func() {
e.GET("/waitForContextCancellation").
WithMaxRetries(maxRetries).
WithContext(ctx).
Expect()
done <- struct{}{}
}()
handler.waitForRetries() // wait for the retries-set-to-fail
cancel() // cancel the rest
<-done
// expected error should occur
assert.True(t, suppressor.expectedErrorOccurred)
// first call + retries to fail should be the call count
assert.Equal(t, retriesToFail+1, handler.getCallCount())
}
func TestE2EContext_PerRequestWithTimeout(t *testing.T) {
if testing.Short() {
t.Skip()
}
handler := newWaitHandler(0)
server := httptest.NewServer(handler)
defer server.Close()
// config with context deadline expected error
suppressor := newErrorSuppressor(t,
func(err error) bool {
return strings.Contains(err.Error(), "context deadline exceeded")
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
AssertionHandler: suppressor,
})
e.GET("/waitForPerRequestTimeout").
WithTimeout(TimeOutDuration).
Expect()
// expected error should occur
assert.True(t, suppressor.expectedErrorOccurred)
}
func TestE2EContext_PerRequestWithTimeoutAndRetries(t *testing.T) {
if testing.Short() {
t.Skip()
}
maxRetries := 3
retriesToFail := 2
handler := newWaitHandler(retriesToFail)
server := httptest.NewServer(handler)
defer server.Close()
// this call will terminate with success
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
Reporter: httpexpect.NewAssertReporter(t),
})
e.GET("/waitForPerRequestTimeout").
WithTimeout(TimeOutDuration).
WithMaxRetries(maxRetries).
Expect().
Status(http.StatusOK)
// first call + retries to fail should be the call count
assert.Equal(t, retriesToFail+1, handler.getCallCount())
}
func TestE2EContext_PerRequestWithTimeoutCancelledByTimeout(t *testing.T) {
if testing.Short() {
t.Skip()
}
handler := newWaitHandler(0)
server := httptest.NewServer(handler)
defer server.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// config with context deadline expected error
suppressor := newErrorSuppressor(t,
func(err error) bool {
return strings.Contains(err.Error(), "context deadline exceeded")
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
AssertionHandler: suppressor,
})
e.GET("/waitForPerRequestTimeout").
WithContext(ctx).
WithTimeout(TimeOutDuration).
Expect()
// expected error should occur
assert.True(t, suppressor.expectedErrorOccurred)
}
func TestE2EContext_PerRequestWithTimeoutCancelledByContext(t *testing.T) {
handler := newWaitHandler(0)
server := httptest.NewServer(handler)
defer server.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
// config with context deadline expected error
suppressor := newErrorSuppressor(t,
func(err error) bool {
return errors.Is(err, context.Canceled)
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: server.URL,
AssertionHandler: suppressor,
})
done := make(chan struct{})
go func() {
e.GET("/waitForContextCancellation").
WithContext(ctx).
WithTimeout(TimeOutDuration).
Expect()
done <- struct{}{}
}()
cancel() // cancel the rest
<-done
// expected error should occur
assert.True(t, suppressor.expectedErrorOccurred)
}
func TestE2EContext_PerRequestRetry(t *testing.T) {
var m sync.Mutex
t.Run("not cancelled", func(t *testing.T) {
var callCount int
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
callCount++
if callCount > 1 {
w.WriteHeader(http.StatusOK)
return
}
w.WriteHeader(http.StatusInternalServerError)
}))
defer ts.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: ts.URL,
Reporter: t,
})
e.GET("/").
WithContext(ctx).
WithMaxRetries(1).
WithRetryPolicy(httpexpect.RetryAllErrors).
WithRetryDelay(time.Millisecond, time.Millisecond).
Expect()
assert.Equal(t, 2, callCount)
})
t.Run("cancelled after first retry attempt", func(t *testing.T) {
var callCount int
ctxCancellation := make(chan bool, 1) // To cancel context after first retry attempt
isCtxCancelled := make(chan bool, 1) // To wait until cancel() is called
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
m.Lock()
defer m.Unlock()
callCount++
if callCount == 2 {
ctxCancellation <- true
}
w.WriteHeader(http.StatusInternalServerError)
}))
defer ts.Close()
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
go func() {
<-ctxCancellation
cancel()
isCtxCancelled <- true
}()
// Config with context cancelled error
suppressor := newErrorSuppressor(t,
func(err error) bool {
return errors.Is(err, context.Canceled)
})
e := httpexpect.WithConfig(httpexpect.Config{
BaseURL: ts.URL,
AssertionHandler: suppressor,
})
e.GET("/").
WithContext(ctx).
WithMaxRetries(100).
WithRetryPolicy(httpexpect.RetryAllErrors).
WithRetryDelay(10*time.Millisecond, 10*time.Millisecond).
Expect()
<-isCtxCancelled
assert.GreaterOrEqual(t, callCount, 2)
assert.True(t, suppressor.expectedErrorOccurred)
})
}