* init * Fix bank proto messages * missing conversions * remove casttype for addresses * Fix tests * Fix consaddress * more test fixes * Fix tests * fixed tests * migrate missing proto declarations * format * Fix format * Fix alignment * Fix more tests * Fix ibc merge issue * Fix fmt * Fix more tests * Fix missing address declarations * Fix staking tests * Fix more tests * Fix config * fixed tests * Fix more tests * Update staking grpc tests * Fix merge issue * fixed failing tests in x/distr * fixed sim tests * fixed failing tests * Fix bugs * Add logs * fixed slashing issue * Fix staking grpc tests * Fix all bank tests :) * Fix tests in distribution * Fix more tests in distr * Fix slashing tests * Fix statking tests * Fix evidence tests * Fix gov tests * Fix bug in create vesting account * Fix test * remove fmt * fixed gov tests * fixed x/ibc tests * fixed x/ibc-transfer tests * fixed staking tests * fixed staking tests * fixed test * fixed distribution issue * fix pagination test * fmt * lint * fix build * fix format * revert tally tests * revert tally tests * lint * Fix sim test * revert * revert * fixed tally issue * fix tests * revert * fmt * refactor * remove `GetAddress()` * remove fmt * revert fmt.Striger usage * Fix tests * Fix rest test * disable interfacer lint check * make proto-format * add nolint rule * remove stray println Co-authored-by: aleem1314 <aleem.md789@gmail.com> Co-authored-by: atheesh <atheesh@vitwit.com>
90 lines
2.1 KiB
Go
90 lines
2.1 KiB
Go
package cli
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/spf13/pflag"
|
|
|
|
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
|
|
"github.com/cosmos/cosmos-sdk/simapp/params"
|
|
"github.com/cosmos/cosmos-sdk/testutil"
|
|
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
func Test_splitAndCall_NoMessages(t *testing.T) {
|
|
clientCtx := client.Context{}
|
|
|
|
err := newSplitAndApply(nil, clientCtx, nil, nil, 10)
|
|
assert.NoError(t, err, "")
|
|
}
|
|
|
|
func Test_splitAndCall_Splitting(t *testing.T) {
|
|
clientCtx := client.Context{}
|
|
|
|
addr := sdk.AccAddress(secp256k1.GenPrivKey().PubKey().Address())
|
|
|
|
// Add five messages
|
|
msgs := []sdk.Msg{
|
|
testdata.NewTestMsg(addr),
|
|
testdata.NewTestMsg(addr),
|
|
testdata.NewTestMsg(addr),
|
|
testdata.NewTestMsg(addr),
|
|
testdata.NewTestMsg(addr),
|
|
}
|
|
|
|
// Keep track of number of calls
|
|
const chunkSize = 2
|
|
|
|
callCount := 0
|
|
err := newSplitAndApply(
|
|
func(clientCtx client.Context, fs *pflag.FlagSet, msgs ...sdk.Msg) error {
|
|
callCount++
|
|
|
|
assert.NotNil(t, clientCtx)
|
|
assert.NotNil(t, msgs)
|
|
|
|
if callCount < 3 {
|
|
assert.Equal(t, len(msgs), 2)
|
|
} else {
|
|
assert.Equal(t, len(msgs), 1)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
clientCtx, nil, msgs, chunkSize)
|
|
|
|
assert.NoError(t, err, "")
|
|
assert.Equal(t, 3, callCount)
|
|
}
|
|
|
|
func TestParseProposal(t *testing.T) {
|
|
encodingConfig := params.MakeEncodingConfig()
|
|
|
|
okJSON, cleanup := testutil.WriteToNewTempFile(t, `
|
|
{
|
|
"title": "Community Pool Spend",
|
|
"description": "Pay me some Atoms!",
|
|
"recipient": "cosmos1s5afhd6gxevu37mkqcvvsj8qeylhn0rz46zdlq",
|
|
"amount": "1000stake",
|
|
"deposit": "1000stake"
|
|
}
|
|
`)
|
|
t.Cleanup(cleanup)
|
|
|
|
proposal, err := ParseCommunityPoolSpendProposalWithDeposit(encodingConfig.Marshaler, okJSON.Name())
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, "Community Pool Spend", proposal.Title)
|
|
require.Equal(t, "Pay me some Atoms!", proposal.Description)
|
|
require.Equal(t, "cosmos1s5afhd6gxevu37mkqcvvsj8qeylhn0rz46zdlq", proposal.Recipient)
|
|
require.Equal(t, "1000stake", proposal.Deposit)
|
|
require.Equal(t, "1000stake", proposal.Amount)
|
|
}
|