Merge pull request #8828 from yyforyongyu/increase-itest-timeout

lntest: increase timeout for postgres backend
This commit is contained in:
Yong 2024-06-13 19:00:49 +08:00 committed by GitHub
commit cf88a8ae04
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 28 additions and 12 deletions

View File

@ -23,7 +23,7 @@ defaults:
env: env:
BITCOIN_VERSION: "27" BITCOIN_VERSION: "27"
TRANCHES: 16 TRANCHES: 8
# If you change this value, please change it in the following files as well: # If you change this value, please change it in the following files as well:
# /.travis.yml # /.travis.yml

View File

@ -100,7 +100,9 @@ func syncNotifierWithMiner(t *testing.T, notifier *BitcoindNotifier,
select { select {
case <-time.After(100 * time.Millisecond): case <-time.After(100 * time.Millisecond):
case <-timeout: case <-timeout:
t.Fatalf("timed out waiting to sync notifier") t.Fatalf("timed out in syncNotifierWithMiner, got "+
"err=%v, minerHeight=%v, bitcoindHeight=%v",
err, minerHeight, bitcoindHeight)
} }
} }
} }

View File

@ -5,6 +5,7 @@ import (
"context" "context"
"crypto/sha256" "crypto/sha256"
"encoding/hex" "encoding/hex"
"errors"
"time" "time"
"github.com/btcsuite/btcd/btcec/v2" "github.com/btcsuite/btcd/btcec/v2"
@ -465,6 +466,14 @@ func (b *blindedForwardTest) sendBlindedPayment(ctx context.Context,
ctx, cancel := context.WithTimeout(ctx, time.Hour) ctx, cancel := context.WithTimeout(ctx, time.Hour)
go func() { go func() {
_, err := b.ht.Alice.RPC.Router.SendToRouteV2(ctx, sendReq) _, err := b.ht.Alice.RPC.Router.SendToRouteV2(ctx, sendReq)
// We may get a context canceled error when the test is
// finished.
if errors.Is(err, context.Canceled) {
b.ht.Logf("sendBlindedPayment: parent context canceled")
return
}
require.NoError(b.ht, err) require.NoError(b.ht, err)
}() }()

View File

@ -16,7 +16,7 @@ const (
// ChannelCloseTimeout is the max time we will wait before a channel is // ChannelCloseTimeout is the max time we will wait before a channel is
// considered closed. // considered closed.
ChannelCloseTimeout = time.Second * 60 ChannelCloseTimeout = time.Second * 30
// DefaultTimeout is a timeout that will be used for various wait // DefaultTimeout is a timeout that will be used for various wait
// scenarios where no custom timeout value is defined. // scenarios where no custom timeout value is defined.

View File

@ -16,7 +16,7 @@ const (
// ChannelCloseTimeout is the max time we will wait before a channel is // ChannelCloseTimeout is the max time we will wait before a channel is
// considered closed. // considered closed.
ChannelCloseTimeout = time.Second * 60 ChannelCloseTimeout = time.Second * 30
// DefaultTimeout is a timeout that will be used for various wait // DefaultTimeout is a timeout that will be used for various wait
// scenarios where no custom timeout value is defined. // scenarios where no custom timeout value is defined.

View File

@ -6,34 +6,39 @@ package wait
import "time" import "time"
const ( const (
// extraTimeout is the additional time we wait for the postgres backend
// until the issue is resolved:
// - https://github.com/lightningnetwork/lnd/issues/8809
extraTimeout = time.Second * 30
// MinerMempoolTimeout is the max time we will wait for a transaction // MinerMempoolTimeout is the max time we will wait for a transaction
// to propagate to the mining node's mempool. // to propagate to the mining node's mempool.
MinerMempoolTimeout = time.Minute MinerMempoolTimeout = time.Minute + extraTimeout
// ChannelOpenTimeout is the max time we will wait before a channel to // ChannelOpenTimeout is the max time we will wait before a channel to
// be considered opened. // be considered opened.
ChannelOpenTimeout = time.Second * 30 ChannelOpenTimeout = time.Second*30 + extraTimeout
// ChannelCloseTimeout is the max time we will wait before a channel is // ChannelCloseTimeout is the max time we will wait before a channel is
// considered closed. // considered closed.
ChannelCloseTimeout = time.Second * 30 ChannelCloseTimeout = time.Second*30 + extraTimeout
// DefaultTimeout is a timeout that will be used for various wait // DefaultTimeout is a timeout that will be used for various wait
// scenarios where no custom timeout value is defined. // scenarios where no custom timeout value is defined.
DefaultTimeout = time.Second * 60 DefaultTimeout = time.Second*60 + extraTimeout
// AsyncBenchmarkTimeout is the timeout used when running the async // AsyncBenchmarkTimeout is the timeout used when running the async
// payments benchmark. // payments benchmark.
AsyncBenchmarkTimeout = time.Minute * 2 AsyncBenchmarkTimeout = time.Minute*2 + extraTimeout
// NodeStartTimeout is the timeout value when waiting for a node to // NodeStartTimeout is the timeout value when waiting for a node to
// become fully started. // become fully started.
NodeStartTimeout = time.Minute * 2 NodeStartTimeout = time.Minute*2 + extraTimeout
// SqliteBusyTimeout is the maximum time that a call to the sqlite db // SqliteBusyTimeout is the maximum time that a call to the sqlite db
// will wait for the connection to become available. // will wait for the connection to become available.
SqliteBusyTimeout = time.Second * 10 SqliteBusyTimeout = time.Second*10 + extraTimeout
// PaymentTimeout is the timeout used when sending payments. // PaymentTimeout is the timeout used when sending payments.
PaymentTimeout = time.Second * 60 PaymentTimeout = time.Second*60 + extraTimeout
) )