From 413cc3da35d5e05ef2a593cbc99a794f875a1bee Mon Sep 17 00:00:00 2001 From: Olaoluwa Osuntokun Date: Tue, 5 Mar 2024 00:20:33 -0600 Subject: [PATCH] itest: update async coop close itests to also use new rbf flow --- itest/lnd_coop_close_with_htlcs_test.go | 59 ++++++++++++++++++------- 1 file changed, 43 insertions(+), 16 deletions(-) diff --git a/itest/lnd_coop_close_with_htlcs_test.go b/itest/lnd_coop_close_with_htlcs_test.go index 8707fada7..0fc75e3a8 100644 --- a/itest/lnd_coop_close_with_htlcs_test.go +++ b/itest/lnd_coop_close_with_htlcs_test.go @@ -1,6 +1,7 @@ package itest import ( + "fmt" "testing" "github.com/btcsuite/btcd/btcutil" @@ -10,6 +11,7 @@ import ( "github.com/lightningnetwork/lnd/lnrpc/routerrpc" "github.com/lightningnetwork/lnd/lnrpc/walletrpc" "github.com/lightningnetwork/lnd/lntest" + "github.com/lightningnetwork/lnd/lntest/node" "github.com/lightningnetwork/lnd/lntest/wait" "github.com/lightningnetwork/lnd/lntypes" "github.com/lightningnetwork/lnd/lnwallet/chainfee" @@ -23,23 +25,48 @@ import ( // will have the receiver settle the invoice and observe that the channel gets // torn down after settlement. func testCoopCloseWithHtlcs(ht *lntest.HarnessTest) { - ht.Run("no restart", func(t *testing.T) { - tt := ht.Subtest(t) - coopCloseWithHTLCs(tt) - }) + rbfCoopFlags := []string{"--protocol.rbf-coop-close"} - ht.Run("with restart", func(t *testing.T) { - tt := ht.Subtest(t) - coopCloseWithHTLCsWithRestart(tt) - }) + for _, isRbf := range []bool{true, false} { + testName := fmt.Sprintf("no restart is_rbf=%v", isRbf) + ht.Run(testName, func(t *testing.T) { + tt := ht.Subtest(t) + + var flags []string + if isRbf { + flags = rbfCoopFlags + } + + alice := ht.NewNodeWithCoins("Alice", flags) + bob := ht.NewNodeWithCoins("bob", flags) + + coopCloseWithHTLCs(tt, alice, bob) + }) + } + + for _, isRbf := range []bool{true, false} { + testName := fmt.Sprintf("with restart is_rbf=%v", isRbf) + ht.Run(testName, func(t *testing.T) { + tt := ht.Subtest(t) + + var flags []string + if isRbf { + flags = rbfCoopFlags + } + + alice := ht.NewNodeWithCoins("Alice", flags) + bob := ht.NewNodeWithCoins("bob", flags) + + coopCloseWithHTLCsWithRestart(tt, alice, bob) + }) + } } // coopCloseWithHTLCs tests the basic coop close scenario which occurs when one // channel party initiates a channel shutdown while an HTLC is still pending on // the channel. -func coopCloseWithHTLCs(ht *lntest.HarnessTest) { - alice := ht.NewNodeWithCoins("Alice", nil) - bob := ht.NewNodeWithCoins("bob", nil) +func coopCloseWithHTLCs(ht *lntest.HarnessTest, alice, bob *node.HarnessNode) { + ht.ConnectNodes(alice, bob) // Here we set up a channel between Alice and Bob, beginning with a @@ -131,9 +158,9 @@ func coopCloseWithHTLCs(ht *lntest.HarnessTest) { // is still pending on the channel but this time it ensures that the shutdown // process continues as expected even if a channel re-establish happens after // one party has already initiated the shutdown. -func coopCloseWithHTLCsWithRestart(ht *lntest.HarnessTest) { - alice := ht.NewNodeWithCoins("Alice", nil) - bob := ht.NewNodeWithCoins("bob", nil) +func coopCloseWithHTLCsWithRestart(ht *lntest.HarnessTest, alice, + bob *node.HarnessNode) { + ht.ConnectNodes(alice, bob) // Open a channel between Alice and Bob with the balance split equally. @@ -219,8 +246,8 @@ func coopCloseWithHTLCsWithRestart(ht *lntest.HarnessTest) { }, defaultTimeout) require.NoError(ht, err) - // Wait for the close tx to be in the Mempool and then mine 6 blocks - // to confirm the close. + // Wait for the close tx to be in the Mempool and then mine 6 blocks to + // confirm the close. closingTx := ht.AssertClosingTxInMempool( chanPoint, lnrpc.CommitmentType_LEGACY, )