prysm-pulse/beacon-chain/state/stategen/service_test.go

52 lines
1.4 KiB
Go
Raw Normal View History

package stategen
import (
2020-03-15 16:47:49 +00:00
"context"
"testing"
2020-03-15 16:47:49 +00:00
"github.com/gogo/protobuf/proto"
"github.com/prysmaticlabs/prysm/beacon-chain/cache"
2020-03-15 16:47:49 +00:00
testDB "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
"github.com/prysmaticlabs/prysm/shared/params"
2020-03-15 16:47:49 +00:00
"github.com/prysmaticlabs/prysm/shared/testutil"
)
2020-03-15 16:47:49 +00:00
func TestResume(t *testing.T) {
ctx := context.Background()
db, _ := testDB.SetupDB(t)
2020-03-15 16:47:49 +00:00
service := New(db, cache.NewStateSummaryCache())
2020-03-15 16:47:49 +00:00
root := [32]byte{'A'}
beaconState, _ := testutil.DeterministicGenesisState(t, 32)
if err := beaconState.SetSlot(params.BeaconConfig().SlotsPerEpoch); err != nil {
t.Fatal(err)
}
if err := service.beaconDB.SaveState(ctx, beaconState, root); err != nil {
t.Fatal(err)
}
if err := service.beaconDB.SaveArchivedPointRoot(ctx, root, 1); err != nil {
t.Fatal(err)
}
if err := service.beaconDB.SaveLastArchivedIndex(ctx, 1); err != nil {
t.Fatal(err)
}
2020-03-15 16:47:49 +00:00
resumeState, err := service.Resume(ctx)
2020-03-15 16:47:49 +00:00
if err != nil {
t.Fatal(err)
}
if !proto.Equal(beaconState.InnerStateUnsafe(), resumeState.InnerStateUnsafe()) {
t.Error("Diff saved state")
}
if service.finalizedInfo.slot != params.BeaconConfig().SlotsPerEpoch {
t.Errorf("Did not get watned slot")
2020-03-15 16:47:49 +00:00
}
if root != service.finalizedInfo.root {
t.Errorf("Did not get wanted root")
2020-03-15 16:47:49 +00:00
}
2020-07-07 15:04:55 +00:00
if service.finalizedState() == nil {
t.Error("Wanted a non nil finalized state")
}
2020-03-15 16:47:49 +00:00
}