mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-03 17:44:29 +00:00
bbc85efb4f
Co-authored-by: giuliorebuffo <giuliorebuffo@system76-pc.localdomain>
74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
package ssz_snappy
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/ledgerwatch/erigon/cmd/lightclient/sentinel/communication/p2p"
|
|
"github.com/ledgerwatch/erigon/cmd/lightclient/utils"
|
|
"github.com/libp2p/go-libp2p/core/network"
|
|
"github.com/libp2p/go-libp2p/core/protocol"
|
|
basichost "github.com/libp2p/go-libp2p/p2p/host/basic"
|
|
swarmt "github.com/libp2p/go-libp2p/p2p/net/swarm/testing"
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestMetadataPacketStream(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
h1, err := basichost.NewHost(swarmt.GenSwarm(t), nil)
|
|
require.NoError(t, err)
|
|
defer h1.Close()
|
|
|
|
h2, err := basichost.NewHost(swarmt.GenSwarm(t), nil)
|
|
require.NoError(t, err)
|
|
defer h2.Close()
|
|
|
|
packet := &p2p.Goodbye{
|
|
Reason: 2,
|
|
}
|
|
|
|
doneCh := make(chan struct{})
|
|
h2.SetStreamHandler(protocol.TestingID, func(stream network.Stream) {
|
|
p := &p2p.Goodbye{}
|
|
codecA := NewStreamCodec(stream)
|
|
_, err := codecA.Decode(p)
|
|
require.NoError(t, err)
|
|
require.Equal(t, *p, *packet)
|
|
doneCh <- struct{}{}
|
|
})
|
|
|
|
h2pi := h2.Peerstore().PeerInfo(h2.ID())
|
|
require.NoError(t, h1.Connect(ctx, h2pi))
|
|
|
|
s, err := h1.NewStream(ctx, h2pi.ID, protocol.TestingID)
|
|
require.NoError(t, err)
|
|
|
|
codec := NewStreamCodec(s)
|
|
_, err = codec.WritePacket(packet)
|
|
require.NoError(t, err)
|
|
require.NoError(t, codec.CloseWriter())
|
|
timeout := time.NewTimer(2 * time.Second)
|
|
select {
|
|
case <-doneCh:
|
|
case <-timeout.C:
|
|
t.Fail()
|
|
}
|
|
}
|
|
|
|
// See https://github.com/libp2p/go-libp2p-pubsub/issues/426
|
|
func TestGossipCodecTest(t *testing.T) {
|
|
codec := NewGossipCodec(nil, nil).(*GossipCodec)
|
|
val := &p2p.Goodbye{
|
|
Reason: 89,
|
|
}
|
|
ans, err := utils.EncodeSSZSnappy(val)
|
|
require.NoError(t, err)
|
|
|
|
decoded := &p2p.Goodbye{}
|
|
require.NoError(t, codec.decodeData(decoded, ans))
|
|
assert.Equal(t, decoded, val)
|
|
}
|