* modify light imports * change abci.header to tmproto.header * use rc * rc * fix import * Merge PR #6893: fix key imports * fix rc2 * tendermint: update 3 (#6899) * tendermint: update 4 (#6919) Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> * tendermint: update 5 (#6923) Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * bump to latest master * tendermint: update (#6972) Co-authored-by: Aleksandr Bezobchuk <aleks.bezobchuk@gmail.com> Co-authored-by: Cory Levinson <cjlevinson@gmail.com> * Update x/ibc/07-tendermint/types/test_utils.go Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> * address comment * go mod * bring back things * fix test * update tm proto files Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> Co-authored-by: Federico Kunze <31522760+fedekunze@users.noreply.github.com> Co-authored-by: Aleksandr Bezobchuk <aleks.bezobchuk@gmail.com> Co-authored-by: Cory Levinson <cjlevinson@gmail.com> Co-authored-by: Federico Kunze <federico.kunze94@gmail.com>
149 lines
4.3 KiB
Go
149 lines
4.3 KiB
Go
package rootmulti
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
dbm "github.com/tendermint/tm-db"
|
|
|
|
"github.com/cosmos/cosmos-sdk/store/iavl"
|
|
"github.com/cosmos/cosmos-sdk/store/types"
|
|
)
|
|
|
|
func TestVerifyIAVLStoreQueryProof(t *testing.T) {
|
|
// Create main tree for testing.
|
|
db := dbm.NewMemDB()
|
|
iStore, err := iavl.LoadStore(db, types.CommitID{}, false)
|
|
store := iStore.(*iavl.Store)
|
|
require.Nil(t, err)
|
|
store.Set([]byte("MYKEY"), []byte("MYVALUE"))
|
|
cid := store.Commit()
|
|
|
|
// Get Proof
|
|
res := store.Query(abci.RequestQuery{
|
|
Path: "/key", // required path to get key/value+proof
|
|
Data: []byte("MYKEY"),
|
|
Prove: true,
|
|
})
|
|
require.NotNil(t, res.ProofOps)
|
|
|
|
// Verify proof.
|
|
prt := DefaultProofRuntime()
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/MYKEY", []byte("MYVALUE"))
|
|
require.Nil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/MYKEY_NOT", []byte("MYVALUE"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/MYKEY/MYKEY", []byte("MYVALUE"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "MYKEY", []byte("MYVALUE"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/MYKEY", []byte("MYVALUE_NOT"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/MYKEY", []byte(nil))
|
|
require.NotNil(t, err)
|
|
}
|
|
|
|
func TestVerifyMultiStoreQueryProof(t *testing.T) {
|
|
// Create main tree for testing.
|
|
db := dbm.NewMemDB()
|
|
store := NewStore(db)
|
|
iavlStoreKey := types.NewKVStoreKey("iavlStoreKey")
|
|
|
|
store.MountStoreWithDB(iavlStoreKey, types.StoreTypeIAVL, nil)
|
|
require.NoError(t, store.LoadVersion(0))
|
|
|
|
iavlStore := store.GetCommitStore(iavlStoreKey).(*iavl.Store)
|
|
iavlStore.Set([]byte("MYKEY"), []byte("MYVALUE"))
|
|
cid := store.Commit()
|
|
|
|
// Get Proof
|
|
res := store.Query(abci.RequestQuery{
|
|
Path: "/iavlStoreKey/key", // required path to get key/value+proof
|
|
Data: []byte("MYKEY"),
|
|
Prove: true,
|
|
})
|
|
require.NotNil(t, res.ProofOps)
|
|
|
|
// Verify proof.
|
|
prt := DefaultProofRuntime()
|
|
err := prt.VerifyValue(res.ProofOps, cid.Hash, "/iavlStoreKey/MYKEY", []byte("MYVALUE"))
|
|
require.Nil(t, err)
|
|
|
|
// Verify proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/iavlStoreKey/MYKEY", []byte("MYVALUE"))
|
|
require.Nil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/iavlStoreKey/MYKEY_NOT", []byte("MYVALUE"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/iavlStoreKey/MYKEY/MYKEY", []byte("MYVALUE"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "iavlStoreKey/MYKEY", []byte("MYVALUE"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/MYKEY", []byte("MYVALUE"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/iavlStoreKey/MYKEY", []byte("MYVALUE_NOT"))
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/iavlStoreKey/MYKEY", []byte(nil))
|
|
require.NotNil(t, err)
|
|
}
|
|
|
|
func TestVerifyMultiStoreQueryProofAbsence(t *testing.T) {
|
|
// Create main tree for testing.
|
|
db := dbm.NewMemDB()
|
|
store := NewStore(db)
|
|
iavlStoreKey := types.NewKVStoreKey("iavlStoreKey")
|
|
|
|
store.MountStoreWithDB(iavlStoreKey, types.StoreTypeIAVL, nil)
|
|
err := store.LoadVersion(0)
|
|
require.NoError(t, err)
|
|
|
|
iavlStore := store.GetCommitStore(iavlStoreKey).(*iavl.Store)
|
|
iavlStore.Set([]byte("MYKEY"), []byte("MYVALUE"))
|
|
cid := store.Commit() // Commit with empty iavl store.
|
|
|
|
// Get Proof
|
|
res := store.Query(abci.RequestQuery{
|
|
Path: "/iavlStoreKey/key", // required path to get key/value+proof
|
|
Data: []byte("MYABSENTKEY"),
|
|
Prove: true,
|
|
})
|
|
require.NotNil(t, res.ProofOps)
|
|
|
|
// Verify proof.
|
|
prt := DefaultProofRuntime()
|
|
err = prt.VerifyAbsence(res.ProofOps, cid.Hash, "/iavlStoreKey/MYABSENTKEY")
|
|
require.Nil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
prt = DefaultProofRuntime()
|
|
err = prt.VerifyAbsence(res.ProofOps, cid.Hash, "/MYABSENTKEY")
|
|
require.NotNil(t, err)
|
|
|
|
// Verify (bad) proof.
|
|
prt = DefaultProofRuntime()
|
|
err = prt.VerifyValue(res.ProofOps, cid.Hash, "/iavlStoreKey/MYABSENTKEY", []byte(""))
|
|
require.NotNil(t, err)
|
|
}
|