6c7880ef76
This commit modifies most of the wire messages to uniquely identify any *active* channels by their funding output. This allows the wire protocol to support funding transactions which open several channels in parallel. Any pending channels created by partial completion of the funding workflow are to be identified by a uint64 initialized by both sides as follows: the initiator of the connection starts from 0, while the listening node starts from (1 << 63). These pending channel identifiers are expected to be monotonically increasing with each new funding workflow between two nodes. This identifier is volatile w.r.t to each connection initiation.
36 lines
800 B
Go
36 lines
800 B
Go
package lnwire
|
|
|
|
import (
|
|
"bytes"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/roasbeef/btcutil"
|
|
)
|
|
|
|
func TestCloseRequestEncodeDecode(t *testing.T) {
|
|
cr := &CloseRequest{
|
|
ChannelPoint: outpoint1,
|
|
RequesterCloseSig: commitSig,
|
|
Fee: btcutil.Amount(10000),
|
|
}
|
|
|
|
// 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 CloseRequest: %v", err)
|
|
}
|
|
|
|
// Deserialize the encoded CR message into a new empty struct.
|
|
cr2 := &CloseRequest{}
|
|
if err := cr2.Decode(&b, 0); err != nil {
|
|
t.Fatalf("unable to decode CloseRequest: %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)
|
|
}
|
|
}
|