2016-12-05 14:59:36 +03:00
|
|
|
package channeldb
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-09-10 16:34:02 +03:00
|
|
|
"errors"
|
2016-12-05 14:59:36 +03:00
|
|
|
"fmt"
|
2019-10-12 10:47:45 +03:00
|
|
|
"math/rand"
|
2016-12-21 12:19:01 +03:00
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
"time"
|
2016-12-31 03:32:20 +03:00
|
|
|
|
2019-05-08 16:00:19 +03:00
|
|
|
"github.com/btcsuite/btcd/btcec"
|
2016-12-31 03:32:20 +03:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
2019-05-23 21:05:27 +03:00
|
|
|
"github.com/lightningnetwork/lnd/lntypes"
|
2019-11-05 01:11:28 +03:00
|
|
|
"github.com/lightningnetwork/lnd/record"
|
2019-05-08 16:00:19 +03:00
|
|
|
"github.com/lightningnetwork/lnd/routing/route"
|
2019-07-31 07:44:50 +03:00
|
|
|
"github.com/lightningnetwork/lnd/tlv"
|
2019-05-08 16:00:19 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
priv, _ = btcec.NewPrivateKey(btcec.S256())
|
|
|
|
pub = priv.PubKey()
|
|
|
|
|
2019-07-31 07:44:50 +03:00
|
|
|
tlvBytes = []byte{1, 2, 3}
|
|
|
|
tlvEncoder = tlv.StubEncoder(tlvBytes)
|
|
|
|
testHop1 = &route.Hop{
|
2019-05-08 16:00:19 +03:00
|
|
|
PubKeyBytes: route.NewVertex(pub),
|
|
|
|
ChannelID: 12345,
|
|
|
|
OutgoingTimeLock: 111,
|
|
|
|
AmtToForward: 555,
|
2019-07-31 07:44:50 +03:00
|
|
|
TLVRecords: []tlv.Record{
|
|
|
|
tlv.MakeStaticRecord(1, nil, 3, tlvEncoder, nil),
|
|
|
|
tlv.MakeStaticRecord(2, nil, 3, tlvEncoder, nil),
|
|
|
|
},
|
2019-11-05 01:11:28 +03:00
|
|
|
MPP: record.NewMPP(32, [32]byte{0x42}),
|
2019-07-31 07:44:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
testHop2 = &route.Hop{
|
|
|
|
PubKeyBytes: route.NewVertex(pub),
|
|
|
|
ChannelID: 12345,
|
|
|
|
OutgoingTimeLock: 111,
|
|
|
|
AmtToForward: 555,
|
|
|
|
LegacyPayload: true,
|
2019-05-08 16:00:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
testRoute = route.Route{
|
|
|
|
TotalTimeLock: 123,
|
|
|
|
TotalAmount: 1234567,
|
|
|
|
SourcePubKey: route.NewVertex(pub),
|
|
|
|
Hops: []*route.Hop{
|
2019-07-31 07:44:50 +03:00
|
|
|
testHop2,
|
2019-11-05 01:11:28 +03:00
|
|
|
testHop1,
|
2019-05-08 16:00:19 +03:00
|
|
|
},
|
|
|
|
}
|
2016-12-05 14:59:36 +03:00
|
|
|
)
|
|
|
|
|
2019-05-23 21:05:27 +03:00
|
|
|
func makeFakeInfo() (*PaymentCreationInfo, *PaymentAttemptInfo) {
|
|
|
|
var preimg lntypes.Preimage
|
|
|
|
copy(preimg[:], rev[:])
|
|
|
|
|
|
|
|
c := &PaymentCreationInfo{
|
|
|
|
PaymentHash: preimg.Hash(),
|
|
|
|
Value: 1000,
|
|
|
|
// Use single second precision to avoid false positive test
|
|
|
|
// failures due to the monotonic time component.
|
|
|
|
CreationDate: time.Unix(time.Now().Unix(), 0),
|
|
|
|
PaymentRequest: []byte(""),
|
|
|
|
}
|
|
|
|
|
|
|
|
a := &PaymentAttemptInfo{
|
|
|
|
PaymentID: 44,
|
|
|
|
SessionKey: priv,
|
|
|
|
Route: testRoute,
|
|
|
|
}
|
|
|
|
return c, a
|
|
|
|
}
|
|
|
|
|
2019-10-12 10:47:45 +03:00
|
|
|
// randomBytes creates random []byte with length in range [minLen, maxLen)
|
|
|
|
func randomBytes(minLen, maxLen int) ([]byte, error) {
|
|
|
|
randBuf := make([]byte, minLen+rand.Intn(maxLen-minLen))
|
|
|
|
|
|
|
|
if _, err := rand.Read(randBuf); err != nil {
|
|
|
|
return nil, fmt.Errorf("Internal error. "+
|
|
|
|
"Cannot generate random string: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return randBuf, nil
|
|
|
|
}
|
|
|
|
|
2019-05-23 21:05:27 +03:00
|
|
|
func TestSentPaymentSerialization(t *testing.T) {
|
2017-06-17 01:59:20 +03:00
|
|
|
t.Parallel()
|
|
|
|
|
2019-05-23 21:05:27 +03:00
|
|
|
c, s := makeFakeInfo()
|
2016-12-31 03:32:20 +03:00
|
|
|
|
|
|
|
var b bytes.Buffer
|
2019-05-23 21:05:27 +03:00
|
|
|
if err := serializePaymentCreationInfo(&b, c); err != nil {
|
|
|
|
t.Fatalf("unable to serialize creation info: %v", err)
|
2016-12-05 14:59:36 +03:00
|
|
|
}
|
2016-12-21 12:19:01 +03:00
|
|
|
|
2019-05-23 21:05:27 +03:00
|
|
|
newCreationInfo, err := deserializePaymentCreationInfo(&b)
|
2016-12-05 14:59:36 +03:00
|
|
|
if err != nil {
|
2019-05-23 21:05:27 +03:00
|
|
|
t.Fatalf("unable to deserialize creation info: %v", err)
|
2016-12-05 14:59:36 +03:00
|
|
|
}
|
2016-12-21 12:19:01 +03:00
|
|
|
|
2019-05-23 21:05:27 +03:00
|
|
|
if !reflect.DeepEqual(c, newCreationInfo) {
|
2016-12-21 12:19:01 +03:00
|
|
|
t.Fatalf("Payments do not match after "+
|
|
|
|
"serialization/deserialization %v vs %v",
|
2019-05-23 21:05:27 +03:00
|
|
|
spew.Sdump(c), spew.Sdump(newCreationInfo),
|
2016-12-05 14:59:36 +03:00
|
|
|
)
|
|
|
|
}
|
2019-05-23 21:05:27 +03:00
|
|
|
|
|
|
|
b.Reset()
|
|
|
|
if err := serializePaymentAttemptInfo(&b, s); err != nil {
|
|
|
|
t.Fatalf("unable to serialize info: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
newAttemptInfo, err := deserializePaymentAttemptInfo(&b)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("unable to deserialize info: %v", err)
|
|
|
|
}
|
|
|
|
|
2019-08-23 22:50:25 +03:00
|
|
|
// First we verify all the records match up porperly, as they aren't
|
|
|
|
// able to be properly compared using reflect.DeepEqual.
|
2019-09-10 16:34:02 +03:00
|
|
|
err = assertRouteEqual(&s.Route, &newAttemptInfo.Route)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Routes do not match after "+
|
|
|
|
"serialization/deserialization: %v", err)
|
|
|
|
}
|
2019-08-23 22:50:25 +03:00
|
|
|
|
2019-09-10 16:34:02 +03:00
|
|
|
// Clear routes to allow DeepEqual to compare the remaining fields.
|
|
|
|
newAttemptInfo.Route = route.Route{}
|
|
|
|
s.Route = route.Route{}
|
2019-08-23 22:50:25 +03:00
|
|
|
|
2019-05-23 21:05:27 +03:00
|
|
|
if !reflect.DeepEqual(s, newAttemptInfo) {
|
2019-07-31 07:44:50 +03:00
|
|
|
s.SessionKey.Curve = nil
|
|
|
|
newAttemptInfo.SessionKey.Curve = nil
|
2019-05-23 21:05:27 +03:00
|
|
|
t.Fatalf("Payments do not match after "+
|
|
|
|
"serialization/deserialization %v vs %v",
|
|
|
|
spew.Sdump(s), spew.Sdump(newAttemptInfo),
|
|
|
|
)
|
|
|
|
}
|
2019-09-10 16:34:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// assertRouteEquals compares to routes for equality and returns an error if
|
|
|
|
// they are not equal.
|
|
|
|
func assertRouteEqual(a, b *route.Route) error {
|
|
|
|
err := assertRouteHopRecordsEqual(a, b)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-05-23 21:05:27 +03:00
|
|
|
|
2019-09-10 16:34:02 +03:00
|
|
|
// TLV records have already been compared and need to be cleared to
|
|
|
|
// properly compare the remaining fields using DeepEqual.
|
|
|
|
copyRouteNoHops := func(r *route.Route) *route.Route {
|
|
|
|
copy := *r
|
|
|
|
copy.Hops = make([]*route.Hop, len(r.Hops))
|
|
|
|
for i, hop := range r.Hops {
|
|
|
|
hopCopy := *hop
|
|
|
|
hopCopy.TLVRecords = nil
|
|
|
|
copy.Hops[i] = &hopCopy
|
|
|
|
}
|
|
|
|
return ©
|
|
|
|
}
|
2019-05-23 21:05:27 +03:00
|
|
|
|
2019-09-10 16:34:02 +03:00
|
|
|
if !reflect.DeepEqual(copyRouteNoHops(a), copyRouteNoHops(b)) {
|
|
|
|
return fmt.Errorf("PaymentAttemptInfos don't match: %v vs %v",
|
|
|
|
spew.Sdump(a), spew.Sdump(b))
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2016-12-05 14:59:36 +03:00
|
|
|
}
|
|
|
|
|
2019-07-31 07:44:50 +03:00
|
|
|
func assertRouteHopRecordsEqual(r1, r2 *route.Route) error {
|
2019-09-10 16:40:10 +03:00
|
|
|
if len(r1.Hops) != len(r2.Hops) {
|
|
|
|
return errors.New("route hop count mismatch")
|
|
|
|
}
|
|
|
|
|
2019-07-31 07:44:50 +03:00
|
|
|
for i := 0; i < len(r1.Hops); i++ {
|
2019-09-10 16:40:10 +03:00
|
|
|
records1 := r1.Hops[i].TLVRecords
|
|
|
|
records2 := r2.Hops[i].TLVRecords
|
|
|
|
if len(records1) != len(records2) {
|
|
|
|
return fmt.Errorf("route record count for hop %v "+
|
|
|
|
"mismatch", i)
|
|
|
|
}
|
|
|
|
|
|
|
|
for j := 0; j < len(records1); j++ {
|
|
|
|
expectedRecord := records1[j]
|
|
|
|
newRecord := records2[j]
|
2019-07-31 07:44:50 +03:00
|
|
|
|
|
|
|
err := assertHopRecordsEqual(expectedRecord, newRecord)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("route record mismatch: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func assertHopRecordsEqual(h1, h2 tlv.Record) error {
|
|
|
|
if h1.Type() != h2.Type() {
|
|
|
|
return fmt.Errorf("wrong type: expected %v, got %v", h1.Type(),
|
|
|
|
h2.Type())
|
|
|
|
}
|
|
|
|
|
|
|
|
var b bytes.Buffer
|
|
|
|
if err := h2.Encode(&b); err != nil {
|
|
|
|
return fmt.Errorf("unable to encode record: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !bytes.Equal(b.Bytes(), tlvBytes) {
|
|
|
|
return fmt.Errorf("wrong raw record: expected %x, got %x",
|
|
|
|
tlvBytes, b.Bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
if h1.Size() != h2.Size() {
|
|
|
|
return fmt.Errorf("wrong size: expected %v, "+
|
|
|
|
"got %v", h1.Size(), h2.Size())
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-05-08 16:00:19 +03:00
|
|
|
func TestRouteSerialization(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
var b bytes.Buffer
|
2019-06-14 16:01:48 +03:00
|
|
|
if err := SerializeRoute(&b, testRoute); err != nil {
|
2019-05-08 16:00:19 +03:00
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
r := bytes.NewReader(b.Bytes())
|
2019-06-14 16:01:48 +03:00
|
|
|
route2, err := DeserializeRoute(r)
|
2019-05-08 16:00:19 +03:00
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2019-07-31 07:44:50 +03:00
|
|
|
// First we verify all the records match up porperly, as they aren't
|
|
|
|
// able to be properly compared using reflect.DeepEqual.
|
2019-09-10 16:34:02 +03:00
|
|
|
err = assertRouteEqual(&testRoute, &route2)
|
2019-07-31 07:44:50 +03:00
|
|
|
if err != nil {
|
2019-05-08 16:00:19 +03:00
|
|
|
t.Fatalf("routes not equal: \n%v vs \n%v",
|
|
|
|
spew.Sdump(testRoute), spew.Sdump(route2))
|
|
|
|
}
|
|
|
|
}
|