* Migrate encode, decode, and broadcast cmd's to use TxGenerator marshal methods * Fix tests, add EncodingConfig * Add simapp/encoding.go and wire up with simcli * add godocs * fix tests * Debugging CLI Tests * Fix integration test * 6391 - lint issues and code coverage (#6414) * fixed lint issue of "txEncodeRespStr" * added tests for encode.go * WIP: added tests for decode.go * added txEncoder at bytes * updated decode test * updated txBytes to use TxEncoder in decoder test * added a require after TxEncoder * removed file save * debug decode command * fixed decode tests * added decode cli * updated encode and decode in a single file * separated decode test from encode test * review changes * removed register interface * review change * Fix tests * WIP add test for tx sign * removed commented code * Fix flags * WIP add test for sign * Address review suggestions * fixed command issue * Add tests for TxEncoder * Revert sign changes * Fix TxEncoder tests * Fix GetSign Cmd * Add tx test * Remove duplicate validation * Add tests for TxDecoder * Fix tests * Fix tests * Output to clientCtx.Output * Fix cli_tests Co-authored-by: atheeshp <59333759+atheeshp@users.noreply.github.com> Co-authored-by: atheesh <atheesh@vitwit.com> Co-authored-by: anilCSE <anil@vitwit.com> Co-authored-by: sahith-narahari <sahithnarahari@gmail.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
84 lines
2.1 KiB
Go
84 lines
2.1 KiB
Go
package cli
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
tmtypes "github.com/tendermint/tendermint/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/server"
|
|
"github.com/cosmos/cosmos-sdk/simapp"
|
|
"github.com/cosmos/cosmos-sdk/simapp/params"
|
|
)
|
|
|
|
// Fixtures is used to setup the testing environment
|
|
type Fixtures struct {
|
|
BuildDir string
|
|
RootDir string
|
|
SimdBinary string
|
|
SimcliBinary string
|
|
ChainID string
|
|
RPCAddr string
|
|
Port string
|
|
SimdHome string
|
|
SimcliHome string
|
|
P2PAddr string
|
|
Cdc *codec.Codec
|
|
EncodingConfig params.EncodingConfig
|
|
T *testing.T
|
|
}
|
|
|
|
// NewFixtures creates a new instance of Fixtures with many vars set
|
|
func NewFixtures(t *testing.T) *Fixtures {
|
|
tmpDir, err := ioutil.TempDir("", "sdk_integration_"+t.Name()+"_")
|
|
require.NoError(t, err)
|
|
|
|
servAddr, port, err := server.FreeTCPAddr()
|
|
require.NoError(t, err)
|
|
|
|
p2pAddr, _, err := server.FreeTCPAddr()
|
|
require.NoError(t, err)
|
|
|
|
buildDir := os.Getenv("BUILDDIR")
|
|
if buildDir == "" {
|
|
t.Skip("builddir is empty, skipping")
|
|
}
|
|
|
|
encodingConfig := simapp.MakeEncodingConfig()
|
|
|
|
return &Fixtures{
|
|
T: t,
|
|
BuildDir: buildDir,
|
|
RootDir: tmpDir,
|
|
SimdBinary: filepath.Join(buildDir, "simd"),
|
|
SimcliBinary: filepath.Join(buildDir, "simcli"),
|
|
SimdHome: filepath.Join(tmpDir, ".simd"),
|
|
SimcliHome: filepath.Join(tmpDir, ".simcli"),
|
|
RPCAddr: servAddr,
|
|
P2PAddr: p2pAddr,
|
|
Cdc: encodingConfig.Amino,
|
|
EncodingConfig: encodingConfig,
|
|
Port: port,
|
|
}
|
|
}
|
|
|
|
// GenesisFile returns the path of the genesis file
|
|
func (f Fixtures) GenesisFile() string {
|
|
return filepath.Join(f.SimdHome, "config", "genesis.json")
|
|
}
|
|
|
|
// GenesisFile returns the application's genesis state
|
|
func (f Fixtures) GenesisState() simapp.GenesisState {
|
|
genDoc, err := tmtypes.GenesisDocFromFile(f.GenesisFile())
|
|
require.NoError(f.T, err)
|
|
|
|
var appState simapp.GenesisState
|
|
require.NoError(f.T, f.Cdc.UnmarshalJSON(genDoc.AppState, &appState))
|
|
return appState
|
|
}
|