package legacy_test import ( "strings" "testing" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/codec/legacy" "github.com/cosmos/cosmos-sdk/testutil/testdata" "github.com/stretchr/testify/require" ) func TestRegisterAminoMsg(t *testing.T) { cdc := codec.NewLegacyAmino() testCases := map[string]struct { msgName string expPanic bool }{ "all good": { msgName: "cosmos-sdk/Test", }, "msgName too long": { msgName: strings.Repeat("a", 40), expPanic: true, }, } for name, tc := range testCases { t.Run(name, func(t *testing.T) { fn := func() { legacy.RegisterAminoMsg(cdc, &testdata.TestMsg{}, tc.msgName) } if tc.expPanic { require.Panics(t, fn) } else { require.NotPanics(t, fn) } }) } }