* changelog * ... * decimal func working * decimal complete, untested * fixing tests * decimal compile errors resolved * test compile errors * precision multiplier test * 1% laptop battery * fixed TestNewDecFromStr * equalities working * fix bankers round chop * ... * working, some decimal issues resolved * fix rounding error * rounding works * decimal works * ... * deleted rational * rational conversion working * revert changelog * code compiles (not tests) * went through all NewDec, made sure they were converted from NewRat properly * test debugging * all testing bugs besides the json marshalling fixed * json unmarshal * lint * document update * fix lcd test * cli test fix * mostly undo Dece -> Rate * val comments * Efficiency improvements This now caches all of the precision multipliers (as they were all used in non-mutative functions), and caches the precisionInt calculation. (Now it just copies the already calculated value) * Cache another precisionInt() call. * Improve banker rounding efficiency * remove defer, make negation in-place. * chris val comments * bez comments * Aditya comments * ... * val comments * rebasing start * ... * compiling * tests pass * cli fix * anton, cwgoes, val comments * val and jae comments * type * undo reuse quo
41 lines
1020 B
Go
41 lines
1020 B
Go
package keeper
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/stake/types"
|
|
)
|
|
|
|
func TestParams(t *testing.T) {
|
|
ctx, _, keeper := CreateTestInput(t, false, 0)
|
|
expParams := types.DefaultParams()
|
|
|
|
//check that the empty keeper loads the default
|
|
resParams := keeper.GetParams(ctx)
|
|
require.True(t, expParams.Equal(resParams))
|
|
|
|
//modify a params, save, and retrieve
|
|
expParams.MaxValidators = 777
|
|
keeper.SetParams(ctx, expParams)
|
|
resParams = keeper.GetParams(ctx)
|
|
require.True(t, expParams.Equal(resParams))
|
|
}
|
|
|
|
func TestPool(t *testing.T) {
|
|
ctx, _, keeper := CreateTestInput(t, false, 0)
|
|
expPool := types.InitialPool()
|
|
|
|
//check that the empty keeper loads the default
|
|
resPool := keeper.GetPool(ctx)
|
|
require.True(t, expPool.Equal(resPool))
|
|
|
|
//modify a params, save, and retrieve
|
|
expPool.BondedTokens = sdk.NewDec(777)
|
|
keeper.SetPool(ctx, expPool)
|
|
resPool = keeper.GetPool(ctx)
|
|
require.True(t, expPool.Equal(resPool))
|
|
}
|