## Description Closes: #11149 - Let `--dry-run` not use the local keyring - Fixes for required flags not shown - Make `--generate-only` behavior consistent --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [x] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [x] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#pr-targeting)) - [x] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/master/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/master/CONTRIBUTING.md#testing) - [x] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [x] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
223 lines
5.4 KiB
Go
223 lines
5.4 KiB
Go
package client_test
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/spf13/viper"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/codec/types"
|
|
"github.com/cosmos/cosmos-sdk/crypto/hd"
|
|
"github.com/cosmos/cosmos-sdk/crypto/keyring"
|
|
"github.com/cosmos/cosmos-sdk/testutil/network"
|
|
"github.com/cosmos/cosmos-sdk/testutil/testdata"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
viper.Set(flags.FlagKeyringBackend, keyring.BackendMemory)
|
|
os.Exit(m.Run())
|
|
}
|
|
|
|
func TestContext_PrintObject(t *testing.T) {
|
|
ctx := client.Context{}
|
|
|
|
animal := &testdata.Dog{
|
|
Size_: "big",
|
|
Name: "Spot",
|
|
}
|
|
any, err := types.NewAnyWithValue(animal)
|
|
require.NoError(t, err)
|
|
hasAnimal := &testdata.HasAnimal{
|
|
Animal: any,
|
|
X: 10,
|
|
}
|
|
|
|
//
|
|
// proto
|
|
//
|
|
registry := testdata.NewTestInterfaceRegistry()
|
|
ctx = ctx.WithCodec(codec.NewProtoCodec(registry))
|
|
|
|
// json
|
|
buf := &bytes.Buffer{}
|
|
ctx = ctx.WithOutput(buf)
|
|
ctx.OutputFormat = "json"
|
|
err = ctx.PrintProto(hasAnimal)
|
|
require.NoError(t, err)
|
|
require.Equal(t,
|
|
`{"animal":{"@type":"/testdata.Dog","size":"big","name":"Spot"},"x":"10"}
|
|
`, buf.String())
|
|
|
|
// yaml
|
|
buf = &bytes.Buffer{}
|
|
ctx = ctx.WithOutput(buf)
|
|
ctx.OutputFormat = "text"
|
|
err = ctx.PrintProto(hasAnimal)
|
|
require.NoError(t, err)
|
|
require.Equal(t,
|
|
`animal:
|
|
'@type': /testdata.Dog
|
|
name: Spot
|
|
size: big
|
|
x: "10"
|
|
`, buf.String())
|
|
|
|
//
|
|
// amino
|
|
//
|
|
amino := testdata.NewTestAmino()
|
|
ctx = ctx.WithLegacyAmino(&codec.LegacyAmino{Amino: amino})
|
|
|
|
// json
|
|
buf = &bytes.Buffer{}
|
|
ctx = ctx.WithOutput(buf)
|
|
ctx.OutputFormat = "json"
|
|
err = ctx.PrintObjectLegacy(hasAnimal)
|
|
require.NoError(t, err)
|
|
require.Equal(t,
|
|
`{"type":"testdata/HasAnimal","value":{"animal":{"type":"testdata/Dog","value":{"size":"big","name":"Spot"}},"x":"10"}}
|
|
`, buf.String())
|
|
|
|
// yaml
|
|
buf = &bytes.Buffer{}
|
|
ctx = ctx.WithOutput(buf)
|
|
ctx.OutputFormat = "text"
|
|
err = ctx.PrintObjectLegacy(hasAnimal)
|
|
require.NoError(t, err)
|
|
require.Equal(t,
|
|
`type: testdata/HasAnimal
|
|
value:
|
|
animal:
|
|
type: testdata/Dog
|
|
value:
|
|
name: Spot
|
|
size: big
|
|
x: "10"
|
|
`, buf.String())
|
|
}
|
|
|
|
func TestCLIQueryConn(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
cfg.NumValidators = 1
|
|
|
|
n, err := network.New(t, t.TempDir(), cfg)
|
|
require.NoError(t, err)
|
|
defer n.Cleanup()
|
|
|
|
testClient := testdata.NewQueryClient(n.Validators[0].ClientCtx)
|
|
res, err := testClient.Echo(context.Background(), &testdata.EchoRequest{Message: "hello"})
|
|
require.NoError(t, err)
|
|
require.Equal(t, "hello", res.Message)
|
|
}
|
|
|
|
func TestGetFromFields(t *testing.T) {
|
|
cfg := network.DefaultConfig()
|
|
path := hd.CreateHDPath(118, 0, 0).String()
|
|
|
|
testCases := []struct {
|
|
clientCtx client.Context
|
|
keyring func() keyring.Keyring
|
|
from string
|
|
expectedErr string
|
|
}{
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
kb := keyring.NewInMemory(cfg.Codec)
|
|
|
|
_, _, err := kb.NewMnemonic("alice", keyring.English, path, keyring.DefaultBIP39Passphrase, hd.Secp256k1)
|
|
require.NoError(t, err)
|
|
|
|
return kb
|
|
},
|
|
from: "alice",
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
kb, err := keyring.New(t.Name(), keyring.BackendTest, t.TempDir(), nil, cfg.Codec)
|
|
require.NoError(t, err)
|
|
|
|
_, _, err = kb.NewMnemonic("alice", keyring.English, path, keyring.DefaultBIP39Passphrase, hd.Secp256k1)
|
|
require.NoError(t, err)
|
|
|
|
return kb
|
|
},
|
|
from: "alice",
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
return keyring.NewInMemory(cfg.Codec)
|
|
},
|
|
from: "cosmos139f7kncmglres2nf3h4hc4tade85ekfr8sulz5",
|
|
expectedErr: "key with address cosmos139f7kncmglres2nf3h4hc4tade85ekfr8sulz5 not found: key not found",
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
kb, err := keyring.New(t.Name(), keyring.BackendTest, t.TempDir(), nil, cfg.Codec)
|
|
require.NoError(t, err)
|
|
return kb
|
|
},
|
|
from: "alice",
|
|
expectedErr: "alice.info: key not found",
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
return keyring.NewInMemory(cfg.Codec)
|
|
},
|
|
from: "cosmos139f7kncmglres2nf3h4hc4tade85ekfr8sulz5",
|
|
clientCtx: client.Context{}.WithSimulation(true),
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
return keyring.NewInMemory(cfg.Codec)
|
|
},
|
|
from: "alice",
|
|
clientCtx: client.Context{}.WithSimulation(true),
|
|
expectedErr: "a valid bech32 address must be provided in simulation mode",
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
return keyring.NewInMemory(cfg.Codec)
|
|
},
|
|
from: "cosmos139f7kncmglres2nf3h4hc4tade85ekfr8sulz5",
|
|
clientCtx: client.Context{}.WithGenerateOnly(true),
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
return keyring.NewInMemory(cfg.Codec)
|
|
},
|
|
from: "alice",
|
|
clientCtx: client.Context{}.WithGenerateOnly(true),
|
|
expectedErr: "alice.info: key not found",
|
|
},
|
|
{
|
|
keyring: func() keyring.Keyring {
|
|
kb, err := keyring.New(t.Name(), keyring.BackendTest, t.TempDir(), nil, cfg.Codec)
|
|
require.NoError(t, err)
|
|
|
|
_, _, err = kb.NewMnemonic("alice", keyring.English, path, keyring.DefaultBIP39Passphrase, hd.Secp256k1)
|
|
require.NoError(t, err)
|
|
|
|
return kb
|
|
},
|
|
clientCtx: client.Context{}.WithGenerateOnly(true),
|
|
from: "alice",
|
|
},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
_, _, _, err := client.GetFromFields(tc.clientCtx, tc.keyring(), tc.from)
|
|
if tc.expectedErr == "" {
|
|
require.NoError(t, err)
|
|
} else {
|
|
require.True(t, strings.HasPrefix(err.Error(), tc.expectedErr))
|
|
}
|
|
}
|
|
}
|