github.com/spf13/viper's recent releases introduced a semantic
change in some public API such as viper.IsSet(), which have
broken some of our flags checks. Instead of checking whether
users have changed a flag's default value we should rely on such
defaults and adjust runtime behaviour accordingly. In order to do
so, it's important that we pick sane defaults for all our flags.
The --pruning flag and configuration option now allow for a
fake custom strategy. When users elect custom, then the
pruning-{keep,snapshot}-every options are interpreted and
parsed; else they're ignored.
Zero is pruning-{keep,snapshot}-every default value. When
users choose to set a custom pruning strategy they are
signalling that they want more fine-grainted control, therefore
it's legitimate to expect them to know what they are doing and
enter valid values for both options.
Ref #5964
79 lines
1.8 KiB
Go
79 lines
1.8 KiB
Go
package context_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/cosmos/cosmos-sdk/crypto/keyring"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/spf13/viper"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/context"
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
)
|
|
|
|
func TestCLIContext_WithOffline(t *testing.T) {
|
|
viper.Set(flags.FlagOffline, true)
|
|
viper.Set(flags.FlagNode, "tcp://localhost:26657")
|
|
|
|
ctx := context.NewCLIContext()
|
|
require.True(t, ctx.Offline)
|
|
require.Nil(t, ctx.Client)
|
|
}
|
|
|
|
func TestCLIContext_WithGenOnly(t *testing.T) {
|
|
viper.Set(flags.FlagGenerateOnly, true)
|
|
|
|
validFromAddr := "cosmos1q7380u26f7ntke3facjmynajs4umlr329vr4ja"
|
|
fromAddr, err := sdk.AccAddressFromBech32(validFromAddr)
|
|
require.NoError(t, err)
|
|
|
|
tests := []struct {
|
|
name string
|
|
from string
|
|
expectedFromAddr sdk.AccAddress
|
|
expectedFromName string
|
|
}{
|
|
{
|
|
name: "valid from",
|
|
from: validFromAddr,
|
|
expectedFromAddr: fromAddr,
|
|
expectedFromName: "",
|
|
},
|
|
{
|
|
name: "empty from",
|
|
from: "",
|
|
expectedFromAddr: nil,
|
|
expectedFromName: "",
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
tt := tt
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
ctx := context.NewCLIContextWithFrom(tt.from)
|
|
|
|
require.Equal(t, tt.expectedFromAddr, ctx.FromAddress)
|
|
require.Equal(t, tt.expectedFromName, ctx.FromName)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestCLIContext_WithKeyring(t *testing.T) {
|
|
viper.Set(flags.FlagGenerateOnly, true)
|
|
ctx := context.NewCLIContextWithFrom("cosmos1q7380u26f7ntke3facjmynajs4umlr329vr4ja")
|
|
require.NotNil(t, ctx.Keyring)
|
|
kr := ctx.Keyring
|
|
ctx = ctx.WithKeyring(nil)
|
|
require.Nil(t, ctx.Keyring)
|
|
ctx = ctx.WithKeyring(kr)
|
|
require.Equal(t, kr, ctx.Keyring)
|
|
}
|
|
|
|
func TestMain(m *testing.M) {
|
|
viper.Set(flags.FlagKeyringBackend, keyring.BackendMemory)
|
|
os.Exit(m.Run())
|
|
}
|