2022-01-08 00:39:27 +00:00
|
|
|
package testutil
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
2023-04-05 23:21:59 +00:00
|
|
|
sdkmath "cosmossdk.io/math"
|
2022-01-08 00:39:27 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
2024-02-06 22:54:10 +00:00
|
|
|
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
|
|
|
|
tmtime "github.com/cometbft/cometbft/types/time"
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
|
|
|
|
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
|
|
|
|
bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper"
|
|
|
|
|
|
|
|
"github.com/kava-labs/kava/app"
|
|
|
|
"github.com/kava-labs/kava/x/auction/keeper"
|
|
|
|
"github.com/kava-labs/kava/x/auction/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Suite implements a test suite for the kavadist module integration tests
|
|
|
|
type Suite struct {
|
|
|
|
suite.Suite
|
|
|
|
|
|
|
|
Keeper keeper.Keeper
|
|
|
|
BankKeeper bankkeeper.Keeper
|
|
|
|
AccountKeeper authkeeper.AccountKeeper
|
|
|
|
App app.TestApp
|
|
|
|
Ctx sdk.Context
|
|
|
|
Addrs []sdk.AccAddress
|
|
|
|
ModAcc *authtypes.ModuleAccount
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetupTest instantiates a new app, keepers, and sets suite state
|
|
|
|
func (suite *Suite) SetupTest(numAddrs int) {
|
|
|
|
config := sdk.GetConfig()
|
|
|
|
app.SetBech32AddressPrefixes(config)
|
|
|
|
tApp := app.NewTestApp()
|
|
|
|
|
|
|
|
_, addrs := app.GeneratePrivKeyAddressPairs(numAddrs)
|
|
|
|
|
|
|
|
// Fund liquidator module account
|
|
|
|
coins := sdk.NewCoins(
|
2023-04-05 23:21:59 +00:00
|
|
|
sdk.NewCoin("token1", sdkmath.NewInt(100)),
|
|
|
|
sdk.NewCoin("token2", sdkmath.NewInt(100)),
|
2022-01-08 00:39:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
ctx := tApp.NewContext(true, tmproto.Header{Height: 1, Time: tmtime.Now()})
|
|
|
|
|
|
|
|
modName := "liquidator"
|
|
|
|
modBaseAcc := authtypes.NewBaseAccount(authtypes.NewModuleAddress(modName), nil, 0, 0)
|
|
|
|
modAcc := authtypes.NewModuleAccount(modBaseAcc, modName, []string{authtypes.Minter, authtypes.Burner}...)
|
|
|
|
suite.ModAcc = modAcc
|
|
|
|
|
|
|
|
authGS := app.NewFundedGenStateWithSameCoinsWithModuleAccount(tApp.AppCodec(), coins, addrs, modAcc)
|
|
|
|
|
|
|
|
params := types.NewParams(
|
|
|
|
types.DefaultMaxAuctionDuration,
|
2022-02-08 17:03:47 +00:00
|
|
|
types.DefaultForwardBidDuration,
|
|
|
|
types.DefaultReverseBidDuration,
|
2022-01-08 00:39:27 +00:00
|
|
|
types.DefaultIncrement,
|
|
|
|
types.DefaultIncrement,
|
|
|
|
types.DefaultIncrement,
|
|
|
|
)
|
|
|
|
|
|
|
|
auctionGs, err := types.NewGenesisState(types.DefaultNextAuctionID, params, []types.GenesisAuction{})
|
|
|
|
suite.Require().NoError(err)
|
|
|
|
|
|
|
|
moduleGs := tApp.AppCodec().MustMarshalJSON(auctionGs)
|
|
|
|
gs := app.GenesisState{types.ModuleName: moduleGs}
|
|
|
|
tApp.InitializeFromGenesisStates(authGS, gs)
|
|
|
|
|
|
|
|
suite.App = tApp
|
|
|
|
suite.Ctx = ctx
|
|
|
|
suite.Addrs = addrs
|
|
|
|
suite.Keeper = tApp.GetAuctionKeeper()
|
|
|
|
suite.BankKeeper = tApp.GetBankKeeper()
|
|
|
|
suite.AccountKeeper = tApp.GetAccountKeeper()
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddCoinsToModule adds coins to a named module account
|
|
|
|
func (suite *Suite) AddCoinsToNamedModule(moduleName string, amount sdk.Coins) {
|
|
|
|
// Does not use suite.BankKeeper.MintCoins as module account would not have permission to mint
|
2022-12-09 22:31:31 +00:00
|
|
|
err := suite.App.FundModuleAccount(suite.Ctx, moduleName, amount)
|
2022-01-08 00:39:27 +00:00
|
|
|
suite.Require().NoError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CheckAccountBalanceEqual asserts that
|
|
|
|
func (suite *Suite) CheckAccountBalanceEqual(owner sdk.AccAddress, expectedCoins sdk.Coins) {
|
|
|
|
balances := suite.BankKeeper.GetAllBalances(suite.Ctx, owner)
|
|
|
|
suite.Equal(expectedCoins, balances)
|
|
|
|
}
|