-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathasyncScheduler_test.go
410 lines (388 loc) · 13.7 KB
/
asyncScheduler_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
package golog
import (
"context"
"fmt"
"reflect"
"sync"
"sync/atomic"
"testing"
"time"
)
// Since I decided to cover the most use cases as it's possible, all the tests that
// override/read the value of some global variable MUST lock/unlock it
//
// It is done using the "raceFreeTest" high-order function, passing the locks at the
// end of the function, as a variadic argument
//
// If the function A is set to an internal global variable, and some test are overriding
// it, all tests that call this function A MUST pass the READ lock to the "raceFreeTest"
// high-order function, while the test that is writing to it passes the WRITE lock.
//
// Maybe it's too much complexity, but it was the only way to do some important test checks.
// Hope it pays off! kkkkkkkkkk
func TestDefaultAsyncScheduler(t *testing.T) {
t.Run("Should return nil if its given 0 go routines", func(t *testing.T) {
a := DefaultAsyncScheduler(0, 0)
if a != nil {
t.Fatalf("Expected to be nil")
}
})
t.Run("Should create a unique channel (w/ the correct cap) for every go routine", raceFreeTest(func(t *testing.T) {
nGoRoutines := uint64(5)
chansCap := uint64(3)
a := DefaultAsyncScheduler(nGoRoutines, chansCap).(*asyncScheduler)
if len(a.chans) != int(nGoRoutines) {
t.Fatalf("Expected one channel for every go routine")
}
for i, chanI := range a.chans {
if cap(chanI) != int(chansCap) {
t.Fatalf("Expected to create the channels with the correct capacity")
}
for j := i + 1; j < len(a.chans); j++ {
if reflect.ValueOf(chanI).Pointer() == reflect.ValueOf(a.chans[j]).Pointer() {
t.Fatalf("Every go routine is expected to have a unique channel")
}
}
}
a.Shutdown()
}, rContextWithCancel, rNewWaitGroup, rAsyncHandleLog, rHandleLog))
t.Run("Should set the first chan as the next one (nextChan field first value)", raceFreeTest(func(t *testing.T) {
a := DefaultAsyncScheduler(1, 0).(*asyncScheduler)
if a.nextChan != 0 {
t.Fatalf("Expected to be zero")
}
a.Shutdown()
}, rContextWithCancel, rNewWaitGroup, rAsyncHandleLog, rHandleLog))
t.Run("Should set the cancelFn to the one returned by the contextWithCancel", raceFreeTest(func(t *testing.T) {
ctx, cancelFn := context.WithCancel(context.Background())
contextWithCancel = func(parent context.Context) (context.Context, context.CancelFunc) { return ctx, cancelFn }
defer func() { contextWithCancel = context.WithCancel }()
a := DefaultAsyncScheduler(1, 0).(*asyncScheduler)
if reflect.ValueOf(cancelFn).Pointer() != reflect.ValueOf(a.cancelFn).Pointer() {
t.Fatalf("Expected to be the same cancelFn")
}
a.Shutdown()
}, wContextWithCancel, rNewWaitGroup, rAsyncHandleLog, rHandleLog))
t.Run("Should set a not nil waitGroup and increment it's counter by the number of goRoutines", raceFreeTest(func(t *testing.T) {
calls := 0
nGoRoutines := 3
mockWG := &mockWaitGroup{mockAdd: func(i int) {
calls += 1
if i != nGoRoutines {
t.Fatalf("Wrong delta added to the WaitGroup")
}
}}
oldNewWaitGroup := newWaitGroup
defer func() { newWaitGroup = oldNewWaitGroup }()
newWaitGroup = func() WaitGroup { return mockWG }
oldAsyncHandleLog := asyncHandleLog
defer func() { asyncHandleLog = oldAsyncHandleLog }()
wg := &sync.WaitGroup{}
wg.Add(nGoRoutines)
asyncHandleLog = func(ctx context.Context, c <-chan Log, _ WaitGroup) error {
wg.Done()
return nil
}
a := DefaultAsyncScheduler(uint64(nGoRoutines), 0).(*asyncScheduler)
wg.Wait()
if a.wg == nil {
t.Fatalf("Expected to be not nil")
}
if calls != 1 {
t.Fatalf("Expected to call wg.Add() incrementing the counter")
}
a.Shutdown()
}, wNewWaitGroup, rContextWithCancel, rHandleLog, wAsyncHandleLog))
t.Run("Should spawn the correct number of go routines", raceFreeTest(func(t *testing.T) {
// There's expected to exist 5 go routines, plus the TestSuite go routine,
// that will be chained together. The 0, 1, 2, and 3 will try to lock a mutex
// that can only be unlocked by the next go routine. Example:
// TestSuite GoRoutine:
// locks mutex 0
// GoRoutine 0:
// locks mutex 1
// GoRoutine 1:
// locks mutex 2
// GoRoutine 2:
// locks mutex 3
// GoRoutine 3:
// locks mutex 4
// GoRoutine 4:
// UNlocks mutex 4
// Last go routine alive and available (the others are locked)
// GoRoutine 3:
// Unlocked by GoRoutine 4, UNlocks mutex 3
// GoRoutine 2:
// Unlocked by GoRoutine 3, UNlocks mutex 2
// GoRoutine 1:
// Unlocked by GoRoutine 2, UNlocks mutex 1
// GoRoutine 0:
// Unlocked by GoRoutine 1, UNlocks mutex 0 (test suite)
// This way, it's required that there's at least 5 go routines, otherwise it will deadlock
// Start the test with the mutexes locked
locks := []*sync.Mutex{{}, {}, {}, {}, {}}
locks[0].Lock()
locks[1].Lock()
locks[2].Lock()
locks[3].Lock()
locks[4].Lock()
i := uint64(0)
oldAsyncHandleLog := asyncHandleLog
defer func() { asyncHandleLog = oldAsyncHandleLog }()
asyncHandleLog = func(ctx context.Context, c <-chan Log, wg WaitGroup) error {
idx := atomic.AddUint64(&i, 1)
if idx < 5 {
locks[idx].Lock()
}
locks[idx-1].Unlock()
return nil
}
DefaultAsyncScheduler(5, 1)
locks[0].Lock() // waits for the chain reaction
if i != 5 {
t.Fatalf("Expected to spawn 5 go routines")
}
}, wAsyncHandleLog, rContextWithCancel, rNewWaitGroup))
t.Run("Should give the correct context interface to the spawned go routines", raceFreeTest(func(t *testing.T) {
realCtx, cancelFn := context.WithCancel(context.Background())
contextWithCancel = func(parent context.Context) (context.Context, context.CancelFunc) { return realCtx, cancelFn }
defer func() { contextWithCancel = context.WithCancel }()
nGoRoutines := uint64(5)
wg := &sync.WaitGroup{} // just to make the testSuite wait for the go routines
wg.Add(int(nGoRoutines))
oldAsyncHandleLog := asyncHandleLog
defer func() { asyncHandleLog = oldAsyncHandleLog }()
asyncHandleLog = func(givenCtx context.Context, _ <-chan Log, _ WaitGroup) error {
if givenCtx != realCtx {
t.Fatalf("Wrong context given")
}
wg.Done()
return nil
}
DefaultAsyncScheduler(nGoRoutines, 0)
wg.Wait()
}, wAsyncHandleLog, wContextWithCancel, rNewWaitGroup))
t.Run("Should give the correct unique channel to each spawned go routine", raceFreeTest(func(t *testing.T) {
nGoRoutines := uint64(5)
i := uint64(0)
wg := &sync.WaitGroup{}
wg.Add(int(nGoRoutines))
channels := make([]<-chan Log, nGoRoutines)
oldAsyncHandleLog := asyncHandleLog
defer func() { asyncHandleLog = oldAsyncHandleLog }()
asyncHandleLog = func(_ context.Context, c <-chan Log, _ WaitGroup) error {
idx := atomic.AddUint64(&i, 1) - 1
channels[idx] = c
wg.Done()
return nil
}
DefaultAsyncScheduler(nGoRoutines, 0)
wg.Wait()
for i, chanI := range channels {
for j := i + 1; j < len(channels); j++ {
if reflect.ValueOf(chanI).Pointer() == reflect.ValueOf(channels[j]).Pointer() {
t.Fatalf("Every go routine is expected to have a unique channel")
}
}
}
}, wAsyncHandleLog, rNewWaitGroup, rContextWithCancel))
t.Run("Should give the correct waitGroup to the spawned go routines", raceFreeTest(func(t *testing.T) {
nGoRoutines := uint64(5)
testSuiteWG := &sync.WaitGroup{}
var givenWG WaitGroup
testSuiteWG.Add(int(nGoRoutines))
oldAsyncHandleLog := asyncHandleLog
defer func() { asyncHandleLog = oldAsyncHandleLog }()
asyncHandleLog = func(_ context.Context, _ <-chan Log, receivedWG WaitGroup) error {
if receivedWG == nil {
t.Fatalf("Not expected to pass nil WaitGroup to the spawned go routine")
}
if givenWG == nil {
givenWG = receivedWG
} else if reflect.ValueOf(givenWG).Pointer() != reflect.ValueOf(receivedWG).Pointer() {
t.Fatalf("Expected to pass the same WaitGroup to all the spawned go routines")
}
testSuiteWG.Done()
return nil
}
DefaultAsyncScheduler(nGoRoutines, 0)
testSuiteWG.Wait()
}, wAsyncHandleLog, rNewWaitGroup, rContextWithCancel))
}
func TestShutdown(t *testing.T) {
t.Run("Should call the cancel function, notifying the go routines context to exit", func(t *testing.T) {
wg := &sync.WaitGroup{}
calls := 0
a := &asyncScheduler{wg: wg, cancelFn: func() {
calls += 1
}}
a.Shutdown()
if calls != 1 {
t.Fatalf("Expected to call the cancel function")
}
})
t.Run("Should call the wg.Wait() method", func(t *testing.T) {
calls := 0
wg := &mockWaitGroup{mockWait: func() { calls += 1 }}
a := &asyncScheduler{wg: wg, cancelFn: func() {}}
a.Shutdown()
if calls != 1 {
t.Fatalf("Expected to call wg.Wait() one time")
}
})
}
func TestNextChannel(t *testing.T) {
t.Run("Should call the atomic.AddUint64 to increment the counter by one", raceFreeTest(func(t *testing.T) {
chans := []chan Log{make(chan Log), make(chan Log), make(chan Log)}
a := &asyncScheduler{chans: chans}
calls := 0
atomicAddUint64 = func(addr *uint64, delta uint64) (new uint64) {
calls += 1
if delta != 1 {
t.Fatalf("Expected to increment the counter by one")
}
if reflect.ValueOf(addr).Pointer() != reflect.ValueOf(&a.nextChan).Pointer() {
t.Fatalf("Wrong pointer given to atomic.AddUint64")
}
return 1
}
defer func() { atomicAddUint64 = atomic.AddUint64 }()
a.NextChannel()
if calls != 1 {
t.Fatalf("Expected to call atomic.AddUint64")
}
}, wAtomicAddUint64))
t.Run("Should round-robin the channels every call, starting from the first one", raceFreeTest(func(t *testing.T) {
chans := []chan Log{make(chan Log), make(chan Log), make(chan Log)}
a := &asyncScheduler{chans: chans}
for _, chanI := range chans {
chanJ := a.NextChannel()
if reflect.ValueOf(chanI).Pointer() != reflect.ValueOf(chanJ).Pointer() {
t.Fatalf("Expected to return the correct next channel")
}
}
// Another round
for _, chanI := range chans {
chanJ := a.NextChannel()
if reflect.ValueOf(chanI).Pointer() != reflect.ValueOf(chanJ).Pointer() {
t.Fatalf("Expected to return the right next channel")
}
}
}, rAtomicAddUint64))
}
func TestAsyncHandleLog(t *testing.T) {
t.Run("Should call the package internal variable directly, forwarding the arguments", raceFreeTest(func(t *testing.T) {
oldAsyncHandleLog := asyncHandleLog
defer func() { asyncHandleLog = oldAsyncHandleLog }()
calls := 0
expectedCtx := context.Background()
expectedChan := make(chan Log)
var expectedWg WaitGroup = &sync.WaitGroup{}
expectedErr := fmt.Errorf("some error")
asyncHandleLog = func(receivedCtx context.Context, receivedChan <-chan Log, receivedWg WaitGroup) error {
calls += 1
if receivedCtx != expectedCtx {
t.Fatalf("Wrong context")
}
if reflect.ValueOf(receivedChan).Pointer() != reflect.ValueOf(expectedChan).Pointer() {
t.Fatalf("Wrong channel")
}
if receivedWg != expectedWg {
t.Fatalf("Wrong waitGroup")
}
return expectedErr
}
receivedErr := AsyncHandleLog(expectedCtx, expectedChan, expectedWg)
if expectedErr != receivedErr {
t.Fatalf("Wrong error")
}
if calls != 1 {
t.Fatalf("Expected to call the internal implementation one time")
}
}, wAsyncHandleLog))
t.Run("If the given WaitGroup is nil, return immediately", raceFreeTest(func(t *testing.T) {
e := AsyncHandleLog(context.Background(), make(<-chan Log), nil)
if e != ErrNilWaitGroup {
t.Fatalf("Expected to return the correct error")
}
}, rAsyncHandleLog, rHandleLog))
t.Run("If the given context is nil, call wg.Done() and return immediately", raceFreeTest(func(t *testing.T) {
calls := 0
wg := &mockWaitGroup{mockDone: func() { calls += 1 }}
e := AsyncHandleLog(nil, make(<-chan Log), wg)
if e != ErrNilCtx {
t.Fatalf("Expected to return the correct error")
}
if calls != 1 {
t.Fatalf("Expected to call wg.Done() before exiting")
}
}, rAsyncHandleLog, rHandleLog))
t.Run("If the given channel is nil, call wg.Done() and return immediately", raceFreeTest(func(t *testing.T) {
calls := 0
wg := &mockWaitGroup{mockDone: func() { calls += 1 }}
e := AsyncHandleLog(context.Background(), nil, wg)
if e != ErrNilChan {
t.Fatalf("Expected to return the correct error")
}
if calls != 1 {
t.Fatalf("Expected to call wg.Done() before exiting")
}
}, rAsyncHandleLog, rHandleLog))
t.Run("Should forward the logs received via channel to the 'handleLog' function", raceFreeTest(func(t *testing.T) {
expectedLog := Log{
lvl: LvlDebug,
msg: "Some msg",
logger: &logger{},
preFields: LogFields{"a": "aaa", "b": "bbb", "c": "ccc"},
adHocFields: []LogFields{{"d": "ddd", "e": "eee", "f": "fff"}},
}
calls := 0
oldHandleLog := handleLog
defer func() { handleLog = oldHandleLog }()
handleLog = func(receivedLog Log) {
calls += 1
if !reflect.DeepEqual(receivedLog, expectedLog) {
t.Fatalf("Expected to receive a different log")
}
}
c := make(chan Log)
go AsyncHandleLog(context.Background(), c, &mockWaitGroup{})
c <- expectedLog
if calls != 1 {
t.Fatalf("Expected to call handleLog")
}
}, wHandleLog, rAsyncHandleLog))
t.Run("Should return when the context is done, decrementing the counter and returning nil", raceFreeTest(func(t *testing.T) {
ctx, cancelFn := context.WithCancel(context.Background())
calls := 0
wg := &mockWaitGroup{mockDone: func() { calls += 1 }}
time.AfterFunc(time.Millisecond*500, cancelFn)
e := AsyncHandleLog(ctx, make(chan Log), wg)
if e != nil {
t.Fatalf("Error is expected to be nil")
}
if calls != 1 {
t.Fatalf("Expected to decrement the waitGroup counter")
}
}, rAsyncHandleLog, rHandleLog))
}
type mockWaitGroup struct {
mockWait func()
mockDone func()
mockAdd func(i int)
}
func (f *mockWaitGroup) Wait() {
if f.mockWait != nil {
f.mockWait()
}
}
func (f *mockWaitGroup) Done() {
if f.mockDone != nil {
f.mockDone()
}
}
func (f *mockWaitGroup) Add(i int) {
if f.mockAdd != nil {
f.mockAdd(i)
}
}