mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
0326be86b5
* starting on patch * finish determining all required patches * properly redefine the patch rules * new patch * rem double semicolon * fix patch file * Merge branch 'master' of github.com:prysmaticlabs/prysm into deprecate-eth-protos * building the deps * test target passes using ethereumapis * compile gateway * attempting to build everything * e2e use ethereumapis * more fixes for slasher * other item * getting closer to compiling slasher * build slasher package * Merge branch 'master' into deprecate-eth-protos * Merge branch 'master' into deprecate-eth-protos * fix benches * lint gazelle * Merge branch 'deprecate-eth-protos' of github.com:prysmaticlabs/prysm into deprecate-eth-protos * proper gateway * lint * Merge branch 'master' into deprecate-eth-protos * fix build * Merge branch 'deprecate-eth-protos' of github.com:prysmaticlabs/prysm into deprecate-eth-protos * use swag * resolve * ignore change * include new patch changes * fix test * builds * fix e2e * gaz
137 lines
3.0 KiB
Go
137 lines
3.0 KiB
Go
package kv
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/go-ssz"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
)
|
|
|
|
func TestStore_JustifiedCheckpoint_CanSaveRetrieve(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer teardownDB(t, db)
|
|
ctx := context.Background()
|
|
cp := ðpb.Checkpoint{
|
|
Epoch: 10,
|
|
Root: []byte{'A'},
|
|
}
|
|
|
|
if err := db.SaveJustifiedCheckpoint(ctx, cp); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
retrieved, err := db.JustifiedCheckpoint(ctx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !proto.Equal(cp, retrieved) {
|
|
t.Errorf("Wanted %v, received %v", cp, retrieved)
|
|
}
|
|
}
|
|
|
|
func TestStore_FinalizedCheckpoint_CanSaveRetrieve(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer teardownDB(t, db)
|
|
ctx := context.Background()
|
|
|
|
genesis := bytesutil.ToBytes32([]byte{'G', 'E', 'N', 'E', 'S', 'I', 'S'})
|
|
if err := db.SaveGenesisBlockRoot(ctx, genesis); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
blk := ðpb.BeaconBlock{
|
|
ParentRoot: genesis[:],
|
|
Slot: 40,
|
|
}
|
|
|
|
root, err := ssz.SigningRoot(blk)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
cp := ðpb.Checkpoint{
|
|
Epoch: 5,
|
|
Root: root[:],
|
|
}
|
|
|
|
// a valid chain is required to save finalized checkpoint.
|
|
if err := db.SaveBlock(ctx, blk); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// a state is required to save checkpoint
|
|
if err := db.SaveState(ctx, &pb.BeaconState{}, root); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if err := db.SaveFinalizedCheckpoint(ctx, cp); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
retrieved, err := db.FinalizedCheckpoint(ctx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !proto.Equal(cp, retrieved) {
|
|
t.Errorf("Wanted %v, received %v", cp, retrieved)
|
|
}
|
|
}
|
|
|
|
func TestStore_JustifiedCheckpoint_DefaultCantBeNil(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer teardownDB(t, db)
|
|
ctx := context.Background()
|
|
|
|
genesisRoot := [32]byte{'A'}
|
|
if err := db.SaveGenesisBlockRoot(ctx, genesisRoot); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
cp := ðpb.Checkpoint{Root: genesisRoot[:]}
|
|
retrieved, err := db.JustifiedCheckpoint(ctx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !proto.Equal(cp, retrieved) {
|
|
t.Errorf("Wanted %v, received %v", cp, retrieved)
|
|
}
|
|
}
|
|
|
|
func TestStore_FinalizedCheckpoint_DefaultCantBeNil(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer teardownDB(t, db)
|
|
ctx := context.Background()
|
|
|
|
genesisRoot := [32]byte{'B'}
|
|
if err := db.SaveGenesisBlockRoot(ctx, genesisRoot); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
cp := ðpb.Checkpoint{Root: genesisRoot[:]}
|
|
retrieved, err := db.FinalizedCheckpoint(ctx)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
if !proto.Equal(cp, retrieved) {
|
|
t.Errorf("Wanted %v, received %v", cp, retrieved)
|
|
}
|
|
}
|
|
|
|
func TestStore_FinalizedCheckpoint_StateMustExist(t *testing.T) {
|
|
db := setupDB(t)
|
|
defer teardownDB(t, db)
|
|
ctx := context.Background()
|
|
cp := ðpb.Checkpoint{
|
|
Epoch: 5,
|
|
Root: []byte{'B'},
|
|
}
|
|
|
|
if err := db.SaveFinalizedCheckpoint(ctx, cp); err != errMissingStateForFinalizedCheckpoint {
|
|
t.Fatalf("wanted err %v, got %v", errMissingStateForFinalizedCheckpoint, err)
|
|
}
|
|
}
|