2019-08-16 17:13:04 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"sync"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
libp2pcore "github.com/libp2p/go-libp2p-core"
|
2019-08-16 20:03:11 +00:00
|
|
|
"github.com/libp2p/go-libp2p-core/network"
|
2020-04-02 02:09:54 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/core/state"
|
2019-08-30 20:15:40 +00:00
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/p2p/encoder"
|
2019-08-16 17:13:04 +00:00
|
|
|
p2ptest "github.com/prysmaticlabs/prysm/beacon-chain/p2p/testing"
|
|
|
|
pb "github.com/prysmaticlabs/prysm/proto/testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/shared/testutil"
|
|
|
|
)
|
|
|
|
|
2020-04-02 02:09:54 +00:00
|
|
|
func init() {
|
|
|
|
state.SkipSlotCache.Disable()
|
|
|
|
}
|
|
|
|
|
2019-08-16 20:03:11 +00:00
|
|
|
// expectSuccess status code from a stream in regular sync.
|
2019-12-17 01:53:55 +00:00
|
|
|
func expectSuccess(t *testing.T, r *Service, stream network.Stream) {
|
2019-08-30 20:15:40 +00:00
|
|
|
code, errMsg, err := ReadStatusCode(stream, &encoder.SszNetworkEncoder{})
|
2019-08-16 20:03:11 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if code != 0 {
|
|
|
|
t.Fatalf("Received non-zero response code: %d", code)
|
|
|
|
}
|
2019-09-11 18:38:35 +00:00
|
|
|
if errMsg != "" {
|
2019-08-16 20:03:11 +00:00
|
|
|
t.Fatalf("Received error message from stream: %+v", errMsg)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-23 16:53:38 +00:00
|
|
|
// expectResetStream status code from a stream in regular sync.
|
2019-12-17 01:53:55 +00:00
|
|
|
func expectResetStream(t *testing.T, r *Service, stream network.Stream) {
|
2019-08-23 16:53:38 +00:00
|
|
|
expectedErr := "stream reset"
|
2019-08-30 20:15:40 +00:00
|
|
|
_, _, err := ReadStatusCode(stream, &encoder.SszNetworkEncoder{})
|
2019-08-23 16:53:38 +00:00
|
|
|
if err.Error() != expectedErr {
|
|
|
|
t.Fatalf("Wanted this error %s but got %v instead", expectedErr, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-16 17:13:04 +00:00
|
|
|
func TestRegisterRPC_ReceivesValidMessage(t *testing.T) {
|
|
|
|
p2p := p2ptest.NewTestP2P(t)
|
2019-12-17 01:53:55 +00:00
|
|
|
r := &Service{
|
2019-08-16 17:13:04 +00:00
|
|
|
ctx: context.Background(),
|
|
|
|
p2p: p2p,
|
|
|
|
}
|
|
|
|
|
|
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(1)
|
|
|
|
topic := "/testing/foobar/1"
|
2019-09-16 17:54:46 +00:00
|
|
|
handler := func(ctx context.Context, msg interface{}, stream libp2pcore.Stream) error {
|
2020-04-14 16:41:09 +00:00
|
|
|
m, ok := msg.(*pb.TestSimpleMessage)
|
|
|
|
if !ok {
|
|
|
|
t.Error("Object is not of type *pb.TestSimpleMessage")
|
|
|
|
}
|
2019-08-16 17:13:04 +00:00
|
|
|
if !bytes.Equal(m.Foo, []byte("foo")) {
|
|
|
|
t.Errorf("Unexpected incoming message: %+v", m)
|
|
|
|
}
|
|
|
|
wg.Done()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
r.registerRPC(topic, &pb.TestSimpleMessage{}, handler)
|
|
|
|
|
|
|
|
p2p.ReceiveRPC(topic, &pb.TestSimpleMessage{Foo: []byte("foo")})
|
|
|
|
|
|
|
|
if testutil.WaitTimeout(&wg, time.Second) {
|
|
|
|
t.Fatal("Did not receive RPC in 1 second")
|
|
|
|
}
|
|
|
|
}
|