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 (
|
|
|
|
"crypto/rand"
|
|
|
|
"fmt"
|
|
|
|
"math/big"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"testing"
|
|
|
|
|
2020-03-30 22:10:45 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
|
2019-08-15 21:41:51 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/kv"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetupDB instantiates and returns database backed by key value store.
|
|
|
|
func SetupDB(t testing.TB) db.Database {
|
|
|
|
randPath, err := rand.Int(rand.Reader, big.NewInt(1000000))
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("could not generate random file path: %v", err)
|
|
|
|
}
|
|
|
|
p := path.Join(testutil.TempDir(), fmt.Sprintf("/%d", randPath))
|
|
|
|
if err := os.RemoveAll(p); err != nil {
|
|
|
|
t.Fatalf("failed to remove directory: %v", err)
|
|
|
|
}
|
2020-03-30 22:10:45 +00:00
|
|
|
s, err := kv.NewKVStore(p, cache.NewStateSummaryCache())
|
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)
|
|
|
|
}
|
|
|
|
if err := os.RemoveAll(s.DatabasePath()); err != nil {
|
|
|
|
t.Fatalf("could not remove tmp db dir: %v", err)
|
|
|
|
}
|
|
|
|
})
|
2019-08-15 21:41:51 +00:00
|
|
|
return s
|
|
|
|
}
|