2020-04-29 17:40:33 +00:00
|
|
|
// Package testing allows for spinning up a real bolt-db
|
|
|
|
// instance for unit tests throughout the Prysm repo.
|
2019-08-15 21:41:51 +00:00
|
|
|
package testing
|
|
|
|
|
|
|
|
import (
|
2020-12-15 22:07:01 +00:00
|
|
|
"context"
|
2019-08-15 21:41:51 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"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.
|
2020-12-16 16:56:21 +00:00
|
|
|
func SetupDB(t testing.TB) db.Database {
|
|
|
|
s, err := kv.NewKVStore(context.Background(), t.TempDir())
|
2019-08-15 21:41:51 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2020-05-04 01:14:34 +00:00
|
|
|
t.Cleanup(func() {
|
|
|
|
if err := s.Close(); err != nil {
|
|
|
|
t.Fatalf("failed to close database: %v", err)
|
|
|
|
}
|
|
|
|
})
|
2020-12-16 16:56:21 +00:00
|
|
|
return s
|
2019-08-15 21:41:51 +00:00
|
|
|
}
|