mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
e1137e5801
* start sequence for node to connect to bootstrap nodes * lint * maybe warning is more appropiate? * fix gazelle * preston's feedback * add go-ipfs-addr to workspace * move flag to shared * removed routed host
317 lines
7.6 KiB
Go
317 lines
7.6 KiB
Go
package p2p
|
|
|
|
import (
|
|
"context"
|
|
"reflect"
|
|
"strings"
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/golang/mock/gomock"
|
|
"github.com/golang/protobuf/proto"
|
|
ipfslog "github.com/ipfs/go-log"
|
|
bhost "github.com/libp2p/go-libp2p-blankhost"
|
|
pubsub "github.com/libp2p/go-libp2p-pubsub"
|
|
pubsubPb "github.com/libp2p/go-libp2p-pubsub/pb"
|
|
swarmt "github.com/libp2p/go-libp2p-swarm/testing"
|
|
shardpb "github.com/prysmaticlabs/prysm/proto/sharding/p2p/v1"
|
|
testpb "github.com/prysmaticlabs/prysm/proto/testing"
|
|
"github.com/prysmaticlabs/prysm/shared/event"
|
|
p2pmock "github.com/prysmaticlabs/prysm/shared/p2p/mock"
|
|
"github.com/sirupsen/logrus"
|
|
logTest "github.com/sirupsen/logrus/hooks/test"
|
|
)
|
|
|
|
type testService interface {
|
|
Start()
|
|
Stop() error
|
|
}
|
|
|
|
// Ensure that server implements service.
|
|
var _ = testService(&Server{})
|
|
|
|
func init() {
|
|
logrus.SetLevel(logrus.DebugLevel)
|
|
ipfslog.SetDebugLogging()
|
|
}
|
|
|
|
func TestBroadcast(t *testing.T) {
|
|
s, err := NewServer("")
|
|
if err != nil {
|
|
t.Fatalf("Could not start a new server: %v", err)
|
|
}
|
|
|
|
msg := &shardpb.CollationBodyRequest{}
|
|
s.Broadcast(msg)
|
|
|
|
// TODO(543): test that topic was published
|
|
}
|
|
|
|
func TestEmitFailsNonProtobuf(t *testing.T) {
|
|
s, _ := NewServer("")
|
|
hook := logTest.NewGlobal()
|
|
s.emit(Message{}, &event.Feed{}, nil /*msg*/, reflect.TypeOf(""))
|
|
want := "Received message is not a protobuf message: string"
|
|
if hook.LastEntry().Message != want {
|
|
t.Errorf("Expected log to contain %s. Got = %s", want, hook.LastEntry().Message)
|
|
}
|
|
}
|
|
|
|
func TestEmitFailsUnmarshal(t *testing.T) {
|
|
s, _ := NewServer("")
|
|
hook := logTest.NewGlobal()
|
|
msg := &pubsub.Message{
|
|
&pubsubPb.Message{
|
|
Data: []byte("bogus"),
|
|
},
|
|
}
|
|
|
|
s.emit(Message{}, &event.Feed{}, msg, reflect.TypeOf(testpb.TestMessage{}))
|
|
want := "Failed to decode data:"
|
|
if !strings.Contains(hook.LastEntry().Message, want) {
|
|
t.Errorf("Expected log to contain %s. Got = %s", want, hook.LastEntry().Message)
|
|
}
|
|
}
|
|
|
|
func TestEmit(t *testing.T) {
|
|
s, _ := NewServer("")
|
|
p := &testpb.TestMessage{Foo: "bar"}
|
|
d, err := proto.Marshal(p)
|
|
if err != nil {
|
|
t.Fatalf("failed to marshal pb: %v", err)
|
|
}
|
|
msg := &pubsub.Message{
|
|
&pubsubPb.Message{
|
|
Data: d,
|
|
},
|
|
}
|
|
|
|
ctrl := gomock.NewController(t)
|
|
defer ctrl.Finish()
|
|
feed := p2pmock.NewMockFeed(ctrl)
|
|
var got Message
|
|
feed.EXPECT().Send(gomock.AssignableToTypeOf(Message{})).Times(1).Do(func(m Message) {
|
|
got = m
|
|
})
|
|
s.emit(Message{}, feed, msg, messageType(&testpb.TestMessage{}))
|
|
if !proto.Equal(p, got.Data) {
|
|
t.Error("feed was not called with the correct data")
|
|
}
|
|
}
|
|
|
|
func TestSubscribeToTopic(t *testing.T) {
|
|
ctx, cancel := context.WithTimeout(context.TODO(), 1*time.Second)
|
|
defer cancel()
|
|
h := bhost.NewBlankHost(swarmt.GenSwarm(t, ctx))
|
|
|
|
gsub, err := pubsub.NewFloodSub(ctx, h)
|
|
if err != nil {
|
|
t.Errorf("Failed to create pubsub: %v", err)
|
|
}
|
|
|
|
s := Server{
|
|
ctx: ctx,
|
|
gsub: gsub,
|
|
host: h,
|
|
feeds: make(map[reflect.Type]Feed),
|
|
mutex: &sync.Mutex{},
|
|
topicMapping: make(map[reflect.Type]string),
|
|
}
|
|
|
|
feed := s.Feed(&shardpb.CollationBodyRequest{})
|
|
ch := make(chan Message)
|
|
sub := feed.Subscribe(ch)
|
|
defer sub.Unsubscribe()
|
|
|
|
testSubscribe(ctx, t, s, gsub, ch)
|
|
}
|
|
|
|
func TestSubscribe(t *testing.T) {
|
|
ctx, cancel := context.WithTimeout(context.TODO(), 1*time.Second)
|
|
defer cancel()
|
|
h := bhost.NewBlankHost(swarmt.GenSwarm(t, ctx))
|
|
|
|
gsub, err := pubsub.NewFloodSub(ctx, h)
|
|
if err != nil {
|
|
t.Errorf("Failed to create pubsub: %v", err)
|
|
}
|
|
|
|
s := Server{
|
|
ctx: ctx,
|
|
gsub: gsub,
|
|
host: h,
|
|
feeds: make(map[reflect.Type]Feed),
|
|
mutex: &sync.Mutex{},
|
|
topicMapping: make(map[reflect.Type]string),
|
|
}
|
|
|
|
ch := make(chan Message)
|
|
sub := s.Subscribe(&shardpb.CollationBodyRequest{}, ch)
|
|
defer sub.Unsubscribe()
|
|
|
|
testSubscribe(ctx, t, s, gsub, ch)
|
|
}
|
|
|
|
func testSubscribe(ctx context.Context, t *testing.T, s Server, gsub *pubsub.PubSub, ch chan Message) {
|
|
topic := shardpb.Topic_COLLATION_BODY_REQUEST
|
|
|
|
s.RegisterTopic(topic.String(), &shardpb.CollationBodyRequest{})
|
|
|
|
// Short delay to let goroutine add subscription.
|
|
time.Sleep(time.Millisecond * 10)
|
|
|
|
// The topic should be subscribed with gsub.
|
|
topics := gsub.GetTopics()
|
|
if len(topics) < 1 || topics[0] != topic.String() {
|
|
t.Errorf("Unexpected subscribed topics: %v. Wanted %s", topics, topic)
|
|
}
|
|
|
|
pbMsg := &shardpb.CollationBodyRequest{ShardId: 5}
|
|
|
|
done := make(chan bool)
|
|
go func() {
|
|
// The message should be received from the feed.
|
|
msg := <-ch
|
|
if !proto.Equal(msg.Data.(proto.Message), pbMsg) {
|
|
t.Errorf("Unexpected msg: %+v. Wanted %+v.", msg.Data, pbMsg)
|
|
}
|
|
|
|
done <- true
|
|
}()
|
|
|
|
b, err := proto.Marshal(pbMsg)
|
|
if err != nil {
|
|
t.Errorf("Failed to marshal service %v", err)
|
|
}
|
|
if err = gsub.Publish(topic.String(), b); err != nil {
|
|
t.Errorf("Failed to publish message: %v", err)
|
|
}
|
|
|
|
// Wait for our message assertion to complete.
|
|
select {
|
|
case <-done:
|
|
case <-ctx.Done():
|
|
t.Error("Context timed out before a message was received!")
|
|
}
|
|
}
|
|
|
|
func TestRegisterTopic_WithoutAdapters(t *testing.T) {
|
|
// TODO(488): Unskip this test
|
|
t.Skip("Currently failing to simulate incoming p2p messages. See github.com/prysmaticlabs/prysm/issues/488")
|
|
s, err := NewServer("")
|
|
if err != nil {
|
|
t.Fatalf("Failed to create new server: %v", err)
|
|
}
|
|
topic := "test_topic"
|
|
testMessage := &testpb.TestMessage{Foo: "bar"}
|
|
|
|
s.RegisterTopic(topic, testMessage)
|
|
|
|
ch := make(chan Message)
|
|
sub := s.Subscribe(testMessage, ch)
|
|
defer sub.Unsubscribe()
|
|
|
|
wait := make(chan struct{})
|
|
go func() {
|
|
defer close(wait)
|
|
msg := <-ch
|
|
tmsg := msg.Data.(*testpb.TestMessage)
|
|
if tmsg.Foo != "bar" {
|
|
t.Errorf("Expected test message Foo: \"bar\". Got: %v", tmsg)
|
|
}
|
|
}()
|
|
|
|
b, _ := proto.Marshal(testMessage)
|
|
_ = b
|
|
|
|
if err := simulateIncomingMessage(t, s, topic, b); err != nil {
|
|
t.Errorf("Failed to send to topic %s", topic)
|
|
}
|
|
|
|
select {
|
|
case <-wait:
|
|
return // OK
|
|
case <-time.After(1 * time.Second):
|
|
t.Fatal("TestMessage not received within 1 seconds")
|
|
}
|
|
}
|
|
|
|
func TestRegisterTopic_WithAdapters(t *testing.T) {
|
|
// TODO(488): Unskip this test
|
|
t.Skip("Currently failing to simulate incoming p2p messages. See github.com/prysmaticlabs/prysm/issues/488")
|
|
s, err := NewServer("")
|
|
if err != nil {
|
|
t.Fatalf("Failed to create new server: %v", err)
|
|
}
|
|
topic := "test_topic"
|
|
testMessage := &testpb.TestMessage{Foo: "bar"}
|
|
|
|
i := 0
|
|
var testAdapter Adapter = func(next Handler) Handler {
|
|
return func(msg Message) {
|
|
i++
|
|
next(msg)
|
|
}
|
|
}
|
|
|
|
adapters := []Adapter{
|
|
testAdapter,
|
|
testAdapter,
|
|
testAdapter,
|
|
testAdapter,
|
|
testAdapter,
|
|
}
|
|
|
|
s.RegisterTopic(topic, testMessage, adapters...)
|
|
|
|
ch := make(chan Message)
|
|
sub := s.Subscribe(testMessage, ch)
|
|
defer sub.Unsubscribe()
|
|
|
|
wait := make(chan struct{})
|
|
go func() {
|
|
defer close(wait)
|
|
msg := <-ch
|
|
tmsg := msg.Data.(*testpb.TestMessage)
|
|
if tmsg.Foo != "bar" {
|
|
t.Errorf("Expected test message Foo: \"bar\". Got: %v", tmsg)
|
|
}
|
|
}()
|
|
|
|
if err := simulateIncomingMessage(t, s, topic, []byte{}); err != nil {
|
|
t.Errorf("Failed to send to topic %s", topic)
|
|
}
|
|
|
|
select {
|
|
case <-wait:
|
|
if i != 5 {
|
|
t.Errorf("Expected testAdapter to increment i to 5, but was %d", i)
|
|
}
|
|
return // OK
|
|
case <-time.After(1 * time.Second):
|
|
t.Fatal("TestMessage not received within 1 seconds")
|
|
}
|
|
}
|
|
|
|
func simulateIncomingMessage(t *testing.T, s *Server, topic string, b []byte) error {
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
h := bhost.NewBlankHost(swarmt.GenSwarm(t, ctx))
|
|
|
|
gsub, err := pubsub.NewFloodSub(ctx, h)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
pinfo := h.Peerstore().PeerInfo(h.ID())
|
|
if err = s.host.Connect(ctx, pinfo); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Short timeout to allow libp2p to handle peer connection.
|
|
time.Sleep(time.Millisecond * 10)
|
|
|
|
return gsub.Publish(topic, b)
|
|
}
|