cosmos-sdk/x/slashing/abci_test.go

105 lines
3.0 KiB
Go
Raw Normal View History

2020-02-14 07:30:51 -08:00
package slashing_test
2018-06-04 16:42:01 -07:00
import (
"testing"
"time"
2018-06-04 16:42:01 -07:00
2020-03-20 10:14:14 -07:00
"github.com/stretchr/testify/require"
abci "github.com/tendermint/tendermint/abci/types"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
2020-03-20 10:14:14 -07:00
2020-03-03 02:25:32 -08:00
"github.com/cosmos/cosmos-sdk/simapp"
2018-06-04 16:42:01 -07:00
sdk "github.com/cosmos/cosmos-sdk/types"
2020-02-14 07:30:51 -08:00
"github.com/cosmos/cosmos-sdk/x/slashing"
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
2019-01-11 12:08:01 -08:00
"github.com/cosmos/cosmos-sdk/x/staking"
2018-06-04 16:42:01 -07:00
)
func TestBeginBlocker(t *testing.T) {
2020-03-03 02:25:32 -08:00
app := simapp.Setup(false)
ctx := app.BaseApp.NewContext(false, tmproto.Header{})
2020-03-03 02:25:32 -08:00
pks := simapp.CreateTestPubKeys(1)
simapp.AddTestAddrsFromPubKeys(app, ctx, pks, sdk.TokensFromConsensusPower(200))
power := int64(100)
amt := sdk.TokensFromConsensusPower(power)
2020-03-03 02:25:32 -08:00
addr, pk := sdk.ValAddress(pks[0].Address()), pks[0]
2018-06-04 16:42:01 -07:00
// bond the validator
2020-03-03 02:25:32 -08:00
res, err := staking.NewHandler(app.StakingKeeper)(ctx, slashingkeeper.NewTestMsgCreateValidator(addr, pk, amt))
require.NoError(t, err)
require.NotNil(t, res)
2020-03-03 02:25:32 -08:00
staking.EndBlocker(ctx, app.StakingKeeper)
require.Equal(
2020-03-03 02:25:32 -08:00
t, app.BankKeeper.GetAllBalances(ctx, sdk.AccAddress(addr)),
sdk.NewCoins(sdk.NewCoin(app.StakingKeeper.GetParams(ctx).BondDenom, slashingkeeper.InitTokens.Sub(amt))),
)
2020-03-03 02:25:32 -08:00
require.Equal(t, amt, app.StakingKeeper.Validator(ctx, addr).GetBondedTokens())
2018-06-04 16:42:01 -07:00
val := abci.Validator{
Address: pk.Address(),
Power: amt.Int64(),
2018-06-04 16:42:01 -07:00
}
// mark the validator as having signed
req := abci.RequestBeginBlock{
LastCommitInfo: abci.LastCommitInfo{
Votes: []abci.VoteInfo{{
Validator: val,
SignedLastBlock: true,
}},
},
2018-06-04 16:42:01 -07:00
}
2020-02-14 07:30:51 -08:00
2020-03-03 02:25:32 -08:00
slashing.BeginBlocker(ctx, req, app.SlashingKeeper)
2018-06-04 16:42:01 -07:00
2020-03-03 02:25:32 -08:00
info, found := app.SlashingKeeper.GetValidatorSigningInfo(ctx, sdk.ConsAddress(pk.Address()))
2018-06-04 16:42:01 -07:00
require.True(t, found)
require.Equal(t, ctx.BlockHeight(), info.StartHeight)
require.Equal(t, int64(1), info.IndexOffset)
require.Equal(t, time.Unix(0, 0).UTC(), info.JailedUntil)
require.Equal(t, int64(0), info.MissedBlocksCounter)
2018-06-04 16:42:01 -07:00
height := int64(0)
// for 1000 blocks, mark the validator as having signed
2020-03-03 02:25:32 -08:00
for ; height < app.SlashingKeeper.SignedBlocksWindow(ctx); height++ {
2018-06-04 16:42:01 -07:00
ctx = ctx.WithBlockHeight(height)
req = abci.RequestBeginBlock{
LastCommitInfo: abci.LastCommitInfo{
Votes: []abci.VoteInfo{{
Validator: val,
SignedLastBlock: true,
}},
},
2018-06-04 16:42:01 -07:00
}
2020-02-14 07:30:51 -08:00
2020-03-03 02:25:32 -08:00
slashing.BeginBlocker(ctx, req, app.SlashingKeeper)
2018-06-04 16:42:01 -07:00
}
// for 500 blocks, mark the validator as having not signed
2020-03-03 02:25:32 -08:00
for ; height < ((app.SlashingKeeper.SignedBlocksWindow(ctx) * 2) - app.SlashingKeeper.MinSignedPerWindow(ctx) + 1); height++ {
2018-06-04 16:42:01 -07:00
ctx = ctx.WithBlockHeight(height)
req = abci.RequestBeginBlock{
LastCommitInfo: abci.LastCommitInfo{
Votes: []abci.VoteInfo{{
Validator: val,
SignedLastBlock: false,
}},
},
2018-06-04 16:42:01 -07:00
}
2020-02-14 07:30:51 -08:00
2020-03-03 02:25:32 -08:00
slashing.BeginBlocker(ctx, req, app.SlashingKeeper)
2018-06-04 16:42:01 -07:00
}
// end block
2020-03-03 02:25:32 -08:00
staking.EndBlocker(ctx, app.StakingKeeper)
2018-08-22 08:56:13 -07:00
// validator should be jailed
2020-03-03 02:25:32 -08:00
validator, found := app.StakingKeeper.GetValidatorByConsAddr(ctx, sdk.GetConsAddress(pk))
2018-06-04 16:42:01 -07:00
require.True(t, found)
2018-08-26 21:20:40 -07:00
require.Equal(t, sdk.Unbonding, validator.GetStatus())
2018-06-04 16:42:01 -07:00
}