lnd.xprv/lnwire/revoke_and_ack_test.go
Olaoluwa Osuntokun 9a61bb3ae1
lnwire: rename CommitRevocation to RevokeAndAck
This commit renames the prior CommitRevocation message to RevokeAndAck
in order to better align the set of wire messages implemented by the
`lnwire` message with those currently defined within the specification.
2017-02-21 01:42:09 -08:00

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)
}
}