[#1761] pilorama: Use batch size of 1 for tests

Improve tests speed by a lot and use more iterations in `ApplyRandom` test.

Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
support/v0.34
Evgenii Stratonikov 2022-09-07 11:50:03 +03:00 committed by fyrchik
parent a2bb3a2a96
commit 87bd49563e
1 changed files with 6 additions and 4 deletions

View File

@ -31,7 +31,9 @@ var providers = []struct {
tmpDir, err := os.MkdirTemp(os.TempDir(), "*")
require.NoError(t, err)
f := NewBoltForest(WithPath(filepath.Join(tmpDir, "test.db")))
f := NewBoltForest(
WithPath(filepath.Join(tmpDir, "test.db")),
WithMaxBatchSize(1))
require.NoError(t, f.Open(false))
require.NoError(t, f.Init())
t.Cleanup(func() {
@ -486,9 +488,9 @@ func testForestTreeApplyRandom(t *testing.T, constructor func(t testing.TB) Fore
rand.Seed(42)
const (
nodeCount = 4
opCount = 10
iterCount = 100
nodeCount = 5
opCount = 20
iterCount = 200
)
cid := cidtest.ID()