48 lines
1.7 KiB
Go
48 lines
1.7 KiB
Go
package testutil
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
sdkmath "cosmossdk.io/math"
|
|
govcli "cosmossdk.io/x/gov/client/cli"
|
|
|
|
"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"
|
|
)
|
|
|
|
var commonArgs = []string{
|
|
fmt.Sprintf("--%s=true", flags.FlagSkipConfirmation),
|
|
fmt.Sprintf("--%s=%s", flags.FlagBroadcastMode, flags.BroadcastSync),
|
|
fmt.Sprintf("--%s=%s", flags.FlagFees, sdk.NewCoins(sdk.NewCoin(sdk.DefaultBondDenom, sdkmath.NewInt(10))).String()),
|
|
}
|
|
|
|
// MsgSubmitLegacyProposal creates a tx for submit legacy proposal
|
|
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), //nolint:staticcheck // we are intentionally using a deprecated flag here.
|
|
fmt.Sprintf("--%s=%s", govcli.FlagProposalType, proposalType), //nolint:staticcheck // we are intentionally using a deprecated flag here.
|
|
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)
|
|
}
|