Merge PR #1926: RootMultiStore test helper bugfix
* Add reload modification to test * Modify test helper function to prefix store dbs
This commit is contained in:
parent
7fb626f548
commit
f653bed8c9
|
@ -133,6 +133,11 @@ func TestMultiStoreQuery(t *testing.T) {
|
||||||
cid = multi.Commit()
|
cid = multi.Commit()
|
||||||
ver := cid.Version
|
ver := cid.Version
|
||||||
|
|
||||||
|
// Reload multistore from database
|
||||||
|
multi = newMultiStoreWithMounts(db)
|
||||||
|
err = multi.LoadLatestVersion()
|
||||||
|
require.Nil(t, err)
|
||||||
|
|
||||||
// Test bad path.
|
// Test bad path.
|
||||||
query := abci.RequestQuery{Path: "/key", Data: k, Height: ver}
|
query := abci.RequestQuery{Path: "/key", Data: k, Height: ver}
|
||||||
qres := multi.Query(query)
|
qres := multi.Query(query)
|
||||||
|
@ -173,11 +178,11 @@ func TestMultiStoreQuery(t *testing.T) {
|
||||||
func newMultiStoreWithMounts(db dbm.DB) *rootMultiStore {
|
func newMultiStoreWithMounts(db dbm.DB) *rootMultiStore {
|
||||||
store := NewCommitMultiStore(db)
|
store := NewCommitMultiStore(db)
|
||||||
store.MountStoreWithDB(
|
store.MountStoreWithDB(
|
||||||
sdk.NewKVStoreKey("store1"), sdk.StoreTypeIAVL, db)
|
sdk.NewKVStoreKey("store1"), sdk.StoreTypeIAVL, nil)
|
||||||
store.MountStoreWithDB(
|
store.MountStoreWithDB(
|
||||||
sdk.NewKVStoreKey("store2"), sdk.StoreTypeIAVL, db)
|
sdk.NewKVStoreKey("store2"), sdk.StoreTypeIAVL, nil)
|
||||||
store.MountStoreWithDB(
|
store.MountStoreWithDB(
|
||||||
sdk.NewKVStoreKey("store3"), sdk.StoreTypeIAVL, db)
|
sdk.NewKVStoreKey("store3"), sdk.StoreTypeIAVL, nil)
|
||||||
return store
|
return store
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue