37 lines
868 B
Go
37 lines
868 B
Go
package lnwire
|
|
|
|
import (
|
|
"bytes"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestCommitRevocationEncodeDecode(t *testing.T) {
|
|
copy(revocationHash[:], revocationHashBytes)
|
|
copy(nextHop[:], nextHopBytes)
|
|
|
|
cr := &CommitRevocation{
|
|
ChannelID: uint64(12345678),
|
|
Revocation: revocationHash,
|
|
NextRevocationHash: nextHop,
|
|
}
|
|
|
|
// 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 CommitRevocation: %v", err)
|
|
}
|
|
|
|
// Deserialize the encoded EG message into a new empty struct.
|
|
cr2 := &CommitRevocation{}
|
|
if err := cr2.Decode(&b, 0); err != nil {
|
|
t.Fatalf("unable to decode CommitRevocation: %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)
|
|
}
|
|
}
|