@@ -191,7 +191,7 @@ func Test_driver_Lock(t *testing.T) {
191
191
}
192
192
193
193
// should be locked
194
- if atomic .LoadInt32 (& d .(* driver ).lockFlag ) != 1 {
194
+ if atomic .LoadInt32 (& d .(* driver ).reentrantLockFlag ) != 1 {
195
195
t .Fatalf ("not locked" )
196
196
}
197
197
})
@@ -215,7 +215,7 @@ func Test_driver_Lock(t *testing.T) {
215
215
}
216
216
217
217
// should not be locked
218
- if atomic .LoadInt32 (& d .(* driver ).lockFlag ) != 0 {
218
+ if atomic .LoadInt32 (& d .(* driver ).reentrantLockFlag ) != 0 {
219
219
t .Fatalf ("unexpected lock" )
220
220
}
221
221
})
@@ -229,20 +229,20 @@ func Test_driver_Lock_Disabled(t *testing.T) {
229
229
}
230
230
231
231
// should not be locked
232
- if atomic .LoadInt32 (& d .lockFlag ) == 1 {
232
+ if atomic .LoadInt32 (& d .reentrantLockFlag ) == 1 {
233
233
t .Fatalf ("unexpected lock" )
234
234
}
235
235
}
236
236
237
237
func Test_driver_Lock_AlreadyLocked (t * testing.T ) {
238
- d := driver {cfg : & config {Locking : LockingConfig {Enabled : true }}, lockFlag : 1 }
238
+ d := driver {cfg : & config {Locking : LockingConfig {Enabled : true }}, reentrantLockFlag : 1 }
239
239
err := d .Lock ()
240
240
if err != nil {
241
241
t .Fatalf ("unexpected error: %v" , err )
242
242
}
243
243
244
244
// should be locked
245
- if atomic .LoadInt32 (& d .lockFlag ) != 1 {
245
+ if atomic .LoadInt32 (& d .reentrantLockFlag ) != 1 {
246
246
t .Fatalf ("not locked" )
247
247
}
248
248
}
@@ -408,7 +408,7 @@ func Test_driver_Unlock(t *testing.T) {
408
408
if err != nil {
409
409
t .Fatalf ("unexpected error: %v" , err )
410
410
}
411
- d .(* driver ).lockFlag = 1 // simulate locked driver
411
+ d .(* driver ).reentrantLockFlag = 1 // simulate locked driver
412
412
413
413
mt .AddMockResponses (bson.D {{Key : "ok" , Value : 1 }, {Key : "acknowledged" , Value : true }, {Key : "n" , Value : 1 }}) // n = 1 doc deleted
414
414
@@ -418,7 +418,7 @@ func Test_driver_Unlock(t *testing.T) {
418
418
}
419
419
420
420
// should not be locked
421
- if atomic .LoadInt32 (& d .(* driver ).lockFlag ) != 0 {
421
+ if atomic .LoadInt32 (& d .(* driver ).reentrantLockFlag ) != 0 {
422
422
t .Fatalf ("unexptected lock" )
423
423
}
424
424
})
@@ -430,7 +430,7 @@ func Test_driver_Unlock(t *testing.T) {
430
430
if err != nil {
431
431
t .Fatalf ("unexpected error: %v" , err )
432
432
}
433
- d .(* driver ).lockFlag = 1 // simulate locked driver
433
+ d .(* driver ).reentrantLockFlag = 1 // simulate locked driver
434
434
435
435
mt .AddMockResponses (bson.D {{Key : "ok" , Value : 0 }, {Key : "acknowledged" , Value : false }, {Key : "n" , Value : 0 }})
436
436
@@ -440,7 +440,7 @@ func Test_driver_Unlock(t *testing.T) {
440
440
}
441
441
442
442
// should still be locked
443
- if atomic .LoadInt32 (& d .(* driver ).lockFlag ) != 1 {
443
+ if atomic .LoadInt32 (& d .(* driver ).reentrantLockFlag ) != 1 {
444
444
t .Fatalf ("not locked" )
445
445
}
446
446
})
@@ -454,20 +454,20 @@ func Test_driver_Unlock_Disabled(t *testing.T) {
454
454
}
455
455
456
456
// should not be locked
457
- if atomic .LoadInt32 (& d .lockFlag ) != 0 {
457
+ if atomic .LoadInt32 (& d .reentrantLockFlag ) != 0 {
458
458
t .Fatalf ("unexptected lock" )
459
459
}
460
460
}
461
461
462
462
func Test_driver_Unlock_AlreadyUnlocked (t * testing.T ) {
463
- d := driver {cfg : & config {Locking : LockingConfig {Enabled : true }}, lockFlag : 0 }
463
+ d := driver {cfg : & config {Locking : LockingConfig {Enabled : true }}, reentrantLockFlag : 0 }
464
464
err := d .Unlock ()
465
465
if err != nil {
466
466
t .Fatalf ("unexpected error: %v" , err )
467
467
}
468
468
469
469
// should not be locked
470
- if atomic .LoadInt32 (& d .lockFlag ) != 0 {
470
+ if atomic .LoadInt32 (& d .reentrantLockFlag ) != 0 {
471
471
t .Fatalf ("unexptected lock" )
472
472
}
473
473
}
0 commit comments