bitxhub/pkg/order/mempool/mempool_test_util.go

61 lines
1.5 KiB
Go

package mempool
import (
"time"
"github.com/meshplus/bitxhub-kit/crypto"
"github.com/meshplus/bitxhub-kit/crypto/asym"
"github.com/meshplus/bitxhub-kit/log"
"github.com/meshplus/bitxhub-kit/types"
"github.com/meshplus/bitxhub-model/pb"
raftproto "github.com/meshplus/bitxhub/pkg/order/etcdraft/proto"
)
var (
InterchainContractAddr = types.NewAddressByStr("000000000000000000000000000000000000000a")
)
const (
DefaultTestChainHeight = uint64(1)
DefaultTestBatchSize = uint64(4)
DefaultTestTxSetSize = uint64(1)
)
func mockMempoolImpl() (*mempoolImpl, chan *raftproto.Ready) {
config := &Config{
ID: 1,
ChainHeight: DefaultTestChainHeight,
BatchSize: DefaultTestBatchSize,
PoolSize: DefaultPoolSize,
TxSliceSize: DefaultTestTxSetSize,
BatchTick: DefaultBatchTick,
TxSliceTimeout: DefaultTxSetTick,
Logger: log.NewWithModule("consensus"),
}
proposalC := make(chan *raftproto.Ready)
mempool := newMempoolImpl(config)
return mempool, proposalC
}
func genPrivKey() crypto.PrivateKey {
privKey, _ := asym.GenerateKeyPair(crypto.Secp256k1)
return privKey
}
func constructTx(nonce uint64, privKey *crypto.PrivateKey) *pb.Transaction {
var privK crypto.PrivateKey
if privKey == nil {
privK = genPrivKey()
}
privK = *privKey
pubKey := privK.PublicKey()
addr, _ := pubKey.Address()
tx := &pb.Transaction{Nonce: nonce}
tx.Timestamp = time.Now().UnixNano()
tx.From = addr
sig, _ := privK.Sign(tx.SignHash().Bytes())
tx.Signature = sig
tx.TransactionHash = tx.Hash()
return tx
}