You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.1 KiB
33 lines
1.1 KiB
package consensus
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/harmony-one/harmony/crypto"
|
|
"github.com/harmony-one/harmony/p2p"
|
|
consensus_proto "github.com/harmony-one/harmony/proto/consensus"
|
|
)
|
|
|
|
func TestConstructCommitMessage(test *testing.T) {
|
|
leader := p2p.Peer{Ip: "1", Port: "2"}
|
|
validator := p2p.Peer{Ip: "3", Port: "5"}
|
|
consensus := NewConsensus("1", "2", "0", []p2p.Peer{leader, validator}, leader)
|
|
consensus.blockHash = [32]byte{}
|
|
_, msg := consensus.constructCommitMessage(consensus_proto.Commit)
|
|
|
|
if len(msg) != 1+1+1+4+32+2+32+64 {
|
|
test.Errorf("Commit message is not constructed in the correct size: %d", len(msg))
|
|
}
|
|
}
|
|
|
|
func TestConstructResponseMessage(test *testing.T) {
|
|
leader := p2p.Peer{Ip: "1", Port: "2"}
|
|
validator := p2p.Peer{Ip: "3", Port: "5"}
|
|
consensus := NewConsensus("1", "2", "0", []p2p.Peer{leader, validator}, leader)
|
|
consensus.blockHash = [32]byte{}
|
|
msg := consensus.constructResponseMessage(consensus_proto.Response, crypto.Ed25519Curve.Scalar())
|
|
|
|
if len(msg) != 1+1+1+4+32+2+32+64 {
|
|
test.Errorf("Response message is not constructed in the correct size: %d", len(msg))
|
|
}
|
|
}
|
|
|