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.
44 lines
1.3 KiB
44 lines
1.3 KiB
package consensus
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/harmony-one/harmony/p2p/p2pimpl"
|
|
|
|
"github.com/harmony-one/harmony/internal/utils"
|
|
"github.com/harmony-one/harmony/p2p"
|
|
)
|
|
|
|
func TestConstructPrepareMessage(test *testing.T) {
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "9992"}
|
|
validator := p2p.Peer{IP: "127.0.0.1", Port: "9995"}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
test.Fatalf("newhost failure: %v", err)
|
|
}
|
|
consensus := New(host, "0", []p2p.Peer{leader, validator}, leader)
|
|
consensus.blockHash = [32]byte{}
|
|
msg := consensus.constructPrepareMessage()
|
|
|
|
if len(msg) != 93 {
|
|
test.Errorf("Prepare message is not constructed in the correct size: %d", len(msg))
|
|
}
|
|
}
|
|
|
|
func TestConstructCommitMessage(test *testing.T) {
|
|
leader := p2p.Peer{IP: "127.0.0.1", Port: "9902"}
|
|
validator := p2p.Peer{IP: "127.0.0.1", Port: "9905"}
|
|
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
|
|
host, err := p2pimpl.NewHost(&leader, priKey)
|
|
if err != nil {
|
|
test.Fatalf("newhost failure: %v", err)
|
|
}
|
|
consensus := New(host, "0", []p2p.Peer{leader, validator}, leader)
|
|
consensus.blockHash = [32]byte{}
|
|
msg := consensus.constructCommitMessage([]byte("random string"))
|
|
|
|
if len(msg) != 143 {
|
|
test.Errorf("Commit message is not constructed in the correct size: %d", len(msg))
|
|
}
|
|
}
|
|
|