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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// UpdateHardSupplyIndexDenomsTests runs unit tests for the keeper.UpdateHardSupplyIndexDenoms method
|
|
|
|
type UpdateHardSupplyIndexDenomsTests struct {
|
|
|
|
unitTester
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestUpdateHardSupplyIndexDenoms(t *testing.T) {
|
|
|
|
suite.Run(t, new(UpdateHardSupplyIndexDenomsTests))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *UpdateHardSupplyIndexDenomsTests) TestClaimIndexesAreRemovedForDenomsNoLongerSupplied() {
|
|
|
|
claim := types.HardLiquidityProviderClaim{
|
|
|
|
BaseMultiClaim: types.BaseMultiClaim{
|
|
|
|
Owner: arbitraryAddress(),
|
|
|
|
},
|
|
|
|
SupplyRewardIndexes: nonEmptyMultiRewardIndexes,
|
|
|
|
}
|
2021-07-07 16:50:14 +00:00
|
|
|
suite.storeHardClaim(claim)
|
2021-06-21 21:05:17 +00:00
|
|
|
suite.storeGlobalSupplyIndexes(claim.SupplyRewardIndexes)
|
|
|
|
|
|
|
|
// remove one denom from the indexes already in the deposit
|
|
|
|
expectedIndexes := claim.SupplyRewardIndexes[1:]
|
2021-07-26 19:07:24 +00:00
|
|
|
deposit := NewDepositBuilder(claim.Owner).
|
|
|
|
WithArbitrarySourceShares(extractCollateralTypes(expectedIndexes)...).
|
|
|
|
Build()
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
suite.keeper.UpdateHardSupplyIndexDenoms(suite.ctx, deposit)
|
|
|
|
|
|
|
|
syncedClaim, _ := suite.keeper.GetHardLiquidityProviderClaim(suite.ctx, claim.Owner)
|
|
|
|
suite.Equal(expectedIndexes, syncedClaim.SupplyRewardIndexes)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *UpdateHardSupplyIndexDenomsTests) TestClaimIndexesAreAddedForNewlySuppliedDenoms() {
|
|
|
|
claim := types.HardLiquidityProviderClaim{
|
|
|
|
BaseMultiClaim: types.BaseMultiClaim{
|
|
|
|
Owner: arbitraryAddress(),
|
|
|
|
},
|
|
|
|
SupplyRewardIndexes: nonEmptyMultiRewardIndexes,
|
|
|
|
}
|
2021-07-07 16:50:14 +00:00
|
|
|
suite.storeHardClaim(claim)
|
2021-06-21 21:05:17 +00:00
|
|
|
globalIndexes := appendUniqueMultiRewardIndex(claim.SupplyRewardIndexes)
|
|
|
|
suite.storeGlobalSupplyIndexes(globalIndexes)
|
|
|
|
|
2021-07-26 19:07:24 +00:00
|
|
|
deposit := NewDepositBuilder(claim.Owner).
|
|
|
|
WithArbitrarySourceShares(extractCollateralTypes(globalIndexes)...).
|
|
|
|
Build()
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
suite.keeper.UpdateHardSupplyIndexDenoms(suite.ctx, deposit)
|
|
|
|
|
|
|
|
syncedClaim, _ := suite.keeper.GetHardLiquidityProviderClaim(suite.ctx, claim.Owner)
|
|
|
|
suite.Equal(globalIndexes, syncedClaim.SupplyRewardIndexes)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *UpdateHardSupplyIndexDenomsTests) TestClaimIndexesAreUnchangedWhenSuppliedDenomsUnchanged() {
|
|
|
|
claim := types.HardLiquidityProviderClaim{
|
|
|
|
BaseMultiClaim: types.BaseMultiClaim{
|
|
|
|
Owner: arbitraryAddress(),
|
|
|
|
},
|
|
|
|
SupplyRewardIndexes: nonEmptyMultiRewardIndexes,
|
|
|
|
}
|
2021-07-07 16:50:14 +00:00
|
|
|
suite.storeHardClaim(claim)
|
2021-06-21 21:05:17 +00:00
|
|
|
// Set global indexes with same denoms but different values.
|
|
|
|
// UpdateHardSupplyIndexDenoms should ignore the new values.
|
|
|
|
suite.storeGlobalSupplyIndexes(increaseAllRewardFactors(claim.SupplyRewardIndexes))
|
|
|
|
|
2021-07-26 19:07:24 +00:00
|
|
|
deposit := NewDepositBuilder(claim.Owner).
|
|
|
|
WithArbitrarySourceShares(extractCollateralTypes(claim.SupplyRewardIndexes)...).
|
|
|
|
Build()
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
suite.keeper.UpdateHardSupplyIndexDenoms(suite.ctx, deposit)
|
|
|
|
|
|
|
|
syncedClaim, _ := suite.keeper.GetHardLiquidityProviderClaim(suite.ctx, claim.Owner)
|
|
|
|
suite.Equal(claim.SupplyRewardIndexes, syncedClaim.SupplyRewardIndexes)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (suite *UpdateHardSupplyIndexDenomsTests) TestEmptyClaimIndexesAreAddedForNewlySuppliedButNotRewardedDenoms() {
|
|
|
|
claim := types.HardLiquidityProviderClaim{
|
|
|
|
BaseMultiClaim: types.BaseMultiClaim{
|
|
|
|
Owner: arbitraryAddress(),
|
|
|
|
},
|
|
|
|
SupplyRewardIndexes: nonEmptyMultiRewardIndexes,
|
|
|
|
}
|
2021-07-07 16:50:14 +00:00
|
|
|
suite.storeHardClaim(claim)
|
2021-06-21 21:05:17 +00:00
|
|
|
suite.storeGlobalSupplyIndexes(claim.SupplyRewardIndexes)
|
|
|
|
|
|
|
|
// add a denom to the deposited amount that is not in the global or claim's indexes
|
|
|
|
expectedIndexes := appendUniqueEmptyMultiRewardIndex(claim.SupplyRewardIndexes)
|
|
|
|
depositedDenoms := extractCollateralTypes(expectedIndexes)
|
2021-07-26 19:07:24 +00:00
|
|
|
deposit := NewDepositBuilder(claim.Owner).
|
|
|
|
WithArbitrarySourceShares(depositedDenoms...).
|
|
|
|
Build()
|
2021-06-21 21:05:17 +00:00
|
|
|
|
|
|
|
suite.keeper.UpdateHardSupplyIndexDenoms(suite.ctx, deposit)
|
|
|
|
|
|
|
|
syncedClaim, _ := suite.keeper.GetHardLiquidityProviderClaim(suite.ctx, claim.Owner)
|
|
|
|
suite.Equal(expectedIndexes, syncedClaim.SupplyRewardIndexes)
|
|
|
|
}
|