prysm-pulse/beacon-chain/p2p/broadcaster_test.go

87 lines
2.0 KiB
Go
Raw Normal View History

package p2p
import (
"bytes"
"context"
"reflect"
"sync"
"testing"
"time"
"github.com/gogo/protobuf/proto"
p2ptest "github.com/prysmaticlabs/prysm/beacon-chain/p2p/testing"
testpb "github.com/prysmaticlabs/prysm/proto/testing"
"github.com/prysmaticlabs/prysm/shared/testutil"
)
func TestService_Broadcast(t *testing.T) {
p1 := p2ptest.NewTestP2P(t)
p2 := p2ptest.NewTestP2P(t)
p1.Connect(p2)
if len(p1.Host.Network().Peers()) == 0 {
t.Fatal("No peers")
}
p := &Service{
host: p1.Host,
pubsub: p1.PubSub(),
cfg: &Config{
Encoding: "ssz",
},
}
msg := &testpb.TestSimpleMessage{
Bar: 55,
}
// Set a test gossip mapping for testpb.TestSimpleMessage.
GossipTypeMapping[reflect.TypeOf(msg)] = "/testing"
// External peer subscribes to the topic.
topic := "/testing" + p.Encoding().ProtocolSuffix()
sub, err := p2.PubSub().Subscribe(topic)
if err != nil {
t.Fatal(err)
}
time.Sleep(50 * time.Millisecond) // libp2p fails without this delay...
// Async listen for the pubsub, must be before the broadcast.
var wg sync.WaitGroup
wg.Add(1)
go func() {
defer wg.Done()
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel()
incomingMessage, err := sub.Next(ctx)
if err != nil {
t.Fatal(err)
}
buf := bytes.NewBuffer(incomingMessage.Data)
result := &testpb.TestSimpleMessage{}
if err := p.Encoding().Decode(buf, result); err != nil {
t.Fatal(err)
}
if !proto.Equal(result, msg) {
t.Errorf("Did not receive expected message, got %+v, wanted %+v", result, msg)
}
}()
// Broadcast to peers and wait.
if err := p.Broadcast(context.Background(), msg); err != nil {
t.Fatal(err)
}
if testutil.WaitTimeout(&wg, 1*time.Second) {
t.Error("Failed to receive pubsub within 1s")
}
}
func TestService_Broadcast_ReturnsErr_TopicNotMapped(t *testing.T) {
p := Service{}
if err := p.Broadcast(context.Background(), &testpb.AddressBook{}); err != ErrMessageNotMapped {
t.Fatalf("Expected error %v, got %v", ErrMessageNotMapped, err)
}
}