bba9b665ef
We now enforce that the site of all revocation pre-images+hashes (used for HTLC’s) are now 32-bytes. Additionally, all payment pre-images are now required to be 32-bytes not he wire. There also exists a Script level enforcement of the payment pre-image size at a lower level. This commit serves to unify the sizes of all hashes/pre-images across the codebase.
41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
package lnwire
|
|
|
|
import (
|
|
"bytes"
|
|
"reflect"
|
|
"testing"
|
|
)
|
|
|
|
func TestHTLCAddRequestEncodeDecode(t *testing.T) {
|
|
redemptionHashes := make([][32]byte, 1)
|
|
redemptionHashes[0] = revHash
|
|
|
|
// First create a new HTLCAR message.
|
|
addReq := &HTLCAddRequest{
|
|
ChannelPoint: outpoint1,
|
|
Expiry: uint32(144),
|
|
Amount: CreditsAmount(123456000),
|
|
ContractType: uint8(17),
|
|
RedemptionHashes: redemptionHashes,
|
|
OnionBlob: []byte{255, 0, 255, 0, 255, 0, 255, 0},
|
|
}
|
|
|
|
// Next encode the HTLCAR message into an empty bytes buffer.
|
|
var b bytes.Buffer
|
|
if err := addReq.Encode(&b, 0); err != nil {
|
|
t.Fatalf("unable to encode HTLCAddRequest: %v", err)
|
|
}
|
|
|
|
// Deserialize the encoded HTLCAR message into a new empty struct.
|
|
addReq2 := &HTLCAddRequest{}
|
|
if err := addReq2.Decode(&b, 0); err != nil {
|
|
t.Fatalf("unable to decode HTLCAddRequest: %v", err)
|
|
}
|
|
|
|
// Assert equality of the two instances.
|
|
if !reflect.DeepEqual(addReq, addReq2) {
|
|
t.Fatalf("encode/decode error messages don't match %#v vs %#v",
|
|
addReq, addReq2)
|
|
}
|
|
}
|