2021-06-21 21:05:17 +00:00
|
|
|
package keeper_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
|
|
|
|
"github.com/kava-labs/kava/x/incentive/types"
|
|
|
|
)
|
|
|
|
|
|
|
|
// InitializeHardSupplyRewardTests runs unit tests for the keeper.InitializeHardSupplyReward method
|
|
|
|
type InitializeHardSupplyRewardTests struct {
|
|
|
|
unitTester
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestInitializeHardSupplyReward(t *testing.T) {
|
|
|
|
suite.Run(t, new(InitializeHardSupplyRewardTests))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *InitializeHardSupplyRewardTests) TestClaimIndexesAreSetWhenClaimExists() {
|
|
|
|
claim := types.HardLiquidityProviderClaim{
|
|
|
|
BaseMultiClaim: types.BaseMultiClaim{
|
|
|
|
Owner: arbitraryAddress(),
|
|
|
|
},
|
|
|
|
// Indexes should always be empty when initialize is called.
|
|
|
|
// If initialize is called then the user must have repaid their deposit positions,
|
|
|
|
// which means UpdateHardSupplyIndexDenoms was called and should have remove indexes.
|
|
|
|
SupplyRewardIndexes: types.MultiRewardIndexes{},
|
|
|
|
}
|
2021-07-07 16:50:14 +00:00
|
|
|
suite.storeHardClaim(claim)
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
globalIndexes := nonEmptyMultiRewardIndexes
|
|
|
|
suite.storeGlobalSupplyIndexes(globalIndexes)
|
|
|
|
|
2022-04-21 14:19:03 +00:00
|
|
|
deposit := NewHardDepositBuilder(claim.Owner).
|
2021-07-26 19:07:24 +00:00
|
|
|
WithArbitrarySourceShares(extractCollateralTypes(globalIndexes)...).
|
|
|
|
Build()
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
suite.keeper.InitializeHardSupplyReward(suite.ctx, deposit)
|
|
|
|
|
|
|
|
syncedClaim, _ := suite.keeper.GetHardLiquidityProviderClaim(suite.ctx, claim.Owner)
|
|
|
|
suite.Equal(globalIndexes, syncedClaim.SupplyRewardIndexes)
|
|
|
|
}
|
2022-05-09 18:37:36 +00:00
|
|
|
|
2021-06-21 21:05:17 +00:00
|
|
|
func (suite *InitializeHardSupplyRewardTests) TestClaimIndexesAreSetWhenClaimDoesNotExist() {
|
|
|
|
globalIndexes := nonEmptyMultiRewardIndexes
|
|
|
|
suite.storeGlobalSupplyIndexes(globalIndexes)
|
|
|
|
|
|
|
|
owner := arbitraryAddress()
|
2022-04-21 14:19:03 +00:00
|
|
|
deposit := NewHardDepositBuilder(owner).
|
2021-07-26 19:07:24 +00:00
|
|
|
WithArbitrarySourceShares(extractCollateralTypes(globalIndexes)...).
|
|
|
|
Build()
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
suite.keeper.InitializeHardSupplyReward(suite.ctx, deposit)
|
|
|
|
|
|
|
|
syncedClaim, found := suite.keeper.GetHardLiquidityProviderClaim(suite.ctx, owner)
|
|
|
|
suite.True(found)
|
|
|
|
suite.Equal(globalIndexes, syncedClaim.SupplyRewardIndexes)
|
|
|
|
}
|
|
|
|
|
2022-05-09 18:37:36 +00:00
|
|
|
func (suite *InitializeHardSupplyRewardTests) TestClaimIndexesAreSetEmptyForMissingIndexes() {
|
2021-06-21 21:05:17 +00:00
|
|
|
globalIndexes := nonEmptyMultiRewardIndexes
|
|
|
|
suite.storeGlobalSupplyIndexes(globalIndexes)
|
|
|
|
|
|
|
|
owner := arbitraryAddress()
|
|
|
|
// Supply a denom that is not in the global indexes.
|
|
|
|
// This happens when a deposit denom has no rewards associated with it.
|
|
|
|
expectedIndexes := appendUniqueEmptyMultiRewardIndex(globalIndexes)
|
|
|
|
depositedDenoms := extractCollateralTypes(expectedIndexes)
|
2022-04-21 14:19:03 +00:00
|
|
|
deposit := NewHardDepositBuilder(owner).
|
2021-07-26 19:07:24 +00:00
|
|
|
WithArbitrarySourceShares(depositedDenoms...).
|
|
|
|
Build()
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
suite.keeper.InitializeHardSupplyReward(suite.ctx, deposit)
|
|
|
|
|
|
|
|
syncedClaim, _ := suite.keeper.GetHardLiquidityProviderClaim(suite.ctx, owner)
|
|
|
|
suite.Equal(expectedIndexes, syncedClaim.SupplyRewardIndexes)
|
|
|
|
}
|