* mainly sdk.int to cosmossdk.io/math * staking keys * fumpt * var-naming linter errors and a fumpt * Update CHANGELOG.md * Update .golangci.yml * Update CHANGELOG.md * Update test_helpers.go * Update test_helpers.go * fumpt and lint * this lints the db module, and makes it easier to use. It adds breaking name changes * DBConnection -> Connection * previous commit contained a merge error * Update test_helpers.go * Update test_helpers.go * db renamings * merge master * changelog * DBWriter -> Writer * consistent multistore reciever * standard recievers for multistore v2alpha1 * general cleanup of linting issues * more linter fixes * remove prealloc linter * nolint the secp256k1 import * nolint the secp256k1 package * completenolint resulting in a diff that has only nolints
59 lines
2.0 KiB
Go
59 lines
2.0 KiB
Go
package testutil
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/testutil"
|
|
clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
govcli "github.com/cosmos/cosmos-sdk/x/gov/client/cli"
|
|
)
|
|
|
|
var commonArgs = []string{
|
|
fmt.Sprintf("--%s=true", flags.FlagSkipConfirmation),
|
|
fmt.Sprintf("--%s=%s", flags.FlagBroadcastMode, flags.BroadcastBlock),
|
|
fmt.Sprintf("--%s=%s", flags.FlagFees, sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdk.NewInt(10))).String()),
|
|
}
|
|
|
|
// MsgSubmitLegacyProposal creates a tx for submit legacy proposal
|
|
//nolint:staticcheck // we are intentionally using a deprecated flag here.
|
|
func MsgSubmitLegacyProposal(clientCtx client.Context, from, title, description, proposalType string, extraArgs ...string) (testutil.BufferWriter, error) {
|
|
args := append([]string{
|
|
fmt.Sprintf("--%s=%s", govcli.FlagTitle, title),
|
|
fmt.Sprintf("--%s=%s", govcli.FlagDescription, description),
|
|
fmt.Sprintf("--%s=%s", govcli.FlagProposalType, proposalType),
|
|
fmt.Sprintf("--%s=%s", flags.FlagFrom, from),
|
|
}, commonArgs...)
|
|
|
|
args = append(args, extraArgs...)
|
|
|
|
return clitestutil.ExecTestCLICmd(clientCtx, govcli.NewCmdSubmitLegacyProposal(), args)
|
|
}
|
|
|
|
// MsgVote votes for a proposal
|
|
func MsgVote(clientCtx client.Context, from, id, vote string, extraArgs ...string) (testutil.BufferWriter, error) {
|
|
args := append([]string{
|
|
id,
|
|
vote,
|
|
fmt.Sprintf("--%s=%s", flags.FlagFrom, from),
|
|
}, commonArgs...)
|
|
|
|
args = append(args, extraArgs...)
|
|
|
|
return clitestutil.ExecTestCLICmd(clientCtx, govcli.NewCmdWeightedVote(), args)
|
|
}
|
|
|
|
func MsgDeposit(clientCtx client.Context, from, id, deposit string, extraArgs ...string) (testutil.BufferWriter, error) {
|
|
args := append([]string{
|
|
id,
|
|
deposit,
|
|
fmt.Sprintf("--%s=%s", flags.FlagFrom, from),
|
|
}, commonArgs...)
|
|
|
|
args = append(args, extraArgs...)
|
|
|
|
return clitestutil.ExecTestCLICmd(clientCtx, govcli.NewCmdDeposit(), args)
|
|
}
|