forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: rollback command don't actually delete multistore versions (back…
…port cosmos#11361) (cosmos#13133)
- Loading branch information
1 parent
acf61c0
commit a513b2d
Showing
10 changed files
with
139 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
package rootmulti_test | ||
|
||
import ( | ||
"encoding/json" | ||
"fmt" | ||
"testing" | ||
|
||
"github.com/cosmos/cosmos-sdk/simapp" | ||
"github.com/stretchr/testify/require" | ||
abci "github.com/tendermint/tendermint/abci/types" | ||
"github.com/tendermint/tendermint/libs/log" | ||
tmproto "github.com/tendermint/tendermint/proto/tendermint/types" | ||
dbm "github.com/tendermint/tm-db" | ||
) | ||
|
||
func setup(withGenesis bool, invCheckPeriod uint, db dbm.DB) (*simapp.SimApp, simapp.GenesisState) { | ||
encCdc := simapp.MakeTestEncodingConfig() | ||
app := simapp.NewSimApp(log.NewNopLogger(), db, nil, true, map[int64]bool{}, simapp.DefaultNodeHome, invCheckPeriod, encCdc, simapp.EmptyAppOptions{}) | ||
if withGenesis { | ||
return app, simapp.NewDefaultGenesisState(encCdc.Marshaler) | ||
} | ||
return app, simapp.GenesisState{} | ||
} | ||
|
||
// Setup initializes a new SimApp. A Nop logger is set in SimApp. | ||
func SetupWithDB(isCheckTx bool, db dbm.DB) *simapp.SimApp { | ||
app, genesisState := setup(!isCheckTx, 5, db) | ||
if !isCheckTx { | ||
// init chain must be called to stop deliverState from being nil | ||
stateBytes, err := json.MarshalIndent(genesisState, "", " ") | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
// Initialize the chain | ||
app.InitChain( | ||
abci.RequestInitChain{ | ||
Validators: []abci.ValidatorUpdate{}, | ||
ConsensusParams: simapp.DefaultConsensusParams, | ||
AppStateBytes: stateBytes, | ||
}, | ||
) | ||
} | ||
|
||
return app | ||
} | ||
|
||
func TestRollback(t *testing.T) { | ||
db := dbm.NewMemDB() | ||
app := SetupWithDB(false, db) | ||
app.Commit() | ||
ver0 := app.LastBlockHeight() | ||
// commit 10 blocks | ||
for i := int64(1); i <= 10; i++ { | ||
header := tmproto.Header{ | ||
Height: ver0 + i, | ||
AppHash: app.LastCommitID().Hash, | ||
} | ||
app.BeginBlock(abci.RequestBeginBlock{Header: header}) | ||
ctx := app.NewContext(false, header) | ||
store := ctx.KVStore(app.GetKey("bank")) | ||
store.Set([]byte("key"), []byte(fmt.Sprintf("value%d", i))) | ||
app.Commit() | ||
} | ||
|
||
require.Equal(t, ver0+10, app.LastBlockHeight()) | ||
store := app.NewContext(true, tmproto.Header{}).KVStore(app.GetKey("bank")) | ||
require.Equal(t, []byte("value10"), store.Get([]byte("key"))) | ||
|
||
// rollback 5 blocks | ||
target := ver0 + 5 | ||
require.NoError(t, app.CommitMultiStore().RollbackToVersion(target)) | ||
require.Equal(t, target, app.LastBlockHeight()) | ||
|
||
// recreate app to have clean check state | ||
encCdc := simapp.MakeTestEncodingConfig() | ||
app = simapp.NewSimApp(log.NewNopLogger(), db, nil, true, map[int64]bool{}, simapp.DefaultNodeHome, 5, encCdc, simapp.EmptyAppOptions{}) | ||
store = app.NewContext(true, tmproto.Header{}).KVStore(app.GetKey("bank")) | ||
require.Equal(t, []byte("value5"), store.Get([]byte("key"))) | ||
|
||
// commit another 5 blocks with different values | ||
for i := int64(6); i <= 10; i++ { | ||
header := tmproto.Header{ | ||
Height: ver0 + i, | ||
AppHash: app.LastCommitID().Hash, | ||
} | ||
app.BeginBlock(abci.RequestBeginBlock{Header: header}) | ||
ctx := app.NewContext(false, header) | ||
store := ctx.KVStore(app.GetKey("bank")) | ||
store.Set([]byte("key"), []byte(fmt.Sprintf("VALUE%d", i))) | ||
app.Commit() | ||
} | ||
|
||
require.Equal(t, ver0+10, app.LastBlockHeight()) | ||
store = app.NewContext(true, tmproto.Header{}).KVStore(app.GetKey("bank")) | ||
require.Equal(t, []byte("VALUE10"), store.Get([]byte("key"))) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters