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.
88 lines
2.7 KiB
88 lines
2.7 KiB
package consensus
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
msg_pb "github.com/harmony-one/harmony/api/proto/message"
|
|
"github.com/harmony-one/harmony/consensus/quorum"
|
|
"github.com/harmony-one/harmony/crypto/bls"
|
|
"github.com/harmony-one/harmony/internal/ctxerror"
|
|
"github.com/harmony-one/harmony/internal/utils"
|
|
"github.com/harmony-one/harmony/p2p"
|
|
"github.com/harmony-one/harmony/p2p/p2pimpl"
|
|
"github.com/harmony-one/harmony/shard"
|
|
)
|
|
|
|
func TestConstructAnnounceMessage(test *testing.T) {
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "19999"}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
test.Fatalf("newhost failure: %v", err)
|
|
}
|
|
decider := quorum.NewDecider(quorum.SuperMajorityVote)
|
|
consensus, err := New(
|
|
host, shard.BeaconChainShardID, leader, bls.RandPrivateKey(), decider,
|
|
)
|
|
if err != nil {
|
|
test.Fatalf("Cannot create consensus: %v", err)
|
|
}
|
|
consensus.blockHash = [32]byte{}
|
|
if _, err = consensus.construct(msg_pb.MessageType_ANNOUNCE, nil); err != nil {
|
|
test.Fatalf("could not construct announce: %v", err)
|
|
}
|
|
}
|
|
|
|
func TestConstructPreparedMessage(test *testing.T) {
|
|
leaderPriKey := bls.RandPrivateKey()
|
|
leaderPubKey := leaderPriKey.GetPublicKey()
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "19999", ConsensusPubKey: leaderPubKey}
|
|
|
|
validatorPriKey := bls.RandPrivateKey()
|
|
validatorPubKey := leaderPriKey.GetPublicKey()
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
test.Fatalf("newhost failure: %v", err)
|
|
}
|
|
decider := quorum.NewDecider(quorum.SuperMajorityVote)
|
|
consensus, err := New(
|
|
host, shard.BeaconChainShardID, leader, bls.RandPrivateKey(), decider,
|
|
)
|
|
if err != nil {
|
|
test.Fatalf("Cannot craeate consensus: %v", err)
|
|
}
|
|
consensus.ResetState()
|
|
consensus.blockHash = [32]byte{}
|
|
|
|
message := "test string"
|
|
consensus.Decider.SubmitVote(
|
|
quorum.Prepare,
|
|
leaderPubKey,
|
|
leaderPriKey.Sign(message),
|
|
common.BytesToHash(consensus.blockHash[:]),
|
|
)
|
|
consensus.Decider.SubmitVote(
|
|
quorum.Prepare,
|
|
validatorPubKey,
|
|
validatorPriKey.Sign(message),
|
|
common.BytesToHash(consensus.blockHash[:]),
|
|
)
|
|
|
|
// According to RJ these failures are benign.
|
|
if err := consensus.prepareBitmap.SetKey(leaderPubKey, true); err != nil {
|
|
test.Log(ctxerror.New("prepareBitmap.SetKey").WithCause(err))
|
|
}
|
|
if err := consensus.prepareBitmap.SetKey(validatorPubKey, true); err != nil {
|
|
test.Log(ctxerror.New("prepareBitmap.SetKey").WithCause(err))
|
|
}
|
|
|
|
network, err := consensus.construct(msg_pb.MessageType_PREPARED, nil)
|
|
if err != nil {
|
|
test.Errorf("Error when creating prepared message")
|
|
}
|
|
if network.Phase != msg_pb.MessageType_PREPARED {
|
|
test.Error("it did not created prepared message")
|
|
}
|
|
}
|
|
|