2021-12-06 17:40:39 +01:00
|
|
|
/**
|
|
|
|
* @jest-environment node
|
|
|
|
* https://github.com/facebook/jest/issues/7780
|
|
|
|
*/
|
2021-02-04 19:15:23 +01:00
|
|
|
import { cloneDeep } from 'lodash';
|
2023-01-21 00:03:11 +01:00
|
|
|
import { KeyringController } from '@metamask/eth-keyring-controller';
|
2021-03-16 22:00:08 +01:00
|
|
|
import firstTimeState from '../first-time-state';
|
|
|
|
import mockEncryptor from '../../../test/lib/mock-encryptor';
|
2023-03-21 15:43:22 +01:00
|
|
|
import { KeyringType } from '../../../shared/constants/keyring';
|
2021-03-16 22:00:08 +01:00
|
|
|
import seedPhraseVerifier from './seed-phrase-verifier';
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
describe('SeedPhraseVerifier', () => {
|
|
|
|
describe('verifyAccounts', () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const password = 'passw0rd1';
|
2023-03-21 15:43:22 +01:00
|
|
|
const { hdKeyTree } = KeyringType;
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
let keyringController;
|
|
|
|
let primaryKeyring;
|
2018-03-04 08:57:55 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
beforeEach(async () => {
|
2018-03-03 22:08:10 +01:00
|
|
|
keyringController = new KeyringController({
|
2020-01-29 18:14:33 +01:00
|
|
|
initState: cloneDeep(firstTimeState),
|
2018-03-03 00:32:57 +01:00
|
|
|
encryptor: mockEncryptor,
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-03-03 22:08:10 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
expect.any(keyringController);
|
2018-03-04 08:57:55 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await keyringController.createNewVaultAndKeychain(password);
|
|
|
|
primaryKeyring = keyringController.getKeyringsByType(hdKeyTree)[0];
|
|
|
|
});
|
2018-03-03 22:08:10 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
it('should be able to verify created account with seed words', async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const createdAccounts = await primaryKeyring.getAccounts();
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(createdAccounts).toHaveLength(1);
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const serialized = await primaryKeyring.serialize();
|
|
|
|
const seedWords = serialized.mnemonic;
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(seedWords).not.toHaveLength(0);
|
2018-07-03 00:49:33 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await seedPhraseVerifier.verifyAccounts(createdAccounts, seedWords);
|
|
|
|
});
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
it('should be able to verify created account (upper case) with seed words', async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const createdAccounts = await primaryKeyring.getAccounts();
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(createdAccounts).toHaveLength(1);
|
2018-03-04 08:57:55 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const upperCaseAccounts = [createdAccounts[0].toUpperCase()];
|
2018-03-03 14:11:02 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const serialized = await primaryKeyring.serialize();
|
|
|
|
const seedWords = serialized.mnemonic;
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(seedWords).not.toHaveLength(0);
|
2018-07-03 00:49:33 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await seedPhraseVerifier.verifyAccounts(upperCaseAccounts, seedWords);
|
|
|
|
});
|
2018-03-03 14:11:02 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
it('should be able to verify created account (lower case) with seed words', async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const createdAccounts = await primaryKeyring.getAccounts();
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(createdAccounts).toHaveLength(1);
|
2021-02-04 19:15:23 +01:00
|
|
|
const lowerCaseAccounts = [createdAccounts[0].toLowerCase()];
|
2018-03-03 14:11:02 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const serialized = await primaryKeyring.serialize();
|
|
|
|
const seedWords = serialized.mnemonic;
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(seedWords).not.toHaveLength(0);
|
2018-07-03 00:49:33 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await seedPhraseVerifier.verifyAccounts(lowerCaseAccounts, seedWords);
|
|
|
|
});
|
2018-03-03 14:11:02 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
it('should return error with good but different seed words', async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const createdAccounts = await primaryKeyring.getAccounts();
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(createdAccounts).toHaveLength(1);
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await primaryKeyring.serialize();
|
2020-11-03 00:41:28 +01:00
|
|
|
const seedWords =
|
2021-02-04 19:15:23 +01:00
|
|
|
'debris dizzy just program just float decrease vacant alarm reduce speak stadium';
|
2018-07-03 00:49:33 +02:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
await expect(async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await seedPhraseVerifier.verifyAccounts(createdAccounts, seedWords);
|
2021-12-06 17:40:39 +01:00
|
|
|
}).rejects.toThrow('Not identical accounts!');
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
it('should return error with undefined existing accounts', async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const createdAccounts = await primaryKeyring.getAccounts();
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(createdAccounts).toHaveLength(1);
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await primaryKeyring.serialize();
|
2020-11-03 00:41:28 +01:00
|
|
|
const seedWords =
|
2021-02-04 19:15:23 +01:00
|
|
|
'debris dizzy just program just float decrease vacant alarm reduce speak stadium';
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
await expect(async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await seedPhraseVerifier.verifyAccounts(undefined, seedWords);
|
2021-12-06 17:40:39 +01:00
|
|
|
}).rejects.toThrow('No created accounts defined.');
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
it('should return error with empty accounts array', async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const createdAccounts = await primaryKeyring.getAccounts();
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(createdAccounts).toHaveLength(1);
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await primaryKeyring.serialize();
|
2020-11-03 00:41:28 +01:00
|
|
|
const seedWords =
|
2021-02-04 19:15:23 +01:00
|
|
|
'debris dizzy just program just float decrease vacant alarm reduce speak stadium';
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
await expect(async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await seedPhraseVerifier.verifyAccounts([], seedWords);
|
2021-12-06 17:40:39 +01:00
|
|
|
}).rejects.toThrow('No created accounts defined.');
|
2021-02-04 19:15:23 +01:00
|
|
|
});
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-12-06 17:40:39 +01:00
|
|
|
it('should be able to verify more than one created account with seed words', async () => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await keyringController.addNewAccount(primaryKeyring);
|
|
|
|
await keyringController.addNewAccount(primaryKeyring);
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const createdAccounts = await primaryKeyring.getAccounts();
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(createdAccounts).toHaveLength(3);
|
2018-03-03 00:32:57 +01:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const serialized = await primaryKeyring.serialize();
|
|
|
|
const seedWords = serialized.mnemonic;
|
2021-12-06 17:40:39 +01:00
|
|
|
expect(seedWords).not.toHaveLength(0);
|
2018-07-03 00:49:33 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await seedPhraseVerifier.verifyAccounts(createdAccounts, seedWords);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|