mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-04-14 06:59:07 +02:00
itests: payments test flake fix
This commit is contained in:
parent
254d9be6ff
commit
0f400b2b16
@ -581,24 +581,34 @@ func testBidirectionalAsyncPayments(net *lntest.NetworkHarness, t *harnessTest)
|
||||
|
||||
// Next query for Bob's and Alice's channel states, in order to confirm
|
||||
// that all payment have been successful transmitted.
|
||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||
bobInfo, err := getChanInfo(ctxt, net.Bob)
|
||||
if err != nil {
|
||||
t.Fatalf("unable to get bob's channel info: %v", err)
|
||||
}
|
||||
err = wait.NoError(func() error {
|
||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||
bobInfo, err := getChanInfo(ctxt, net.Bob)
|
||||
if err != nil {
|
||||
t.Fatalf("unable to get bob's channel info: %v", err)
|
||||
}
|
||||
|
||||
if bobInfo.LocalBalance != bobAmt {
|
||||
t.Fatalf("bob's local balance is incorrect, got %v, expected"+
|
||||
" %v", bobInfo.LocalBalance, bobAmt)
|
||||
}
|
||||
if bobInfo.RemoteBalance != aliceAmt {
|
||||
t.Fatalf("bob's remote balance is incorrect, got %v, "+
|
||||
"expected %v", bobInfo.RemoteBalance, aliceAmt)
|
||||
}
|
||||
if len(bobInfo.PendingHtlcs) != 0 {
|
||||
t.Fatalf("bob's pending htlcs is incorrect, got %v, "+
|
||||
"expected %v", len(bobInfo.PendingHtlcs), 0)
|
||||
}
|
||||
if bobInfo.LocalBalance != bobAmt {
|
||||
return fmt.Errorf("bob's local balance is incorrect, "+
|
||||
"got %v, expected %v", bobInfo.LocalBalance,
|
||||
bobAmt)
|
||||
}
|
||||
|
||||
if bobInfo.RemoteBalance != aliceAmt {
|
||||
return fmt.Errorf("bob's remote balance is incorrect, "+
|
||||
"got %v, expected %v", bobInfo.RemoteBalance,
|
||||
aliceAmt)
|
||||
}
|
||||
|
||||
if len(bobInfo.PendingHtlcs) != 0 {
|
||||
return fmt.Errorf("bob's pending htlcs is incorrect, "+
|
||||
"got %v, expected %v",
|
||||
len(bobInfo.PendingHtlcs), 0)
|
||||
}
|
||||
|
||||
return nil
|
||||
}, defaultTimeout)
|
||||
require.NoError(t.t, err)
|
||||
|
||||
// Finally, immediately close the channel. This function will also
|
||||
// block until the channel is closed and will additionally assert the
|
||||
|
Loading…
x
Reference in New Issue
Block a user