2016-01-05 19:19:22 +03:00
|
|
|
package lnwire
|
|
|
|
|
|
|
|
import (
|
2016-05-31 02:49:48 +03:00
|
|
|
"bytes"
|
|
|
|
"reflect"
|
2016-01-05 19:19:22 +03:00
|
|
|
"testing"
|
2017-02-16 15:08:34 +03:00
|
|
|
|
2016-11-24 11:49:18 +03:00
|
|
|
"github.com/roasbeef/btcutil"
|
2016-01-05 19:19:22 +03:00
|
|
|
)
|
|
|
|
|
2017-02-16 15:08:34 +03:00
|
|
|
func TestUpdateAddHTLCEncodeDecode(t *testing.T) {
|
|
|
|
// First create a new UPAH message.
|
|
|
|
addReq := &UpdateAddHTLC{
|
|
|
|
ChannelPoint: *outpoint1,
|
|
|
|
ID: 99,
|
|
|
|
Expiry: uint32(144),
|
|
|
|
Amount: btcutil.Amount(123456000),
|
|
|
|
PaymentHash: revHash,
|
2016-01-05 19:19:22 +03:00
|
|
|
}
|
2017-02-16 15:08:34 +03:00
|
|
|
copy(addReq.OnionBlob[:], bytes.Repeat([]byte{23}, OnionPacketSize))
|
2016-01-05 19:19:22 +03:00
|
|
|
|
2016-05-31 02:49:48 +03:00
|
|
|
// Next encode the HTLCAR message into an empty bytes buffer.
|
|
|
|
var b bytes.Buffer
|
|
|
|
if err := addReq.Encode(&b, 0); err != nil {
|
|
|
|
t.Fatalf("unable to encode HTLCAddRequest: %v", err)
|
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
|
2017-02-16 15:08:34 +03:00
|
|
|
// Deserialize the encoded UPAH message into a new empty struct.
|
|
|
|
addReq2 := &UpdateAddHTLC{}
|
2016-05-31 02:49:48 +03:00
|
|
|
if err := addReq2.Decode(&b, 0); err != nil {
|
|
|
|
t.Fatalf("unable to decode HTLCAddRequest: %v", err)
|
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
|
2016-05-31 02:49:48 +03:00
|
|
|
// Assert equality of the two instances.
|
|
|
|
if !reflect.DeepEqual(addReq, addReq2) {
|
|
|
|
t.Fatalf("encode/decode error messages don't match %#v vs %#v",
|
|
|
|
addReq, addReq2)
|
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
}
|