Fix flaky test #795
1 changed files with 8 additions and 11 deletions
|
@ -137,13 +137,12 @@ func TestLockUserScenario(t *testing.T) {
|
||||||
// 5.
|
// 5.
|
||||||
e.HandleNewEpoch(lockerExpiresAfter + 1)
|
e.HandleNewEpoch(lockerExpiresAfter + 1)
|
||||||
|
|
||||||
// delay for GC
|
|
||||||
time.Sleep(time.Second)
|
|
||||||
|
|||||||
|
|
||||||
inhumePrm.WithTarget(tombAddr, objAddr)
|
inhumePrm.WithTarget(tombAddr, objAddr)
|
||||||
|
|
||||||
_, err = e.Inhume(context.Background(), inhumePrm)
|
require.Eventually(t, func() bool {
|
||||||
require.NoError(t, err)
|
_, err = e.Inhume(context.Background(), inhumePrm)
|
||||||
|
return err == nil
|
||||||
|
}, 30*time.Second, time.Second)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestLockExpiration(t *testing.T) {
|
func TestLockExpiration(t *testing.T) {
|
||||||
|
@ -213,15 +212,13 @@ func TestLockExpiration(t *testing.T) {
|
||||||
// 3.
|
// 3.
|
||||||
e.HandleNewEpoch(lockerExpiresAfter + 1)
|
e.HandleNewEpoch(lockerExpiresAfter + 1)
|
||||||
|
|
||||||
// delay for GC processing. It can't be estimated, but making it bigger
|
|
||||||
// will slow down test
|
|
||||||
time.Sleep(time.Second)
|
|
||||||
|
|
||||||
// 4.
|
// 4.
|
||||||
inhumePrm.WithTarget(oidtest.Address(), objectcore.AddressOf(obj))
|
inhumePrm.WithTarget(oidtest.Address(), objectcore.AddressOf(obj))
|
||||||
|
|
||||||
_, err = e.Inhume(context.Background(), inhumePrm)
|
require.Eventually(t, func() bool {
|
||||||
require.NoError(t, err)
|
_, err = e.Inhume(context.Background(), inhumePrm)
|
||||||
|
return err == nil
|
||||||
|
}, 30*time.Second, time.Second)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestLockForceRemoval(t *testing.T) {
|
func TestLockForceRemoval(t *testing.T) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue
I think what we really need is manual GC execution: can we e.g. call
removeGarbage
explicitly or is it too much refactoring?