Some checks failed
CodeQL / Analyze (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Deploy to GitHub Pages / Deploy to GitHub Pages (push) Has been cancelled
Buf-Push / push (push) Has been cancelled
199 lines
10 KiB
Go
199 lines
10 KiB
Go
package tendermint_test
|
|
|
|
import (
|
|
"math"
|
|
"time"
|
|
|
|
clienttypes "github.com/cosmos/ibc-go/v10/modules/core/02-client/types"
|
|
commitmenttypes "github.com/cosmos/ibc-go/v10/modules/core/23-commitment/types"
|
|
host "github.com/cosmos/ibc-go/v10/modules/core/24-host"
|
|
"github.com/cosmos/ibc-go/v10/modules/core/exported"
|
|
solomachine "github.com/cosmos/ibc-go/v10/modules/light-clients/06-solomachine"
|
|
tendermint "github.com/cosmos/ibc-go/v10/modules/light-clients/07-tendermint"
|
|
ibctesting "github.com/cosmos/ibc-go/v10/testing"
|
|
)
|
|
|
|
func (suite *TendermintTestSuite) TestGetConsensusState() {
|
|
var (
|
|
height exported.Height
|
|
path *ibctesting.Path
|
|
)
|
|
|
|
testCases := []struct {
|
|
name string
|
|
malleate func()
|
|
expPass bool
|
|
expPanic bool
|
|
}{
|
|
{
|
|
"success", func() {}, true, false,
|
|
},
|
|
{
|
|
"consensus state not found", func() {
|
|
// use height with no consensus state set
|
|
height = height.Increment()
|
|
}, false, false,
|
|
},
|
|
{
|
|
"not a consensus state interface", func() {
|
|
// marshal an empty client state and set as consensus state
|
|
store := suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), path.EndpointA.ClientID)
|
|
clientStateBz := clienttypes.MustMarshalClientState(suite.chainA.App.AppCodec(), &tendermint.ClientState{})
|
|
store.Set(host.ConsensusStateKey(height), clientStateBz)
|
|
}, false, true,
|
|
},
|
|
{
|
|
"invalid consensus state (solomachine)", func() {
|
|
// marshal and set solomachine consensus state
|
|
store := suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), path.EndpointA.ClientID)
|
|
consensusStateBz := clienttypes.MustMarshalConsensusState(suite.chainA.App.AppCodec(), &solomachine.ConsensusState{})
|
|
store.Set(host.ConsensusStateKey(height), consensusStateBz)
|
|
}, false, true,
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
suite.Run(tc.name, func() {
|
|
suite.SetupTest()
|
|
path = ibctesting.NewPath(suite.chainA, suite.chainB)
|
|
|
|
path.Setup()
|
|
|
|
height = path.EndpointA.GetClientLatestHeight()
|
|
|
|
tc.malleate() // change vars as necessary
|
|
|
|
if tc.expPanic {
|
|
suite.Require().Panics(func() {
|
|
store := suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), path.EndpointA.ClientID)
|
|
tendermint.GetConsensusState(store, suite.chainA.Codec, height)
|
|
})
|
|
|
|
return
|
|
}
|
|
|
|
store := suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), path.EndpointA.ClientID)
|
|
consensusState, found := tendermint.GetConsensusState(store, suite.chainA.Codec, height)
|
|
|
|
if tc.expPass {
|
|
suite.Require().True(found)
|
|
|
|
expConsensusState, found := suite.chainA.GetConsensusState(path.EndpointA.ClientID, height)
|
|
suite.Require().True(found)
|
|
suite.Require().Equal(expConsensusState, consensusState)
|
|
} else {
|
|
suite.Require().False(found)
|
|
suite.Require().Nil(consensusState)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func (suite *TendermintTestSuite) TestGetProcessedTime() {
|
|
path := ibctesting.NewPath(suite.chainA, suite.chainB)
|
|
suite.coordinator.UpdateTime()
|
|
|
|
expectedTime := suite.chainA.ProposedHeader.Time
|
|
|
|
// Verify ProcessedTime on CreateClient
|
|
err := path.EndpointA.CreateClient()
|
|
suite.Require().NoError(err)
|
|
|
|
height := path.EndpointA.GetClientLatestHeight()
|
|
|
|
store := suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), path.EndpointA.ClientID)
|
|
actualTime, ok := tendermint.GetProcessedTime(store, height)
|
|
suite.Require().True(ok, "could not retrieve processed time for stored consensus state")
|
|
suite.Require().Equal(uint64(expectedTime.UnixNano()), actualTime, "retrieved processed time is not expected value")
|
|
|
|
suite.coordinator.UpdateTime()
|
|
// coordinator increments time before updating client
|
|
expectedTime = suite.chainA.ProposedHeader.Time.Add(ibctesting.TimeIncrement)
|
|
|
|
// Verify ProcessedTime on UpdateClient
|
|
err = path.EndpointA.UpdateClient()
|
|
suite.Require().NoError(err)
|
|
|
|
height = path.EndpointA.GetClientLatestHeight()
|
|
|
|
store = suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), path.EndpointA.ClientID)
|
|
actualTime, ok = tendermint.GetProcessedTime(store, height)
|
|
suite.Require().True(ok, "could not retrieve processed time for stored consensus state")
|
|
suite.Require().Equal(uint64(expectedTime.UnixNano()), actualTime, "retrieved processed time is not expected value")
|
|
|
|
// try to get processed time for height that doesn't exist in store
|
|
_, ok = tendermint.GetProcessedTime(store, clienttypes.NewHeight(1, 1))
|
|
suite.Require().False(ok, "retrieved processed time for a non-existent consensus state")
|
|
}
|
|
|
|
func (suite *TendermintTestSuite) TestIterationKey() {
|
|
testHeights := []exported.Height{
|
|
clienttypes.NewHeight(0, 1),
|
|
clienttypes.NewHeight(0, 1234),
|
|
clienttypes.NewHeight(7890, 4321),
|
|
clienttypes.NewHeight(math.MaxUint64, math.MaxUint64),
|
|
}
|
|
for _, h := range testHeights {
|
|
k := tendermint.IterationKey(h)
|
|
retrievedHeight := tendermint.GetHeightFromIterationKey(k)
|
|
suite.Require().Equal(h, retrievedHeight, "retrieving height from iteration key failed")
|
|
}
|
|
}
|
|
|
|
func (suite *TendermintTestSuite) TestIterateConsensusStates() {
|
|
nextValsHash := []byte("nextVals")
|
|
|
|
// Set iteration keys and consensus states
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), clienttypes.NewHeight(0, 1))
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", clienttypes.NewHeight(0, 1), tendermint.NewConsensusState(time.Now(), commitmenttypes.NewMerkleRoot([]byte("hash0-1")), nextValsHash))
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), clienttypes.NewHeight(4, 9))
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", clienttypes.NewHeight(4, 9), tendermint.NewConsensusState(time.Now(), commitmenttypes.NewMerkleRoot([]byte("hash4-9")), nextValsHash))
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), clienttypes.NewHeight(0, 10))
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", clienttypes.NewHeight(0, 10), tendermint.NewConsensusState(time.Now(), commitmenttypes.NewMerkleRoot([]byte("hash0-10")), nextValsHash))
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), clienttypes.NewHeight(0, 4))
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", clienttypes.NewHeight(0, 4), tendermint.NewConsensusState(time.Now(), commitmenttypes.NewMerkleRoot([]byte("hash0-4")), nextValsHash))
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), clienttypes.NewHeight(40, 1))
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", clienttypes.NewHeight(40, 1), tendermint.NewConsensusState(time.Now(), commitmenttypes.NewMerkleRoot([]byte("hash40-1")), nextValsHash))
|
|
|
|
var testArr []string
|
|
cb := func(height exported.Height) bool {
|
|
testArr = append(testArr, height.String())
|
|
return false
|
|
}
|
|
|
|
tendermint.IterateConsensusStateAscending(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), cb)
|
|
expectedArr := []string{"0-1", "0-4", "0-10", "4-9", "40-1"}
|
|
suite.Require().Equal(expectedArr, testArr)
|
|
}
|
|
|
|
func (suite *TendermintTestSuite) TestGetNeighboringConsensusStates() {
|
|
nextValsHash := []byte("nextVals")
|
|
cs01 := tendermint.NewConsensusState(time.Now().UTC(), commitmenttypes.NewMerkleRoot([]byte("hash0-1")), nextValsHash)
|
|
cs04 := tendermint.NewConsensusState(time.Now().UTC(), commitmenttypes.NewMerkleRoot([]byte("hash0-4")), nextValsHash)
|
|
cs49 := tendermint.NewConsensusState(time.Now().UTC(), commitmenttypes.NewMerkleRoot([]byte("hash4-9")), nextValsHash)
|
|
height01 := clienttypes.NewHeight(0, 1)
|
|
height04 := clienttypes.NewHeight(0, 4)
|
|
height49 := clienttypes.NewHeight(4, 9)
|
|
|
|
// Set iteration keys and consensus states
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), height01)
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", height01, cs01)
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), height04)
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", height04, cs04)
|
|
tendermint.SetIterationKey(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), height49)
|
|
suite.chainA.App.GetIBCKeeper().ClientKeeper.SetClientConsensusState(suite.chainA.GetContext(), "testClient", height49, cs49)
|
|
|
|
prevCs01, ok := tendermint.GetPreviousConsensusState(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), suite.chainA.Codec, height01)
|
|
suite.Require().Nil(prevCs01, "consensus state exists before lowest consensus state")
|
|
suite.Require().False(ok)
|
|
prevCs49, ok := tendermint.GetPreviousConsensusState(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), suite.chainA.Codec, height49)
|
|
suite.Require().Equal(cs04, prevCs49, "previous consensus state is not returned correctly")
|
|
suite.Require().True(ok)
|
|
|
|
nextCs01, ok := tendermint.GetNextConsensusState(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), suite.chainA.Codec, height01)
|
|
suite.Require().Equal(cs04, nextCs01, "next consensus state not returned correctly")
|
|
suite.Require().True(ok)
|
|
nextCs49, ok := tendermint.GetNextConsensusState(suite.chainA.App.GetIBCKeeper().ClientKeeper.ClientStore(suite.chainA.GetContext(), "testClient"), suite.chainA.Codec, height49)
|
|
suite.Require().Nil(nextCs49, "next consensus state exists after highest consensus state")
|
|
suite.Require().False(ok)
|
|
}
|