routing: use require in router test

This commit refactors some of the tests in router_test.go to use the
require package.
This commit is contained in:
yyforyongyu 2021-04-14 12:58:12 +08:00
parent 8172811e74
commit 54aacacc11
No known key found for this signature in database
GPG Key ID: 9BCD95C4FF296868
3 changed files with 194 additions and 374 deletions

View File

@ -352,11 +352,8 @@ func (m *mockChainView) Stop() error {
func TestEdgeUpdateNotification(t *testing.T) { func TestEdgeUpdateNotification(t *testing.T) {
t.Parallel() t.Parallel()
ctx, cleanUp, err := createTestCtxSingleNode(0) ctx, cleanUp := createTestCtxSingleNode(t, 0)
defer cleanUp() defer cleanUp()
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
// First we'll create the utxo for the channel to be "closed" // First we'll create the utxo for the channel to be "closed"
const chanValue = 10000 const chanValue = 10000
@ -546,11 +543,8 @@ func TestNodeUpdateNotification(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
defer cleanUp() defer cleanUp()
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
// We only accept node announcements from nodes having a known channel, // We only accept node announcements from nodes having a known channel,
// so create one now. // so create one now.
@ -739,11 +733,8 @@ func TestNotificationCancellation(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
defer cleanUp() defer cleanUp()
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
// Create a new client to receive notifications. // Create a new client to receive notifications.
ntfnClient, err := ctx.router.SubscribeTopology() ntfnClient, err := ctx.router.SubscribeTopology()
@ -831,11 +822,8 @@ func TestChannelCloseNotification(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
defer cleanUp() defer cleanUp()
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
// First we'll create the utxo for the channel to be "closed" // First we'll create the utxo for the channel to be "closed"
const chanValue = 10000 const chanValue = 10000

View File

@ -2111,10 +2111,9 @@ func TestPathFindSpecExample(t *testing.T) {
// we'll pass that in to ensure that the router uses 100 as the current // we'll pass that in to ensure that the router uses 100 as the current
// height. // height.
const startingHeight = 100 const startingHeight = 100
ctx, cleanUp, err := createTestCtxFromFile(startingHeight, specExampleFilePath) ctx, cleanUp := createTestCtxFromFile(
if err != nil { t, startingHeight, specExampleFilePath,
t.Fatalf("unable to create router: %v", err) )
}
defer cleanUp() defer cleanUp()
// We'll first exercise the scenario of a direct payment from Bob to // We'll first exercise the scenario of a direct payment from Bob to

View File

@ -61,7 +61,7 @@ func (c *testCtx) getChannelIDFromAlias(t *testing.T, a, b string) uint64 {
return channelID return channelID
} }
func (c *testCtx) RestartRouter() error { func (c *testCtx) RestartRouter(t *testing.T) {
// First, we'll reset the chainView's state as it doesn't persist the // First, we'll reset the chainView's state as it doesn't persist the
// filter between restarts. // filter between restarts.
c.chainView.Reset() c.chainView.Reset()
@ -77,30 +77,26 @@ func (c *testCtx) RestartRouter() error {
ChannelPruneExpiry: time.Hour * 24, ChannelPruneExpiry: time.Hour * 24,
GraphPruneInterval: time.Hour * 2, GraphPruneInterval: time.Hour * 2,
}) })
if err != nil { require.NoError(t, err, "unable to create router")
return fmt.Errorf("unable to create router %v", err) require.NoError(t, router.Start(), "unable to start router")
}
if err := router.Start(); err != nil {
return fmt.Errorf("unable to start router: %v", err)
}
// Finally, we'll swap out the pointer in the testCtx with this fresh // Finally, we'll swap out the pointer in the testCtx with this fresh
// instance of the router. // instance of the router.
c.router = router c.router = router
return nil
} }
func createTestCtxFromGraphInstance(startingHeight uint32, graphInstance *testGraphInstance, func createTestCtxFromGraphInstance(t *testing.T,
strictPruning bool) (*testCtx, func(), error) { startingHeight uint32, graphInstance *testGraphInstance,
strictPruning bool) (*testCtx, func()) {
return createTestCtxFromGraphInstanceAssumeValid( return createTestCtxFromGraphInstanceAssumeValid(
startingHeight, graphInstance, false, strictPruning, t, startingHeight, graphInstance, false, strictPruning,
) )
} }
func createTestCtxFromGraphInstanceAssumeValid(startingHeight uint32, func createTestCtxFromGraphInstanceAssumeValid(t *testing.T,
graphInstance *testGraphInstance, assumeValid bool, startingHeight uint32, graphInstance *testGraphInstance,
strictPruning bool) (*testCtx, func(), error) { assumeValid bool, strictPruning bool) (*testCtx, func()) {
// We'll initialize an instance of the channel router with mock // We'll initialize an instance of the channel router with mock
// versions of the chain and channel notifier. As we don't need to test // versions of the chain and channel notifier. As we don't need to test
@ -126,13 +122,13 @@ func createTestCtxFromGraphInstanceAssumeValid(startingHeight uint32,
graphInstance.graph.Database(), route.Vertex{}, graphInstance.graph.Database(), route.Vertex{},
mcConfig, mcConfig,
) )
if err != nil { require.NoError(t, err, "failed to create missioncontrol")
return nil, nil, err
}
sessionSource := &SessionSource{ sessionSource := &SessionSource{
Graph: graphInstance.graph, Graph: graphInstance.graph,
QueryBandwidth: func(e *channeldb.ChannelEdgeInfo) lnwire.MilliSatoshi { QueryBandwidth: func(
e *channeldb.ChannelEdgeInfo) lnwire.MilliSatoshi {
return lnwire.NewMSatFromSatoshis(e.Capacity) return lnwire.NewMSatFromSatoshis(e.Capacity)
}, },
PathFindingConfig: pathFindingConfig, PathFindingConfig: pathFindingConfig,
@ -149,7 +145,9 @@ func createTestCtxFromGraphInstanceAssumeValid(startingHeight uint32,
SessionSource: sessionSource, SessionSource: sessionSource,
ChannelPruneExpiry: time.Hour * 24, ChannelPruneExpiry: time.Hour * 24,
GraphPruneInterval: time.Hour * 2, GraphPruneInterval: time.Hour * 2,
QueryBandwidth: func(e *channeldb.ChannelEdgeInfo) lnwire.MilliSatoshi { QueryBandwidth: func(
e *channeldb.ChannelEdgeInfo) lnwire.MilliSatoshi {
return lnwire.NewMSatFromSatoshis(e.Capacity) return lnwire.NewMSatFromSatoshis(e.Capacity)
}, },
NextPaymentID: func() (uint64, error) { NextPaymentID: func() (uint64, error) {
@ -161,12 +159,8 @@ func createTestCtxFromGraphInstanceAssumeValid(startingHeight uint32,
AssumeChannelValid: assumeValid, AssumeChannelValid: assumeValid,
StrictZombiePruning: strictPruning, StrictZombiePruning: strictPruning,
}) })
if err != nil { require.NoError(t, err, "unable to create router")
return nil, nil, fmt.Errorf("unable to create router %v", err) require.NoError(t, router.Start(), "unable to start router")
}
if err := router.Start(); err != nil {
return nil, nil, fmt.Errorf("unable to start router: %v", err)
}
ctx := &testCtx{ ctx := &testCtx{
router: router, router: router,
@ -183,10 +177,12 @@ func createTestCtxFromGraphInstanceAssumeValid(startingHeight uint32,
graphInstance.cleanUp() graphInstance.cleanUp()
} }
return ctx, cleanUp, nil return ctx, cleanUp
} }
func createTestCtxSingleNode(startingHeight uint32) (*testCtx, func(), error) { func createTestCtxSingleNode(t *testing.T,
startingHeight uint32) (*testCtx, func()) {
var ( var (
graph *channeldb.ChannelGraph graph *channeldb.ChannelGraph
sourceNode *channeldb.LightningNode sourceNode *channeldb.LightningNode
@ -195,59 +191,52 @@ func createTestCtxSingleNode(startingHeight uint32) (*testCtx, func(), error) {
) )
graph, cleanup, err = makeTestGraph() graph, cleanup, err = makeTestGraph()
if err != nil { require.NoError(t, err, "failed to make test graph")
return nil, nil, fmt.Errorf("unable to create test graph: %v", err)
}
sourceNode, err = createTestNode() sourceNode, err = createTestNode()
if err != nil { require.NoError(t, err, "failed to create test node")
return nil, nil, fmt.Errorf("unable to create source node: %v", err)
} require.NoError(t,
if err = graph.SetSourceNode(sourceNode); err != nil { graph.SetSourceNode(sourceNode), "failed to set source node",
return nil, nil, fmt.Errorf("unable to set source node: %v", err) )
}
graphInstance := &testGraphInstance{ graphInstance := &testGraphInstance{
graph: graph, graph: graph,
cleanUp: cleanup, cleanUp: cleanup,
} }
return createTestCtxFromGraphInstance(startingHeight, graphInstance, false) return createTestCtxFromGraphInstance(
t, startingHeight, graphInstance, false,
)
} }
func createTestCtxFromFile(startingHeight uint32, testGraph string) (*testCtx, func(), error) { func createTestCtxFromFile(t *testing.T,
startingHeight uint32, testGraph string) (*testCtx, func()) {
// We'll attempt to locate and parse out the file // We'll attempt to locate and parse out the file
// that encodes the graph that our tests should be run against. // that encodes the graph that our tests should be run against.
graphInstance, err := parseTestGraph(testGraph) graphInstance, err := parseTestGraph(testGraph)
if err != nil { require.NoError(t, err, "unable to create test graph")
return nil, nil, fmt.Errorf("unable to create test graph: %v", err)
}
return createTestCtxFromGraphInstance(startingHeight, graphInstance, false) return createTestCtxFromGraphInstance(
t, startingHeight, graphInstance, false,
)
} }
// Add valid signature to channel update simulated as error received from the // Add valid signature to channel update simulated as error received from the
// network. // network.
func signErrChanUpdate(key *btcec.PrivateKey, func signErrChanUpdate(t *testing.T, key *btcec.PrivateKey,
errChanUpdate *lnwire.ChannelUpdate) error { errChanUpdate *lnwire.ChannelUpdate) {
chanUpdateMsg, err := errChanUpdate.DataToSign() chanUpdateMsg, err := errChanUpdate.DataToSign()
if err != nil { require.NoError(t, err, "failed to retrieve data to sign")
return err
}
digest := chainhash.DoubleHashB(chanUpdateMsg) digest := chainhash.DoubleHashB(chanUpdateMsg)
sig, err := key.Sign(digest) sig, err := key.Sign(digest)
if err != nil { require.NoError(t, err, "failed to sign msg")
return err
}
errChanUpdate.Signature, err = lnwire.NewSigFromSignature(sig) errChanUpdate.Signature, err = lnwire.NewSigFromSignature(sig)
if err != nil { require.NoError(t, err, "failed to create new signature")
return err
}
return nil
} }
// TestFindRoutesWithFeeLimit asserts that routes found by the FindRoutes method // TestFindRoutesWithFeeLimit asserts that routes found by the FindRoutes method
@ -257,12 +246,9 @@ func TestFindRoutesWithFeeLimit(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile( ctx, cleanUp := createTestCtxFromFile(
startingBlockHeight, basicGraphFilePath, t, startingBlockHeight, basicGraphFilePath,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// This test will attempt to find routes from roasbeef to sophon for 100 // This test will attempt to find routes from roasbeef to sophon for 100
@ -285,25 +271,21 @@ func TestFindRoutesWithFeeLimit(t *testing.T) {
target, paymentAmt, restrictions, nil, nil, target, paymentAmt, restrictions, nil, nil,
MinCLTVDelta, MinCLTVDelta,
) )
if err != nil { require.NoError(t, err, "unable to find any routes")
t.Fatalf("unable to find any routes: %v", err)
}
if route.TotalFees() > restrictions.FeeLimit { require.Falsef(t,
t.Fatalf("route exceeded fee limit: %v", spew.Sdump(route)) route.TotalFees() > restrictions.FeeLimit,
} "route exceeded fee limit: %v", spew.Sdump(route),
)
hops := route.Hops hops := route.Hops
if len(hops) != 2 { require.Equal(t, 2, len(hops), "expected 2 hops")
t.Fatalf("expected 2 hops, got %d", len(hops))
}
if hops[0].PubKeyBytes != ctx.aliases["songoku"] { require.Equalf(t,
ctx.aliases["songoku"], hops[0].PubKeyBytes,
t.Fatalf("expected first hop through songoku, got %s", "expected first hop through songoku, got %s",
getAliasFromPubKey(hops[0].PubKeyBytes, getAliasFromPubKey(hops[0].PubKeyBytes, ctx.aliases),
ctx.aliases)) )
}
} }
// TestSendPaymentRouteFailureFallback tests that when sending a payment, if // TestSendPaymentRouteFailureFallback tests that when sending a payment, if
@ -314,10 +296,9 @@ func TestSendPaymentRouteFailureFallback(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile(startingBlockHeight, basicGraphFilePath) ctx, cleanUp := createTestCtxFromFile(
if err != nil { t, startingBlockHeight, basicGraphFilePath,
t.Fatalf("unable to create router: %v", err) )
}
defer cleanUp() defer cleanUp()
// Craft a LightningPayment struct that'll send a payment from roasbeef // Craft a LightningPayment struct that'll send a payment from roasbeef
@ -361,15 +342,10 @@ func TestSendPaymentRouteFailureFallback(t *testing.T) {
// Send off the payment request to the router, route through pham nuwen // Send off the payment request to the router, route through pham nuwen
// should've been selected as a fall back and succeeded correctly. // should've been selected as a fall back and succeeded correctly.
paymentPreImage, route, err := ctx.router.SendPayment(&payment) paymentPreImage, route, err := ctx.router.SendPayment(&payment)
if err != nil { require.NoError(t, err, "unable to send payment")
t.Fatalf("unable to send payment: %v", err)
}
// The route selected should have two hops // The route selected should have two hops
if len(route.Hops) != 2 { require.Equal(t, 2, len(route.Hops), "incorrect route length")
t.Fatalf("incorrect route length: expected %v got %v", 2,
len(route.Hops))
}
// The preimage should match up with the once created above. // The preimage should match up with the once created above.
if !bytes.Equal(paymentPreImage[:], preImage[:]) { if !bytes.Equal(paymentPreImage[:], preImage[:]) {
@ -378,13 +354,12 @@ func TestSendPaymentRouteFailureFallback(t *testing.T) {
} }
// The route should have pham nuwen as the first hop. // The route should have pham nuwen as the first hop.
if route.Hops[0].PubKeyBytes != ctx.aliases["phamnuwen"] { require.Equalf(t,
ctx.aliases["phamnuwen"], route.Hops[0].PubKeyBytes,
t.Fatalf("route should go through phamnuwen as first hop, "+ "route should go through phamnuwen as first hop, instead "+
"instead passes through: %v", "passes through: %v",
getAliasFromPubKey(route.Hops[0].PubKeyBytes, getAliasFromPubKey(route.Hops[0].PubKeyBytes, ctx.aliases),
ctx.aliases)) )
}
} }
// TestChannelUpdateValidation tests that a failed payment with an associated // TestChannelUpdateValidation tests that a failed payment with an associated
@ -395,55 +370,46 @@ func TestChannelUpdateValidation(t *testing.T) {
// Setup a three node network. // Setup a three node network.
chanCapSat := btcutil.Amount(100000) chanCapSat := btcutil.Amount(100000)
feeRate := lnwire.MilliSatoshi(400)
testChannels := []*testChannel{ testChannels := []*testChannel{
symmetricTestChannel("a", "b", chanCapSat, &testChannelPolicy{ symmetricTestChannel("a", "b", chanCapSat, &testChannelPolicy{
Expiry: 144, Expiry: 144,
FeeRate: 400, FeeRate: feeRate,
MinHTLC: 1, MinHTLC: 1,
MaxHTLC: lnwire.NewMSatFromSatoshis(chanCapSat), MaxHTLC: lnwire.NewMSatFromSatoshis(chanCapSat),
}, 1), }, 1),
symmetricTestChannel("b", "c", chanCapSat, &testChannelPolicy{ symmetricTestChannel("b", "c", chanCapSat, &testChannelPolicy{
Expiry: 144, Expiry: 144,
FeeRate: 400, FeeRate: feeRate,
MinHTLC: 1, MinHTLC: 1,
MaxHTLC: lnwire.NewMSatFromSatoshis(chanCapSat), MaxHTLC: lnwire.NewMSatFromSatoshis(chanCapSat),
}, 2), }, 2),
} }
testGraph, err := createTestGraphFromChannels(testChannels, "a") testGraph, err := createTestGraphFromChannels(testChannels, "a")
require.NoError(t, err, "unable to create graph")
defer testGraph.cleanUp() defer testGraph.cleanUp()
if err != nil {
t.Fatalf("unable to create graph: %v", err)
}
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp := createTestCtxFromGraphInstance(
ctx, cleanUp, err := createTestCtxFromGraphInstance( t, startingBlockHeight, testGraph, true,
startingBlockHeight, testGraph, true,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// Assert that the initially configured fee is retrieved correctly. // Assert that the initially configured fee is retrieved correctly.
_, policy, _, err := ctx.router.GetChannelByID( _, policy, _, err := ctx.router.GetChannelByID(
lnwire.NewShortChanIDFromInt(1)) lnwire.NewShortChanIDFromInt(1))
if err != nil { require.NoError(t, err, "cannot retrieve channel")
t.Fatalf("cannot retrieve channel")
}
if policy.FeeProportionalMillionths != 400 { require.Equal(t,
t.Fatalf("invalid fee") feeRate, policy.FeeProportionalMillionths, "invalid fee",
} )
// Setup a route from source a to destination c. The route will be used // Setup a route from source a to destination c. The route will be used
// in a call to SendToRoute. SendToRoute also applies channel updates, // in a call to SendToRoute. SendToRoute also applies channel updates,
// but it saves us from including RequestRoute in the test scope too. // but it saves us from including RequestRoute in the test scope too.
hop1 := ctx.aliases["b"] hop1 := ctx.aliases["b"]
hop2 := ctx.aliases["c"] hop2 := ctx.aliases["c"]
hops := []*route.Hop{ hops := []*route.Hop{
{ {
ChannelID: 1, ChannelID: 1,
@ -461,9 +427,7 @@ func TestChannelUpdateValidation(t *testing.T) {
lnwire.MilliSatoshi(10000), 100, lnwire.MilliSatoshi(10000), 100,
ctx.aliases["a"], hops, ctx.aliases["a"], hops,
) )
if err != nil { require.NoError(t, err, "unable to create route")
t.Fatalf("unable to create route: %v", err)
}
// Set up a channel update message with an invalid signature to be // Set up a channel update message with an invalid signature to be
// returned to the sender. // returned to the sender.
@ -496,36 +460,19 @@ func TestChannelUpdateValidation(t *testing.T) {
// should be attempted and the channel update should be received by // should be attempted and the channel update should be received by
// router and ignored because it is missing a valid signature. // router and ignored because it is missing a valid signature.
_, err = ctx.router.SendToRoute(payment, rt) _, err = ctx.router.SendToRoute(payment, rt)
if err == nil { require.Error(t, err, "expected route to fail with channel update")
t.Fatalf("expected route to fail with channel update")
}
_, policy, _, err = ctx.router.GetChannelByID( _, policy, _, err = ctx.router.GetChannelByID(
lnwire.NewShortChanIDFromInt(1)) lnwire.NewShortChanIDFromInt(1))
if err != nil { require.NoError(t, err, "cannot retrieve channel")
t.Fatalf("cannot retrieve channel")
}
if policy.FeeProportionalMillionths != 400 { require.Equal(t,
t.Fatalf("fee updated without valid signature") feeRate, policy.FeeProportionalMillionths,
} "fee updated without valid signature",
)
// Next, add a signature to the channel update. // Next, add a signature to the channel update.
chanUpdateMsg, err := errChanUpdate.DataToSign() signErrChanUpdate(t, testGraph.privKeyMap["b"], &errChanUpdate)
if err != nil {
t.Fatal(err)
}
digest := chainhash.DoubleHashB(chanUpdateMsg)
sig, err := testGraph.privKeyMap["b"].Sign(digest)
if err != nil {
t.Fatal(err)
}
errChanUpdate.Signature, err = lnwire.NewSigFromSignature(sig)
if err != nil {
t.Fatal(err)
}
// Retry the payment using the same route as before. // Retry the payment using the same route as before.
_, err = ctx.router.SendToRoute(payment, rt) _, err = ctx.router.SendToRoute(payment, rt)
@ -537,13 +484,12 @@ func TestChannelUpdateValidation(t *testing.T) {
// have been applied to the graph. // have been applied to the graph.
_, policy, _, err = ctx.router.GetChannelByID( _, policy, _, err = ctx.router.GetChannelByID(
lnwire.NewShortChanIDFromInt(1)) lnwire.NewShortChanIDFromInt(1))
if err != nil { require.NoError(t, err, "cannot retrieve channel")
t.Fatalf("cannot retrieve channel")
}
if policy.FeeProportionalMillionths != 500 { require.Equal(t,
t.Fatalf("fee not updated even though signature is valid") lnwire.MilliSatoshi(500), policy.FeeProportionalMillionths,
} "fee not updated even though signature is valid",
)
} }
// TestSendPaymentErrorRepeatedFeeInsufficient tests that if we receive // TestSendPaymentErrorRepeatedFeeInsufficient tests that if we receive
@ -553,12 +499,9 @@ func TestSendPaymentErrorRepeatedFeeInsufficient(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile( ctx, cleanUp := createTestCtxFromFile(
startingBlockHeight, basicGraphFilePath, t, startingBlockHeight, basicGraphFilePath,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// Get the channel ID. // Get the channel ID.
@ -589,9 +532,7 @@ func TestSendPaymentErrorRepeatedFeeInsufficient(t *testing.T) {
_, _, edgeUpdateToFail, err := ctx.graph.FetchChannelEdgesByID( _, _, edgeUpdateToFail, err := ctx.graph.FetchChannelEdgesByID(
songokuSophonChanID, songokuSophonChanID,
) )
if err != nil { require.NoError(t, err, "unable to fetch chan id")
t.Fatalf("unable to fetch chan id: %v", err)
}
errChanUpdate := lnwire.ChannelUpdate{ errChanUpdate := lnwire.ChannelUpdate{
ShortChannelID: lnwire.NewShortChanIDFromInt( ShortChannelID: lnwire.NewShortChanIDFromInt(
@ -607,10 +548,7 @@ func TestSendPaymentErrorRepeatedFeeInsufficient(t *testing.T) {
FeeRate: uint32(edgeUpdateToFail.FeeProportionalMillionths), FeeRate: uint32(edgeUpdateToFail.FeeProportionalMillionths),
} }
err = signErrChanUpdate(ctx.privKeys["songoku"], &errChanUpdate) signErrChanUpdate(t, ctx.privKeys["songoku"], &errChanUpdate)
if err != nil {
t.Fatalf("Failed to sign channel update error: %v ", err)
}
// We'll now modify the SendToSwitch method to return an error for the // We'll now modify the SendToSwitch method to return an error for the
// outgoing channel to Son goku. This will be a fee related error, so // outgoing channel to Son goku. This will be a fee related error, so
@ -636,33 +574,24 @@ func TestSendPaymentErrorRepeatedFeeInsufficient(t *testing.T) {
return preImage, nil return preImage, nil
}) })
// Send off the payment request to the router, route through satoshi // Send off the payment request to the router, route through phamnuwen
// should've been selected as a fall back and succeeded correctly. // should've been selected as a fall back and succeeded correctly.
paymentPreImage, route, err := ctx.router.SendPayment(&payment) paymentPreImage, route, err := ctx.router.SendPayment(&payment)
if err != nil { require.NoError(t, err, "unable to send payment")
t.Fatalf("unable to send payment: %v", err)
}
// The route selected should have two hops // The route selected should have two hops
if len(route.Hops) != 2 { require.Equal(t, 2, len(route.Hops), "incorrect route length")
t.Fatalf("incorrect route length: expected %v got %v", 2,
len(route.Hops))
}
// The preimage should match up with the once created above. // The preimage should match up with the once created above.
if !bytes.Equal(paymentPreImage[:], preImage[:]) { require.Equal(t, preImage[:], paymentPreImage[:], "incorrect preimage")
t.Fatalf("incorrect preimage used: expected %x got %x",
preImage[:], paymentPreImage[:])
}
// The route should have pham nuwen as the first hop. // The route should have pham nuwen as the first hop.
if route.Hops[0].PubKeyBytes != ctx.aliases["phamnuwen"] { require.Equalf(t,
ctx.aliases["phamnuwen"], route.Hops[0].PubKeyBytes,
t.Fatalf("route should go through pham nuwen as first hop, "+ "route should go through pham nuwen as first hop, "+
"instead passes through: %v", "instead passes through: %v",
getAliasFromPubKey(route.Hops[0].PubKeyBytes, getAliasFromPubKey(route.Hops[0].PubKeyBytes, ctx.aliases),
ctx.aliases)) )
}
} }
// TestSendPaymentErrorFeeInsufficientPrivateEdge tests that if we receive // TestSendPaymentErrorFeeInsufficientPrivateEdge tests that if we receive
@ -674,10 +603,9 @@ func TestSendPaymentErrorFeeInsufficientPrivateEdge(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile( ctx, cleanUp := createTestCtxFromFile(
startingBlockHeight, basicGraphFilePath, t, startingBlockHeight, basicGraphFilePath,
) )
require.NoError(t, err, "unable to create router")
defer cleanUp() defer cleanUp()
// Get the channel ID. // Get the channel ID.
@ -731,8 +659,7 @@ func TestSendPaymentErrorFeeInsufficientPrivateEdge(t *testing.T) {
TimeLockDelta: expiryDelta, TimeLockDelta: expiryDelta,
} }
err = signErrChanUpdate(ctx.privKeys["songoku"], &errChanUpdate) signErrChanUpdate(t, ctx.privKeys["songoku"], &errChanUpdate)
require.NoError(t, err, "Failed to sign channel update error")
// We'll now modify the SendToSwitch method to return an error for the // We'll now modify the SendToSwitch method to return an error for the
// outgoing channel to Son goku. This will be a fee related error, so // outgoing channel to Son goku. This will be a fee related error, so
@ -806,10 +733,9 @@ func TestSendPaymentErrorNonFinalTimeLockErrors(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile(startingBlockHeight, basicGraphFilePath) ctx, cleanUp := createTestCtxFromFile(
if err != nil { t, startingBlockHeight, basicGraphFilePath,
t.Fatalf("unable to create router: %v", err) )
}
defer cleanUp() defer cleanUp()
// Craft a LightningPayment struct that'll send a payment from roasbeef // Craft a LightningPayment struct that'll send a payment from roasbeef
@ -834,9 +760,7 @@ func TestSendPaymentErrorNonFinalTimeLockErrors(t *testing.T) {
roasbeefSongoku := lnwire.NewShortChanIDFromInt(chanID) roasbeefSongoku := lnwire.NewShortChanIDFromInt(chanID)
_, _, edgeUpdateToFail, err := ctx.graph.FetchChannelEdgesByID(chanID) _, _, edgeUpdateToFail, err := ctx.graph.FetchChannelEdgesByID(chanID)
if err != nil { require.NoError(t, err, "unable to fetch chan id")
t.Fatalf("unable to fetch chan id: %v", err)
}
errChanUpdate := lnwire.ChannelUpdate{ errChanUpdate := lnwire.ChannelUpdate{
ShortChannelID: lnwire.NewShortChanIDFromInt(chanID), ShortChannelID: lnwire.NewShortChanIDFromInt(chanID),
@ -873,34 +797,29 @@ func TestSendPaymentErrorNonFinalTimeLockErrors(t *testing.T) {
// graph. // graph.
assertExpectedPath := func(retPreImage [32]byte, route *route.Route) { assertExpectedPath := func(retPreImage [32]byte, route *route.Route) {
// The route selected should have two hops // The route selected should have two hops
if len(route.Hops) != 2 { require.Equal(t, 2, len(route.Hops), "incorrect route length")
t.Fatalf("incorrect route length: expected %v got %v", 2,
len(route.Hops))
}
// The preimage should match up with the once created above. // The preimage should match up with the once created above.
if !bytes.Equal(retPreImage[:], preImage[:]) { require.Equal(t,
t.Fatalf("incorrect preimage used: expected %x got %x", preImage[:], retPreImage[:], "incorrect preimage used",
preImage[:], retPreImage[:]) )
}
// The route should have satoshi as the first hop. // The route should have satoshi as the first hop.
if route.Hops[0].PubKeyBytes != ctx.aliases["phamnuwen"] { require.Equalf(t,
ctx.aliases["phamnuwen"], route.Hops[0].PubKeyBytes,
t.Fatalf("route should go through phamnuwen as first hop, "+ "route should go through phamnuwen as first hop, "+
"instead passes through: %v", "instead passes through: %v",
getAliasFromPubKey(route.Hops[0].PubKeyBytes, getAliasFromPubKey(
ctx.aliases)) route.Hops[0].PubKeyBytes, ctx.aliases,
} ),
)
} }
// Send off the payment request to the router, this payment should // Send off the payment request to the router, this payment should
// succeed as we should actually go through Pham Nuwen in order to get // succeed as we should actually go through Pham Nuwen in order to get
// to Sophon, even though he has higher fees. // to Sophon, even though he has higher fees.
paymentPreImage, rt, err := ctx.router.SendPayment(&payment) paymentPreImage, rt, err := ctx.router.SendPayment(&payment)
if err != nil { require.NoError(t, err, "unable to send payment")
t.Fatalf("unable to send payment: %v", err)
}
assertExpectedPath(paymentPreImage, rt) assertExpectedPath(paymentPreImage, rt)
@ -926,9 +845,7 @@ func TestSendPaymentErrorNonFinalTimeLockErrors(t *testing.T) {
// flip a bit in the payment hash to allow resending this payment. // flip a bit in the payment hash to allow resending this payment.
payment.paymentHash[1] ^= 1 payment.paymentHash[1] ^= 1
paymentPreImage, rt, err = ctx.router.SendPayment(&payment) paymentPreImage, rt, err = ctx.router.SendPayment(&payment)
if err != nil { require.NoError(t, err, "unable to send payment")
t.Fatalf("unable to send payment: %v", err)
}
assertExpectedPath(paymentPreImage, rt) assertExpectedPath(paymentPreImage, rt)
} }
@ -940,10 +857,9 @@ func TestSendPaymentErrorPathPruning(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile(startingBlockHeight, basicGraphFilePath) ctx, cleanUp := createTestCtxFromFile(
if err != nil { t, startingBlockHeight, basicGraphFilePath,
t.Fatalf("unable to create router: %v", err) )
}
defer cleanUp() defer cleanUp()
// Craft a LightningPayment struct that'll send a payment from roasbeef // Craft a LightningPayment struct that'll send a payment from roasbeef
@ -999,38 +915,28 @@ func TestSendPaymentErrorPathPruning(t *testing.T) {
// When we try to dispatch that payment, we should receive an error as // When we try to dispatch that payment, we should receive an error as
// both attempts should fail and cause both routes to be pruned. // both attempts should fail and cause both routes to be pruned.
_, _, err = ctx.router.SendPayment(&payment) _, _, err := ctx.router.SendPayment(&payment)
if err == nil { require.Error(t, err, "payment didn't return error")
t.Fatalf("payment didn't return error")
}
// The final error returned should also indicate that the peer wasn't // The final error returned should also indicate that the peer wasn't
// online (the last error we returned). // online (the last error we returned).
if err != channeldb.FailureReasonNoRoute { require.Equal(t, channeldb.FailureReasonNoRoute, err)
t.Fatalf("expected no route instead got: %v", err)
}
// Inspect the two attempts that were made before the payment failed. // Inspect the two attempts that were made before the payment failed.
p, err := ctx.router.cfg.Control.FetchPayment(payHash) p, err := ctx.router.cfg.Control.FetchPayment(payHash)
if err != nil { require.NoError(t, err)
t.Fatal(err)
}
if len(p.HTLCs) != 2 { require.Equal(t, 2, len(p.HTLCs), "expected two attempts")
t.Fatalf("expected two attempts got %v", len(p.HTLCs))
}
// We expect the first attempt to have failed with a // We expect the first attempt to have failed with a
// TemporaryChannelFailure, the second with UnknownNextPeer. // TemporaryChannelFailure, the second with UnknownNextPeer.
msg := p.HTLCs[0].Failure.Message msg := p.HTLCs[0].Failure.Message
if _, ok := msg.(*lnwire.FailTemporaryChannelFailure); !ok { _, ok := msg.(*lnwire.FailTemporaryChannelFailure)
t.Fatalf("unexpected fail message: %T", msg) require.True(t, ok, "unexpected fail message")
}
msg = p.HTLCs[1].Failure.Message msg = p.HTLCs[1].Failure.Message
if _, ok := msg.(*lnwire.FailUnknownNextPeer); !ok { _, ok = msg.(*lnwire.FailUnknownNextPeer)
t.Fatalf("unexpected fail message: %T", msg) require.True(t, ok, "unexpected fail message")
}
ctx.router.cfg.MissionControl.(*MissionControl).ResetHistory() ctx.router.cfg.MissionControl.(*MissionControl).ResetHistory()
@ -1053,26 +959,17 @@ func TestSendPaymentErrorPathPruning(t *testing.T) {
// the pham nuwen channel based on the assumption that there might be an // the pham nuwen channel based on the assumption that there might be an
// intermittent issue with the songoku <-> sophon channel. // intermittent issue with the songoku <-> sophon channel.
paymentPreImage, rt, err := ctx.router.SendPayment(&payment) paymentPreImage, rt, err := ctx.router.SendPayment(&payment)
if err != nil { require.NoError(t, err, "unable send payment")
t.Fatalf("unable send payment: %v", err)
}
// This path should go: roasbeef -> pham nuwen -> sophon // This path should go: roasbeef -> pham nuwen -> sophon
if len(rt.Hops) != 2 { require.Equal(t, 2, len(rt.Hops), "incorrect route length")
t.Fatalf("incorrect route length: expected %v got %v", 2, require.Equal(t, preImage[:], paymentPreImage[:], "incorrect preimage")
len(rt.Hops)) require.Equalf(t,
} ctx.aliases["phamnuwen"], rt.Hops[0].PubKeyBytes,
if !bytes.Equal(paymentPreImage[:], preImage[:]) { "route should go through phamnuwen as first hop, "+
t.Fatalf("incorrect preimage used: expected %x got %x",
preImage[:], paymentPreImage[:])
}
if rt.Hops[0].PubKeyBytes != ctx.aliases["phamnuwen"] {
t.Fatalf("route should go through phamnuwen as first hop, "+
"instead passes through: %v", "instead passes through: %v",
getAliasFromPubKey(rt.Hops[0].PubKeyBytes, getAliasFromPubKey(rt.Hops[0].PubKeyBytes, ctx.aliases),
ctx.aliases)) )
}
ctx.router.cfg.MissionControl.(*MissionControl).ResetHistory() ctx.router.cfg.MissionControl.(*MissionControl).ResetHistory()
@ -1097,31 +994,22 @@ func TestSendPaymentErrorPathPruning(t *testing.T) {
// We flip a bit in the payment hash to allow resending this payment. // We flip a bit in the payment hash to allow resending this payment.
payment.paymentHash[1] ^= 1 payment.paymentHash[1] ^= 1
paymentPreImage, rt, err = ctx.router.SendPayment(&payment) paymentPreImage, rt, err = ctx.router.SendPayment(&payment)
if err != nil { require.NoError(t, err, "unable send payment")
t.Fatalf("unable to send payment: %v", err)
}
// This should succeed finally. The route selected should have two // This should succeed finally. The route selected should have two
// hops. // hops.
if len(rt.Hops) != 2 { require.Equal(t, 2, len(rt.Hops), "incorrect route length")
t.Fatalf("incorrect route length: expected %v got %v", 2,
len(rt.Hops))
}
// The preimage should match up with the once created above. // The preimage should match up with the once created above.
if !bytes.Equal(paymentPreImage[:], preImage[:]) { require.Equal(t, preImage[:], paymentPreImage[:], "incorrect preimage")
t.Fatalf("incorrect preimage used: expected %x got %x",
preImage[:], paymentPreImage[:])
}
// The route should have satoshi as the first hop. // The route should have satoshi as the first hop.
if rt.Hops[0].PubKeyBytes != ctx.aliases["phamnuwen"] { require.Equalf(t,
ctx.aliases["phamnuwen"], rt.Hops[0].PubKeyBytes,
t.Fatalf("route should go through phamnuwen as first hop, "+ "route should go through phamnuwen as first hop, "+
"instead passes through: %v", "instead passes through: %v",
getAliasFromPubKey(rt.Hops[0].PubKeyBytes, getAliasFromPubKey(rt.Hops[0].PubKeyBytes, ctx.aliases),
ctx.aliases)) )
}
} }
// TestAddProof checks that we can update the channel proof after channel // TestAddProof checks that we can update the channel proof after channel
@ -1129,10 +1017,7 @@ func TestSendPaymentErrorPathPruning(t *testing.T) {
func TestAddProof(t *testing.T) { func TestAddProof(t *testing.T) {
t.Parallel() t.Parallel()
ctx, cleanup, err := createTestCtxSingleNode(0) ctx, cleanup := createTestCtxSingleNode(t, 0)
if err != nil {
t.Fatal(err)
}
defer cleanup() defer cleanup()
// Before creating out edge, we'll create two new nodes within the // Before creating out edge, we'll create two new nodes within the
@ -1195,11 +1080,9 @@ func TestIgnoreNodeAnnouncement(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile(startingBlockHeight, ctx, cleanUp := createTestCtxFromFile(
basicGraphFilePath) t, startingBlockHeight, basicGraphFilePath,
if err != nil { )
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
pub := priv1.PubKey() pub := priv1.PubKey()
@ -1214,7 +1097,7 @@ func TestIgnoreNodeAnnouncement(t *testing.T) {
} }
copy(node.PubKeyBytes[:], pub.SerializeCompressed()) copy(node.PubKeyBytes[:], pub.SerializeCompressed())
err = ctx.router.AddNode(node) err := ctx.router.AddNode(node)
if !IsError(err, ErrIgnored) { if !IsError(err, ErrIgnored) {
t.Fatalf("expected to get ErrIgnore, instead got: %v", err) t.Fatalf("expected to get ErrIgnore, instead got: %v", err)
} }
@ -1237,12 +1120,9 @@ func TestIgnoreChannelEdgePolicyForUnknownChannel(t *testing.T) {
} }
defer testGraph.cleanUp() defer testGraph.cleanUp()
ctx, cleanUp, err := createTestCtxFromGraphInstance( ctx, cleanUp := createTestCtxFromGraphInstance(
startingBlockHeight, testGraph, false, t, startingBlockHeight, testGraph, false,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
var pub1 [33]byte var pub1 [33]byte
@ -1310,12 +1190,9 @@ func TestAddEdgeUnknownVertexes(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile( ctx, cleanUp := createTestCtxFromFile(
startingBlockHeight, basicGraphFilePath, t, startingBlockHeight, basicGraphFilePath,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
var pub1 [33]byte var pub1 [33]byte
@ -1581,10 +1458,7 @@ func TestWakeUpOnStaleBranch(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
const chanValue = 10000 const chanValue = 10000
@ -1796,10 +1670,7 @@ func TestDisconnectedBlocks(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
const chanValue = 10000 const chanValue = 10000
@ -1997,10 +1868,7 @@ func TestRouterChansClosedOfflinePruneGraph(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
const chanValue = 10000 const chanValue = 10000
@ -2132,7 +2000,7 @@ func TestRouterChansClosedOfflinePruneGraph(t *testing.T) {
// Now we'll re-start the ChannelRouter. It should recognize that it's // Now we'll re-start the ChannelRouter. It should recognize that it's
// behind the main chain and prune all the blocks that it missed while // behind the main chain and prune all the blocks that it missed while
// it was down. // it was down.
ctx.RestartRouter() ctx.RestartRouter(t)
// At this point, the channel that was pruned should no longer be known // At this point, the channel that was pruned should no longer be known
// by the router. // by the router.
@ -2248,12 +2116,9 @@ func TestPruneChannelGraphStaleEdges(t *testing.T) {
defer testGraph.cleanUp() defer testGraph.cleanUp()
const startingHeight = 100 const startingHeight = 100
ctx, cleanUp, err := createTestCtxFromGraphInstance( ctx, cleanUp := createTestCtxFromGraphInstance(
startingHeight, testGraph, strictPruning, t, startingHeight, testGraph, strictPruning,
) )
if err != nil {
t.Fatalf("unable to create test context: %v", err)
}
defer cleanUp() defer cleanUp()
// All of the channels should exist before pruning them. // All of the channels should exist before pruning them.
@ -2381,12 +2246,9 @@ func testPruneChannelGraphDoubleDisabled(t *testing.T, assumeValid bool) {
defer testGraph.cleanUp() defer testGraph.cleanUp()
const startingHeight = 100 const startingHeight = 100
ctx, cleanUp, err := createTestCtxFromGraphInstanceAssumeValid( ctx, cleanUp := createTestCtxFromGraphInstanceAssumeValid(
startingHeight, testGraph, assumeValid, false, t, startingHeight, testGraph, assumeValid, false,
) )
if err != nil {
t.Fatalf("unable to create test context: %v", err)
}
defer cleanUp() defer cleanUp()
// All the channels should exist within the graph before pruning them // All the channels should exist within the graph before pruning them
@ -2425,10 +2287,9 @@ func TestFindPathFeeWeighting(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile(startingBlockHeight, basicGraphFilePath) ctx, cleanUp := createTestCtxFromFile(
if err != nil { t, startingBlockHeight, basicGraphFilePath,
t.Fatalf("unable to create router: %v", err) )
}
defer cleanUp() defer cleanUp()
var preImage [32]byte var preImage [32]byte
@ -2472,10 +2333,7 @@ func TestIsStaleNode(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// Before we can insert a node in to the database, we need to create a // Before we can insert a node in to the database, we need to create a
@ -2554,10 +2412,7 @@ func TestIsKnownEdge(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxSingleNode(startingBlockHeight) ctx, cleanUp := createTestCtxSingleNode(t, startingBlockHeight)
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// First, we'll create a new channel edge (just the info) and insert it // First, we'll create a new channel edge (just the info) and insert it
@ -2606,11 +2461,9 @@ func TestIsStaleEdgePolicy(t *testing.T) {
t.Parallel() t.Parallel()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromFile(startingBlockHeight, ctx, cleanUp := createTestCtxFromFile(
basicGraphFilePath) t, startingBlockHeight, basicGraphFilePath,
if err != nil { )
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// First, we'll create a new channel edge (just the info) and insert it // First, we'll create a new channel edge (just the info) and insert it
@ -2763,14 +2616,10 @@ func TestUnknownErrorSource(t *testing.T) {
} }
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp := createTestCtxFromGraphInstance(
ctx, cleanUp, err := createTestCtxFromGraphInstance( t, startingBlockHeight, testGraph, false,
startingBlockHeight, testGraph, false,
) )
defer cleanUp() defer cleanUp()
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
// Create a payment to node c. // Create a payment to node c.
var payHash lntypes.Hash var payHash lntypes.Hash
@ -2903,13 +2752,9 @@ func TestSendToRouteStructuredError(t *testing.T) {
defer testGraph.cleanUp() defer testGraph.cleanUp()
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp := createTestCtxFromGraphInstance(
ctx, cleanUp, err := createTestCtxFromGraphInstance( t, startingBlockHeight, testGraph, false,
startingBlockHeight, testGraph, false,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// Set up an init channel for the control tower, such that we can make // Set up an init channel for the control tower, such that we can make
@ -2989,10 +2834,7 @@ func TestSendToRouteStructuredError(t *testing.T) {
func TestSendToRouteMultiShardSend(t *testing.T) { func TestSendToRouteMultiShardSend(t *testing.T) {
t.Parallel() t.Parallel()
ctx, cleanup, err := createTestCtxSingleNode(0) ctx, cleanup := createTestCtxSingleNode(t, 0)
if err != nil {
t.Fatal(err)
}
defer cleanup() defer cleanup()
const numShards = 3 const numShards = 3
@ -3140,12 +2982,9 @@ func TestSendToRouteMaxHops(t *testing.T) {
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromGraphInstance( ctx, cleanUp := createTestCtxFromGraphInstance(
startingBlockHeight, testGraph, false, t, startingBlockHeight, testGraph, false,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
// Create a 30 hop route that exceeds the maximum hop limit. // Create a 30 hop route that exceeds the maximum hop limit.
@ -3254,12 +3093,9 @@ func TestBuildRoute(t *testing.T) {
const startingBlockHeight = 101 const startingBlockHeight = 101
ctx, cleanUp, err := createTestCtxFromGraphInstance( ctx, cleanUp := createTestCtxFromGraphInstance(
startingBlockHeight, testGraph, false, t, startingBlockHeight, testGraph, false,
) )
if err != nil {
t.Fatalf("unable to create router: %v", err)
}
defer cleanUp() defer cleanUp()
checkHops := func(rt *route.Route, expected []uint64, checkHops := func(rt *route.Route, expected []uint64,
@ -3441,10 +3277,7 @@ func assertChanChainRejection(t *testing.T, ctx *testCtx,
func TestChannelOnChainRejectionZombie(t *testing.T) { func TestChannelOnChainRejectionZombie(t *testing.T) {
t.Parallel() t.Parallel()
ctx, cleanup, err := createTestCtxSingleNode(0) ctx, cleanup := createTestCtxSingleNode(t, 0)
if err != nil {
t.Fatal(err)
}
defer cleanup() defer cleanup()
// To start, we'll make an edge for the channel, but we won't add the // To start, we'll make an edge for the channel, but we won't add the