* copied from old PR * fix errors * add test * Update x/gov/client/utils/query.go Co-authored-by: Robert Zaremba <robert@zaremba.ch> * fix tests * fix failing test * add test * update test * fix tests * fix deposit query * fix test * update tests * add more tests * address lint error * address lint error * review changes Co-authored-by: Robert Zaremba <robert@zaremba.ch>
30 lines
856 B
Go
30 lines
856 B
Go
// +build norace
|
|
|
|
package testutil
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/gov/types"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
cfg.NumValidators = 1
|
|
suite.Run(t, NewIntegrationTestSuite(cfg))
|
|
|
|
genesisState := types.DefaultGenesisState()
|
|
genesisState.DepositParams = types.NewDepositParams(sdk.NewCoins(sdk.NewCoin(cfg.BondDenom, types.DefaultMinDepositTokens)), time.Duration(15)*time.Second)
|
|
genesisState.VotingParams = types.NewVotingParams(time.Duration(5) * time.Second)
|
|
bz, err := cfg.Codec.MarshalJSON(genesisState)
|
|
require.NoError(t, err)
|
|
cfg.GenesisState["gov"] = bz
|
|
suite.Run(t, NewDepositTestSuite(cfg))
|
|
}
|