2016-01-05 19:19:22 +03:00
|
|
|
package lnwire
|
|
|
|
|
|
|
|
import (
|
2016-06-21 07:55:07 +03:00
|
|
|
"bytes"
|
|
|
|
"reflect"
|
2016-01-05 19:19:22 +03:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2016-06-21 07:55:07 +03:00
|
|
|
func TestHTLCTimeoutRequestEncodeDecode(t *testing.T) {
|
|
|
|
// First create a new HTLCTR message.
|
|
|
|
timeoutReq := &HTLCTimeoutRequest{
|
|
|
|
ChannelPoint: outpoint1,
|
|
|
|
HTLCKey: 22,
|
2016-01-05 19:19:22 +03:00
|
|
|
}
|
|
|
|
|
2016-06-21 07:55:07 +03:00
|
|
|
// Next encode the HTLCTR message into an empty bytes buffer.
|
|
|
|
var b bytes.Buffer
|
|
|
|
if err := timeoutReq.Encode(&b, 0); err != nil {
|
|
|
|
t.Fatalf("unable to encode HTLCTimeoutRequest: %v", err)
|
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
|
2016-06-21 07:55:07 +03:00
|
|
|
// Deserialize the encoded HTLCTR message into a new empty struct.
|
|
|
|
timeoutReq2 := &HTLCTimeoutRequest{}
|
|
|
|
if err := timeoutReq2.Decode(&b, 0); err != nil {
|
|
|
|
t.Fatalf("unable to decode HTLCTimeoutRequest: %v", err)
|
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
|
2016-06-21 07:55:07 +03:00
|
|
|
// Assert equality of the two instances.
|
|
|
|
if !reflect.DeepEqual(timeoutReq, timeoutReq2) {
|
|
|
|
t.Fatalf("encode/decode error messages don't match %#v vs %#v",
|
|
|
|
timeoutReq, timeoutReq2)
|
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
}
|