mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-20 02:27:21 +01:00
lnd_test: add wait predicates to pending channel checks
This commit is contained in:
parent
2f1b024679
commit
95a98d86f6
134
lnd_test.go
134
lnd_test.go
@ -1190,7 +1190,7 @@ func testUpdateChannelPolicy(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
for _, s := range substrs {
|
for _, s := range substrs {
|
||||||
if !strings.Contains(sendResp.PaymentError, s) {
|
if !strings.Contains(sendResp.PaymentError, s) {
|
||||||
t.Fatalf("expected error to contain \"%v\", instead "+
|
t.Fatalf("expected error to contain \"%v\", instead "+
|
||||||
"got %v", sendResp.PaymentError)
|
"got %v", s, sendResp.PaymentError)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -2225,8 +2225,9 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
// Now that the commitment has been confirmed, the channel should be
|
// Now that the commitment has been confirmed, the channel should be
|
||||||
// marked as force closed.
|
// marked as force closed.
|
||||||
err = lntest.WaitPredicate(func() bool {
|
err = lntest.WaitPredicate(func() bool {
|
||||||
|
ctxt, _ := context.WithTimeout(ctxb, timeout)
|
||||||
pendingChanResp, err := net.Alice.PendingChannels(
|
pendingChanResp, err := net.Alice.PendingChannels(
|
||||||
ctxb, pendingChansRequest,
|
ctxt, pendingChansRequest,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
predErr = fmt.Errorf("unable to query for pending "+
|
predErr = fmt.Errorf("unable to query for pending "+
|
||||||
@ -2300,8 +2301,9 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
// Alice should see the channel in her set of pending force closed
|
// Alice should see the channel in her set of pending force closed
|
||||||
// channels with her funds still in limbo.
|
// channels with her funds still in limbo.
|
||||||
err = lntest.WaitPredicate(func() bool {
|
err = lntest.WaitPredicate(func() bool {
|
||||||
|
ctxt, _ := context.WithTimeout(ctxb, timeout)
|
||||||
pendingChanResp, err := net.Alice.PendingChannels(
|
pendingChanResp, err := net.Alice.PendingChannels(
|
||||||
ctxb, pendingChansRequest,
|
ctxt, pendingChansRequest,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
predErr = fmt.Errorf("unable to query for pending "+
|
predErr = fmt.Errorf("unable to query for pending "+
|
||||||
@ -2399,34 +2401,49 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
|
|
||||||
assertTxInBlock(t, block, sweepTx.Hash())
|
assertTxInBlock(t, block, sweepTx.Hash())
|
||||||
|
|
||||||
// Now that the commit output has been fully swept, check to see that
|
err = lntest.WaitPredicate(func() bool {
|
||||||
// the channel remains open for the pending htlc outputs.
|
// Now that the commit output has been fully swept, check to see
|
||||||
pendingChanResp, err = net.Alice.PendingChannels(ctxb, pendingChansRequest)
|
// that the channel remains open for the pending htlc outputs.
|
||||||
|
ctxt, _ := context.WithTimeout(ctxb, timeout)
|
||||||
|
pendingChanResp, err := net.Alice.PendingChannels(
|
||||||
|
ctxt, pendingChansRequest,
|
||||||
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("unable to query for pending channels: %v", err)
|
predErr = fmt.Errorf("unable to query for pending "+
|
||||||
|
"channels: %v", err)
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
err = checkNumForceClosedChannels(pendingChanResp, 1)
|
err = checkNumForceClosedChannels(pendingChanResp, 1)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
predErr = err
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// The commitment funds will have been recovered after the commit txn
|
// The commitment funds will have been recovered after the
|
||||||
// was included in the last block. The htlc funds will not be shown in
|
// commit txn was included in the last block. The htlc funds
|
||||||
// limbo, since they are still in their first stage and the nursery
|
// will not be shown in limbo, since they are still in their
|
||||||
// hasn't received them from the contract court.
|
// first stage and the nursery hasn't received them from the
|
||||||
|
// contract court.
|
||||||
forceClose, err := findForceClosedChannel(pendingChanResp, &op)
|
forceClose, err := findForceClosedChannel(pendingChanResp, &op)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
predErr = err
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
err = checkPendingChannelNumHtlcs(forceClose, 0)
|
predErr = checkPendingChannelNumHtlcs(forceClose, 0)
|
||||||
if err != nil {
|
if predErr != nil {
|
||||||
t.Fatalf("expected 0 pending htlcs, found %d",
|
return false
|
||||||
len(forceClose.PendingHtlcs))
|
|
||||||
}
|
}
|
||||||
if forceClose.LimboBalance != 0 {
|
if forceClose.LimboBalance != 0 {
|
||||||
t.Fatalf("expected 0 funds in limbo, found %d",
|
predErr = fmt.Errorf("expected 0 funds in limbo, "+
|
||||||
forceClose.LimboBalance)
|
"found %d", forceClose.LimboBalance)
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}, 15*time.Second)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf(predErr.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compute the height preceding that which will cause the htlc CLTV
|
// Compute the height preceding that which will cause the htlc CLTV
|
||||||
@ -2454,8 +2471,9 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
// Alice should now see the channel in her set of pending force closed
|
// Alice should now see the channel in her set of pending force closed
|
||||||
// channels with one pending HTLC.
|
// channels with one pending HTLC.
|
||||||
err = lntest.WaitPredicate(func() bool {
|
err = lntest.WaitPredicate(func() bool {
|
||||||
pendingChanResp, err = net.Alice.PendingChannels(
|
ctxt, _ := context.WithTimeout(ctxb, timeout)
|
||||||
ctxb, pendingChansRequest,
|
pendingChanResp, err := net.Alice.PendingChannels(
|
||||||
|
ctxt, pendingChansRequest,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
predErr = fmt.Errorf("unable to query for pending "+
|
predErr = fmt.Errorf("unable to query for pending "+
|
||||||
@ -2468,7 +2486,7 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
forceClose, predErr = findForceClosedChannel(
|
forceClose, predErr := findForceClosedChannel(
|
||||||
pendingChanResp, &op,
|
pendingChanResp, &op,
|
||||||
)
|
)
|
||||||
if predErr != nil {
|
if predErr != nil {
|
||||||
@ -2582,27 +2600,42 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
// Now that the channel has been fully swept, it should no longer show
|
// Now that the channel has been fully swept, it should no longer show
|
||||||
// incubated, check to see that Alice's node still reports the channel
|
// incubated, check to see that Alice's node still reports the channel
|
||||||
// as pending force closed.
|
// as pending force closed.
|
||||||
pendingChanResp, err = net.Alice.PendingChannels(ctxb, pendingChansRequest)
|
err = lntest.WaitPredicate(func() bool {
|
||||||
|
ctxt, _ := context.WithTimeout(ctxb, timeout)
|
||||||
|
pendingChanResp, err = net.Alice.PendingChannels(
|
||||||
|
ctxt, pendingChansRequest,
|
||||||
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("unable to query for pending channels: %v", err)
|
predErr = fmt.Errorf("unable to query for pending "+
|
||||||
|
"channels: %v", err)
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
err = checkNumForceClosedChannels(pendingChanResp, 1)
|
err = checkNumForceClosedChannels(pendingChanResp, 1)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
predErr = err
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
forceClose, err = findForceClosedChannel(pendingChanResp, &op)
|
forceClose, err := findForceClosedChannel(pendingChanResp, &op)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
predErr = err
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
if forceClose.LimboBalance == 0 {
|
if forceClose.LimboBalance == 0 {
|
||||||
t.Fatalf("htlc funds should still be in limbo")
|
predErr = fmt.Errorf("htlc funds should still be in limbo")
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
err = checkPendingChannelNumHtlcs(forceClose, numInvoices)
|
predErr = checkPendingChannelNumHtlcs(forceClose, numInvoices)
|
||||||
|
if predErr != nil {
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}, 15*time.Second)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
t.Fatalf(predErr.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate a block that causes Alice to sweep the htlc outputs in the
|
// Generate a block that causes Alice to sweep the htlc outputs in the
|
||||||
@ -2666,30 +2699,46 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
// Now that the channel has been fully swept, it should no longer show
|
// Now that the channel has been fully swept, it should no longer show
|
||||||
// incubated, check to see that Alice's node still reports the channel
|
// incubated, check to see that Alice's node still reports the channel
|
||||||
// as pending force closed.
|
// as pending force closed.
|
||||||
pendingChanResp, err = net.Alice.PendingChannels(ctxb, pendingChansRequest)
|
err = lntest.WaitPredicate(func() bool {
|
||||||
|
ctxt, _ := context.WithTimeout(ctxb, timeout)
|
||||||
|
pendingChanResp, err := net.Alice.PendingChannels(
|
||||||
|
ctxt, pendingChansRequest,
|
||||||
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf("unable to query for pending channels: %v", err)
|
predErr = fmt.Errorf("unable to query for pending "+
|
||||||
|
"channels: %v", err)
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
err = checkNumForceClosedChannels(pendingChanResp, 1)
|
err = checkNumForceClosedChannels(pendingChanResp, 1)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
predErr = err
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// All htlcs should show zero blocks until maturity, as evidenced by
|
// All htlcs should show zero blocks until maturity, as
|
||||||
// having checked the sweep transaction in the mempool.
|
// evidenced by having checked the sweep transaction in the
|
||||||
forceClose, err = findForceClosedChannel(pendingChanResp, &op)
|
// mempool.
|
||||||
|
forceClose, err := findForceClosedChannel(pendingChanResp, &op)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
predErr = err
|
||||||
|
return false
|
||||||
}
|
}
|
||||||
err = checkPendingChannelNumHtlcs(forceClose, numInvoices)
|
predErr = checkPendingChannelNumHtlcs(forceClose, numInvoices)
|
||||||
if err != nil {
|
if predErr != nil {
|
||||||
t.Fatalf(err.Error())
|
return false
|
||||||
}
|
}
|
||||||
err = checkPendingHtlcStageAndMaturity(
|
err = checkPendingHtlcStageAndMaturity(
|
||||||
forceClose, 2, htlcCsvMaturityHeight, 0,
|
forceClose, 2, htlcCsvMaturityHeight, 0,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatalf(err.Error())
|
predErr = err
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
return true
|
||||||
|
}, 15*time.Second)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf(predErr.Error())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generate the final block that sweeps all htlc funds into the user's
|
// Generate the final block that sweeps all htlc funds into the user's
|
||||||
@ -2702,8 +2751,9 @@ func testChannelForceClosure(net *lntest.NetworkHarness, t *harnessTest) {
|
|||||||
// Now that the channel has been fully swept, it should no longer show
|
// Now that the channel has been fully swept, it should no longer show
|
||||||
// up within the pending channels RPC.
|
// up within the pending channels RPC.
|
||||||
err = lntest.WaitPredicate(func() bool {
|
err = lntest.WaitPredicate(func() bool {
|
||||||
|
ctxt, _ := context.WithTimeout(ctxb, timeout)
|
||||||
pendingChanResp, err := net.Alice.PendingChannels(
|
pendingChanResp, err := net.Alice.PendingChannels(
|
||||||
ctxb, pendingChansRequest,
|
ctxt, pendingChansRequest,
|
||||||
)
|
)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
predErr = fmt.Errorf("unable to query for pending "+
|
predErr = fmt.Errorf("unable to query for pending "+
|
||||||
|
Loading…
Reference in New Issue
Block a user