mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
20437a91fb
* add message types for swaps * add tx client commands * add test coverage for swap message deadlines * start handler swap tests, export handler result message event into private method, add stubbed keeper methods * add initial swap implementation to get handler tests passing; adds event specific for trades * add handler acceptance test for slippage in exact input and exact output swaps * implement slippage limit for swap keeper methods * add tests to ensure a user can only swap spendable coins * test pool not found, panic on invalid pool, and panic when module account does not have enough funds * validate that the exact output when using for exact swaps is less than the pool liquidity * nit: long line * add validation that swap output is greater than zero * add rest txs for swap messages * nit: lints * dry up swap keeper methods * from pr feedback - spelling and increase clairty around the output amount of a swap rounding to zero
122 lines
3.1 KiB
Go
122 lines
3.1 KiB
Go
package keeper_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/kava-labs/kava/x/swap/testutil"
|
|
"github.com/kava-labs/kava/x/swap/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type keeperTestSuite struct {
|
|
testutil.Suite
|
|
}
|
|
|
|
func (suite *keeperTestSuite) SetupTest() {
|
|
suite.Suite.SetupTest()
|
|
suite.Keeper.SetParams(suite.Ctx, types.DefaultParams())
|
|
}
|
|
|
|
func TestKeeperTestSuite(t *testing.T) {
|
|
suite.Run(t, new(keeperTestSuite))
|
|
}
|
|
|
|
func (suite *keeperTestSuite) setupPool(reserves sdk.Coins, totalShares sdk.Int, depositor sdk.AccAddress) string {
|
|
poolID := types.PoolIDFromCoins(reserves)
|
|
suite.AddCoinsToModule(reserves)
|
|
|
|
poolRecord := types.PoolRecord{
|
|
PoolID: poolID,
|
|
ReservesA: reserves[0],
|
|
ReservesB: reserves[1],
|
|
TotalShares: totalShares,
|
|
}
|
|
suite.Keeper.SetPool(suite.Ctx, poolRecord)
|
|
|
|
shareRecord := types.ShareRecord{
|
|
Depositor: depositor,
|
|
PoolID: poolID,
|
|
SharesOwned: totalShares,
|
|
}
|
|
suite.Keeper.SetDepositorShares(suite.Ctx, shareRecord)
|
|
|
|
return poolID
|
|
}
|
|
|
|
func (suite keeperTestSuite) TestParams_Persistance() {
|
|
keeper := suite.Keeper
|
|
|
|
params := types.Params{
|
|
AllowedPools: types.AllowedPools{
|
|
types.NewAllowedPool("ukava", "usdx"),
|
|
},
|
|
SwapFee: sdk.MustNewDecFromStr("0.03"),
|
|
}
|
|
keeper.SetParams(suite.Ctx, params)
|
|
suite.Equal(keeper.GetParams(suite.Ctx), params)
|
|
|
|
oldParams := params
|
|
params = types.Params{
|
|
AllowedPools: types.AllowedPools{
|
|
types.NewAllowedPool("hard", "ukava"),
|
|
},
|
|
SwapFee: sdk.MustNewDecFromStr("0.01"),
|
|
}
|
|
keeper.SetParams(suite.Ctx, params)
|
|
suite.NotEqual(keeper.GetParams(suite.Ctx), oldParams)
|
|
suite.Equal(keeper.GetParams(suite.Ctx), params)
|
|
}
|
|
|
|
func (suite keeperTestSuite) TestParams_GetSwapFee() {
|
|
keeper := suite.Keeper
|
|
|
|
params := types.Params{
|
|
SwapFee: sdk.MustNewDecFromStr("0.00333"),
|
|
}
|
|
keeper.SetParams(suite.Ctx, params)
|
|
|
|
suite.Equal(keeper.GetSwapFee(suite.Ctx), params.SwapFee)
|
|
}
|
|
|
|
func (suite *keeperTestSuite) TestPool_Persistance() {
|
|
reserves := sdk.NewCoins(
|
|
sdk.NewCoin("ukava", sdk.NewInt(10e6)),
|
|
sdk.NewCoin("usdx", sdk.NewInt(50e6)),
|
|
)
|
|
|
|
pool, err := types.NewDenominatedPool(reserves)
|
|
suite.Nil(err)
|
|
record := types.NewPoolRecord(pool)
|
|
|
|
suite.Keeper.SetPool(suite.Ctx, record)
|
|
|
|
savedRecord, ok := suite.Keeper.GetPool(suite.Ctx, record.PoolID)
|
|
suite.True(ok)
|
|
suite.Equal(record, savedRecord)
|
|
|
|
suite.Keeper.DeletePool(suite.Ctx, record.PoolID)
|
|
deletedPool, ok := suite.Keeper.GetPool(suite.Ctx, record.PoolID)
|
|
suite.False(ok)
|
|
suite.Equal(deletedPool, types.PoolRecord{})
|
|
}
|
|
|
|
func (suite *keeperTestSuite) TestShare_Persistance() {
|
|
poolID := "ukava/usdx"
|
|
depositor := sdk.AccAddress("testAddress1")
|
|
shares := sdk.NewInt(3126432331)
|
|
|
|
record := types.NewShareRecord(depositor, poolID, shares)
|
|
suite.Keeper.SetDepositorShares(suite.Ctx, record)
|
|
|
|
savedRecord, ok := suite.Keeper.GetDepositorShares(suite.Ctx, depositor, poolID)
|
|
suite.True(ok)
|
|
suite.Equal(record, savedRecord)
|
|
|
|
suite.Keeper.DeleteDepositorShares(suite.Ctx, depositor, poolID)
|
|
deletedShares, ok := suite.Keeper.GetDepositorShares(suite.Ctx, depositor, poolID)
|
|
suite.False(ok)
|
|
suite.Equal(deletedShares, types.ShareRecord{})
|
|
}
|