package cli import ( "context" "fmt" "github.com/spf13/cobra" "cosmossdk.io/core/address" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/testutil" "github.com/cosmos/cosmos-sdk/x/bank/client/cli" ) // ExecTestCLICmd builds the client context, mocks the output and executes the command. func ExecTestCLICmd(clientCtx client.Context, cmd *cobra.Command, extraArgs []string) (testutil.BufferWriter, error) { cmd.SetArgs(extraArgs) _, out := testutil.ApplyMockIO(cmd) clientCtx = clientCtx.WithOutput(out) ctx := context.Background() ctx = context.WithValue(ctx, client.ClientContextKey, &clientCtx) if err := cmd.ExecuteContext(ctx); err != nil { return out, err } return out, nil } func MsgSendExec(clientCtx client.Context, from, to, amount fmt.Stringer, ac address.Codec, extraArgs ...string) (testutil.BufferWriter, error) { args := []string{from.String(), to.String(), amount.String()} args = append(args, extraArgs...) return ExecTestCLICmd(clientCtx, cli.NewSendTxCmd(ac), args) }