cfac906f92
* WIP setting up Ethereum key CLI commands * Functional key gen and showing Ethereum address * Cleaned up changes * WIP setting up Ethereum key CLI commands * Functional key gen and showing Ethereum address * Cleaned up changes * Changed address to cosmos specific address * Remove default bech32 prefixes and add basic add command test * Changed Private key type to slice of bytes for compatibility and storability * switch back to using cosmos crypto Keybase interfaces * Changed key output to ethereum addressing instead of bitcoin and key generation to allow seeding from mnemonic and bip39 password * Updated show command and added test * Remove prefix requirement for showing keys and added existing keys commands to CLI temporarily * Removed unnecessary duplicate code * Readd prefixes for accounts temporarily * Fix linting issue * Remove TODO for setting PK to specific length of bytes (all functions use slice) * Cleaned up descriptions to remove multi-sigs
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
package keys
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/spf13/viper"
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/tendermint/tendermint/libs/cli"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
|
"github.com/cosmos/cosmos-sdk/tests"
|
|
)
|
|
|
|
func TestAddCommandBasic(t *testing.T) {
|
|
cmd := addKeyCommand()
|
|
assert.NotNil(t, cmd)
|
|
mockIn, _, _ := tests.ApplyMockIO(cmd)
|
|
|
|
kbHome, kbCleanUp := tests.NewTestCaseDir(t)
|
|
assert.NotNil(t, kbHome)
|
|
defer kbCleanUp()
|
|
viper.Set(flags.FlagHome, kbHome)
|
|
|
|
viper.Set(cli.OutputFlag, OutputFormatText)
|
|
|
|
mockIn.Reset("test1234\ntest1234\n")
|
|
err := runAddCmd(cmd, []string{"keyname1"})
|
|
assert.NoError(t, err)
|
|
|
|
viper.Set(cli.OutputFlag, OutputFormatText)
|
|
|
|
mockIn.Reset("test1234\ntest1234\n")
|
|
err = runAddCmd(cmd, []string{"keyname1"})
|
|
assert.Error(t, err)
|
|
|
|
viper.Set(cli.OutputFlag, OutputFormatText)
|
|
|
|
mockIn.Reset("y\ntest1234\ntest1234\n")
|
|
err = runAddCmd(cmd, []string{"keyname1"})
|
|
assert.NoError(t, err)
|
|
|
|
viper.Set(cli.OutputFlag, OutputFormatJSON)
|
|
|
|
mockIn.Reset("test1234\ntest1234\n")
|
|
err = runAddCmd(cmd, []string{"keyname2"})
|
|
assert.NoError(t, err)
|
|
}
|