mirror of
https://github.com/lightningnetwork/lnd.git
synced 2024-11-19 01:43:16 +01:00
routing: fix race in TestSendMPPaymentFailed
This commit is contained in:
parent
ebabda6717
commit
46747057c3
@ -591,8 +591,6 @@ func (m *mockPaymentSessionSource) NewPaymentSessionEmpty() PaymentSession {
|
|||||||
|
|
||||||
type mockMissionControl struct {
|
type mockMissionControl struct {
|
||||||
mock.Mock
|
mock.Mock
|
||||||
|
|
||||||
failReason *channeldb.FailureReason
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var _ MissionController = (*mockMissionControl)(nil)
|
var _ MissionController = (*mockMissionControl)(nil)
|
||||||
@ -603,7 +601,13 @@ func (m *mockMissionControl) ReportPaymentFail(
|
|||||||
*channeldb.FailureReason, error) {
|
*channeldb.FailureReason, error) {
|
||||||
|
|
||||||
args := m.Called(paymentID, rt, failureSourceIdx, failure)
|
args := m.Called(paymentID, rt, failureSourceIdx, failure)
|
||||||
return m.failReason, args.Error(1)
|
|
||||||
|
// Type assertion on nil will fail, so we check and return here.
|
||||||
|
if args.Get(0) == nil {
|
||||||
|
return nil, args.Error(1)
|
||||||
|
}
|
||||||
|
|
||||||
|
return args.Get(0).(*channeldb.FailureReason), args.Error(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (m *mockMissionControl) ReportPaymentSuccess(paymentID uint64,
|
func (m *mockMissionControl) ReportPaymentSuccess(paymentID uint64,
|
||||||
|
@ -4023,17 +4023,16 @@ func TestSendMPPaymentFailed(t *testing.T) {
|
|||||||
failureReason := channeldb.FailureReasonPaymentDetails
|
failureReason := channeldb.FailureReasonPaymentDetails
|
||||||
missionControl.On("ReportPaymentFail",
|
missionControl.On("ReportPaymentFail",
|
||||||
mock.Anything, mock.Anything, mock.Anything, mock.Anything,
|
mock.Anything, mock.Anything, mock.Anything, mock.Anything,
|
||||||
).Return(nil, nil).Run(func(args mock.Arguments) {
|
).Return(&failureReason, nil).Run(func(args mock.Arguments) {
|
||||||
// We only return the terminal error once, thus when the method
|
// We only return the terminal error once, thus when the method
|
||||||
// is called, we will return it with a nil error.
|
// is called, we will return it with a nil error.
|
||||||
if called {
|
if called {
|
||||||
missionControl.failReason = nil
|
args[0] = nil
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// If it's the first time calling this method, we will return a
|
// If it's the first time calling this method, we will return a
|
||||||
// terminal error.
|
// terminal error.
|
||||||
missionControl.failReason = &failureReason
|
|
||||||
payment.FailureReason = &failureReason
|
payment.FailureReason = &failureReason
|
||||||
called = true
|
called = true
|
||||||
})
|
})
|
||||||
@ -4213,8 +4212,7 @@ func TestSendMPPaymentFailedWithShardsInFlight(t *testing.T) {
|
|||||||
failureReason := channeldb.FailureReasonPaymentDetails
|
failureReason := channeldb.FailureReasonPaymentDetails
|
||||||
missionControl.On("ReportPaymentFail",
|
missionControl.On("ReportPaymentFail",
|
||||||
mock.Anything, mock.Anything, mock.Anything, mock.Anything,
|
mock.Anything, mock.Anything, mock.Anything, mock.Anything,
|
||||||
).Return(failureReason, nil).Run(func(args mock.Arguments) {
|
).Return(&failureReason, nil).Run(func(args mock.Arguments) {
|
||||||
missionControl.failReason = &failureReason
|
|
||||||
payment.FailureReason = &failureReason
|
payment.FailureReason = &failureReason
|
||||||
}).Once()
|
}).Once()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user