Skip to content

Commit

Permalink
htlcswitch test: add fwdinglog inspection on triggered FwdEventTicker
Browse files Browse the repository at this point in the history
  • Loading branch information
halseth committed Sep 25, 2018
1 parent e4469f7 commit e2527b9
Showing 1 changed file with 56 additions and 5 deletions.
61 changes: 56 additions & 5 deletions htlcswitch/switch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"github.com/go-errors/errors"
"github.com/lightningnetwork/lnd/channeldb"
"github.com/lightningnetwork/lnd/lnwire"
"github.com/lightningnetwork/lnd/ticker"
)

func genPreimage() ([32]byte, error) {
Expand Down Expand Up @@ -1835,7 +1836,61 @@ func TestMultiHopPaymentForwardingEvents(t *testing.T) {
n.carolChannelLink,
)
firstHop := n.firstBobChannelLink.ShortChanID()
for i := 0; i < numPayments; i++ {
for i := 0; i < numPayments/2; i++ {
_, err := n.makePayment(
n.aliceServer, n.carolServer, firstHop, hops, finalAmt,
htlcAmt, totalTimelock,
).Wait(30 * time.Second)
if err != nil {
t.Fatalf("unable to send payment: %v", err)
}
}

bobLog, ok := n.bobServer.htlcSwitch.cfg.FwdingLog.(*mockForwardingLog)
if !ok {
t.Fatalf("mockForwardingLog assertion failed")
}

// After sending 5 of the payments, trigger the forwarding ticker, to
// make sure the events are properly flushed.
bobTicker, ok := n.bobServer.htlcSwitch.cfg.FwdEventTicker.(*ticker.Mock)
if !ok {
t.Fatalf("not mock ticker")
}
// We'll trigger the ticker, and wait for the events to appear in Bob's
// forwarding log.
for {

select {
case bobTicker.Force <- time.Now():
case <-time.After(1 * time.Second):
t.Fatalf("unable to force tick")
}

// After the forwarding events are flushed, the mock log should
// send the event signal.
select {
case <-bobLog.eventSignal:
case <-time.After(10 * time.Second):
bobLog.Lock()
t.Fatalf("event signal not received before timeout. "+
"Log: %v", spew.Sdump(bobLog.events))
bobLog.Unlock()

}

// If all 5 events is found in Bob's log, we can break out and
// continue the test.
bobLog.Lock()
if len(bobLog.events) == 5 {
bobLog.Unlock()
break
}
bobLog.Unlock()
}

// Send the remaining payments.
for i := numPayments / 2; i < numPayments; i++ {
_, err := n.makePayment(
n.aliceServer, n.carolServer, firstHop, hops, finalAmt,
htlcAmt, totalTimelock,
Expand Down Expand Up @@ -1874,10 +1929,6 @@ func TestMultiHopPaymentForwardingEvents(t *testing.T) {
}

// Bob on the other hand, should have 10 events.
bobLog, ok := n.bobServer.htlcSwitch.cfg.FwdingLog.(*mockForwardingLog)
if !ok {
t.Fatalf("mockForwardingLog assertion failed")
}
bobLog.Lock()
defer bobLog.Unlock()
if len(bobLog.events) != 10 {
Expand Down

0 comments on commit e2527b9

Please sign in to comment.