mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 21:57:16 +00:00
159 lines
5.6 KiB
Go
159 lines
5.6 KiB
Go
|
package validator
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/golang/mock/gomock"
|
||
|
chainMock "github.com/prysmaticlabs/prysm/beacon-chain/blockchain/testing"
|
||
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/altair"
|
||
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/feed"
|
||
|
blockfeed "github.com/prysmaticlabs/prysm/beacon-chain/core/feed/block"
|
||
|
statefeed "github.com/prysmaticlabs/prysm/beacon-chain/core/feed/state"
|
||
|
dbTest "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
||
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
||
|
"github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1/wrapper"
|
||
|
"github.com/prysmaticlabs/prysm/shared/mock"
|
||
|
"github.com/prysmaticlabs/prysm/shared/params"
|
||
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
||
|
"github.com/prysmaticlabs/prysm/shared/testutil/assert"
|
||
|
"github.com/prysmaticlabs/prysm/shared/testutil/require"
|
||
|
)
|
||
|
|
||
|
func TestServer_StreamAltairBlocksVerified_ContextCanceled(t *testing.T) {
|
||
|
ctx := context.Background()
|
||
|
|
||
|
chainService := &chainMock.ChainService{}
|
||
|
ctx, cancel := context.WithCancel(ctx)
|
||
|
server := &Server{
|
||
|
Ctx: ctx,
|
||
|
StateNotifier: chainService.StateNotifier(),
|
||
|
HeadFetcher: chainService,
|
||
|
}
|
||
|
|
||
|
exitRoutine := make(chan bool)
|
||
|
ctrl := gomock.NewController(t)
|
||
|
defer ctrl.Finish()
|
||
|
mockStream := mock.NewMockBeaconNodeValidatorAltair_StreamBlocksServer(ctrl)
|
||
|
mockStream.EXPECT().Context().Return(ctx)
|
||
|
go func(tt *testing.T) {
|
||
|
assert.ErrorContains(tt, "Context canceled", server.StreamBlocksAltair(ðpb.StreamBlocksRequest{
|
||
|
VerifiedOnly: true,
|
||
|
}, mockStream))
|
||
|
<-exitRoutine
|
||
|
}(t)
|
||
|
cancel()
|
||
|
exitRoutine <- true
|
||
|
}
|
||
|
|
||
|
func TestServer_StreamAltairBlocks_ContextCanceled(t *testing.T) {
|
||
|
ctx := context.Background()
|
||
|
|
||
|
chainService := &chainMock.ChainService{}
|
||
|
ctx, cancel := context.WithCancel(ctx)
|
||
|
server := &Server{
|
||
|
Ctx: ctx,
|
||
|
BlockNotifier: chainService.BlockNotifier(),
|
||
|
HeadFetcher: chainService,
|
||
|
}
|
||
|
|
||
|
exitRoutine := make(chan bool)
|
||
|
ctrl := gomock.NewController(t)
|
||
|
defer ctrl.Finish()
|
||
|
mockStream := mock.NewMockBeaconNodeValidatorAltair_StreamBlocksServer(ctrl)
|
||
|
mockStream.EXPECT().Context().Return(ctx)
|
||
|
go func(tt *testing.T) {
|
||
|
assert.ErrorContains(tt, "Context canceled", server.StreamBlocksAltair(ðpb.StreamBlocksRequest{}, mockStream))
|
||
|
<-exitRoutine
|
||
|
}(t)
|
||
|
cancel()
|
||
|
exitRoutine <- true
|
||
|
}
|
||
|
|
||
|
func TestServer_StreamAltairBlocks_OnHeadUpdated(t *testing.T) {
|
||
|
params.UseMainnetConfig()
|
||
|
ctx := context.Background()
|
||
|
beaconState, privs := testutil.DeterministicGenesisStateAltair(t, 64)
|
||
|
c, err := altair.NextSyncCommittee(ctx, beaconState)
|
||
|
require.NoError(t, err)
|
||
|
require.NoError(t, beaconState.SetCurrentSyncCommittee(c))
|
||
|
|
||
|
b, err := testutil.GenerateFullBlockAltair(beaconState, privs, testutil.DefaultBlockGenConfig(), 1)
|
||
|
require.NoError(t, err)
|
||
|
chainService := &chainMock.ChainService{State: beaconState}
|
||
|
server := &Server{
|
||
|
Ctx: ctx,
|
||
|
BlockNotifier: chainService.BlockNotifier(),
|
||
|
HeadFetcher: chainService,
|
||
|
}
|
||
|
exitRoutine := make(chan bool)
|
||
|
ctrl := gomock.NewController(t)
|
||
|
defer ctrl.Finish()
|
||
|
mockStream := mock.NewMockBeaconNodeValidatorAltair_StreamBlocksServer(ctrl)
|
||
|
|
||
|
mockStream.EXPECT().Send(ðpb.StreamBlocksResponse{Block: ðpb.StreamBlocksResponse_AltairBlock{AltairBlock: b}}).Do(func(arg0 interface{}) {
|
||
|
exitRoutine <- true
|
||
|
})
|
||
|
mockStream.EXPECT().Context().Return(ctx).AnyTimes()
|
||
|
|
||
|
go func(tt *testing.T) {
|
||
|
assert.NoError(tt, server.StreamBlocksAltair(ðpb.StreamBlocksRequest{}, mockStream), "Could not call RPC method")
|
||
|
}(t)
|
||
|
wrappedBlk, err := wrapper.WrappedAltairSignedBeaconBlock(b)
|
||
|
require.NoError(t, err)
|
||
|
// Send in a loop to ensure it is delivered (busy wait for the service to subscribe to the state feed).
|
||
|
for sent := 0; sent == 0; {
|
||
|
sent = server.BlockNotifier.BlockFeed().Send(&feed.Event{
|
||
|
Type: blockfeed.ReceivedBlock,
|
||
|
Data: &blockfeed.ReceivedBlockData{SignedBlock: wrappedBlk},
|
||
|
})
|
||
|
}
|
||
|
<-exitRoutine
|
||
|
}
|
||
|
|
||
|
func TestServer_StreamAltairBlocksVerified_OnHeadUpdated(t *testing.T) {
|
||
|
params.UseMainnetConfig()
|
||
|
db := dbTest.SetupDB(t)
|
||
|
ctx := context.Background()
|
||
|
beaconState, privs := testutil.DeterministicGenesisStateAltair(t, 32)
|
||
|
c, err := altair.NextSyncCommittee(ctx, beaconState)
|
||
|
require.NoError(t, err)
|
||
|
require.NoError(t, beaconState.SetCurrentSyncCommittee(c))
|
||
|
|
||
|
b, err := testutil.GenerateFullBlockAltair(beaconState, privs, testutil.DefaultBlockGenConfig(), 1)
|
||
|
require.NoError(t, err)
|
||
|
r, err := b.Block.HashTreeRoot()
|
||
|
require.NoError(t, err)
|
||
|
wrappedBlk, err := wrapper.WrappedAltairSignedBeaconBlock(b)
|
||
|
require.NoError(t, err)
|
||
|
require.NoError(t, db.SaveBlock(ctx, wrappedBlk))
|
||
|
chainService := &chainMock.ChainService{State: beaconState}
|
||
|
server := &Server{
|
||
|
Ctx: ctx,
|
||
|
StateNotifier: chainService.StateNotifier(),
|
||
|
HeadFetcher: chainService,
|
||
|
}
|
||
|
exitRoutine := make(chan bool)
|
||
|
ctrl := gomock.NewController(t)
|
||
|
defer ctrl.Finish()
|
||
|
mockStream := mock.NewMockBeaconNodeValidatorAltair_StreamBlocksServer(ctrl)
|
||
|
mockStream.EXPECT().Send(ðpb.StreamBlocksResponse{Block: ðpb.StreamBlocksResponse_AltairBlock{AltairBlock: b}}).Do(func(arg0 interface{}) {
|
||
|
exitRoutine <- true
|
||
|
})
|
||
|
mockStream.EXPECT().Context().Return(ctx).AnyTimes()
|
||
|
|
||
|
go func(tt *testing.T) {
|
||
|
assert.NoError(tt, server.StreamBlocksAltair(ðpb.StreamBlocksRequest{
|
||
|
VerifiedOnly: true,
|
||
|
}, mockStream), "Could not call RPC method")
|
||
|
}(t)
|
||
|
// Send in a loop to ensure it is delivered (busy wait for the service to subscribe to the state feed).
|
||
|
for sent := 0; sent == 0; {
|
||
|
sent = server.StateNotifier.StateFeed().Send(&feed.Event{
|
||
|
Type: statefeed.BlockProcessed,
|
||
|
Data: &statefeed.BlockProcessedData{Slot: b.Block.Slot, BlockRoot: r, SignedBlock: wrappedBlk},
|
||
|
})
|
||
|
}
|
||
|
<-exitRoutine
|
||
|
}
|