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.
50 lines
1.8 KiB
50 lines
1.8 KiB
package consensus
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/harmony-one/harmony/crypto"
|
|
"github.com/harmony-one/harmony/crypto/pki"
|
|
"github.com/harmony-one/harmony/p2p"
|
|
consensus_proto "github.com/harmony-one/harmony/proto/consensus"
|
|
)
|
|
|
|
func TestConstructAnnounceMessage(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{}
|
|
header := consensus.blockHeader
|
|
msg := consensus.constructAnnounceMessage()
|
|
|
|
if len(msg) != 1+1+1+4+32+2+64+len(header) {
|
|
test.Errorf("Annouce message is not constructed in the correct size: %d", len(msg))
|
|
}
|
|
}
|
|
|
|
func TestConstructChallengeMessage(test *testing.T) {
|
|
leaderPriKey := crypto.Ed25519Curve.Scalar()
|
|
priKeyInBytes := crypto.HashSha256("12")
|
|
leaderPriKey.UnmarshalBinary(priKeyInBytes[:])
|
|
leaderPubKey := pki.GetPublicKeyFromScalar(leaderPriKey)
|
|
leader := p2p.Peer{Ip: "1", Port: "2", PubKey: leaderPubKey}
|
|
|
|
validatorPriKey := crypto.Ed25519Curve.Scalar()
|
|
priKeyInBytes = crypto.HashSha256("12")
|
|
validatorPriKey.UnmarshalBinary(priKeyInBytes[:])
|
|
validatorPubKey := pki.GetPublicKeyFromScalar(leaderPriKey)
|
|
validator := p2p.Peer{Ip: "3", Port: "5", PubKey: validatorPubKey}
|
|
|
|
consensus := NewConsensus("1", "2", "0", []p2p.Peer{leader, validator}, leader)
|
|
consensus.blockHash = [32]byte{}
|
|
(*consensus.commitments)[0] = leaderPubKey
|
|
(*consensus.commitments)[1] = validatorPubKey
|
|
consensus.bitmap.SetKey(leaderPubKey, true)
|
|
consensus.bitmap.SetKey(validatorPubKey, true)
|
|
|
|
msg, _, _ := consensus.constructChallengeMessage(consensus_proto.Challenge)
|
|
|
|
if len(msg) != 1+1+1+4+32+2+33+33+32+64 {
|
|
test.Errorf("Annouce message is not constructed in the correct size: %d", len(msg))
|
|
}
|
|
}
|
|
|