mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
5a66807989
* First take at updating everything to v5 * Patch gRPC gateway to use prysm v5 Fix patch * Update go ssz --------- Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
46 lines
1.7 KiB
Go
46 lines
1.7 KiB
Go
package p2p
|
|
|
|
import (
|
|
"testing"
|
|
|
|
ma "github.com/multiformats/go-multiaddr"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/assert"
|
|
"github.com/prysmaticlabs/prysm/v5/testing/require"
|
|
)
|
|
|
|
func TestRelayAddrs_OnlyFactory(t *testing.T) {
|
|
relay := "/ip4/127.0.0.1/tcp/6660/p2p/QmQ7zhY7nGY66yK1n8hLGevfVyjbtvHSgtZuXkCH9oTrgi"
|
|
f := withRelayAddrs(relay)
|
|
|
|
a, err := ma.NewMultiaddr("/ip4/127.0.0.1/tcp/33201/p2p/QmaXZhW44pwQxBSeLkE5FNeLz8tGTTEsRciFg1DNWXXrWG")
|
|
require.NoError(t, err)
|
|
addrs := []ma.Multiaddr{a}
|
|
|
|
result := f(addrs)
|
|
assert.Equal(t, 2, len(result), "Unexpected number of addresses")
|
|
|
|
expected := "/ip4/127.0.0.1/tcp/6660/p2p/QmQ7zhY7nGY66yK1n8hLGevfVyjbtvHSgtZuXkCH9oTrgi/p2p-circuit/ip4/127.0.0.1/tcp/33201/p2p/QmaXZhW44pwQxBSeLkE5FNeLz8tGTTEsRciFg1DNWXXrWG"
|
|
assert.Equal(t, expected, result[1].String(), "Address at index 1 (%s) is not the expected p2p-circuit address", result[1].String())
|
|
}
|
|
|
|
func TestRelayAddrs_UseNonRelayAddrs(t *testing.T) {
|
|
relay := "/ip4/127.0.0.1/tcp/6660/p2p/QmQ7zhY7nGY66yK1n8hLGevfVyjbtvHSgtZuXkCH9oTrgi"
|
|
f := withRelayAddrs(relay)
|
|
|
|
expected := []string{
|
|
"/ip4/127.0.0.1/tcp/6660/p2p/QmQ7zhY7nGY66yK1n8hLGevfVyjbtvHSgtZuXkCH9oTrgi/p2p-circuit/ip4/127.0.0.1/tcp/33201/p2p/QmaXZhW44pwQxBSeLkE5FNeLz8tGTTEsRciFg1DNWXXrWG",
|
|
"/ip4/127.0.0.1/tcp/6660/p2p/QmQ7zhY7nGY66yK1n8hLGevfVyjbtvHSgtZuXkCH9oTrgi/p2p-circuit/ip4/127.0.0.1/tcp/33203/p2p/QmaXZhW44pwQxBSeLkE5FNeLz8tGTTEsRciFg1DNWXXrWG",
|
|
}
|
|
|
|
addrs := make([]ma.Multiaddr, len(expected))
|
|
for i, addr := range expected {
|
|
a, err := ma.NewMultiaddr(addr)
|
|
require.NoError(t, err)
|
|
addrs[i] = a
|
|
}
|
|
|
|
result := f(addrs)
|
|
assert.Equal(t, 2, len(result), "Unexpected number of addresses")
|
|
assert.DeepEqual(t, addrs, result)
|
|
}
|