2017-12-19 15:45:30 +00:00
|
|
|
package account
|
2017-05-16 12:09:52 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
|
2017-12-19 17:20:53 +00:00
|
|
|
"github.com/ethereum/go-ethereum/accounts"
|
2017-12-14 02:03:55 +00:00
|
|
|
"github.com/ethereum/go-ethereum/accounts/keystore"
|
2019-07-26 14:45:10 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2017-05-16 12:09:52 +00:00
|
|
|
gethcommon "github.com/ethereum/go-ethereum/common"
|
2019-01-24 15:44:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
2017-12-14 02:03:55 +00:00
|
|
|
"github.com/golang/mock/gomock"
|
2018-02-08 12:52:47 +00:00
|
|
|
. "github.com/status-im/status-go/t/utils"
|
2019-01-18 09:01:14 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2017-10-11 14:20:51 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2017-12-19 13:07:31 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
2017-05-16 12:09:52 +00:00
|
|
|
)
|
|
|
|
|
2017-10-11 14:20:51 +00:00
|
|
|
func TestVerifyAccountPassword(t *testing.T) {
|
2017-12-19 15:45:30 +00:00
|
|
|
accManager := NewManager(nil)
|
2017-05-16 12:09:52 +00:00
|
|
|
keyStoreDir, err := ioutil.TempDir(os.TempDir(), "accounts")
|
2017-10-11 14:20:51 +00:00
|
|
|
require.NoError(t, err)
|
2017-10-20 09:06:22 +00:00
|
|
|
defer os.RemoveAll(keyStoreDir) //nolint: errcheck
|
2017-05-16 12:09:52 +00:00
|
|
|
|
2017-10-11 14:20:51 +00:00
|
|
|
emptyKeyStoreDir, err := ioutil.TempDir(os.TempDir(), "accounts_empty")
|
|
|
|
require.NoError(t, err)
|
2017-10-20 09:06:22 +00:00
|
|
|
defer os.RemoveAll(emptyKeyStoreDir) //nolint: errcheck
|
2017-05-16 12:09:52 +00:00
|
|
|
|
|
|
|
// import account keys
|
2018-04-04 17:39:38 +00:00
|
|
|
require.NoError(t, ImportTestAccount(keyStoreDir, GetAccount1PKFile()))
|
|
|
|
require.NoError(t, ImportTestAccount(keyStoreDir, GetAccount2PKFile()))
|
2017-05-16 12:09:52 +00:00
|
|
|
|
2019-01-18 09:01:14 +00:00
|
|
|
account1Address := gethcommon.BytesToAddress(gethcommon.FromHex(TestConfig.Account1.WalletAddress))
|
2017-05-16 12:09:52 +00:00
|
|
|
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
keyPath string
|
|
|
|
address string
|
|
|
|
password string
|
|
|
|
expectedError error
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
"correct address, correct password (decrypt should succeed)",
|
|
|
|
keyStoreDir,
|
2019-01-18 09:01:14 +00:00
|
|
|
TestConfig.Account1.WalletAddress,
|
2017-05-16 12:09:52 +00:00
|
|
|
TestConfig.Account1.Password,
|
|
|
|
nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"correct address, correct password, non-existent key store",
|
|
|
|
filepath.Join(keyStoreDir, "non-existent-folder"),
|
2019-01-18 09:01:14 +00:00
|
|
|
TestConfig.Account1.WalletAddress,
|
2017-05-16 12:09:52 +00:00
|
|
|
TestConfig.Account1.Password,
|
|
|
|
fmt.Errorf("cannot traverse key store folder: lstat %s/non-existent-folder: no such file or directory", keyStoreDir),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"correct address, correct password, empty key store (pk is not there)",
|
|
|
|
emptyKeyStoreDir,
|
2019-01-18 09:01:14 +00:00
|
|
|
TestConfig.Account1.WalletAddress,
|
2017-05-16 12:09:52 +00:00
|
|
|
TestConfig.Account1.Password,
|
2017-10-10 09:38:49 +00:00
|
|
|
fmt.Errorf("cannot locate account for address: %s", account1Address.Hex()),
|
2017-05-16 12:09:52 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"wrong address, correct password",
|
|
|
|
keyStoreDir,
|
|
|
|
"0x79791d3e8f2daa1f7fec29649d152c0ada3cc535",
|
|
|
|
TestConfig.Account1.Password,
|
2017-10-10 09:38:49 +00:00
|
|
|
fmt.Errorf("cannot locate account for address: %s", "0x79791d3E8F2dAa1F7FeC29649d152c0aDA3cc535"),
|
2017-05-16 12:09:52 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"correct address, wrong password",
|
|
|
|
keyStoreDir,
|
2019-01-18 09:01:14 +00:00
|
|
|
TestConfig.Account1.WalletAddress,
|
2017-05-16 12:09:52 +00:00
|
|
|
"wrong password", // wrong password
|
|
|
|
errors.New("could not decrypt key with given passphrase"),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
for _, testCase := range testCases {
|
2017-12-19 15:45:30 +00:00
|
|
|
accountKey, err := accManager.VerifyAccountPassword(testCase.keyPath, testCase.address, testCase.password)
|
2017-05-16 12:09:52 +00:00
|
|
|
if !reflect.DeepEqual(err, testCase.expectedError) {
|
2017-10-11 14:20:51 +00:00
|
|
|
require.FailNow(t, fmt.Sprintf("unexpected error: expected \n'%v', got \n'%v'", testCase.expectedError, err))
|
2017-05-16 12:09:52 +00:00
|
|
|
}
|
|
|
|
if err == nil {
|
|
|
|
if accountKey == nil {
|
2017-10-11 14:20:51 +00:00
|
|
|
require.Fail(t, "no error reported, but account key is missing")
|
2017-05-16 12:09:52 +00:00
|
|
|
}
|
|
|
|
accountAddress := gethcommon.BytesToAddress(gethcommon.FromHex(testCase.address))
|
|
|
|
if accountKey.Address != accountAddress {
|
2017-10-11 14:20:51 +00:00
|
|
|
require.Fail(t, "account mismatch: have %s, want %s", accountKey.Address.Hex(), accountAddress.Hex())
|
2017-05-16 12:09:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-10 09:38:49 +00:00
|
|
|
|
|
|
|
// TestVerifyAccountPasswordWithAccountBeforeEIP55 verifies if VerifyAccountPassword
|
|
|
|
// can handle accounts before introduction of EIP55.
|
2017-10-11 14:20:51 +00:00
|
|
|
func TestVerifyAccountPasswordWithAccountBeforeEIP55(t *testing.T) {
|
2017-10-10 09:38:49 +00:00
|
|
|
keyStoreDir, err := ioutil.TempDir("", "status-accounts-test")
|
2017-10-11 14:20:51 +00:00
|
|
|
require.NoError(t, err)
|
2017-10-20 09:06:22 +00:00
|
|
|
defer os.RemoveAll(keyStoreDir) //nolint: errcheck
|
2017-10-10 09:38:49 +00:00
|
|
|
|
|
|
|
// Import keys and make sure one was created before EIP55 introduction.
|
2018-04-04 17:39:38 +00:00
|
|
|
err = ImportTestAccount(keyStoreDir, "test-account3-before-eip55.pk")
|
2017-10-11 14:20:51 +00:00
|
|
|
require.NoError(t, err)
|
2017-10-10 09:38:49 +00:00
|
|
|
|
2017-12-19 15:45:30 +00:00
|
|
|
accManager := NewManager(nil)
|
2017-10-10 09:38:49 +00:00
|
|
|
|
2019-01-18 09:01:14 +00:00
|
|
|
address := gethcommon.HexToAddress(TestConfig.Account3.WalletAddress)
|
2017-12-19 15:45:30 +00:00
|
|
|
_, err = accManager.VerifyAccountPassword(keyStoreDir, address.Hex(), TestConfig.Account3.Password)
|
2017-10-11 14:20:51 +00:00
|
|
|
require.NoError(t, err)
|
2017-10-10 09:38:49 +00:00
|
|
|
}
|
2017-12-14 02:03:55 +00:00
|
|
|
|
2019-07-26 14:45:10 +00:00
|
|
|
var errKeyStore = errors.New("Can't return a key store")
|
2017-12-19 16:59:43 +00:00
|
|
|
|
2017-12-19 13:07:31 +00:00
|
|
|
func TestManagerTestSuite(t *testing.T) {
|
2018-03-27 16:30:37 +00:00
|
|
|
gethServiceProvider := newMockGethServiceProvider(t)
|
|
|
|
accManager := NewManager(gethServiceProvider)
|
2017-12-14 02:03:55 +00:00
|
|
|
|
2017-12-19 13:07:31 +00:00
|
|
|
keyStoreDir, err := ioutil.TempDir(os.TempDir(), "accounts")
|
2017-12-14 02:03:55 +00:00
|
|
|
require.NoError(t, err)
|
2017-12-19 13:07:31 +00:00
|
|
|
keyStore := keystore.NewKeyStore(keyStoreDir, keystore.LightScryptN, keystore.LightScryptP)
|
|
|
|
defer os.RemoveAll(keyStoreDir) //nolint: errcheck
|
2017-12-14 13:48:01 +00:00
|
|
|
|
2017-12-21 17:07:08 +00:00
|
|
|
testPassword := "test-password"
|
|
|
|
|
|
|
|
// Initial test - create test account
|
2018-03-27 16:30:37 +00:00
|
|
|
gethServiceProvider.EXPECT().AccountKeyStore().Return(keyStore, nil)
|
2019-01-18 09:01:14 +00:00
|
|
|
accountInfo, mnemonic, err := accManager.CreateAccount(testPassword)
|
2017-12-21 17:07:08 +00:00
|
|
|
require.NoError(t, err)
|
2019-01-18 09:01:14 +00:00
|
|
|
require.NotEmpty(t, accountInfo.WalletAddress)
|
|
|
|
require.NotEmpty(t, accountInfo.WalletPubKey)
|
|
|
|
require.NotEmpty(t, accountInfo.ChatAddress)
|
|
|
|
require.NotEmpty(t, accountInfo.ChatPubKey)
|
2017-12-26 13:32:41 +00:00
|
|
|
require.NotEmpty(t, mnemonic)
|
2017-12-21 17:07:08 +00:00
|
|
|
|
2019-01-18 09:01:14 +00:00
|
|
|
// Before the complete decoupling of the keys, wallet and chat keys are the same
|
|
|
|
assert.Equal(t, accountInfo.WalletAddress, accountInfo.ChatAddress)
|
|
|
|
assert.Equal(t, accountInfo.WalletPubKey, accountInfo.ChatPubKey)
|
|
|
|
|
2017-12-21 17:07:08 +00:00
|
|
|
s := &ManagerTestSuite{
|
|
|
|
testAccount: testAccount{
|
|
|
|
"test-password",
|
2019-01-18 09:01:14 +00:00
|
|
|
accountInfo.WalletAddress,
|
|
|
|
accountInfo.WalletPubKey,
|
|
|
|
accountInfo.ChatAddress,
|
|
|
|
accountInfo.ChatPubKey,
|
2017-12-21 17:07:08 +00:00
|
|
|
mnemonic,
|
|
|
|
},
|
2018-03-27 16:30:37 +00:00
|
|
|
gethServiceProvider: gethServiceProvider,
|
|
|
|
accManager: accManager,
|
|
|
|
keyStore: keyStore,
|
|
|
|
gethAccManager: accounts.NewManager(),
|
2017-12-21 17:07:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
suite.Run(t, s)
|
2017-12-19 13:07:31 +00:00
|
|
|
}
|
2017-12-14 02:03:55 +00:00
|
|
|
|
2018-03-27 16:30:37 +00:00
|
|
|
func newMockGethServiceProvider(t *testing.T) *MockGethServiceProvider {
|
2017-12-19 15:45:30 +00:00
|
|
|
ctrl := gomock.NewController(t)
|
2018-03-27 16:30:37 +00:00
|
|
|
return NewMockGethServiceProvider(ctrl)
|
2017-12-19 15:45:30 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 13:07:31 +00:00
|
|
|
type ManagerTestSuite struct {
|
|
|
|
suite.Suite
|
2017-12-21 17:07:08 +00:00
|
|
|
testAccount
|
2018-03-27 16:30:37 +00:00
|
|
|
gethServiceProvider *MockGethServiceProvider
|
|
|
|
accManager *Manager
|
|
|
|
keyStore *keystore.KeyStore
|
|
|
|
gethAccManager *accounts.Manager
|
2017-12-19 13:07:31 +00:00
|
|
|
}
|
2017-12-14 02:03:55 +00:00
|
|
|
|
2017-12-21 17:07:08 +00:00
|
|
|
type testAccount struct {
|
2019-01-18 09:01:14 +00:00
|
|
|
password string
|
|
|
|
walletAddress string
|
|
|
|
walletPubKey string
|
|
|
|
chatAddress string
|
|
|
|
chatPubKey string
|
|
|
|
mnemonic string
|
2017-12-21 17:07:08 +00:00
|
|
|
}
|
|
|
|
|
2017-12-19 15:45:30 +00:00
|
|
|
// reinitMock is for reassigning a new mock node manager to account manager.
|
|
|
|
// Stating the amount of times for mock calls kills the flexibility for
|
2018-01-03 15:51:27 +00:00
|
|
|
// development so this is a good workaround to use with EXPECT().Func().AnyTimes()
|
2017-12-19 15:45:30 +00:00
|
|
|
func (s *ManagerTestSuite) reinitMock() {
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider = newMockGethServiceProvider(s.T())
|
|
|
|
s.accManager.geth = s.gethServiceProvider
|
2017-12-19 15:45:30 +00:00
|
|
|
}
|
|
|
|
|
2018-01-03 15:51:27 +00:00
|
|
|
// SetupTest is used here for reinitializing the mock before every
|
|
|
|
// test function to avoid faulty execution.
|
|
|
|
func (s *ManagerTestSuite) SetupTest() {
|
2017-12-19 15:45:30 +00:00
|
|
|
s.reinitMock()
|
2018-01-03 15:51:27 +00:00
|
|
|
}
|
2017-12-14 02:03:55 +00:00
|
|
|
|
2018-01-03 15:51:27 +00:00
|
|
|
func (s *ManagerTestSuite) TestCreateAccount() {
|
2017-12-14 13:50:12 +00:00
|
|
|
// Don't fail on empty password
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(s.keyStore, nil)
|
2019-01-18 09:01:14 +00:00
|
|
|
_, _, err := s.accManager.CreateAccount(s.password)
|
2017-12-19 13:07:31 +00:00
|
|
|
s.NoError(err)
|
2017-12-14 13:50:12 +00:00
|
|
|
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(nil, errKeyStore)
|
2019-01-18 09:01:14 +00:00
|
|
|
_, _, err = s.accManager.CreateAccount(s.password)
|
2018-01-24 08:25:28 +00:00
|
|
|
s.Equal(errKeyStore, err)
|
2017-12-28 13:40:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *ManagerTestSuite) TestRecoverAccount() {
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(s.keyStore, nil)
|
2019-01-18 09:01:14 +00:00
|
|
|
accountInfo, err := s.accManager.RecoverAccount(s.password, s.mnemonic)
|
2017-12-19 13:07:31 +00:00
|
|
|
s.NoError(err)
|
2019-01-18 09:01:14 +00:00
|
|
|
s.Equal(s.walletAddress, accountInfo.WalletAddress)
|
|
|
|
s.Equal(s.walletPubKey, accountInfo.WalletPubKey)
|
|
|
|
s.Equal(s.chatAddress, accountInfo.ChatAddress)
|
|
|
|
s.Equal(s.chatPubKey, accountInfo.ChatPubKey)
|
2017-12-14 13:48:01 +00:00
|
|
|
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(nil, errKeyStore)
|
2019-01-18 09:01:14 +00:00
|
|
|
_, err = s.accManager.RecoverAccount(s.password, s.mnemonic)
|
2018-01-24 08:25:28 +00:00
|
|
|
s.Equal(errKeyStore, err)
|
2017-12-14 02:03:55 +00:00
|
|
|
}
|
2017-12-18 14:08:31 +00:00
|
|
|
|
2019-06-26 22:28:16 +00:00
|
|
|
func (s *ManagerTestSuite) TestOnboarding() {
|
|
|
|
// try to choose an account before starting onboarding
|
|
|
|
_, _, err := s.accManager.ImportOnboardingAccount("test-id", "test-password")
|
|
|
|
s.Equal(ErrOnboardingNotStarted, err)
|
|
|
|
|
|
|
|
// generates 5 random accounts
|
|
|
|
count := 5
|
|
|
|
accounts, err := s.accManager.StartOnboarding(count, 24)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Equal(count, len(accounts))
|
|
|
|
|
|
|
|
// try to choose an account with an undefined id
|
|
|
|
_, _, err = s.accManager.ImportOnboardingAccount("test-id", "test-password")
|
|
|
|
s.Equal(ErrOnboardingAccountNotFound, err)
|
|
|
|
|
|
|
|
// choose one account and encrypt it with password
|
|
|
|
password := "test-onboarding-account"
|
|
|
|
account := accounts[0]
|
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(s.keyStore, nil)
|
|
|
|
info, mnemonic, err := s.accManager.ImportOnboardingAccount(account.ID, password)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Equal(account.Info, info)
|
|
|
|
s.Equal(account.mnemonic, mnemonic)
|
|
|
|
s.Nil(s.accManager.onboarding)
|
|
|
|
|
|
|
|
// try to decrypt it with password to check if it's been imported correctly
|
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(s.keyStore, nil)
|
|
|
|
decAccount, _, err := s.accManager.AddressToDecryptedAccount(info.WalletAddress, password)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Equal(info.WalletAddress, decAccount.Address.Hex())
|
|
|
|
|
|
|
|
// try resetting onboarding
|
|
|
|
_, err = s.accManager.StartOnboarding(count, 24)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.NotNil(s.accManager.onboarding)
|
|
|
|
|
|
|
|
s.accManager.RemoveOnboarding()
|
|
|
|
s.Nil(s.accManager.onboarding)
|
|
|
|
}
|
|
|
|
|
2017-12-19 13:07:31 +00:00
|
|
|
func (s *ManagerTestSuite) TestSelectAccount() {
|
2017-12-18 14:08:31 +00:00
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
accountKeyStoreReturn []interface{}
|
2019-01-18 09:01:14 +00:00
|
|
|
walletAddress string
|
|
|
|
chatAddress string
|
2017-12-18 14:08:31 +00:00
|
|
|
password string
|
2017-12-28 15:06:20 +00:00
|
|
|
expectedError error
|
2017-12-18 14:08:31 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
"success",
|
2017-12-19 15:45:30 +00:00
|
|
|
[]interface{}{s.keyStore, nil},
|
2019-01-18 09:01:14 +00:00
|
|
|
s.walletAddress,
|
|
|
|
s.chatAddress,
|
2017-12-19 15:45:30 +00:00
|
|
|
s.password,
|
2017-12-28 15:06:20 +00:00
|
|
|
nil,
|
2017-12-18 14:08:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail_keyStore",
|
2018-01-24 08:25:28 +00:00
|
|
|
[]interface{}{nil, errKeyStore},
|
2019-01-18 09:01:14 +00:00
|
|
|
s.walletAddress,
|
|
|
|
s.chatAddress,
|
2017-12-19 15:45:30 +00:00
|
|
|
s.password,
|
2018-01-24 08:25:28 +00:00
|
|
|
errKeyStore,
|
2017-12-18 14:08:31 +00:00
|
|
|
},
|
2019-01-18 09:01:14 +00:00
|
|
|
{
|
|
|
|
"fail_wrongChatAddress",
|
|
|
|
[]interface{}{s.keyStore, nil},
|
|
|
|
s.walletAddress,
|
2019-07-26 14:45:10 +00:00
|
|
|
"0x0000000000000000000000000000000000000001",
|
2017-12-19 15:45:30 +00:00
|
|
|
s.password,
|
2019-07-26 14:45:10 +00:00
|
|
|
errors.New("cannot retrieve a valid key for a given account: no key for given address or file"),
|
2017-12-18 14:08:31 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail_wrongPassword",
|
2017-12-19 15:45:30 +00:00
|
|
|
[]interface{}{s.keyStore, nil},
|
2019-01-18 09:01:14 +00:00
|
|
|
s.walletAddress,
|
|
|
|
s.chatAddress,
|
2017-12-18 14:08:31 +00:00
|
|
|
"wrong-password",
|
2017-12-28 15:06:20 +00:00
|
|
|
errors.New("cannot retrieve a valid key for a given account: could not decrypt key with given passphrase"),
|
2017-12-18 14:08:31 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testCases {
|
2017-12-19 13:07:31 +00:00
|
|
|
s.T().Run(testCase.name, func(t *testing.T) {
|
2017-12-19 15:45:30 +00:00
|
|
|
s.reinitMock()
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(testCase.accountKeyStoreReturn...).AnyTimes()
|
2019-07-26 14:45:10 +00:00
|
|
|
loginParams := LoginParams{
|
|
|
|
ChatAddress: common.HexToAddress(testCase.chatAddress),
|
|
|
|
MainAccount: common.HexToAddress(testCase.walletAddress),
|
|
|
|
Password: testCase.password,
|
|
|
|
}
|
|
|
|
err := s.accManager.SelectAccount(loginParams)
|
2018-01-03 14:31:41 +00:00
|
|
|
s.Equal(testCase.expectedError, err)
|
2019-01-09 08:47:06 +00:00
|
|
|
|
2019-07-26 14:45:10 +00:00
|
|
|
selectedMainAccountAddress, walletErr := s.accManager.MainAccountAddress()
|
2019-01-18 09:01:14 +00:00
|
|
|
selectedChatAccount, chatErr := s.accManager.SelectedChatAccount()
|
2019-01-09 08:47:06 +00:00
|
|
|
|
2019-01-18 09:01:14 +00:00
|
|
|
if testCase.expectedError == nil {
|
2019-07-26 14:45:10 +00:00
|
|
|
s.Equal(testCase.walletAddress, selectedMainAccountAddress.String())
|
|
|
|
s.Equal(testCase.chatAddress, crypto.PubkeyToAddress(selectedChatAccount.AccountKey.PrivateKey.PublicKey).Hex())
|
2019-01-18 09:01:14 +00:00
|
|
|
s.NoError(walletErr)
|
|
|
|
s.NoError(chatErr)
|
|
|
|
} else {
|
2019-07-26 14:45:10 +00:00
|
|
|
s.Equal(common.Address{}, selectedMainAccountAddress)
|
2019-01-18 09:01:14 +00:00
|
|
|
s.Nil(selectedChatAccount)
|
|
|
|
s.Equal(walletErr, ErrNoAccountSelected)
|
|
|
|
s.Equal(chatErr, ErrNoAccountSelected)
|
|
|
|
}
|
|
|
|
|
|
|
|
s.accManager.Logout()
|
2017-12-19 15:45:30 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-24 15:44:46 +00:00
|
|
|
func (s *ManagerTestSuite) TestSetChatAccount() {
|
|
|
|
s.accManager.Logout()
|
|
|
|
|
|
|
|
privKey, err := crypto.GenerateKey()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
address := crypto.PubkeyToAddress(privKey.PublicKey)
|
|
|
|
|
|
|
|
s.accManager.SetChatAccount(privKey)
|
|
|
|
selectedChatAccount, err := s.accManager.SelectedChatAccount()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().NotNil(selectedChatAccount)
|
|
|
|
s.Equal(privKey, selectedChatAccount.AccountKey.PrivateKey)
|
|
|
|
s.Equal(address, selectedChatAccount.Address)
|
|
|
|
|
2019-07-26 14:45:10 +00:00
|
|
|
selectedMainAccountAddress, err := s.accManager.MainAccountAddress()
|
2019-01-24 15:44:46 +00:00
|
|
|
s.Error(err)
|
2019-07-26 14:45:10 +00:00
|
|
|
s.Equal(common.Address{}, selectedMainAccountAddress)
|
2017-12-18 14:08:31 +00:00
|
|
|
}
|
2017-12-19 16:11:46 +00:00
|
|
|
|
2017-12-19 16:59:43 +00:00
|
|
|
func (s *ManagerTestSuite) TestLogout() {
|
2018-04-20 15:39:53 +00:00
|
|
|
s.accManager.Logout()
|
2019-07-26 14:45:10 +00:00
|
|
|
s.Equal(common.Address{}, s.accManager.mainAccountAddress)
|
|
|
|
s.Nil(s.accManager.selectedChatAccount)
|
|
|
|
s.Len(s.accManager.watchAddresses, 0)
|
2017-12-19 16:59:43 +00:00
|
|
|
}
|
2017-12-19 17:20:53 +00:00
|
|
|
|
2018-01-03 19:57:25 +00:00
|
|
|
// TestAccounts tests cases for (*Manager).Accounts.
|
2017-12-19 17:20:53 +00:00
|
|
|
func (s *ManagerTestSuite) TestAccounts() {
|
2017-12-21 17:07:08 +00:00
|
|
|
// Select the test account
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(s.keyStore, nil).AnyTimes()
|
2019-07-26 14:45:10 +00:00
|
|
|
loginParams := LoginParams{
|
|
|
|
MainAccount: common.HexToAddress(s.walletAddress),
|
|
|
|
ChatAddress: common.HexToAddress(s.chatAddress),
|
|
|
|
Password: s.password,
|
|
|
|
}
|
|
|
|
err := s.accManager.SelectAccount(loginParams)
|
2017-12-19 17:20:53 +00:00
|
|
|
s.NoError(err)
|
|
|
|
|
|
|
|
// Success
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountManager().Return(s.gethAccManager, nil)
|
2017-12-19 17:20:53 +00:00
|
|
|
accs, err := s.accManager.Accounts()
|
|
|
|
s.NoError(err)
|
|
|
|
s.NotNil(accs)
|
|
|
|
|
2019-07-26 14:45:10 +00:00
|
|
|
// Selected main account address is zero address but doesn't fail
|
|
|
|
s.accManager.mainAccountAddress = common.Address{}
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountManager().Return(s.gethAccManager, nil)
|
2017-12-19 17:20:53 +00:00
|
|
|
accs, err = s.accManager.Accounts()
|
|
|
|
s.NoError(err)
|
|
|
|
s.NotNil(accs)
|
|
|
|
}
|
2017-12-19 17:32:10 +00:00
|
|
|
|
|
|
|
func (s *ManagerTestSuite) TestAddressToDecryptedAccount() {
|
|
|
|
testCases := []struct {
|
|
|
|
name string
|
|
|
|
accountKeyStoreReturn []interface{}
|
2019-01-18 09:01:14 +00:00
|
|
|
walletAddress string
|
2017-12-19 17:32:10 +00:00
|
|
|
password string
|
2017-12-28 15:06:20 +00:00
|
|
|
expectedError error
|
2017-12-19 17:32:10 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
"success",
|
|
|
|
[]interface{}{s.keyStore, nil},
|
2019-01-18 09:01:14 +00:00
|
|
|
s.walletAddress,
|
2017-12-19 17:32:10 +00:00
|
|
|
s.password,
|
2017-12-28 15:06:20 +00:00
|
|
|
nil,
|
2017-12-19 17:32:10 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail_keyStore",
|
2018-01-24 08:25:28 +00:00
|
|
|
[]interface{}{nil, errKeyStore},
|
2019-01-18 09:01:14 +00:00
|
|
|
s.walletAddress,
|
2017-12-19 17:32:10 +00:00
|
|
|
s.password,
|
2018-01-24 08:25:28 +00:00
|
|
|
errKeyStore,
|
2017-12-19 17:32:10 +00:00
|
|
|
},
|
|
|
|
{
|
2019-01-18 09:01:14 +00:00
|
|
|
"fail_wrongWalletAddress",
|
2017-12-19 17:32:10 +00:00
|
|
|
[]interface{}{s.keyStore, nil},
|
2019-01-18 09:01:14 +00:00
|
|
|
"wrong-wallet-address",
|
2017-12-19 17:32:10 +00:00
|
|
|
s.password,
|
2017-12-28 15:06:20 +00:00
|
|
|
ErrAddressToAccountMappingFailure,
|
2017-12-19 17:32:10 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"fail_wrongPassword",
|
|
|
|
[]interface{}{s.keyStore, nil},
|
2019-01-18 09:01:14 +00:00
|
|
|
s.walletAddress,
|
2017-12-19 17:32:10 +00:00
|
|
|
"wrong-password",
|
2019-01-18 09:01:14 +00:00
|
|
|
errors.New("cannot retrieve a valid key for a given account: could not decrypt key with given passphrase"),
|
2017-12-19 17:32:10 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, testCase := range testCases {
|
|
|
|
s.T().Run(testCase.name, func(t *testing.T) {
|
|
|
|
s.reinitMock()
|
2018-03-27 16:30:37 +00:00
|
|
|
s.gethServiceProvider.EXPECT().AccountKeyStore().Return(testCase.accountKeyStoreReturn...).AnyTimes()
|
2019-01-18 09:01:14 +00:00
|
|
|
acc, key, err := s.accManager.AddressToDecryptedAccount(testCase.walletAddress, testCase.password)
|
2017-12-28 15:06:20 +00:00
|
|
|
if testCase.expectedError != nil {
|
|
|
|
s.Equal(testCase.expectedError, err)
|
2017-12-19 17:32:10 +00:00
|
|
|
} else {
|
|
|
|
s.NoError(err)
|
|
|
|
s.NotNil(acc)
|
2017-12-26 13:54:13 +00:00
|
|
|
s.NotNil(key)
|
|
|
|
s.Equal(acc.Address, key.Address)
|
2017-12-19 17:32:10 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|