* WIP * WIP * WIP on removing x/auth dependency from client/tx * Revert unneeded changes * Simplify cli tx UX * Wire up bank tx REST routes * Fix assignment issue * Wire up bank NewSendTxCmd * fix lint * revert file * revert file * fix simcli * Refactor AccountRetriever * Fix build * Fix build * Fix build * Fix integration tests * Fix tests * Docs, linting * Linting * WIP on all modules * Implement other module new tx cmd's * Fix cmd's * Refactor existing GetTxCmd * Fix cmd * Removing deprecated code * Update ADR 020 & CHANGELOG * Lint * Lint * Lint * Lint * Lint * Lint * Lint * Fix client/tx tests * Fix mocks * Fix tests * Lint fixes * REST tx migration * Wire up REST * Linting * Update CHANGELOG, docs * Fix tests * lint * Address review feedback * Update CHANGELOG.md Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> * Update CHANGELOG.md Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com> * group vars Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
90 lines
2.0 KiB
Go
90 lines
2.0 KiB
Go
package cli
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/tendermint/tendermint/crypto/secp256k1"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
func Test_splitAndCall_NoMessages(t *testing.T) {
|
|
ctx := context.CLIContext{}
|
|
|
|
err := splitAndApply(nil, ctx, nil, 10)
|
|
assert.NoError(t, err, "")
|
|
}
|
|
|
|
func Test_splitAndCall_Splitting(t *testing.T) {
|
|
ctx := context.CLIContext{}
|
|
|
|
addr := sdk.AccAddress(secp256k1.GenPrivKey().PubKey().Address())
|
|
|
|
// Add five messages
|
|
msgs := []sdk.Msg{
|
|
sdk.NewTestMsg(addr),
|
|
sdk.NewTestMsg(addr),
|
|
sdk.NewTestMsg(addr),
|
|
sdk.NewTestMsg(addr),
|
|
sdk.NewTestMsg(addr),
|
|
}
|
|
|
|
// Keep track of number of calls
|
|
const chunkSize = 2
|
|
|
|
callCount := 0
|
|
err := splitAndApply(
|
|
func(ctx context.CLIContext, msgs []sdk.Msg) error {
|
|
callCount++
|
|
|
|
assert.NotNil(t, ctx)
|
|
assert.NotNil(t, msgs)
|
|
|
|
if callCount < 3 {
|
|
assert.Equal(t, len(msgs), 2)
|
|
} else {
|
|
assert.Equal(t, len(msgs), 1)
|
|
}
|
|
|
|
return nil
|
|
},
|
|
ctx, msgs, chunkSize)
|
|
|
|
assert.NoError(t, err, "")
|
|
assert.Equal(t, 3, callCount)
|
|
}
|
|
|
|
func TestParseProposal(t *testing.T) {
|
|
cdc := codec.New()
|
|
okJSON, err := ioutil.TempFile("", "proposal")
|
|
require.Nil(t, err, "unexpected error")
|
|
_, err = okJSON.WriteString(`
|
|
{
|
|
"title": "Community Pool Spend",
|
|
"description": "Pay me some Atoms!",
|
|
"recipient": "cosmos1s5afhd6gxevu37mkqcvvsj8qeylhn0rz46zdlq",
|
|
"amount": "1000stake",
|
|
"deposit": "1000stake"
|
|
}
|
|
`)
|
|
require.NoError(t, err)
|
|
|
|
proposal, err := ParseCommunityPoolSpendProposalJSON(cdc, okJSON.Name())
|
|
require.NoError(t, err)
|
|
|
|
addr, err := sdk.AccAddressFromBech32("cosmos1s5afhd6gxevu37mkqcvvsj8qeylhn0rz46zdlq")
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, "Community Pool Spend", proposal.Title)
|
|
require.Equal(t, "Pay me some Atoms!", proposal.Description)
|
|
require.Equal(t, addr, proposal.Recipient)
|
|
require.Equal(t, "1000stake", proposal.Deposit)
|
|
require.Equal(t, "1000stake", proposal.Amount)
|
|
}
|