prysm-pulse/slasher/db/testing/setup_db.go

27 lines
674 B
Go
Raw Normal View History

// Package testing defines useful helper functions for unit tests with
// the slasher database.
package testing
2019-09-26 16:29:10 +00:00
import (
"testing"
slasherDB "github.com/prysmaticlabs/prysm/slasher/db"
"github.com/prysmaticlabs/prysm/slasher/db/kv"
2019-09-26 16:29:10 +00:00
)
// SetupSlasherDB instantiates and returns a SlasherDB instance.
func SetupSlasherDB(t testing.TB, spanCacheEnabled bool) *kv.Store {
cfg := &kv.Config{}
db, err := slasherDB.NewDB(t.TempDir(), cfg)
if err != nil {
t.Fatalf("Failed to instantiate DB: %v", err)
}
db.EnableSpanCache(spanCacheEnabled)
t.Cleanup(func() {
if err := db.Close(); err != nil {
t.Fatalf("Failed to close database: %v", err)
}
})
return db
}