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-10 02:28:32 +03:00
|
|
|
func TestRevokeAndAckEncodeDecode(t *testing.T) {
|
|
|
|
cr := &RevokeAndAck{
|
|
|
|
ChannelPoint: *outpoint1,
|
2016-06-30 21:59:40 +03:00
|
|
|
Revocation: revHash,
|
|
|
|
NextRevocationKey: pubKey,
|
|
|
|
NextRevocationHash: revHash,
|
2016-01-05 19:19:22 +03:00
|
|
|
}
|
|
|
|
|
2016-05-31 02:49:48 +03:00
|
|
|
// Next encode the CR message into an empty bytes buffer.
|
|
|
|
var b bytes.Buffer
|
|
|
|
if err := cr.Encode(&b, 0); err != nil {
|
2017-02-10 02:28:32 +03:00
|
|
|
t.Fatalf("unable to encode RevokeAndAck: %v", err)
|
2016-05-31 02:49:48 +03:00
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
|
2016-05-31 02:49:48 +03:00
|
|
|
// Deserialize the encoded EG message into a new empty struct.
|
2017-02-10 02:28:32 +03:00
|
|
|
cr2 := &RevokeAndAck{}
|
2016-05-31 02:49:48 +03:00
|
|
|
if err := cr2.Decode(&b, 0); err != nil {
|
2017-02-10 02:28:32 +03:00
|
|
|
t.Fatalf("unable to decode RevokeAndAck: %v", err)
|
2016-05-31 02:49:48 +03:00
|
|
|
}
|
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(cr, cr2) {
|
|
|
|
t.Fatalf("encode/decode error messages don't match %#v vs %#v",
|
|
|
|
cr, cr2)
|
|
|
|
}
|
2016-01-05 19:19:22 +03:00
|
|
|
}
|