96 lines
2.2 KiB
Go
96 lines
2.2 KiB
Go
package cli
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
"github.com/cosmos/cosmos-sdk/testutil"
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
|
|
"github.com/cosmos/cosmos-sdk/x/staking/types"
|
|
)
|
|
|
|
type IntegrationTestSuite struct {
|
|
suite.Suite
|
|
|
|
cfg network.Config
|
|
network *network.Network
|
|
}
|
|
|
|
func (s *IntegrationTestSuite) SetupSuite() {
|
|
s.T().Log("setting up integration test suite")
|
|
|
|
cfg := network.DefaultConfig()
|
|
cfg.NumValidators = 1
|
|
|
|
s.cfg = cfg
|
|
s.network = network.New(s.T(), cfg)
|
|
|
|
_, err := s.network.WaitForHeight(1)
|
|
s.Require().NoError(err)
|
|
}
|
|
|
|
func (s *IntegrationTestSuite) TearDownSuite() {
|
|
s.T().Log("tearing down integration test suite")
|
|
s.network.Cleanup()
|
|
}
|
|
|
|
func (s *IntegrationTestSuite) TestGenTxCmd() {
|
|
val := s.network.Validators[0]
|
|
|
|
dir, clean := testutil.NewTestCaseDir(s.T())
|
|
defer clean()
|
|
|
|
cmd := GenTxCmd(
|
|
simapp.ModuleBasics,
|
|
val.ClientCtx.TxConfig, banktypes.GenesisBalancesIterator{}, val.ClientCtx.HomeDir)
|
|
|
|
_, out := testutil.ApplyMockIO(cmd)
|
|
clientCtx := val.ClientCtx.WithOutput(out)
|
|
|
|
ctx := context.Background()
|
|
ctx = context.WithValue(ctx, client.ClientContextKey, &clientCtx)
|
|
|
|
genTxFile := filepath.Join(dir, "myTx")
|
|
cmd.SetArgs([]string{
|
|
fmt.Sprintf("--%s=%s", flagChainID, s.network.Config.ChainID),
|
|
fmt.Sprintf("--%s=%s", flags.FlagOutputDocument, genTxFile),
|
|
val.Moniker,
|
|
})
|
|
|
|
err := cmd.ExecuteContext(ctx)
|
|
s.Require().NoError(err)
|
|
|
|
// Validate generated transaction.
|
|
open, err := os.Open(genTxFile)
|
|
s.Require().NoError(err)
|
|
|
|
all, err := ioutil.ReadAll(open)
|
|
s.Require().NoError(err)
|
|
|
|
tx, err := val.ClientCtx.TxConfig.TxJSONDecoder()(all)
|
|
s.Require().NoError(err)
|
|
|
|
msgs := tx.GetMsgs()
|
|
s.Require().Len(msgs, 1)
|
|
|
|
s.Require().Equal(types.TypeMsgCreateValidator, msgs[0].Type())
|
|
s.Require().Equal([]sdk.AccAddress{val.Address}, msgs[0].GetSigners())
|
|
err = tx.ValidateBasic()
|
|
s.Require().NoError(err)
|
|
}
|
|
|
|
func TestIntegrationTestSuite(t *testing.T) {
|
|
suite.Run(t, new(IntegrationTestSuite))
|
|
}
|