mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 17:22:18 +00:00
44 lines
766 B
Go
44 lines
766 B
Go
|
package kv
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"io/ioutil"
|
||
|
"path"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/prysmaticlabs/go-ssz"
|
||
|
eth "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
||
|
)
|
||
|
|
||
|
func TestStore_Backup(t *testing.T) {
|
||
|
db := setupDB(t)
|
||
|
defer teardownDB(t, db)
|
||
|
ctx := context.Background()
|
||
|
|
||
|
head := ð.BeaconBlock{}
|
||
|
head.Slot = 5000
|
||
|
|
||
|
if err := db.SaveBlock(ctx, head); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
root, err := ssz.SigningRoot(head)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if err := db.SaveHeadBlockRoot(ctx, root); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
if err := db.Backup(ctx); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
files, err := ioutil.ReadDir(path.Join(db.databasePath, backupsDirectoryName))
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if len(files) == 0 {
|
||
|
t.Fatal("No backups created.")
|
||
|
}
|
||
|
}
|