mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-27 13:51:22 +00:00
149 lines
4.0 KiB
Go
149 lines
4.0 KiB
Go
|
package sync
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"sync"
|
||
|
"testing"
|
||
|
"time"
|
||
|
|
||
|
"github.com/gogo/protobuf/proto"
|
||
|
"github.com/libp2p/go-libp2p-core/network"
|
||
|
"github.com/libp2p/go-libp2p-core/protocol"
|
||
|
"github.com/prysmaticlabs/go-ssz"
|
||
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/state"
|
||
|
db "github.com/prysmaticlabs/prysm/beacon-chain/db/testing"
|
||
|
p2ptest "github.com/prysmaticlabs/prysm/beacon-chain/p2p/testing"
|
||
|
pb "github.com/prysmaticlabs/prysm/proto/beacon/p2p/v1"
|
||
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
||
|
"github.com/prysmaticlabs/prysm/shared/params"
|
||
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
||
|
)
|
||
|
|
||
|
func TestHelloRPCHandler_Disconnects_OnForkVersionMismatch(t *testing.T) {
|
||
|
p1 := p2ptest.NewTestP2P(t)
|
||
|
p2 := p2ptest.NewTestP2P(t)
|
||
|
p1.Connect(p2)
|
||
|
if len(p1.Host.Network().Peers()) != 1 {
|
||
|
t.Error("Expected peers to be connected")
|
||
|
}
|
||
|
|
||
|
r := &RegularSync{p2p: p1}
|
||
|
pcl := protocol.ID("/testing")
|
||
|
|
||
|
var wg sync.WaitGroup
|
||
|
wg.Add(1)
|
||
|
p2.Host.SetStreamHandler(pcl, func(stream network.Stream) {
|
||
|
defer wg.Done()
|
||
|
code, errMsg, err := r.readStatusCode(stream)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if code == 0 {
|
||
|
t.Error("Expected a non-zero code")
|
||
|
}
|
||
|
if errMsg.ErrorMessage != errWrongForkVersion.Error() {
|
||
|
t.Errorf("Received unexpected message response in the stream: %+v", err)
|
||
|
}
|
||
|
})
|
||
|
|
||
|
stream1, err := p1.Host.NewStream(context.Background(), p2.Host.ID(), pcl)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
err = r.helloRPCHandler(context.Background(), &pb.Hello{ForkVersion: []byte("fake")}, stream1)
|
||
|
if err != errWrongForkVersion {
|
||
|
t.Errorf("Expected error %v, got %v", errWrongForkVersion, err)
|
||
|
}
|
||
|
|
||
|
if testutil.WaitTimeout(&wg, 1*time.Second) {
|
||
|
t.Fatal("Did not receive stream within 1 sec")
|
||
|
}
|
||
|
|
||
|
if len(p1.Host.Network().Peers()) != 0 {
|
||
|
t.Error("handler did not disconnect peer")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestHelloRPCHandler_ReturnsHelloMessage(t *testing.T) {
|
||
|
p1 := p2ptest.NewTestP2P(t)
|
||
|
p2 := p2ptest.NewTestP2P(t)
|
||
|
p1.Connect(p2)
|
||
|
if len(p1.Host.Network().Peers()) != 1 {
|
||
|
t.Error("Expected peers to be connected")
|
||
|
}
|
||
|
|
||
|
// Set up a head state in the database with data we expect.
|
||
|
d := db.SetupDB(t)
|
||
|
defer db.TeardownDB(t, d)
|
||
|
headRoot, err := ssz.HashTreeRoot(ðpb.BeaconBlock{Slot: 111})
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
finalizedRoot, err := ssz.HashTreeRoot(ðpb.BeaconBlock{Slot: 40})
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
genesisState, err := state.GenesisBeaconState(nil, 0, ðpb.Eth1Data{})
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
genesisState.Slot = 111
|
||
|
genesisState.BlockRoots[111%params.BeaconConfig().SlotsPerHistoricalRoot] = headRoot[:]
|
||
|
genesisState.FinalizedCheckpoint = ðpb.Checkpoint{
|
||
|
Epoch: 5,
|
||
|
Root: finalizedRoot[:],
|
||
|
}
|
||
|
if err := d.SaveHeadBlockRoot(context.Background(), headRoot); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
if err := d.SaveState(context.Background(), genesisState, headRoot); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
r := &RegularSync{
|
||
|
db: d,
|
||
|
p2p: p1,
|
||
|
}
|
||
|
|
||
|
// Setup streams
|
||
|
pcl := protocol.ID("/testing")
|
||
|
var wg sync.WaitGroup
|
||
|
wg.Add(1)
|
||
|
p2.Host.SetStreamHandler(pcl, func(stream network.Stream) {
|
||
|
defer wg.Done()
|
||
|
expectSuccess(t, r, stream)
|
||
|
out := &pb.Hello{}
|
||
|
if err := r.p2p.Encoding().Decode(stream, out); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
expected := &pb.Hello{
|
||
|
ForkVersion: params.BeaconConfig().GenesisForkVersion,
|
||
|
HeadSlot: genesisState.Slot,
|
||
|
HeadRoot: headRoot[:],
|
||
|
FinalizedEpoch: 5,
|
||
|
FinalizedRoot: finalizedRoot[:],
|
||
|
}
|
||
|
if !proto.Equal(out, expected) {
|
||
|
t.Errorf("Did not receive expected message. Got %+v wanted %+v", out, expected)
|
||
|
}
|
||
|
})
|
||
|
stream1, err := p1.Host.NewStream(context.Background(), p2.Host.ID(), pcl)
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
err = r.helloRPCHandler(context.Background(), &pb.Hello{ForkVersion: params.BeaconConfig().GenesisForkVersion}, stream1)
|
||
|
if err != nil {
|
||
|
t.Errorf("Unxpected error: %v", err)
|
||
|
}
|
||
|
|
||
|
if testutil.WaitTimeout(&wg, 1*time.Second) {
|
||
|
t.Fatal("Did not receive stream within 1 sec")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestRegularSync_HelloRPCHandler_AddsHandshake(t *testing.T) {
|
||
|
t.Skip("TODO(3147): Add a test to ensure the handshake was added.")
|
||
|
}
|