lntest: use nextAvailablePort for miner and btcd backend
With the new btcd version we can specify our own listen address generator function for any btcd nodes. This should reduce flakiness as the previous way of getting a free port was based on just picking a random number which lead to conflicts. We also double the default values for connection retries and timeouts, effectively waiting up to 4 seconds in total now.
This commit is contained in:
parent
2edc3cf98f
commit
36756c012d
@ -93,6 +93,14 @@ func NewBackend(miner string, netParams *chaincfg.Params) (
|
|||||||
return nil, nil, fmt.Errorf("unable to create btcd node: %v", err)
|
return nil, nil, fmt.Errorf("unable to create btcd node: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// We want to overwrite some of the connection settings to make the
|
||||||
|
// tests more robust. We might need to restart the backend while there
|
||||||
|
// are already blocks present, which will take a bit longer than the
|
||||||
|
// 1 second the default settings amount to. Doubling both values will
|
||||||
|
// give us retries up to 4 seconds.
|
||||||
|
chainBackend.MaxConnRetries = rpctest.DefaultMaxConnectionRetries * 2
|
||||||
|
chainBackend.ConnectionRetryTimeout = rpctest.DefaultConnectionRetryTimeout * 2
|
||||||
|
|
||||||
if err := chainBackend.SetUp(false, 0); err != nil {
|
if err := chainBackend.SetUp(false, 0); err != nil {
|
||||||
return nil, nil, fmt.Errorf("unable to set up btcd backend: %v", err)
|
return nil, nil, fmt.Errorf("unable to set up btcd backend: %v", err)
|
||||||
}
|
}
|
||||||
|
@ -14241,7 +14241,10 @@ func TestLightningNetworkDaemon(t *testing.T) {
|
|||||||
testCases, trancheIndex, trancheOffset := getTestCaseSplitTranche()
|
testCases, trancheIndex, trancheOffset := getTestCaseSplitTranche()
|
||||||
lntest.ApplyPortOffset(uint32(trancheIndex) * 1000)
|
lntest.ApplyPortOffset(uint32(trancheIndex) * 1000)
|
||||||
|
|
||||||
ht := newHarnessTest(t, nil)
|
// Before we start any node, we need to make sure that any btcd node
|
||||||
|
// that is started through the RPC harness uses a unique port as well to
|
||||||
|
// avoid any port collisions.
|
||||||
|
rpctest.ListenAddressGenerator = lntest.GenerateBtcdListenerAddresses
|
||||||
|
|
||||||
// Declare the network harness here to gain access to its
|
// Declare the network harness here to gain access to its
|
||||||
// 'OnTxAccepted' call back.
|
// 'OnTxAccepted' call back.
|
||||||
@ -14270,29 +14273,27 @@ func TestLightningNetworkDaemon(t *testing.T) {
|
|||||||
chainBackend, cleanUp, err := lntest.NewBackend(
|
chainBackend, cleanUp, err := lntest.NewBackend(
|
||||||
miner.P2PAddress(), harnessNetParams,
|
miner.P2PAddress(), harnessNetParams,
|
||||||
)
|
)
|
||||||
if err != nil {
|
require.NoError(t, err, "new backend")
|
||||||
ht.Fatalf("unable to start backend: %v", err)
|
|
||||||
}
|
|
||||||
defer func() {
|
defer func() {
|
||||||
require.NoError(
|
require.NoError(t, cleanUp(), "cleanup")
|
||||||
t, cleanUp(), "failed to clean up chain backend",
|
|
||||||
)
|
|
||||||
}()
|
}()
|
||||||
|
|
||||||
if err := miner.SetUp(true, 50); err != nil {
|
// Before we start anything, we want to overwrite some of the connection
|
||||||
ht.Fatalf("unable to set up mining node: %v", err)
|
// settings to make the tests more robust. We might need to restart the
|
||||||
}
|
// miner while there are already blocks present, which will take a bit
|
||||||
if err := miner.Node.NotifyNewTransactions(false); err != nil {
|
// longer than the 1 second the default settings amount to. Doubling
|
||||||
ht.Fatalf("unable to request transaction notifications: %v", err)
|
// both values will give us retries up to 4 seconds.
|
||||||
}
|
miner.MaxConnRetries = rpctest.DefaultMaxConnectionRetries * 2
|
||||||
|
miner.ConnectionRetryTimeout = rpctest.DefaultConnectionRetryTimeout * 2
|
||||||
|
|
||||||
// Connect chainbackend to miner.
|
// Set up miner and connect chain backend to it.
|
||||||
require.NoError(
|
require.NoError(t, miner.SetUp(true, 50))
|
||||||
t, chainBackend.ConnectMiner(), "failed to connect to miner",
|
require.NoError(t, miner.Node.NotifyNewTransactions(false))
|
||||||
)
|
require.NoError(t, chainBackend.ConnectMiner(), "connect miner")
|
||||||
|
|
||||||
// Now we can set up our test harness (LND instance), with the chain
|
// Now we can set up our test harness (LND instance), with the chain
|
||||||
// backend we just created.
|
// backend we just created.
|
||||||
|
ht := newHarnessTest(t, nil)
|
||||||
binary := ht.getLndBinary()
|
binary := ht.getLndBinary()
|
||||||
lndHarness, err = lntest.NewNetworkHarness(
|
lndHarness, err = lntest.NewNetworkHarness(
|
||||||
miner, chainBackend, binary, *useEtcd,
|
miner, chainBackend, binary, *useEtcd,
|
||||||
|
@ -12,7 +12,6 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strconv"
|
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
@ -54,6 +53,10 @@ const (
|
|||||||
// trickleDelay is the amount of time in milliseconds between each
|
// trickleDelay is the amount of time in milliseconds between each
|
||||||
// release of announcements by AuthenticatedGossiper to the network.
|
// release of announcements by AuthenticatedGossiper to the network.
|
||||||
trickleDelay = 50
|
trickleDelay = 50
|
||||||
|
|
||||||
|
// listenerFormat is the format string that is used to generate local
|
||||||
|
// listener addresses.
|
||||||
|
listenerFormat = "127.0.0.1:%d"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -98,7 +101,7 @@ func nextAvailablePort() int {
|
|||||||
// the harness node, in practice in CI servers this seems much
|
// the harness node, in practice in CI servers this seems much
|
||||||
// less likely than simply some other process already being
|
// less likely than simply some other process already being
|
||||||
// bound at the start of the tests.
|
// bound at the start of the tests.
|
||||||
addr := fmt.Sprintf("127.0.0.1:%d", port)
|
addr := fmt.Sprintf(listenerFormat, port)
|
||||||
l, err := net.Listen("tcp4", addr)
|
l, err := net.Listen("tcp4", addr)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
err := l.Close()
|
err := l.Close()
|
||||||
@ -138,6 +141,14 @@ func GetBtcdBinary() string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GenerateBtcdListenerAddresses is a function that returns two listener
|
||||||
|
// addresses with unique ports and should be used to overwrite rpctest's default
|
||||||
|
// generator which is prone to use colliding ports.
|
||||||
|
func GenerateBtcdListenerAddresses() (string, string) {
|
||||||
|
return fmt.Sprintf(listenerFormat, nextAvailablePort()),
|
||||||
|
fmt.Sprintf(listenerFormat, nextAvailablePort())
|
||||||
|
}
|
||||||
|
|
||||||
// generateListeningPorts returns four ints representing ports to listen on
|
// generateListeningPorts returns four ints representing ports to listen on
|
||||||
// designated for the current lightning network test. This returns the next
|
// designated for the current lightning network test. This returns the next
|
||||||
// available ports for the p2p, rpc, rest and profiling services.
|
// available ports for the p2p, rpc, rest and profiling services.
|
||||||
@ -203,15 +214,15 @@ type NodeConfig struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (cfg NodeConfig) P2PAddr() string {
|
func (cfg NodeConfig) P2PAddr() string {
|
||||||
return net.JoinHostPort("127.0.0.1", strconv.Itoa(cfg.P2PPort))
|
return fmt.Sprintf(listenerFormat, cfg.P2PPort)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cfg NodeConfig) RPCAddr() string {
|
func (cfg NodeConfig) RPCAddr() string {
|
||||||
return net.JoinHostPort("127.0.0.1", strconv.Itoa(cfg.RPCPort))
|
return fmt.Sprintf(listenerFormat, cfg.RPCPort)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (cfg NodeConfig) RESTAddr() string {
|
func (cfg NodeConfig) RESTAddr() string {
|
||||||
return net.JoinHostPort("127.0.0.1", strconv.Itoa(cfg.RESTPort))
|
return fmt.Sprintf(listenerFormat, cfg.RESTPort)
|
||||||
}
|
}
|
||||||
|
|
||||||
// DBDir returns the holding directory path of the graph database.
|
// DBDir returns the holding directory path of the graph database.
|
||||||
|
Loading…
Reference in New Issue
Block a user