mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 20:37:17 +00:00
dc27cd7a1e
Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
28 lines
724 B
Go
28 lines
724 B
Go
// Package testing allows for spinning up a real bolt-db
|
|
// instance for unit tests throughout the Prysm repo.
|
|
package testing
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
|
|
)
|
|
|
|
// SetupDB instantiates and returns database backed by key value store.
|
|
func SetupDB(t testing.TB) (db.Database, *cache.StateSummaryCache) {
|
|
sc := cache.NewStateSummaryCache()
|
|
s, err := kv.NewKVStore(context.Background(), t.TempDir(), sc)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
t.Cleanup(func() {
|
|
if err := s.Close(); err != nil {
|
|
t.Fatalf("failed to close database: %v", err)
|
|
}
|
|
})
|
|
return s, sc
|
|
}
|