Skip to content

Commit 785e058

Browse files
committed
itest: fix flake in testPaymentFailureReasonCanceled
Fix the case, ``` --- FAIL: TestLightningNetworkDaemon/tranche01/46-of-191/bitcoind/payment_failure_reason_canceled (20.86s) harness.go:2113: Error Trace: /home/runner/work/lnd/lnd/lntest/harness.go:2113 /home/runner/work/lnd/lnd/itest/lnd_payment_test.go:1183 /home/runner/work/lnd/lnd/itest/lnd_payment_test.go:1138 /home/runner/work/lnd/lnd/lntest/harness.go:396 /home/runner/work/lnd/lnd/itest/lnd_test.go:139 Error: err from HTLC interceptor stream Test: TestLightningNetworkDaemon/tranche01/46-of-191/bitcoind/payment_failure_reason_canceled Messages: received err from HTLC interceptor stream: rpc error: code = Unknown desc = interceptor already exists ```
1 parent 2153582 commit 785e058

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

itest/lnd_payment_test.go

+8-9
Original file line numberDiff line numberDiff line change
@@ -1113,12 +1113,16 @@ func testPaymentFailureReasonCanceled(ht *lntest.HarnessTest) {
11131113
// Make sure Alice is aware of channel Bob=>Carol.
11141114
ht.AssertTopologyChannelOpen(alice, cpBC)
11151115

1116+
// Connect the interceptor.
1117+
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
1118+
defer cancelInterceptor()
1119+
11161120
// First we check that the payment is successful when bob resumes the
11171121
// htlc even though the payment context was canceled before invoice
11181122
// settlement.
11191123
sendPaymentInterceptAndCancel(
11201124
ht, ts, cpAB, routerrpc.ResolveHoldForwardAction_RESUME,
1121-
lnrpc.Payment_SUCCEEDED,
1125+
lnrpc.Payment_SUCCEEDED, interceptor,
11221126
)
11231127

11241128
// Next we check that the context cancellation results in the expected
@@ -1128,7 +1132,7 @@ func testPaymentFailureReasonCanceled(ht *lntest.HarnessTest) {
11281132
// htlc fail case before the htlc resume case.
11291133
sendPaymentInterceptAndCancel(
11301134
ht, ts, cpAB, routerrpc.ResolveHoldForwardAction_FAIL,
1131-
lnrpc.Payment_FAILED,
1135+
lnrpc.Payment_FAILED, interceptor,
11321136
)
11331137

11341138
// Finally, close channels.
@@ -1139,14 +1143,12 @@ func testPaymentFailureReasonCanceled(ht *lntest.HarnessTest) {
11391143
func sendPaymentInterceptAndCancel(ht *lntest.HarnessTest,
11401144
ts *interceptorTestScenario, cpAB *lnrpc.ChannelPoint,
11411145
interceptorAction routerrpc.ResolveHoldForwardAction,
1142-
expectedPaymentStatus lnrpc.Payment_PaymentStatus) {
1146+
expectedPaymentStatus lnrpc.Payment_PaymentStatus,
1147+
interceptor rpc.InterceptorClient) {
11431148

11441149
// Prepare the test cases.
11451150
alice, bob, carol := ts.alice, ts.bob, ts.carol
11461151

1147-
// Connect the interceptor.
1148-
interceptor, cancelInterceptor := bob.RPC.HtlcInterceptor()
1149-
11501152
// Prepare the test cases.
11511153
addResponse := carol.RPC.AddInvoice(&lnrpc.Invoice{
11521154
ValueMsat: 1000,
@@ -1208,9 +1210,6 @@ func sendPaymentInterceptAndCancel(ht *lntest.HarnessTest,
12081210
// should've been made, and we observe FAILURE_REASON_CANCELED.
12091211
expectedReason := lnrpc.PaymentFailureReason_FAILURE_REASON_CANCELED
12101212
ht.AssertPaymentFailureReason(alice, preimage, expectedReason)
1211-
1212-
// Cancel the context, which will disconnect the above interceptor.
1213-
cancelInterceptor()
12141213
}
12151214

12161215
// testSendToRouteFailHTLCTimeout is similar to

0 commit comments

Comments
 (0)