WIP: Morph: Add unit tests #2

Closed
dstepanov-yadro wants to merge 233 commits from TrueCloudLab/frostfs-node:master into object-3608-morph-unit-tests
3 changed files with 7 additions and 2 deletions
Showing only changes of commit 2310a5c7ba - Show all commits

View file

@ -76,7 +76,7 @@ type cfg struct {
batchSize, cacheSize uint32
rebalanceFreq, evictDuration time.Duration
rebalanceFreq, evictDuration, sleepDuration time.Duration
}
func defaultCfg() *cfg {
@ -85,6 +85,7 @@ func defaultCfg() *cfg {
batchSize: 10,
cacheSize: 1024, // 1024 * address size = 1024 * 64 = 64 MiB
rebalanceFreq: 1 * time.Second,
sleepDuration: 1 * time.Second,
evictDuration: 30 * time.Second,
}
}

View file

@ -6,6 +6,7 @@ import (
"errors"
"sort"
"testing"
"time"
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/container"
objectcore "git.frostfs.info/TrueCloudLab/frostfs-node/pkg/core/object"
@ -279,6 +280,9 @@ func TestIteratorContract(t *testing.T) {
WithBuryFunc(buryFn),
WithPool(pool),
WithNodeLoader(constNodeLoader(0)),
func(c *cfg) {
c.sleepDuration = time.Millisecond
},
)
ctx, cancel := context.WithCancel(context.Background())

View file

@ -28,7 +28,7 @@ func (p *Policer) shardPolicyWorker(ctx context.Context) {
if err != nil {
if errors.Is(err, engine.ErrEndOfListing) {
p.keySpaceIterator.Rewind()
time.Sleep(time.Second) // finished whole cycle, sleep a bit
time.Sleep(p.sleepDuration) // finished whole cycle, sleep a bit
continue
}
p.log.Warn(logs.PolicerFailureAtObjectSelectForReplication, zap.Error(err))