|
7 | 7 |
|
8 | 8 | sdkmath "cosmossdk.io/math"
|
9 | 9 |
|
| 10 | + sdk "github.com/cosmos/cosmos-sdk/types" |
10 | 11 | "github.com/cosmos/cosmos-sdk/x/staking/types"
|
11 | 12 |
|
12 | 13 | ibctesting "github.com/cosmos/ibc-go/v8/testing"
|
@@ -41,3 +42,36 @@ func TestChangeValSet(t *testing.T) {
|
41 | 42 | err = path.EndpointB.UpdateClient()
|
42 | 43 | require.NoError(t, err)
|
43 | 44 | }
|
| 45 | + |
| 46 | +func TestJailProposerValidator(t *testing.T) { |
| 47 | + coord := ibctesting.NewCoordinator(t, 2) |
| 48 | + chainA := coord.GetChain(ibctesting.GetChainID(1)) |
| 49 | + chainB := coord.GetChain(ibctesting.GetChainID(2)) |
| 50 | + |
| 51 | + path := ibctesting.NewPath(chainA, chainB) |
| 52 | + coord.Setup(path) |
| 53 | + |
| 54 | + // save valset length before jailing |
| 55 | + valsetLen := len(chainA.Vals.Validators) |
| 56 | + |
| 57 | + // jail the proposer validator in chain A |
| 58 | + propAddr := sdk.ConsAddress(chainA.Vals.Proposer.Address) |
| 59 | + |
| 60 | + err := chainA.GetSimApp().StakingKeeper.Jail( |
| 61 | + chainA.GetContext(), propAddr) |
| 62 | + require.NoError(t, err) |
| 63 | + |
| 64 | + coord.CommitBlock(chainA) |
| 65 | + |
| 66 | + // verify that update clients works even after validator update goes into effect |
| 67 | + err = path.EndpointB.UpdateClient() |
| 68 | + require.NoError(t, err) |
| 69 | + err = path.EndpointB.UpdateClient() |
| 70 | + require.NoError(t, err) |
| 71 | + |
| 72 | + // check that the jailing has taken effect in chain A |
| 73 | + require.Equal(t, valsetLen-1, len(chainA.Vals.Validators)) |
| 74 | + |
| 75 | + // check that the valset in chain A has a new proposer |
| 76 | + require.False(t, propAddr.Equals(sdk.ConsAddress(chainA.Vals.Proposer.Address))) |
| 77 | +} |
0 commit comments