102 lines
3.0 KiB
Go
102 lines
3.0 KiB
Go
package slashing_test
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/slashing"
|
|
"github.com/cosmos/cosmos-sdk/x/staking"
|
|
"github.com/cosmos/cosmos-sdk/x/staking/teststaking"
|
|
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
|
|
)
|
|
|
|
func TestBeginBlocker(t *testing.T) {
|
|
app := simapp.Setup(t, false)
|
|
ctx := app.BaseApp.NewContext(false, tmproto.Header{})
|
|
|
|
pks := simapp.CreateTestPubKeys(1)
|
|
simapp.AddTestAddrsFromPubKeys(app, ctx, pks, app.StakingKeeper.TokensFromConsensusPower(ctx, 200))
|
|
addr, pk := sdk.ValAddress(pks[0].Address()), pks[0]
|
|
tstaking := teststaking.NewHelper(t, ctx, app.StakingKeeper)
|
|
|
|
// bond the validator
|
|
power := int64(100)
|
|
amt := tstaking.CreateValidatorWithValPower(addr, pk, power, true)
|
|
staking.EndBlocker(ctx, app.StakingKeeper)
|
|
require.Equal(
|
|
t, app.BankKeeper.GetAllBalances(ctx, sdk.AccAddress(addr)),
|
|
sdk.NewCoins(sdk.NewCoin(app.StakingKeeper.GetParams(ctx).BondDenom, InitTokens.Sub(amt))),
|
|
)
|
|
require.Equal(t, amt, app.StakingKeeper.Validator(ctx, addr).GetBondedTokens())
|
|
|
|
val := abci.Validator{
|
|
Address: pk.Address(),
|
|
Power: power,
|
|
}
|
|
|
|
// mark the validator as having signed
|
|
req := abci.RequestBeginBlock{
|
|
LastCommitInfo: abci.LastCommitInfo{
|
|
Votes: []abci.VoteInfo{{
|
|
Validator: val,
|
|
SignedLastBlock: true,
|
|
}},
|
|
},
|
|
}
|
|
|
|
slashing.BeginBlocker(ctx, req, app.SlashingKeeper)
|
|
|
|
info, found := app.SlashingKeeper.GetValidatorSigningInfo(ctx, sdk.ConsAddress(pk.Address()))
|
|
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)
|
|
|
|
height := int64(0)
|
|
|
|
// for 1000 blocks, mark the validator as having signed
|
|
for ; height < app.SlashingKeeper.SignedBlocksWindow(ctx); height++ {
|
|
ctx = ctx.WithBlockHeight(height)
|
|
req = abci.RequestBeginBlock{
|
|
LastCommitInfo: abci.LastCommitInfo{
|
|
Votes: []abci.VoteInfo{{
|
|
Validator: val,
|
|
SignedLastBlock: true,
|
|
}},
|
|
},
|
|
}
|
|
|
|
slashing.BeginBlocker(ctx, req, app.SlashingKeeper)
|
|
}
|
|
|
|
// for 500 blocks, mark the validator as having not signed
|
|
for ; height < ((app.SlashingKeeper.SignedBlocksWindow(ctx) * 2) - app.SlashingKeeper.MinSignedPerWindow(ctx) + 1); height++ {
|
|
ctx = ctx.WithBlockHeight(height)
|
|
req = abci.RequestBeginBlock{
|
|
LastCommitInfo: abci.LastCommitInfo{
|
|
Votes: []abci.VoteInfo{{
|
|
Validator: val,
|
|
SignedLastBlock: false,
|
|
}},
|
|
},
|
|
}
|
|
|
|
slashing.BeginBlocker(ctx, req, app.SlashingKeeper)
|
|
}
|
|
|
|
// end block
|
|
staking.EndBlocker(ctx, app.StakingKeeper)
|
|
|
|
// validator should be jailed
|
|
validator, found := app.StakingKeeper.GetValidatorByConsAddr(ctx, sdk.GetConsAddress(pk))
|
|
require.True(t, found)
|
|
require.Equal(t, stakingtypes.Unbonding, validator.GetStatus())
|
|
}
|