2016-01-05 19:19:22 +03:00
|
|
|
package lnwire
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2016-01-17 04:14:35 +03:00
|
|
|
// Need to to do this here
|
2016-01-05 19:19:22 +03:00
|
|
|
_ = copy(revocationHash[:], revocationHashBytes)
|
|
|
|
|
|
|
|
commitRevocation = &CommitRevocation{
|
|
|
|
ChannelID: uint64(12345678),
|
|
|
|
CommitmentHeight: uint64(12345),
|
2016-01-17 04:14:35 +03:00
|
|
|
RevocationProof: revocationHash, // technically it's not a hash... fix later
|
2016-01-05 19:19:22 +03:00
|
|
|
}
|
|
|
|
commitRevocationSerializedString = "0000000000bc614e00000000000030394132b6b48371f7b022a16eacb9b2b0ebee134d41"
|
|
|
|
commitRevocationSerializedMessage = "0709110b000007da000000240000000000bc614e00000000000030394132b6b48371f7b022a16eacb9b2b0ebee134d41"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestCommitRevocationEncodeDecode(t *testing.T) {
|
2016-01-17 04:14:35 +03:00
|
|
|
// All of these types being passed are of the message interface type
|
|
|
|
// Test serialization, runs: message.Encode(b, 0)
|
|
|
|
// Returns bytes
|
|
|
|
// Compares the expected serialized string from the original
|
2016-01-05 19:19:22 +03:00
|
|
|
s := SerializeTest(t, commitRevocation, commitRevocationSerializedString, filename)
|
|
|
|
|
2016-01-17 04:14:35 +03:00
|
|
|
// Test deserialization, runs: message.Decode(s, 0)
|
|
|
|
// Makes sure the deserialized struct is the same as the original
|
2016-01-05 19:19:22 +03:00
|
|
|
newMessage := NewCommitRevocation()
|
|
|
|
DeserializeTest(t, s, newMessage, commitRevocation)
|
|
|
|
|
2016-01-17 04:14:35 +03:00
|
|
|
// Test message using Message interface
|
|
|
|
// Serializes into buf: WriteMessage(buf, message, uint32(1), wire.TestNet3)
|
|
|
|
// Deserializes into msg: _, msg, _ , err := ReadMessage(buf, uint32(1), wire.TestNet3)
|
2016-01-05 19:19:22 +03:00
|
|
|
MessageSerializeDeserializeTest(t, commitRevocation, commitRevocationSerializedMessage)
|
|
|
|
}
|