-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmap_test.go
539 lines (509 loc) · 12.9 KB
/
map_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
package dbmutex
import (
"context"
"database/sql"
"errors"
"fmt"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/dynata/go-dbmutex/dbmerr"
)
type testMutex struct {
l sync.Mutex
lockCalled int32
failOnLockCallNum int32
unlockCalled int32
failOnUnlockCallNum int32
}
var errLockFailure = errors.New("lock failure")
var errUnlockFailure = errors.New("unlock failure")
func (t *testMutex) Lock(ctx context.Context) (context.Context, error) {
callNum := atomic.AddInt32(&t.lockCalled, 1)
if callNum == t.failOnLockCallNum {
return nil, errLockFailure
}
t.l.Lock()
return context.Background(), nil
}
func (t *testMutex) Unlock(ctx context.Context) error {
callNum := atomic.AddInt32(&t.unlockCalled, 1)
// go ahead and unlock even if we might return error since were just simulating a failure
t.l.Unlock()
if callNum == t.failOnUnlockCallNum {
return errUnlockFailure
}
return nil
}
type testMutexAllocator struct {
called int32
failOnAllocationCallNum int32
failOnLockCallNum int32
failOnUnlockCallNum int32
}
var errFailedAllocation = errors.New("failed allocation")
func (t *testMutexAllocator) mutexAllocator(context.Context, *sql.DB, ...MutexOption) (mutexOperations, error) {
// fmt.Println("mutexAllocator called")
callNum := atomic.AddInt32(&t.called, 1)
if callNum == t.failOnAllocationCallNum {
return nil, errFailedAllocation
}
return &testMutex{
failOnLockCallNum: t.failOnLockCallNum,
failOnUnlockCallNum: t.failOnUnlockCallNum,
}, nil
}
func TestMutexMap_SimpleLockUnlock(t *testing.T) {
ma := &testMutexAllocator{}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
_, err = mm.Lock(context.Background(), "X")
if err != nil {
t.Error(err)
return
}
err = mm.Unlock(context.Background(), "X")
if err != nil {
t.Error(err)
return
}
if 1 != int(ma.called) {
t.Errorf("expected 1 alloation but was %d", ma.called)
}
if mm.len() != 0 {
t.Errorf("expected map len to be 0 but was %d", mm.len())
}
}
func TestMutexMap_Concurrent(t *testing.T) {
concurrency := 10000
ma := &testMutexAllocator{}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
acc := int32(0)
wg := sync.WaitGroup{}
for i := 0; i < concurrency; i++ {
wg.Add(1)
go func(i int) {
defer wg.Done()
_, err := mm.Lock(context.Background(), "X")
if err != nil {
t.Error(err)
return
}
acc++
err = mm.Unlock(context.Background(), "X")
if err != nil {
t.Error(err)
return
}
}(i)
}
wg.Wait()
if int(acc) != concurrency {
t.Errorf("expected to accumulate %d but was %d", concurrency, acc)
}
if mm.len() != 0 {
t.Errorf("expected map len to be 0 but was %d", mm.len())
}
}
func TestMutexMap_MapStaysSmall(t *testing.T) {
ma := &testMutexAllocator{}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
maxI := 100
maxJ := 100
for i := 0; i < maxI; i++ {
for j := 0; j < maxJ; j++ {
lockName := fmt.Sprintf("%d", i)
_, err := mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}
}
expectedAllocations := maxI * maxJ
if expectedAllocations != int(ma.called) {
t.Errorf("expected %d alloations but was %d", expectedAllocations, ma.called)
}
if mm.len() != 0 {
t.Errorf("expected map len to be 0 but was %d", mm.len())
}
}
func TestMutexMap_MapStaysSmallWithConcurrency(t *testing.T) {
ma := &testMutexAllocator{}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
maxI := 100
maxJ := 100
wg := sync.WaitGroup{}
for i := 0; i < maxI; i++ {
wg.Add(1)
go func(i int) {
defer wg.Done()
for j := 0; j < maxJ; j++ {
wg.Add(1)
go func(j int) {
defer wg.Done()
lockName := fmt.Sprintf("%d", i)
_, err := mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
// time.Sleep(10 * time.Microsecond)
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}(j)
}
}(i)
}
wg.Wait()
t.Logf("allocate called %d times", ma.called)
if int(ma.called) < maxI {
t.Errorf("expected at least %d alloations but was %d", maxI, ma.called)
}
if int(ma.called) > maxI*maxJ {
t.Errorf("expected fewer than %d alloations but was %d", maxI*maxJ, ma.called)
}
if mm.len() != 0 {
t.Errorf("expected map len to be 0 but was %d", mm.len())
}
}
func TestMutexMap_MaxLocalWaiters(t *testing.T) {
minWaiters := 0
maxWaiters := 10
for waiters := minWaiters; waiters <= maxWaiters; waiters++ {
ma := &testMutexAllocator{}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithMaxLocalWaiters(int32(waiters)),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
maxI := 100
wg := sync.WaitGroup{}
lockName := "testLock"
acquiredLock := 0
maxWaitersErrs := int32(0)
for i := 0; i < maxI; i++ {
wg.Add(1)
go func(i int) {
defer wg.Done()
_, err := mm.Lock(context.Background(), lockName)
if err != nil {
var maxWaitersErr dbmerr.MaxWaitersExceededError
if !errors.As(err, &maxWaitersErr) {
t.Error(err)
return
}
// unable to acquire lock because of max waiters
atomic.AddInt32(&maxWaitersErrs, 1)
return
}
acquiredLock++
time.Sleep(10 * time.Millisecond)
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}(i)
}
wg.Wait()
if acquiredLock != waiters+1 {
t.Errorf("expected to acquire lock %d times but was %d", waiters+1, acquiredLock)
}
if acquiredLock+int(maxWaitersErrs) != maxI {
t.Errorf("expected acquire lock count + max waiters failures to be maxI(%d) but was %d", maxI, acquiredLock+waiters)
}
if int(ma.called) != 1 {
t.Errorf("expected 1 alloation but was %d", ma.called)
}
if mm.len() != 0 {
t.Errorf("expected map len to be 0 but was %d", mm.len())
}
}
}
func TestMutexMap_LockTimeout(t *testing.T) {
ma := &testMutexAllocator{}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
lockName := "testLock"
lockIsHeld := sync.WaitGroup{}
lockIsHeld.Add(1)
secondDone := sync.WaitGroup{}
secondDone.Add(1)
bothDone := sync.WaitGroup{}
bothDone.Add(2)
go func() {
defer bothDone.Done()
_, err := mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
lockIsHeld.Done()
secondDone.Wait()
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}()
go func() {
defer bothDone.Done()
defer secondDone.Done()
lockIsHeld.Wait()
ctx, cancel := context.WithTimeout(context.Background(), time.Nanosecond)
defer cancel()
lockCtx, err := mm.Lock(ctx, lockName)
if lockCtx != nil {
t.Error("returned lock context should have been nil")
}
if err != context.DeadlineExceeded {
t.Errorf("expected DeadlineExceeded error but was %v", err)
}
}()
bothDone.Wait()
// now should be able to acquire after a waiting lock timeout
_, err = mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}
func TestMutexMap_AllocationFailure(t *testing.T) {
ma := &testMutexAllocator{
failOnAllocationCallNum: 1,
}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
lockName := "testLock"
lockCtx, err := mm.Lock(context.Background(), lockName)
if err != errFailedAllocation {
t.Errorf("expected to fail to allocate but was %v", err)
}
if lockCtx != nil {
t.Error("returned lock context should have been nil")
}
// now lock after a failure to make sure things are still good
_, err = mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}
func TestMutexMap_LockFailure(t *testing.T) {
ma := &testMutexAllocator{
failOnLockCallNum: 2,
}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
lockName := "testLock"
lockIsHeld := sync.WaitGroup{}
lockIsHeld.Add(1)
oneDone := sync.WaitGroup{}
oneDone.Add(1)
bothDone := sync.WaitGroup{}
bothDone.Add(2)
go func() {
defer bothDone.Done()
defer oneDone.Done()
_, err := mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
lockIsHeld.Done()
// sleep for a brief time so that second routine will be waiting on local lock acquisition
time.Sleep(500 * time.Millisecond)
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}()
go func() {
defer bothDone.Done()
lockIsHeld.Wait()
ctx, cancel := context.WithTimeout(context.Background(), 3*time.Second)
defer cancel()
lockCtx, err := mm.Lock(ctx, lockName)
if lockCtx != nil {
t.Error("returned lock context should have been nil")
}
if err != errLockFailure {
t.Errorf("expected to fail to lock but was %v", err)
}
// wait for other routine to unlock then make sure we can lock again
oneDone.Wait()
_, err = mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}()
bothDone.Wait()
}
func TestMutexMap_UnlockFailure(t *testing.T) {
ma := &testMutexAllocator{
failOnUnlockCallNum: 2,
}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
lockName := "testLock"
lockIsHeld := sync.WaitGroup{}
lockIsHeld.Add(1)
oneDone := sync.WaitGroup{}
oneDone.Add(1)
allDone := sync.WaitGroup{}
allDone.Add(3)
go func() {
defer allDone.Done()
defer oneDone.Done()
_, err := mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
lockIsHeld.Done()
// sleep for a brief time so that second routine will be waiting on local lock acquisition
time.Sleep(500 * time.Millisecond)
err = mm.Unlock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
}()
lockUnlock := func(e *error) {
defer allDone.Done()
lockIsHeld.Wait()
_, err := mm.Lock(context.Background(), lockName)
if err != nil {
t.Error(err)
return
}
err = mm.Unlock(context.Background(), lockName)
*e = err
}
var unlockErr1 error
var unlockErr2 error
go lockUnlock(&unlockErr1)
go lockUnlock(&unlockErr2)
allDone.Wait()
if unlockErr1 != nil && unlockErr1 != errUnlockFailure {
t.Errorf("expected error to be nil or unlock failure but was %v", unlockErr1)
}
if unlockErr2 != nil && unlockErr2 != errUnlockFailure {
t.Errorf("expected error to be nil or unlock failure but was %v", unlockErr2)
}
if unlockErr1 == nil && unlockErr2 == nil {
t.Errorf("expected one of errs to be not nil but was 1: %v, 2: %v", unlockErr1, unlockErr2)
}
if unlockErr1 == errUnlockFailure && unlockErr2 == errUnlockFailure {
t.Errorf("expected only one of errs to be unlock failure but was 1: %v, 2: %v", unlockErr1, unlockErr2)
}
}
func TestMutexMap_UnlockNotLocked(t *testing.T) {
ma := &testMutexAllocator{}
options := []MutexMapOption{
withMutexAllocator(ma.mutexAllocator),
WithDelayResolveDriver(true),
WithDelayCreateMissingTable(true),
}
mm, err := NewMutexMap(context.Background(), nil, options...)
if err != nil {
t.Fatal(err)
}
lockName := "testLock"
err = mm.Unlock(context.Background(), lockName)
var e dbmerr.NotLockedError
if !errors.As(err, &e) {
t.Errorf("expected error to be not locked but was %v", err)
}
}