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"
|
|
|
|
)
|
|
|
|
|
2016-05-31 02:49:48 +03:00
|
|
|
func TestCommitRevocationEncodeDecode(t *testing.T) {
|
|
|
|
cr := &CommitRevocation{
|
2016-06-21 07:55:07 +03:00
|
|
|
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 {
|
|
|
|
t.Fatalf("unable to encode CommitRevocation: %v", err)
|
|
|
|
}
|
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.
|
|
|
|
cr2 := &CommitRevocation{}
|
|
|
|
if err := cr2.Decode(&b, 0); err != nil {
|
|
|
|
t.Fatalf("unable to decode CommitRevocation: %v", err)
|
|
|
|
}
|
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
|
|
|
}
|