mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-23 22:46:40 +01:00
lntest/test: move multi-hop error propagation into its own file
This commit is contained in:
parent
b608683c9b
commit
5a172330d3
2 changed files with 342 additions and 326 deletions
342
lntest/itest/lnd_multi-hop-error-propagation.go
Normal file
342
lntest/itest/lnd_multi-hop-error-propagation.go
Normal file
|
@ -0,0 +1,342 @@
|
||||||
|
// +build rpctest
|
||||||
|
|
||||||
|
package itest
|
||||||
|
|
||||||
|
import (
|
||||||
|
"context"
|
||||||
|
"encoding/hex"
|
||||||
|
"strings"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/lightningnetwork/lnd"
|
||||||
|
"github.com/lightningnetwork/lnd/lnrpc"
|
||||||
|
"github.com/lightningnetwork/lnd/lnrpc/routerrpc"
|
||||||
|
"github.com/lightningnetwork/lnd/lntest"
|
||||||
|
"github.com/lightningnetwork/lnd/lnwire"
|
||||||
|
)
|
||||||
|
|
||||||
|
func testHtlcErrorPropagation(net *lntest.NetworkHarness, t *harnessTest) {
|
||||||
|
ctxb := context.Background()
|
||||||
|
|
||||||
|
// In this test we wish to exercise the daemon's correct parsing,
|
||||||
|
// handling, and propagation of errors that occur while processing a
|
||||||
|
// multi-hop payment.
|
||||||
|
const chanAmt = lnd.MaxBtcFundingAmount
|
||||||
|
|
||||||
|
// First establish a channel with a capacity of 0.5 BTC between Alice
|
||||||
|
// and Bob.
|
||||||
|
ctxt, _ := context.WithTimeout(ctxb, channelOpenTimeout)
|
||||||
|
chanPointAlice := openChannelAndAssert(
|
||||||
|
ctxt, t, net, net.Alice, net.Bob,
|
||||||
|
lntest.OpenChannelParams{
|
||||||
|
Amt: chanAmt,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
if err := net.Alice.WaitForNetworkChannelOpen(ctxt, chanPointAlice); err != nil {
|
||||||
|
t.Fatalf("channel not seen by alice before timeout: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
cType, err := channelCommitType(net.Alice, chanPointAlice)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to get channel type: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
commitFee := cType.calcStaticFee(0)
|
||||||
|
assertBaseBalance := func() {
|
||||||
|
balReq := &lnrpc.ChannelBalanceRequest{}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
aliceBal, err := net.Alice.ChannelBalance(ctxt, balReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to get channel balance: %v", err)
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
bobBal, err := net.Bob.ChannelBalance(ctxt, balReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to get channel balance: %v", err)
|
||||||
|
}
|
||||||
|
if aliceBal.Balance != int64(chanAmt-commitFee) {
|
||||||
|
t.Fatalf("alice has an incorrect balance: expected %v got %v",
|
||||||
|
int64(chanAmt-commitFee), aliceBal)
|
||||||
|
}
|
||||||
|
if bobBal.Balance != int64(chanAmt-commitFee) {
|
||||||
|
t.Fatalf("bob has an incorrect balance: expected %v got %v",
|
||||||
|
int64(chanAmt-commitFee), bobBal)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Since we'd like to test some multi-hop failure scenarios, we'll
|
||||||
|
// introduce another node into our test network: Carol.
|
||||||
|
carol, err := net.NewNode("Carol", nil)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to create new nodes: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Next, we'll create a connection from Bob to Carol, and open a
|
||||||
|
// channel between them so we have the topology: Alice -> Bob -> Carol.
|
||||||
|
// The channel created will be of lower capacity that the one created
|
||||||
|
// above.
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
if err := net.ConnectNodes(ctxt, net.Bob, carol); err != nil {
|
||||||
|
t.Fatalf("unable to connect bob to carol: %v", err)
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, channelOpenTimeout)
|
||||||
|
const bobChanAmt = lnd.MaxBtcFundingAmount
|
||||||
|
chanPointBob := openChannelAndAssert(
|
||||||
|
ctxt, t, net, net.Bob, carol,
|
||||||
|
lntest.OpenChannelParams{
|
||||||
|
Amt: chanAmt,
|
||||||
|
},
|
||||||
|
)
|
||||||
|
|
||||||
|
// Ensure that Alice has Carol in her routing table before proceeding.
|
||||||
|
nodeInfoReq := &lnrpc.NodeInfoRequest{
|
||||||
|
PubKey: carol.PubKeyStr,
|
||||||
|
}
|
||||||
|
checkTableTimeout := time.After(time.Second * 10)
|
||||||
|
checkTableTicker := time.NewTicker(100 * time.Millisecond)
|
||||||
|
defer checkTableTicker.Stop()
|
||||||
|
|
||||||
|
out:
|
||||||
|
// TODO(roasbeef): make into async hook for node announcements
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-checkTableTicker.C:
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
_, err := net.Alice.GetNodeInfo(ctxt, nodeInfoReq)
|
||||||
|
if err != nil && strings.Contains(err.Error(),
|
||||||
|
"unable to find") {
|
||||||
|
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
break out
|
||||||
|
case <-checkTableTimeout:
|
||||||
|
t.Fatalf("carol's node announcement didn't propagate within " +
|
||||||
|
"the timeout period")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// With the channels, open we can now start to test our multi-hop error
|
||||||
|
// scenarios. First, we'll generate an invoice from carol that we'll
|
||||||
|
// use to test some error cases.
|
||||||
|
const payAmt = 10000
|
||||||
|
invoiceReq := &lnrpc.Invoice{
|
||||||
|
Memo: "kek99",
|
||||||
|
Value: payAmt,
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
carolInvoice, err := carol.AddInvoice(ctxt, invoiceReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to generate carol invoice: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
carolPayReq, err := carol.DecodePayReq(ctxb,
|
||||||
|
&lnrpc.PayReqString{
|
||||||
|
PayReq: carolInvoice.PaymentRequest,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to decode generated payment request: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Before we send the payment, ensure that the announcement of the new
|
||||||
|
// channel has been processed by Alice.
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
if err := net.Alice.WaitForNetworkChannelOpen(ctxt, chanPointBob); err != nil {
|
||||||
|
t.Fatalf("channel not seen by alice before timeout: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// For the first scenario, we'll test the cancellation of an HTLC with
|
||||||
|
// an unknown payment hash.
|
||||||
|
// TODO(roasbeef): return failure response rather than failing entire
|
||||||
|
// stream on payment error.
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
sendReq := &lnrpc.SendRequest{
|
||||||
|
PaymentHashString: hex.EncodeToString(makeFakePayHash(t)),
|
||||||
|
DestString: hex.EncodeToString(carol.PubKey[:]),
|
||||||
|
Amt: payAmt,
|
||||||
|
FinalCltvDelta: int32(carolPayReq.CltvExpiry),
|
||||||
|
}
|
||||||
|
resp, err := net.Alice.SendPaymentSync(ctxt, sendReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to send payment: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// The payment should have resulted in an error since we sent it with the
|
||||||
|
// wrong payment hash.
|
||||||
|
if resp.PaymentError == "" {
|
||||||
|
t.Fatalf("payment should have been rejected due to invalid " +
|
||||||
|
"payment hash")
|
||||||
|
}
|
||||||
|
|
||||||
|
assertLastHTLCError(
|
||||||
|
t, net.Alice,
|
||||||
|
lnrpc.Failure_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS,
|
||||||
|
)
|
||||||
|
|
||||||
|
// The balances of all parties should be the same as initially since
|
||||||
|
// the HTLC was canceled.
|
||||||
|
assertBaseBalance()
|
||||||
|
|
||||||
|
// Next, we'll test the case of a recognized payHash but, an incorrect
|
||||||
|
// value on the extended HTLC.
|
||||||
|
htlcAmt := lnwire.NewMSatFromSatoshis(1000)
|
||||||
|
sendReq = &lnrpc.SendRequest{
|
||||||
|
PaymentHashString: hex.EncodeToString(carolInvoice.RHash),
|
||||||
|
DestString: hex.EncodeToString(carol.PubKey[:]),
|
||||||
|
Amt: int64(htlcAmt.ToSatoshis()), // 10k satoshis are expected.
|
||||||
|
FinalCltvDelta: int32(carolPayReq.CltvExpiry),
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to send payment: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// The payment should fail with an error since we sent 1k satoshis isn't of
|
||||||
|
// 10k as was requested.
|
||||||
|
if resp.PaymentError == "" {
|
||||||
|
t.Fatalf("payment should have been rejected due to wrong " +
|
||||||
|
"HTLC amount")
|
||||||
|
}
|
||||||
|
|
||||||
|
assertLastHTLCError(
|
||||||
|
t, net.Alice,
|
||||||
|
lnrpc.Failure_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS,
|
||||||
|
)
|
||||||
|
|
||||||
|
// The balances of all parties should be the same as initially since
|
||||||
|
// the HTLC was canceled.
|
||||||
|
assertBaseBalance()
|
||||||
|
|
||||||
|
// Next we'll test an error that occurs mid-route due to an outgoing
|
||||||
|
// link having insufficient capacity. In order to do so, we'll first
|
||||||
|
// need to unbalance the link connecting Bob<->Carol.
|
||||||
|
ctx, cancel := context.WithCancel(ctxb)
|
||||||
|
defer cancel()
|
||||||
|
|
||||||
|
bobPayStream, err := net.Bob.SendPayment(ctx)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to create payment stream: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// To do so, we'll push most of the funds in the channel over to
|
||||||
|
// Alice's side, leaving on 10k satoshis of available balance for bob.
|
||||||
|
// There's a max payment amount, so we'll have to do this
|
||||||
|
// incrementally.
|
||||||
|
chanReserve := int64(chanAmt / 100)
|
||||||
|
amtToSend := int64(chanAmt) - chanReserve - 20000
|
||||||
|
amtSent := int64(0)
|
||||||
|
for amtSent != amtToSend {
|
||||||
|
// We'll send in chunks of the max payment amount. If we're
|
||||||
|
// about to send too much, then we'll only send the amount
|
||||||
|
// remaining.
|
||||||
|
toSend := int64(lnd.MaxPaymentMSat.ToSatoshis())
|
||||||
|
if toSend+amtSent > amtToSend {
|
||||||
|
toSend = amtToSend - amtSent
|
||||||
|
}
|
||||||
|
|
||||||
|
invoiceReq = &lnrpc.Invoice{
|
||||||
|
Value: toSend,
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
carolInvoice2, err := carol.AddInvoice(ctxt, invoiceReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to generate carol invoice: %v", err)
|
||||||
|
}
|
||||||
|
if err := bobPayStream.Send(&lnrpc.SendRequest{
|
||||||
|
PaymentRequest: carolInvoice2.PaymentRequest,
|
||||||
|
}); err != nil {
|
||||||
|
t.Fatalf("unable to send payment: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if resp, err := bobPayStream.Recv(); err != nil {
|
||||||
|
t.Fatalf("payment stream has been closed: %v", err)
|
||||||
|
} else if resp.PaymentError != "" {
|
||||||
|
t.Fatalf("bob's payment failed: %v", resp.PaymentError)
|
||||||
|
}
|
||||||
|
|
||||||
|
amtSent += toSend
|
||||||
|
}
|
||||||
|
|
||||||
|
// At this point, Alice has 50mil satoshis on her side of the channel,
|
||||||
|
// but Bob only has 10k available on his side of the channel. So a
|
||||||
|
// payment from Alice to Carol worth 100k satoshis should fail.
|
||||||
|
invoiceReq = &lnrpc.Invoice{
|
||||||
|
Value: 100000,
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
carolInvoice3, err := carol.AddInvoice(ctxt, invoiceReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to generate carol invoice: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
sendReq = &lnrpc.SendRequest{
|
||||||
|
PaymentRequest: carolInvoice3.PaymentRequest,
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to send payment: %v", err)
|
||||||
|
}
|
||||||
|
if resp.PaymentError == "" {
|
||||||
|
t.Fatalf("payment should fail due to insufficient "+
|
||||||
|
"capacity: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
assertLastHTLCError(
|
||||||
|
t, net.Alice, lnrpc.Failure_TEMPORARY_CHANNEL_FAILURE,
|
||||||
|
)
|
||||||
|
|
||||||
|
// Generate new invoice to not pay same invoice twice.
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
carolInvoice, err = carol.AddInvoice(ctxt, invoiceReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to generate carol invoice: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// For our final test, we'll ensure that if a target link isn't
|
||||||
|
// available for what ever reason then the payment fails accordingly.
|
||||||
|
//
|
||||||
|
// We'll attempt to complete the original invoice we created with Carol
|
||||||
|
// above, but before we do so, Carol will go offline, resulting in a
|
||||||
|
// failed payment.
|
||||||
|
shutdownAndAssert(net, t, carol)
|
||||||
|
|
||||||
|
// Reset mission control to forget the temporary channel failure above.
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
_, err = net.Alice.RouterClient.ResetMissionControl(
|
||||||
|
ctxt, &routerrpc.ResetMissionControlRequest{},
|
||||||
|
)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to reset mission control: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
sendReq = &lnrpc.SendRequest{
|
||||||
|
PaymentRequest: carolInvoice.PaymentRequest,
|
||||||
|
}
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
||||||
|
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("unable to send payment: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if resp.PaymentError == "" {
|
||||||
|
t.Fatalf("payment should have failed")
|
||||||
|
}
|
||||||
|
|
||||||
|
assertLastHTLCError(t, net.Alice, lnrpc.Failure_UNKNOWN_NEXT_PEER)
|
||||||
|
|
||||||
|
// Finally, immediately close the channel. This function will also
|
||||||
|
// block until the channel is closed and will additionally assert the
|
||||||
|
// relevant channel closing post conditions.
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout)
|
||||||
|
closeChannelAndAssert(ctxt, t, net, net.Alice, chanPointAlice, false)
|
||||||
|
|
||||||
|
// Force close Bob's final channel.
|
||||||
|
ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout)
|
||||||
|
closeChannelAndAssert(ctxt, t, net, net.Bob, chanPointBob, true)
|
||||||
|
|
||||||
|
// Cleanup by mining the force close and sweep transaction.
|
||||||
|
cleanupForceClose(t, net, net.Bob, chanPointBob)
|
||||||
|
}
|
|
@ -9106,332 +9106,6 @@ func assertNodeNumChannels(t *harnessTest, node *lntest.HarnessNode,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func testHtlcErrorPropagation(net *lntest.NetworkHarness, t *harnessTest) {
|
|
||||||
ctxb := context.Background()
|
|
||||||
|
|
||||||
// In this test we wish to exercise the daemon's correct parsing,
|
|
||||||
// handling, and propagation of errors that occur while processing a
|
|
||||||
// multi-hop payment.
|
|
||||||
const chanAmt = lnd.MaxBtcFundingAmount
|
|
||||||
|
|
||||||
// First establish a channel with a capacity of 0.5 BTC between Alice
|
|
||||||
// and Bob.
|
|
||||||
ctxt, _ := context.WithTimeout(ctxb, channelOpenTimeout)
|
|
||||||
chanPointAlice := openChannelAndAssert(
|
|
||||||
ctxt, t, net, net.Alice, net.Bob,
|
|
||||||
lntest.OpenChannelParams{
|
|
||||||
Amt: chanAmt,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
if err := net.Alice.WaitForNetworkChannelOpen(ctxt, chanPointAlice); err != nil {
|
|
||||||
t.Fatalf("channel not seen by alice before timeout: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
cType, err := channelCommitType(net.Alice, chanPointAlice)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to get channel type: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
commitFee := cType.calcStaticFee(0)
|
|
||||||
assertBaseBalance := func() {
|
|
||||||
balReq := &lnrpc.ChannelBalanceRequest{}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
aliceBal, err := net.Alice.ChannelBalance(ctxt, balReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to get channel balance: %v", err)
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
bobBal, err := net.Bob.ChannelBalance(ctxt, balReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to get channel balance: %v", err)
|
|
||||||
}
|
|
||||||
if aliceBal.Balance != int64(chanAmt-commitFee) {
|
|
||||||
t.Fatalf("alice has an incorrect balance: expected %v got %v",
|
|
||||||
int64(chanAmt-commitFee), aliceBal)
|
|
||||||
}
|
|
||||||
if bobBal.Balance != int64(chanAmt-commitFee) {
|
|
||||||
t.Fatalf("bob has an incorrect balance: expected %v got %v",
|
|
||||||
int64(chanAmt-commitFee), bobBal)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Since we'd like to test some multi-hop failure scenarios, we'll
|
|
||||||
// introduce another node into our test network: Carol.
|
|
||||||
carol, err := net.NewNode("Carol", nil)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to create new nodes: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Next, we'll create a connection from Bob to Carol, and open a
|
|
||||||
// channel between them so we have the topology: Alice -> Bob -> Carol.
|
|
||||||
// The channel created will be of lower capacity that the one created
|
|
||||||
// above.
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
if err := net.ConnectNodes(ctxt, net.Bob, carol); err != nil {
|
|
||||||
t.Fatalf("unable to connect bob to carol: %v", err)
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, channelOpenTimeout)
|
|
||||||
const bobChanAmt = lnd.MaxBtcFundingAmount
|
|
||||||
chanPointBob := openChannelAndAssert(
|
|
||||||
ctxt, t, net, net.Bob, carol,
|
|
||||||
lntest.OpenChannelParams{
|
|
||||||
Amt: chanAmt,
|
|
||||||
},
|
|
||||||
)
|
|
||||||
|
|
||||||
// Ensure that Alice has Carol in her routing table before proceeding.
|
|
||||||
nodeInfoReq := &lnrpc.NodeInfoRequest{
|
|
||||||
PubKey: carol.PubKeyStr,
|
|
||||||
}
|
|
||||||
checkTableTimeout := time.After(time.Second * 10)
|
|
||||||
checkTableTicker := time.NewTicker(100 * time.Millisecond)
|
|
||||||
defer checkTableTicker.Stop()
|
|
||||||
|
|
||||||
out:
|
|
||||||
// TODO(roasbeef): make into async hook for node announcements
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-checkTableTicker.C:
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
_, err := net.Alice.GetNodeInfo(ctxt, nodeInfoReq)
|
|
||||||
if err != nil && strings.Contains(err.Error(),
|
|
||||||
"unable to find") {
|
|
||||||
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
break out
|
|
||||||
case <-checkTableTimeout:
|
|
||||||
t.Fatalf("carol's node announcement didn't propagate within " +
|
|
||||||
"the timeout period")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// With the channels, open we can now start to test our multi-hop error
|
|
||||||
// scenarios. First, we'll generate an invoice from carol that we'll
|
|
||||||
// use to test some error cases.
|
|
||||||
const payAmt = 10000
|
|
||||||
invoiceReq := &lnrpc.Invoice{
|
|
||||||
Memo: "kek99",
|
|
||||||
Value: payAmt,
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
carolInvoice, err := carol.AddInvoice(ctxt, invoiceReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to generate carol invoice: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
carolPayReq, err := carol.DecodePayReq(ctxb,
|
|
||||||
&lnrpc.PayReqString{
|
|
||||||
PayReq: carolInvoice.PaymentRequest,
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to decode generated payment request: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// Before we send the payment, ensure that the announcement of the new
|
|
||||||
// channel has been processed by Alice.
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
if err := net.Alice.WaitForNetworkChannelOpen(ctxt, chanPointBob); err != nil {
|
|
||||||
t.Fatalf("channel not seen by alice before timeout: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// For the first scenario, we'll test the cancellation of an HTLC with
|
|
||||||
// an unknown payment hash.
|
|
||||||
// TODO(roasbeef): return failure response rather than failing entire
|
|
||||||
// stream on payment error.
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
sendReq := &lnrpc.SendRequest{
|
|
||||||
PaymentHashString: hex.EncodeToString(makeFakePayHash(t)),
|
|
||||||
DestString: hex.EncodeToString(carol.PubKey[:]),
|
|
||||||
Amt: payAmt,
|
|
||||||
FinalCltvDelta: int32(carolPayReq.CltvExpiry),
|
|
||||||
}
|
|
||||||
resp, err := net.Alice.SendPaymentSync(ctxt, sendReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to send payment: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// The payment should have resulted in an error since we sent it with the
|
|
||||||
// wrong payment hash.
|
|
||||||
if resp.PaymentError == "" {
|
|
||||||
t.Fatalf("payment should have been rejected due to invalid " +
|
|
||||||
"payment hash")
|
|
||||||
}
|
|
||||||
|
|
||||||
assertLastHTLCError(
|
|
||||||
t, net.Alice,
|
|
||||||
lnrpc.Failure_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS,
|
|
||||||
)
|
|
||||||
|
|
||||||
// The balances of all parties should be the same as initially since
|
|
||||||
// the HTLC was canceled.
|
|
||||||
assertBaseBalance()
|
|
||||||
|
|
||||||
// Next, we'll test the case of a recognized payHash but, an incorrect
|
|
||||||
// value on the extended HTLC.
|
|
||||||
htlcAmt := lnwire.NewMSatFromSatoshis(1000)
|
|
||||||
sendReq = &lnrpc.SendRequest{
|
|
||||||
PaymentHashString: hex.EncodeToString(carolInvoice.RHash),
|
|
||||||
DestString: hex.EncodeToString(carol.PubKey[:]),
|
|
||||||
Amt: int64(htlcAmt.ToSatoshis()), // 10k satoshis are expected.
|
|
||||||
FinalCltvDelta: int32(carolPayReq.CltvExpiry),
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to send payment: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// The payment should fail with an error since we sent 1k satoshis isn't of
|
|
||||||
// 10k as was requested.
|
|
||||||
if resp.PaymentError == "" {
|
|
||||||
t.Fatalf("payment should have been rejected due to wrong " +
|
|
||||||
"HTLC amount")
|
|
||||||
}
|
|
||||||
|
|
||||||
assertLastHTLCError(
|
|
||||||
t, net.Alice,
|
|
||||||
lnrpc.Failure_INCORRECT_OR_UNKNOWN_PAYMENT_DETAILS,
|
|
||||||
)
|
|
||||||
|
|
||||||
// The balances of all parties should be the same as initially since
|
|
||||||
// the HTLC was canceled.
|
|
||||||
assertBaseBalance()
|
|
||||||
|
|
||||||
// Next we'll test an error that occurs mid-route due to an outgoing
|
|
||||||
// link having insufficient capacity. In order to do so, we'll first
|
|
||||||
// need to unbalance the link connecting Bob<->Carol.
|
|
||||||
ctx, cancel := context.WithCancel(ctxb)
|
|
||||||
defer cancel()
|
|
||||||
|
|
||||||
bobPayStream, err := net.Bob.SendPayment(ctx)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to create payment stream: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// To do so, we'll push most of the funds in the channel over to
|
|
||||||
// Alice's side, leaving on 10k satoshis of available balance for bob.
|
|
||||||
// There's a max payment amount, so we'll have to do this
|
|
||||||
// incrementally.
|
|
||||||
chanReserve := int64(chanAmt / 100)
|
|
||||||
amtToSend := int64(chanAmt) - chanReserve - 20000
|
|
||||||
amtSent := int64(0)
|
|
||||||
for amtSent != amtToSend {
|
|
||||||
// We'll send in chunks of the max payment amount. If we're
|
|
||||||
// about to send too much, then we'll only send the amount
|
|
||||||
// remaining.
|
|
||||||
toSend := int64(lnd.MaxPaymentMSat.ToSatoshis())
|
|
||||||
if toSend+amtSent > amtToSend {
|
|
||||||
toSend = amtToSend - amtSent
|
|
||||||
}
|
|
||||||
|
|
||||||
invoiceReq = &lnrpc.Invoice{
|
|
||||||
Value: toSend,
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
carolInvoice2, err := carol.AddInvoice(ctxt, invoiceReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to generate carol invoice: %v", err)
|
|
||||||
}
|
|
||||||
if err := bobPayStream.Send(&lnrpc.SendRequest{
|
|
||||||
PaymentRequest: carolInvoice2.PaymentRequest,
|
|
||||||
}); err != nil {
|
|
||||||
t.Fatalf("unable to send payment: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if resp, err := bobPayStream.Recv(); err != nil {
|
|
||||||
t.Fatalf("payment stream has been closed: %v", err)
|
|
||||||
} else if resp.PaymentError != "" {
|
|
||||||
t.Fatalf("bob's payment failed: %v", resp.PaymentError)
|
|
||||||
}
|
|
||||||
|
|
||||||
amtSent += toSend
|
|
||||||
}
|
|
||||||
|
|
||||||
// At this point, Alice has 50mil satoshis on her side of the channel,
|
|
||||||
// but Bob only has 10k available on his side of the channel. So a
|
|
||||||
// payment from Alice to Carol worth 100k satoshis should fail.
|
|
||||||
invoiceReq = &lnrpc.Invoice{
|
|
||||||
Value: 100000,
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
carolInvoice3, err := carol.AddInvoice(ctxt, invoiceReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to generate carol invoice: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
sendReq = &lnrpc.SendRequest{
|
|
||||||
PaymentRequest: carolInvoice3.PaymentRequest,
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to send payment: %v", err)
|
|
||||||
}
|
|
||||||
if resp.PaymentError == "" {
|
|
||||||
t.Fatalf("payment should fail due to insufficient "+
|
|
||||||
"capacity: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
assertLastHTLCError(
|
|
||||||
t, net.Alice, lnrpc.Failure_TEMPORARY_CHANNEL_FAILURE,
|
|
||||||
)
|
|
||||||
|
|
||||||
// Generate new invoice to not pay same invoice twice.
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
carolInvoice, err = carol.AddInvoice(ctxt, invoiceReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to generate carol invoice: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
// For our final test, we'll ensure that if a target link isn't
|
|
||||||
// available for what ever reason then the payment fails accordingly.
|
|
||||||
//
|
|
||||||
// We'll attempt to complete the original invoice we created with Carol
|
|
||||||
// above, but before we do so, Carol will go offline, resulting in a
|
|
||||||
// failed payment.
|
|
||||||
shutdownAndAssert(net, t, carol)
|
|
||||||
|
|
||||||
// Reset mission control to forget the temporary channel failure above.
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
_, err = net.Alice.RouterClient.ResetMissionControl(
|
|
||||||
ctxt, &routerrpc.ResetMissionControlRequest{},
|
|
||||||
)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to reset mission control: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
sendReq = &lnrpc.SendRequest{
|
|
||||||
PaymentRequest: carolInvoice.PaymentRequest,
|
|
||||||
}
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, defaultTimeout)
|
|
||||||
resp, err = net.Alice.SendPaymentSync(ctxt, sendReq)
|
|
||||||
if err != nil {
|
|
||||||
t.Fatalf("unable to send payment: %v", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
if resp.PaymentError == "" {
|
|
||||||
t.Fatalf("payment should have failed")
|
|
||||||
}
|
|
||||||
|
|
||||||
assertLastHTLCError(t, net.Alice, lnrpc.Failure_UNKNOWN_NEXT_PEER)
|
|
||||||
|
|
||||||
// Finally, immediately close the channel. This function will also
|
|
||||||
// block until the channel is closed and will additionally assert the
|
|
||||||
// relevant channel closing post conditions.
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout)
|
|
||||||
closeChannelAndAssert(ctxt, t, net, net.Alice, chanPointAlice, false)
|
|
||||||
|
|
||||||
// Force close Bob's final channel.
|
|
||||||
ctxt, _ = context.WithTimeout(ctxb, channelCloseTimeout)
|
|
||||||
closeChannelAndAssert(ctxt, t, net, net.Bob, chanPointBob, true)
|
|
||||||
|
|
||||||
// Cleanup by mining the force close and sweep transaction.
|
|
||||||
cleanupForceClose(t, net, net.Bob, chanPointBob)
|
|
||||||
}
|
|
||||||
|
|
||||||
// testRejectHTLC tests that a node can be created with the flag --rejecthtlc.
|
// testRejectHTLC tests that a node can be created with the flag --rejecthtlc.
|
||||||
// This means that the node will reject all forwarded HTLCs but can still
|
// This means that the node will reject all forwarded HTLCs but can still
|
||||||
// accept direct HTLCs as well as send HTLCs.
|
// accept direct HTLCs as well as send HTLCs.
|
||||||
|
|
Loading…
Add table
Reference in a new issue