mirror of https://github.com/status-im/go-waku.git
166 lines
3.8 KiB
Go
166 lines
3.8 KiB
Go
package tests
|
|
|
|
import (
|
|
"context"
|
|
"crypto/rand"
|
|
"encoding/hex"
|
|
"fmt"
|
|
"io"
|
|
"net"
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
"github.com/libp2p/go-libp2p"
|
|
"github.com/libp2p/go-libp2p/core/crypto"
|
|
"github.com/libp2p/go-libp2p/core/host"
|
|
"github.com/libp2p/go-libp2p/core/peer"
|
|
"github.com/multiformats/go-multiaddr"
|
|
"github.com/waku-org/go-waku/waku/v2/protocol/pb"
|
|
)
|
|
|
|
// GetHostAddress returns the first listen address used by a host
|
|
func GetHostAddress(ha host.Host) multiaddr.Multiaddr {
|
|
return ha.Addrs()[0]
|
|
}
|
|
|
|
// FindFreePort returns an available port number
|
|
func FindFreePort(t *testing.T, host string, maxAttempts int) (int, error) {
|
|
t.Helper()
|
|
|
|
if host == "" {
|
|
host = "localhost"
|
|
}
|
|
|
|
for i := 0; i < maxAttempts; i++ {
|
|
addr, err := net.ResolveTCPAddr("tcp", net.JoinHostPort(host, "0"))
|
|
if err != nil {
|
|
t.Logf("unable to resolve tcp addr: %v", err)
|
|
continue
|
|
}
|
|
l, err := net.ListenTCP("tcp", addr)
|
|
if err != nil {
|
|
l.Close()
|
|
t.Logf("unable to listen on addr %q: %v", addr, err)
|
|
continue
|
|
}
|
|
|
|
port := l.Addr().(*net.TCPAddr).Port
|
|
l.Close()
|
|
return port, nil
|
|
|
|
}
|
|
|
|
return 0, fmt.Errorf("no free port found")
|
|
}
|
|
|
|
// FindFreePort returns an available port number
|
|
func FindFreeUDPPort(t *testing.T, host string, maxAttempts int) (int, error) {
|
|
t.Helper()
|
|
|
|
if host == "" {
|
|
host = "localhost"
|
|
}
|
|
|
|
for i := 0; i < maxAttempts; i++ {
|
|
addr, err := net.ResolveUDPAddr("udp", net.JoinHostPort(host, "0"))
|
|
if err != nil {
|
|
t.Logf("unable to resolve tcp addr: %v", err)
|
|
continue
|
|
}
|
|
l, err := net.ListenUDP("udp", addr)
|
|
if err != nil {
|
|
l.Close()
|
|
t.Logf("unable to listen on addr %q: %v", addr, err)
|
|
continue
|
|
}
|
|
|
|
port := l.LocalAddr().(*net.UDPAddr).Port
|
|
l.Close()
|
|
return port, nil
|
|
|
|
}
|
|
|
|
return 0, fmt.Errorf("no free port found")
|
|
}
|
|
|
|
// MakeHost creates a Libp2p host with a random key on a specific port
|
|
func MakeHost(ctx context.Context, port int, randomness io.Reader) (host.Host, error) {
|
|
// Creates a new RSA key pair for this host.
|
|
prvKey, _, err := crypto.GenerateKeyPairWithReader(crypto.RSA, 2048, randomness)
|
|
if err != nil {
|
|
log.Error(err.Error())
|
|
return nil, err
|
|
}
|
|
|
|
// 0.0.0.0 will listen on any interface device.
|
|
sourceMultiAddr, _ := multiaddr.NewMultiaddr(fmt.Sprintf("/ip4/0.0.0.0/tcp/%d", port))
|
|
|
|
// libp2p.New constructs a new libp2p Host.
|
|
// Other options can be added here.
|
|
return libp2p.New(
|
|
libp2p.ListenAddrs(sourceMultiAddr),
|
|
libp2p.Identity(prvKey),
|
|
)
|
|
}
|
|
|
|
// CreateWakuMessage creates a WakuMessage protobuffer with default values and a custom contenttopic and timestamp
|
|
func CreateWakuMessage(contentTopic string, timestamp int64) *pb.WakuMessage {
|
|
return &pb.WakuMessage{Payload: []byte{1, 2, 3}, ContentTopic: contentTopic, Version: 0, Timestamp: timestamp}
|
|
}
|
|
|
|
// RandomHex returns a random hex string of n bytes
|
|
func RandomHex(n int) (string, error) {
|
|
bytes := make([]byte, n)
|
|
if _, err := rand.Read(bytes); err != nil {
|
|
return "", err
|
|
}
|
|
return hex.EncodeToString(bytes), nil
|
|
}
|
|
|
|
type TestPeerDiscoverer struct {
|
|
sync.RWMutex
|
|
peerMap map[peer.ID]struct{}
|
|
peerCh chan peer.AddrInfo
|
|
}
|
|
|
|
func NewTestPeerDiscoverer() *TestPeerDiscoverer {
|
|
result := &TestPeerDiscoverer{
|
|
peerMap: make(map[peer.ID]struct{}),
|
|
peerCh: make(chan peer.AddrInfo, 10),
|
|
}
|
|
|
|
go func() {
|
|
for p := range result.peerCh {
|
|
result.Lock()
|
|
result.peerMap[p.ID] = struct{}{}
|
|
result.Unlock()
|
|
}
|
|
}()
|
|
|
|
return result
|
|
}
|
|
|
|
func (t *TestPeerDiscoverer) PeerChannel() chan<- peer.AddrInfo {
|
|
return t.peerCh
|
|
}
|
|
|
|
func (t *TestPeerDiscoverer) HasPeer(p peer.ID) bool {
|
|
t.RLock()
|
|
defer t.RUnlock()
|
|
_, ok := t.peerMap[p]
|
|
return ok
|
|
}
|
|
|
|
func (t *TestPeerDiscoverer) PeerCount() int {
|
|
t.RLock()
|
|
defer t.RUnlock()
|
|
return len(t.peerMap)
|
|
}
|
|
|
|
func (t *TestPeerDiscoverer) Clear() {
|
|
t.Lock()
|
|
defer t.Unlock()
|
|
t.peerMap = make(map[peer.ID]struct{})
|
|
}
|