prysm-pulse/beacon-chain/db/db_test.go

53 lines
1.2 KiB
Go
Raw Normal View History

2018-10-05 17:14:50 +00:00
package db
import (
"crypto/rand"
"fmt"
"math/big"
2018-10-17 06:11:24 +00:00
"os"
"path"
"strings"
2018-10-05 17:14:50 +00:00
"testing"
"github.com/prysmaticlabs/prysm/shared/testutil"
2018-10-05 17:14:50 +00:00
)
// setupDB instantiates and returns a BeaconDB instance.
func setupDB(t testing.TB) *BeaconDB {
randPath, err := rand.Int(rand.Reader, big.NewInt(1000000))
2018-10-05 17:14:50 +00:00
if err != nil {
t.Fatalf("Could not generate random file path: %v", err)
}
path := path.Join(testutil.TempDir(), fmt.Sprintf("/%d", randPath))
if err := os.RemoveAll(path); err != nil {
t.Fatalf("Failed to remove directory: %v", err)
2018-10-05 17:14:50 +00:00
}
2018-10-17 06:11:24 +00:00
db, err := NewDB(path)
2018-10-05 17:14:50 +00:00
if err != nil {
2018-10-17 06:11:24 +00:00
t.Fatalf("Failed to instantiate DB: %v", err)
2018-10-05 17:14:50 +00:00
}
2018-10-17 06:11:24 +00:00
return db
}
2018-10-05 17:14:50 +00:00
// teardownDB cleans up a test BeaconDB instance.
func teardownDB(t testing.TB, db *BeaconDB) {
if err := db.Close(); err != nil {
t.Fatalf("Failed to close database: %v", err)
}
if err := os.RemoveAll(db.DatabasePath); err != nil {
t.Fatalf("Failed to remove directory: %v", err)
}
2018-10-05 17:14:50 +00:00
}
func TestClearDB(t *testing.T) {
beaconDB := setupDB(t)
path := strings.TrimSuffix(beaconDB.DatabasePath, "beaconchain.db")
if err := ClearDB(path); err != nil {
t.Fatal(err)
}
if _, err := os.Stat(beaconDB.DatabasePath); !os.IsNotExist(err) {
t.Fatalf("db wasnt cleared %v", err)
}
}