cosmos-sdk/cmd/gaia/app/sim_test.go

84 lines
1.8 KiB
Go
Raw Normal View History

package app
2018-07-11 15:14:37 -07:00
import (
2018-07-17 15:04:10 -07:00
"encoding/json"
"math/rand"
"os"
2018-07-11 15:14:37 -07:00
"testing"
"github.com/stretchr/testify/require"
2018-07-12 13:01:43 -07:00
dbm "github.com/tendermint/tendermint/libs/db"
"github.com/tendermint/tendermint/libs/log"
2018-07-17 15:04:10 -07:00
sdk "github.com/cosmos/cosmos-sdk/types"
2018-07-16 18:25:15 -07:00
"github.com/cosmos/cosmos-sdk/x/mock/simulation"
2018-07-17 11:33:53 -07:00
stake "github.com/cosmos/cosmos-sdk/x/stake"
2018-07-17 15:04:10 -07:00
stakesim "github.com/cosmos/cosmos-sdk/x/stake/simulation"
2018-07-16 18:15:50 -07:00
)
const (
NumKeys = 10
2018-07-17 16:01:36 -07:00
NumBlocks = 100
BlockSize = 500
simulationEnv = "ENABLE_GAIA_SIMULATION"
2018-07-11 15:14:37 -07:00
)
2018-07-17 15:04:10 -07:00
func appStateFn(r *rand.Rand, accs []sdk.AccAddress) json.RawMessage {
var genesisAccounts []GenesisAccount
2018-07-17 11:33:53 -07:00
2018-07-17 15:04:10 -07:00
// Randomly generate some genesis accounts
for _, addr := range accs {
coins := sdk.Coins{sdk.Coin{"steak", sdk.NewInt(100)}}
genesisAccounts = append(genesisAccounts, GenesisAccount{
Address: addr,
Coins: coins,
})
}
2018-07-16 18:15:50 -07:00
2018-07-17 11:33:53 -07:00
// Default genesis state
2018-07-17 16:01:36 -07:00
stakeGenesis := stake.DefaultGenesisState()
stakeGenesis.Pool.LooseTokens = sdk.NewRat(1000)
genesis := GenesisState{
2018-07-17 15:04:10 -07:00
Accounts: genesisAccounts,
2018-07-17 16:01:36 -07:00
StakeData: stakeGenesis,
2018-07-17 11:33:53 -07:00
}
// Marshal genesis
appState, err := MakeCodec().MarshalJSON(genesis)
2018-07-17 11:33:53 -07:00
if err != nil {
panic(err)
}
2018-07-17 15:04:10 -07:00
return appState
}
func TestFullGaiaSimulation(t *testing.T) {
if os.Getenv(simulationEnv) == "" {
t.Skip("Skipping Gaia simulation")
}
// Setup Gaia application
logger := log.NewNopLogger()
db := dbm.NewMemDB()
app := NewGaiaApp(logger, db, nil)
require.Equal(t, "GaiaApp", app.Name())
2018-07-16 18:15:50 -07:00
// Run randomized simulation
2018-07-17 11:33:53 -07:00
simulation.Simulate(
2018-07-17 15:04:10 -07:00
t, app.BaseApp, appStateFn,
[]simulation.TestAndRunTx{
stakesim.SimulateMsgCreateValidator(app.accountMapper, app.stakeKeeper),
},
2018-07-16 18:25:15 -07:00
[]simulation.RandSetup{},
2018-07-17 15:04:10 -07:00
[]simulation.Invariant{
stakesim.AllInvariants(app.coinKeeper, app.stakeKeeper, app.accountMapper),
},
2018-07-16 18:15:50 -07:00
NumKeys,
NumBlocks,
BlockSize,
)
2018-07-11 15:14:37 -07:00
}