Skip to content

Commit a55c271

Browse files
mergify[bot]sainoeDimitrisJim
authored
test: update block proposer in testing (backport #7430) (#7453)
* test: update block proposer in testing (#7430) * Introduce two following changes to the `commitBlock` method in testing: * increment the proposer priority of validators * update the proposer address in the current header * fix linter (cherry picked from commit 64f33e0) # Conflicts: # testing/chain.go * why did you fail us here, mergify my boy --------- Co-authored-by: Simon Noetzlin <[email protected]> Co-authored-by: DimitrisJim <[email protected]>
1 parent 7df9ebd commit a55c271

File tree

3 files changed

+42
-1
lines changed

3 files changed

+42
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ Ref: https://keepachangelog.com/en/1.0.0/
3636

3737
## [[Unreleased]]
3838

39+
### Testing
40+
41+
* [\#7430](https://github.com/cosmos/ibc-go/pull/7430) Update the block proposer in test chains for each block.
42+
3943
### Dependencies
4044

4145
### API Breaking

testing/chain.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,9 @@ func (chain *TestChain) commitBlock(res *abci.ResponseFinalizeBlock) {
317317
chain.Vals = chain.NextVals
318318
chain.NextVals = ApplyValSetChanges(chain, chain.Vals, res.ValidatorUpdates)
319319

320+
// increment the proposer priority of validators
321+
chain.Vals.IncrementProposerPriority(1)
322+
320323
// increment the current header
321324
chain.CurrentHeader = cmtproto.Header{
322325
ChainID: chain.ChainID,
@@ -327,7 +330,7 @@ func (chain *TestChain) commitBlock(res *abci.ResponseFinalizeBlock) {
327330
Time: chain.CurrentHeader.Time,
328331
ValidatorsHash: chain.Vals.Hash(),
329332
NextValidatorsHash: chain.NextVals.Hash(),
330-
ProposerAddress: chain.CurrentHeader.ProposerAddress,
333+
ProposerAddress: chain.Vals.Proposer.Address,
331334
}
332335
}
333336

testing/chain_test.go

+34
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import (
77

88
sdkmath "cosmossdk.io/math"
99

10+
sdk "github.com/cosmos/cosmos-sdk/types"
1011
"github.com/cosmos/cosmos-sdk/x/staking/types"
1112

1213
ibctesting "github.com/cosmos/ibc-go/v8/testing"
@@ -41,3 +42,36 @@ func TestChangeValSet(t *testing.T) {
4142
err = path.EndpointB.UpdateClient()
4243
require.NoError(t, err)
4344
}
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

Comments
 (0)