cosmos-sdk/x/bank/bench_test.go

77 lines
2.3 KiB
Go
Raw Normal View History

package bank_test
import (
"testing"
abci "github.com/tendermint/tendermint/abci/types"
2019-08-19 06:29:17 -07:00
"github.com/cosmos/cosmos-sdk/simapp"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth"
authexported "github.com/cosmos/cosmos-sdk/x/auth/exported"
2019-08-19 06:29:17 -07:00
"github.com/cosmos/cosmos-sdk/x/staking"
"github.com/cosmos/cosmos-sdk/x/supply"
)
2019-08-19 06:29:17 -07:00
var moduleAccAddr = supply.NewModuleAddress(staking.BondedPoolName)
func BenchmarkOneBankSendTxPerBlock(b *testing.B) {
// Add an account at genesis
acc := auth.BaseAccount{
Address: addr1,
// Some value conceivably higher than the benchmarks would ever go
2018-07-30 17:09:50 -07:00
Coins: sdk.Coins{sdk.NewInt64Coin("foocoin", 100000000000)},
}
// Construct genesis state
genAccs := []authexported.GenesisAccount{&acc}
2019-08-19 06:29:17 -07:00
benchmarkApp := simapp.SetupWithGenesisAccounts(genAccs)
// Precompute all txs
2019-08-19 06:29:17 -07:00
txs := simapp.GenSequenceOfTxs([]sdk.Msg{sendMsg1}, []uint64{0}, []uint64{uint64(0)}, b.N, priv1)
b.ResetTimer()
// Run this with a profiler, so its easy to distinguish what time comes from
// Committing, and what time comes from Check/Deliver Tx.
for i := 0; i < b.N; i++ {
benchmarkApp.BeginBlock(abci.RequestBeginBlock{})
_, _, err := benchmarkApp.Check(txs[i])
if err != nil {
panic("something is broken in checking transaction")
}
benchmarkApp.Deliver(txs[i])
benchmarkApp.EndBlock(abci.RequestEndBlock{})
benchmarkApp.Commit()
}
}
func BenchmarkOneBankMultiSendTxPerBlock(b *testing.B) {
// Add an account at genesis
acc := auth.BaseAccount{
Address: addr1,
// Some value conceivably higher than the benchmarks would ever go
Coins: sdk.Coins{sdk.NewInt64Coin("foocoin", 100000000000)},
}
// Construct genesis state
genAccs := []authexported.GenesisAccount{&acc}
2019-08-19 06:29:17 -07:00
benchmarkApp := simapp.SetupWithGenesisAccounts(genAccs)
// Precompute all txs
2019-08-19 06:29:17 -07:00
txs := simapp.GenSequenceOfTxs([]sdk.Msg{multiSendMsg1}, []uint64{0}, []uint64{uint64(0)}, b.N, priv1)
b.ResetTimer()
// Run this with a profiler, so its easy to distinguish what time comes from
// Committing, and what time comes from Check/Deliver Tx.
for i := 0; i < b.N; i++ {
benchmarkApp.BeginBlock(abci.RequestBeginBlock{})
_, _, err := benchmarkApp.Check(txs[i])
if err != nil {
panic("something is broken in checking transaction")
}
benchmarkApp.Deliver(txs[i])
benchmarkApp.EndBlock(abci.RequestEndBlock{})
benchmarkApp.Commit()
}
}