lnd/lnwire/revoke_and_ack_test.go

35 lines
786 B
Go

package lnwire
import (
"bytes"
"reflect"
"testing"
)
func TestRevokeAndAckEncodeDecode(t *testing.T) {
cr := &RevokeAndAck{
ChannelPoint: *outpoint1,
Revocation: revHash,
NextRevocationKey: pubKey,
NextRevocationHash: revHash,
}
// Next encode the CR message into an empty bytes buffer.
var b bytes.Buffer
if err := cr.Encode(&b, 0); err != nil {
t.Fatalf("unable to encode RevokeAndAck: %v", err)
}
// Deserialize the encoded EG message into a new empty struct.
cr2 := &RevokeAndAck{}
if err := cr2.Decode(&b, 0); err != nil {
t.Fatalf("unable to decode RevokeAndAck: %v", err)
}
// 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)
}
}