lnd.xprv/lnwire/error_test.go
Olaoluwa Osuntokun d17b11862b
lnwire: convert ErrorGeneric to Error
With this change we move one step closer to matching the wire protocol
currently defined within the spec.
2017-04-16 15:23:45 -07:00

34 lines
722 B
Go

package lnwire
import (
"bytes"
"reflect"
"testing"
)
func TestErrorEncodeDecode(t *testing.T) {
eg := &Error{
ChanID: ChannelID(revHash),
Code: 99,
Data: []byte{'k', 'e', 'k'},
}
// Next encode the error message into an empty bytes buffer.
var b bytes.Buffer
if err := eg.Encode(&b, 0); err != nil {
t.Fatalf("unable to encode ErrorGeneric: %v", err)
}
// Deserialize the encoded error message into a new empty struct.
eg2 := &Error{}
if err := eg2.Decode(&b, 0); err != nil {
t.Fatalf("unable to decode ErrorGeneric: %v", err)
}
// Assert equality of the two instances.
if !reflect.DeepEqual(eg, eg2) {
t.Fatalf("encode/decode error messages don't match %#v vs %#v",
eg, eg2)
}
}