The core protocol of WoopChain
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.
 
 
 
woop/node/node_newblock_test.go

92 lines
2.8 KiB

package node
import (
"strings"
"testing"
"github.com/ethereum/go-ethereum/common"
"github.com/woop-chain/woop/consensus"
"github.com/woop-chain/woop/consensus/quorum"
"github.com/woop-chain/woop/core"
"github.com/woop-chain/woop/core/types"
"github.com/woop-chain/woop/crypto/bls"
"github.com/woop-chain/woop/internal/chain"
nodeconfig "github.com/woop-chain/woop/internal/configs/node"
"github.com/woop-chain/woop/internal/registry"
"github.com/woop-chain/woop/internal/shardchain"
"github.com/woop-chain/woop/internal/utils"
"github.com/woop-chain/woop/multibls"
"github.com/woop-chain/woop/p2p"
"github.com/woop-chain/woop/shard"
staking "github.com/woop-chain/woop/staking/types"
"github.com/stretchr/testify/require"
)
func TestFinalizeNewBlockAsync(t *testing.T) {
blsKey := bls.RandPrivateKey()
pubKey := blsKey.GetPublicKey()
leader := p2p.Peer{IP: "127.0.0.1", Port: "8882", ConsensusPubKey: pubKey}
priKey, _, _ := utils.GenKeyP2P("127.0.0.1", "9902")
host, err := p2p.NewHost(p2p.HostConfig{
Self: &leader,
BLSKey: priKey,
})
if err != nil {
t.Fatalf("newhost failure: %v", err)
}
var testDBFactory = &shardchain.MemDBFactory{}
engine := chain.NewEngine()
chainconfig := nodeconfig.GetShardConfig(shard.BeaconChainShardID).GetNetworkType().ChainConfig()
collection := shardchain.NewCollection(
nil, testDBFactory, &core.GenesisInitializer{NetworkType: nodeconfig.GetShardConfig(shard.BeaconChainShardID).GetNetworkType()}, engine, &chainconfig,
)
blockchain, err := collection.ShardChain(shard.BeaconChainShardID)
require.NoError(t, err)
decider := quorum.NewDecider(
quorum.SuperMajorityVote, shard.BeaconChainShardID,
)
reg := registry.New().
SetBlockchain(blockchain).
SetBeaconchain(blockchain).
SetEngine(engine).
SetShardChainCollection(collection)
consensusObj, err := consensus.New(
host, shard.BeaconChainShardID, multibls.GetPrivateKeys(blsKey), reg, decider, 3, false,
)
if err != nil {
t.Fatalf("Cannot craeate consensus: %v", err)
}
node := New(host, consensusObj, nil, nil, nil, nil, reg)
node.Worker.UpdateCurrent()
txs := make(map[common.Address]types.Transactions)
stks := staking.StakingTransactions{}
node.Worker.CommitTransactions(
txs, stks, common.Address{},
)
commitSigs := make(chan []byte, 1)
commitSigs <- []byte{}
block, _ := node.Worker.FinalizeNewBlock(
commitSigs, func() uint64 { return 0 }, common.Address{}, nil, nil,
)
if err := blockchain.ValidateNewBlock(block, blockchain); err != nil {
t.Error("New block is not verified successfully:", err)
}
node.Blockchain().InsertChain(types.Blocks{block}, false)
node.Worker.UpdateCurrent()
_, err = node.Worker.FinalizeNewBlock(
commitSigs, func() uint64 { return 0 }, common.Address{}, nil, nil,
)
if !strings.Contains(err.Error(), "cannot finalize block") {
t.Error("expect timeout on FinalizeNewBlock")
}
}