2019-02-13 13:53:32 +03:00
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/lightningnetwork/lnd/channeldb"
|
|
|
|
"github.com/lightningnetwork/lnd/lnwire"
|
2019-04-05 18:36:11 +03:00
|
|
|
"github.com/lightningnetwork/lnd/routing/route"
|
2019-02-13 13:53:32 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestRequestRoute(t *testing.T) {
|
|
|
|
const (
|
|
|
|
height = 10
|
|
|
|
)
|
|
|
|
|
2020-03-17 13:32:07 +03:00
|
|
|
findPath := func(
|
|
|
|
g *graphParams,
|
|
|
|
r *RestrictParams, cfg *PathFindingConfig,
|
|
|
|
source, target route.Vertex, amt lnwire.MilliSatoshi,
|
|
|
|
finalHtlcExpiry int32) ([]*channeldb.ChannelEdgePolicy, error) {
|
2019-02-13 13:53:32 +03:00
|
|
|
|
|
|
|
// We expect find path to receive a cltv limit excluding the
|
2019-07-24 04:00:30 +03:00
|
|
|
// final cltv delta (including the block padding).
|
2019-10-11 22:46:10 +03:00
|
|
|
if r.CltvLimit != 22-uint32(BlockPadding) {
|
2019-02-13 13:53:32 +03:00
|
|
|
t.Fatal("wrong cltv limit")
|
|
|
|
}
|
|
|
|
|
|
|
|
path := []*channeldb.ChannelEdgePolicy{
|
|
|
|
{
|
2019-07-31 07:41:58 +03:00
|
|
|
Node: &channeldb.LightningNode{
|
|
|
|
Features: lnwire.NewFeatureVector(
|
|
|
|
nil, nil,
|
|
|
|
),
|
|
|
|
},
|
2019-02-13 13:53:32 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
return path, nil
|
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:22 +03:00
|
|
|
cltvLimit := uint32(30)
|
|
|
|
finalCltvDelta := uint16(8)
|
|
|
|
|
|
|
|
payment := &LightningPayment{
|
|
|
|
CltvLimit: cltvLimit,
|
|
|
|
FinalCLTVDelta: finalCltvDelta,
|
2020-04-01 01:13:22 +03:00
|
|
|
Amount: 1000,
|
|
|
|
FeeLimit: 1000,
|
2020-04-01 01:13:22 +03:00
|
|
|
}
|
|
|
|
|
2019-06-18 19:30:56 +03:00
|
|
|
session := &paymentSession{
|
2019-08-17 10:58:36 +03:00
|
|
|
getBandwidthHints: func() (map[uint64]lnwire.MilliSatoshi,
|
|
|
|
error) {
|
|
|
|
|
|
|
|
return nil, nil
|
|
|
|
},
|
2020-03-17 13:32:07 +03:00
|
|
|
payment: payment,
|
|
|
|
pathFinder: findPath,
|
|
|
|
missionControl: &MissionControl{
|
|
|
|
cfg: &MissionControlConfig{},
|
|
|
|
},
|
|
|
|
getRoutingGraph: func() (routingGraph, func(), error) {
|
|
|
|
return &sessionGraph{}, func() {}, nil
|
|
|
|
},
|
2019-02-13 13:53:32 +03:00
|
|
|
}
|
|
|
|
|
2020-04-01 01:13:22 +03:00
|
|
|
route, err := session.RequestRoute(
|
|
|
|
payment.Amount, payment.FeeLimit, 0, height,
|
|
|
|
)
|
2019-02-13 13:53:32 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// We expect an absolute route lock value of height + finalCltvDelta
|
2019-07-24 04:00:30 +03:00
|
|
|
// + BlockPadding.
|
|
|
|
if route.TotalTimeLock != 18+uint32(BlockPadding) {
|
2019-02-13 13:53:32 +03:00
|
|
|
t.Fatalf("unexpected total time lock of %v",
|
|
|
|
route.TotalTimeLock)
|
|
|
|
}
|
|
|
|
}
|
2020-03-17 13:32:07 +03:00
|
|
|
|
|
|
|
type sessionGraph struct {
|
|
|
|
routingGraph
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *sessionGraph) sourceNode() route.Vertex {
|
|
|
|
return route.Vertex{}
|
|
|
|
}
|