mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 04:47:18 +00:00
6a930ba175
* remove optional verifyTree argument * remove fmt * do not provide a default eth1data, return an error instead * add a test for this new logic * gaz
232 lines
5.9 KiB
Go
232 lines
5.9 KiB
Go
package initialsync
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
peer "github.com/libp2p/go-libp2p-peer"
|
|
"github.com/prysmaticlabs/go-ssz"
|
|
b "github.com/prysmaticlabs/prysm/beacon-chain/core/blocks"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/db"
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/internal"
|
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/event"
|
|
"github.com/prysmaticlabs/prysm/shared/hashutil"
|
|
"github.com/prysmaticlabs/prysm/shared/p2p"
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
)
|
|
|
|
type mockP2P struct {
|
|
}
|
|
|
|
func (mp *mockP2P) Subscribe(msg proto.Message, channel chan p2p.Message) event.Subscription {
|
|
return new(event.Feed).Subscribe(channel)
|
|
}
|
|
|
|
func (mp *mockP2P) Broadcast(ctx context.Context, msg proto.Message) {}
|
|
|
|
func (mp *mockP2P) Send(ctx context.Context, msg proto.Message, peerID peer.ID) error {
|
|
return nil
|
|
}
|
|
|
|
func (mp *mockP2P) Reputation(_ peer.ID, _ int) {
|
|
|
|
}
|
|
|
|
type mockSyncService struct {
|
|
hasStarted bool
|
|
isSynced bool
|
|
}
|
|
|
|
func (ms *mockSyncService) Start() {
|
|
ms.hasStarted = true
|
|
}
|
|
|
|
func (ms *mockSyncService) IsSyncedWithNetwork() bool {
|
|
return ms.isSynced
|
|
}
|
|
|
|
func (ms *mockSyncService) ResumeSync() {
|
|
|
|
}
|
|
|
|
type mockChainService struct{}
|
|
|
|
func (ms *mockChainService) CanonicalBlockFeed() *event.Feed {
|
|
return new(event.Feed)
|
|
}
|
|
|
|
func (ms *mockChainService) ReceiveBlock(ctx context.Context, block *ethpb.BeaconBlock) (*pb.BeaconState, error) {
|
|
return &pb.BeaconState{}, nil
|
|
}
|
|
|
|
func (ms *mockChainService) AdvanceState(
|
|
ctx context.Context, beaconState *pb.BeaconState, block *ethpb.BeaconBlock,
|
|
) (*pb.BeaconState, error) {
|
|
return &pb.BeaconState{
|
|
FinalizedCheckpoint: ðpb.Checkpoint{},
|
|
}, nil
|
|
}
|
|
|
|
func (ms *mockChainService) VerifyBlockValidity(
|
|
ctx context.Context,
|
|
block *ethpb.BeaconBlock,
|
|
beaconState *pb.BeaconState,
|
|
) error {
|
|
return nil
|
|
}
|
|
|
|
func (ms *mockChainService) ApplyForkChoiceRule(ctx context.Context, block *ethpb.BeaconBlock, computedState *pb.BeaconState) error {
|
|
return nil
|
|
}
|
|
|
|
func (ms *mockChainService) CleanupBlockOperations(ctx context.Context, block *ethpb.BeaconBlock) error {
|
|
return nil
|
|
}
|
|
|
|
func setUpGenesisStateAndBlock(beaconDB *db.BeaconDB, t *testing.T) {
|
|
ctx := context.Background()
|
|
genesisTime := time.Now()
|
|
unixTime := uint64(genesisTime.Unix())
|
|
if err := beaconDB.InitializeState(context.Background(), unixTime, []*ethpb.Deposit{}, ðpb.Eth1Data{}); err != nil {
|
|
t.Fatalf("could not initialize beacon state to disk: %v", err)
|
|
}
|
|
beaconState, err := beaconDB.HeadState(ctx)
|
|
if err != nil {
|
|
t.Fatalf("could not attempt fetch beacon state: %v", err)
|
|
}
|
|
stateRoot, err := hashutil.HashProto(beaconState)
|
|
if err != nil {
|
|
t.Errorf("unable to marshal the beacon state: %v", err)
|
|
return
|
|
}
|
|
genBlock := b.NewGenesisBlock(stateRoot[:])
|
|
if err := beaconDB.SaveBlock(genBlock); err != nil {
|
|
t.Fatalf("could not save genesis block to disk: %v", err)
|
|
}
|
|
if err := beaconDB.UpdateChainHead(ctx, genBlock, beaconState); err != nil {
|
|
t.Fatalf("could not set chain head, %v", err)
|
|
}
|
|
}
|
|
|
|
func TestProcessingBatchedBlocks_OK(t *testing.T) {
|
|
db := internal.SetupDB(t)
|
|
defer internal.TeardownDB(t, db)
|
|
setUpGenesisStateAndBlock(db, t)
|
|
|
|
cfg := &Config{
|
|
P2P: &mockP2P{},
|
|
SyncService: &mockSyncService{},
|
|
ChainService: &mockChainService{},
|
|
BeaconDB: db,
|
|
}
|
|
ss := NewInitialSyncService(context.Background(), cfg)
|
|
|
|
batchSize := 20
|
|
batchedBlocks := make([]*ethpb.BeaconBlock, batchSize)
|
|
|
|
for i := 1; i <= batchSize; i++ {
|
|
batchedBlocks[i-1] = ðpb.BeaconBlock{
|
|
Slot: uint64(i),
|
|
}
|
|
}
|
|
// edge case: handle out of order block list. Specifically with the highest
|
|
// block first. This is swapping the first and last blocks in the list.
|
|
batchedBlocks[0], batchedBlocks[batchSize-1] = batchedBlocks[batchSize-1], batchedBlocks[0]
|
|
|
|
msg := p2p.Message{
|
|
Ctx: context.Background(),
|
|
Data: &pb.BatchedBeaconBlockResponse{
|
|
BatchedBlocks: batchedBlocks,
|
|
},
|
|
}
|
|
|
|
chainHead := &pb.ChainHeadResponse{}
|
|
|
|
ss.processBatchedBlocks(msg, chainHead)
|
|
}
|
|
|
|
func TestProcessingBlocks_SkippedSlots(t *testing.T) {
|
|
db := internal.SetupDB(t)
|
|
defer internal.TeardownDB(t, db)
|
|
setUpGenesisStateAndBlock(db, t)
|
|
ctx := context.Background()
|
|
|
|
cfg := &Config{
|
|
P2P: &mockP2P{},
|
|
SyncService: &mockSyncService{},
|
|
ChainService: &mockChainService{},
|
|
BeaconDB: db,
|
|
}
|
|
ss := NewInitialSyncService(context.Background(), cfg)
|
|
|
|
batchSize := 20
|
|
blks, err := ss.db.BlocksBySlot(ctx, 0)
|
|
if err != nil {
|
|
t.Fatalf("Unable to get genesis block %v", err)
|
|
}
|
|
h, err := ssz.SigningRoot(blks[0])
|
|
if err != nil {
|
|
t.Fatalf("Unable to hash block %v", err)
|
|
}
|
|
parentHash := h[:]
|
|
|
|
for i := 1; i <= batchSize; i++ {
|
|
// skip slots
|
|
if i == 4 || i == 6 || i == 13 || i == 17 {
|
|
continue
|
|
}
|
|
block := ðpb.BeaconBlock{
|
|
Slot: uint64(i),
|
|
ParentRoot: parentHash,
|
|
}
|
|
|
|
chainHead := &pb.ChainHeadResponse{}
|
|
|
|
ss.processBlock(context.Background(), block, chainHead)
|
|
|
|
// Save the block and set the parent hash of the next block
|
|
// as the hash of the current block.
|
|
if err := ss.db.SaveBlock(block); err != nil {
|
|
t.Fatalf("Block unable to be saved %v", err)
|
|
}
|
|
|
|
hash, err := ssz.SigningRoot(block)
|
|
if err != nil {
|
|
t.Fatalf("Could not hash block %v", err)
|
|
}
|
|
parentHash = hash[:]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func TestSafelyHandleMessage(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
|
|
safelyHandleMessage(func(_ p2p.Message) error {
|
|
panic("bad!")
|
|
}, p2p.Message{
|
|
Data: ðpb.BeaconBlock{},
|
|
})
|
|
|
|
testutil.AssertLogsContain(t, hook, "Panicked when handling p2p message!")
|
|
}
|
|
|
|
func TestSafelyHandleMessage_NoData(t *testing.T) {
|
|
hook := logTest.NewGlobal()
|
|
|
|
safelyHandleMessage(func(_ p2p.Message) error {
|
|
panic("bad!")
|
|
}, p2p.Message{})
|
|
|
|
entry := hook.LastEntry()
|
|
if entry.Data["msg"] != "message contains no data" {
|
|
t.Errorf("Message logged was not what was expected: %s", entry.Data["msg"])
|
|
}
|
|
}
|