mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
2f11e55869
* use t.TempDir() * remove redundant delete * simplify setupDB() * simplify db/testing/setup_db * fix tests
27 lines
691 B
Go
27 lines
691 B
Go
// Package testing allows for spinning up a real bolt-db
|
|
// instance for unit tests throughout the Prysm repo.
|
|
package testing
|
|
|
|
import (
|
|
"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(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
|
|
}
|