* 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>
65 lines
1.8 KiB
Go
65 lines
1.8 KiB
Go
package baseapp_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
abci "github.com/tendermint/tendermint/abci/types"
|
|
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/baseapp"
|
|
)
|
|
|
|
func TestValidateBlockParams(t *testing.T) {
|
|
testCases := []struct {
|
|
arg interface{}
|
|
expectErr bool
|
|
}{
|
|
{nil, true},
|
|
{&abci.BlockParams{}, true},
|
|
{abci.BlockParams{}, true},
|
|
{abci.BlockParams{MaxBytes: -1, MaxGas: -1}, true},
|
|
{abci.BlockParams{MaxBytes: 2000000, MaxGas: -5}, true},
|
|
{abci.BlockParams{MaxBytes: 2000000, MaxGas: 300000}, false},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
require.Equal(t, tc.expectErr, baseapp.ValidateBlockParams(tc.arg) != nil)
|
|
}
|
|
}
|
|
|
|
func TestValidateEvidenceParams(t *testing.T) {
|
|
testCases := []struct {
|
|
arg interface{}
|
|
expectErr bool
|
|
}{
|
|
{nil, true},
|
|
{&tmproto.EvidenceParams{}, true},
|
|
{tmproto.EvidenceParams{}, true},
|
|
{tmproto.EvidenceParams{MaxAgeNumBlocks: -1, MaxAgeDuration: 18004000, MaxNum: 50, ProofTrialPeriod: 10_000}, true},
|
|
{tmproto.EvidenceParams{MaxAgeNumBlocks: 360000, MaxAgeDuration: 18004000, MaxNum: 50, ProofTrialPeriod: -1}, true},
|
|
{tmproto.EvidenceParams{MaxAgeNumBlocks: 360000, MaxAgeDuration: 18004000, MaxNum: 50, ProofTrialPeriod: 50_0000}, false},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
require.Equal(t, tc.expectErr, baseapp.ValidateEvidenceParams(tc.arg) != nil)
|
|
}
|
|
}
|
|
|
|
func TestValidateValidatorParams(t *testing.T) {
|
|
testCases := []struct {
|
|
arg interface{}
|
|
expectErr bool
|
|
}{
|
|
{nil, true},
|
|
{&tmproto.ValidatorParams{}, true},
|
|
{tmproto.ValidatorParams{}, true},
|
|
{tmproto.ValidatorParams{PubKeyTypes: []string{}}, true},
|
|
{tmproto.ValidatorParams{PubKeyTypes: []string{"secp256k1"}}, false},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
require.Equal(t, tc.expectErr, baseapp.ValidateValidatorParams(tc.arg) != nil)
|
|
}
|
|
}
|