added test for account importing
This commit is contained in:
parent
e400e83c43
commit
f8f46b2b8c
|
@ -8,6 +8,7 @@ import (
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
cryptoKeys "github.com/cosmos/cosmos-sdk/crypto/keys"
|
cryptoKeys "github.com/cosmos/cosmos-sdk/crypto/keys"
|
||||||
|
@ -52,7 +53,7 @@ func TestKeys(t *testing.T) {
|
||||||
newPassword := "0987654321"
|
newPassword := "0987654321"
|
||||||
|
|
||||||
// add key
|
// add key
|
||||||
jsonStr := []byte(fmt.Sprintf(`{"name":"%s", "password":"%s"}`, newName, newPassword))
|
jsonStr := []byte(fmt.Sprintf(`{"name":"%s", "password":"%s", "seed":"%s"}`, newName, newPassword, seed))
|
||||||
res, body = Request(t, port, "POST", "/keys", jsonStr)
|
res, body = Request(t, port, "POST", "/keys", jsonStr)
|
||||||
|
|
||||||
require.Equal(t, http.StatusOK, res.StatusCode, body)
|
require.Equal(t, http.StatusOK, res.StatusCode, body)
|
||||||
|
@ -64,6 +65,11 @@ func TestKeys(t *testing.T) {
|
||||||
_, err = sdk.AccAddressFromBech32(addr2Bech32)
|
_, err = sdk.AccAddressFromBech32(addr2Bech32)
|
||||||
require.NoError(t, err, "Failed to return a correct bech32 address")
|
require.NoError(t, err, "Failed to return a correct bech32 address")
|
||||||
|
|
||||||
|
// test if created account is the correct account
|
||||||
|
expectedInfo, _ := GetKB(t).CreateKey(newName, seed, newPassword)
|
||||||
|
expectedAccount := sdk.AccAddress(expectedInfo.GetPubKey().Address().Bytes())
|
||||||
|
assert.Equal(t, expectedAccount.String(), addr2Bech32)
|
||||||
|
|
||||||
// existing keys
|
// existing keys
|
||||||
res, body = Request(t, port, "GET", "/keys", nil)
|
res, body = Request(t, port, "GET", "/keys", nil)
|
||||||
require.Equal(t, http.StatusOK, res.StatusCode, body)
|
require.Equal(t, http.StatusOK, res.StatusCode, body)
|
||||||
|
|
Loading…
Reference in New Issue