1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/test/unit/app/seed-phrase-verifier-test.js

134 lines
4.7 KiB
JavaScript
Raw Normal View History

2018-03-03 00:32:57 +01:00
const assert = require('assert')
const clone = require('clone')
const KeyringController = require('eth-keyring-controller')
const firstTimeState = require('../../../app/scripts/first-time-state')
const seedPhraseVerifier = require('../../../app/scripts/lib/seed-phrase-verifier')
const mockEncryptor = require('../../lib/mock-encryptor')
2018-03-03 00:32:57 +01:00
describe('SeedPhraseVerifier', function () {
describe('verifyAccounts', function () {
2018-07-03 00:49:33 +02:00
const password = 'passw0rd1'
const hdKeyTree = 'HD Key Tree'
2018-03-03 00:32:57 +01:00
2018-03-03 22:08:10 +01:00
let keyringController
2018-03-04 08:57:55 +01:00
let vault
let primaryKeyring
beforeEach(async function () {
2018-03-03 22:08:10 +01:00
keyringController = new KeyringController({
2018-03-03 00:32:57 +01:00
initState: clone(firstTimeState),
encryptor: mockEncryptor,
})
2018-03-03 22:08:10 +01:00
2018-03-03 00:32:57 +01:00
assert(keyringController)
2018-03-04 08:57:55 +01:00
vault = await keyringController.createNewVaultAndKeychain(password)
primaryKeyring = keyringController.getKeyringsByType(hdKeyTree)[0]
2018-03-03 22:08:10 +01:00
})
it('should be able to verify created account with seed words', async function () {
2018-03-03 00:32:57 +01:00
2018-07-03 00:49:33 +02:00
const createdAccounts = await primaryKeyring.getAccounts()
2018-03-03 00:32:57 +01:00
assert.equal(createdAccounts.length, 1)
2018-07-03 00:49:33 +02:00
const serialized = await primaryKeyring.serialize()
const seedWords = serialized.mnemonic
2018-03-03 00:32:57 +01:00
assert.notEqual(seedWords.length, 0)
2018-07-03 00:49:33 +02:00
const result = await seedPhraseVerifier.verifyAccounts(createdAccounts, seedWords)
2018-03-03 00:32:57 +01:00
})
2018-03-03 14:11:02 +01:00
it('should be able to verify created account (upper case) with seed words', async function () {
2018-07-03 00:49:33 +02:00
const createdAccounts = await primaryKeyring.getAccounts()
2018-03-03 14:11:02 +01:00
assert.equal(createdAccounts.length, 1)
2018-03-04 08:57:55 +01:00
2018-07-03 00:49:33 +02:00
const upperCaseAccounts = [createdAccounts[0].toUpperCase()]
2018-03-03 14:11:02 +01:00
2018-07-03 00:49:33 +02:00
const serialized = await primaryKeyring.serialize()
const seedWords = serialized.mnemonic
2018-03-03 14:11:02 +01:00
assert.notEqual(seedWords.length, 0)
2018-07-03 00:49:33 +02:00
const result = await seedPhraseVerifier.verifyAccounts(upperCaseAccounts, seedWords)
2018-03-03 14:11:02 +01:00
})
it('should be able to verify created account (lower case) with seed words', async function () {
2018-07-03 00:49:33 +02:00
const createdAccounts = await primaryKeyring.getAccounts()
2018-03-03 14:11:02 +01:00
assert.equal(createdAccounts.length, 1)
2018-07-03 00:49:33 +02:00
const lowerCaseAccounts = [createdAccounts[0].toLowerCase()]
2018-03-03 14:11:02 +01:00
2018-07-03 00:49:33 +02:00
const serialized = await primaryKeyring.serialize()
const seedWords = serialized.mnemonic
2018-03-03 14:11:02 +01:00
assert.notEqual(seedWords.length, 0)
2018-07-03 00:49:33 +02:00
const result = await seedPhraseVerifier.verifyAccounts(lowerCaseAccounts, seedWords)
2018-03-03 14:11:02 +01:00
})
2018-03-03 00:32:57 +01:00
it('should return error with good but different seed words', async function () {
2018-07-03 00:49:33 +02:00
const createdAccounts = await primaryKeyring.getAccounts()
2018-03-03 00:32:57 +01:00
assert.equal(createdAccounts.length, 1)
2018-07-03 00:49:33 +02:00
const serialized = await primaryKeyring.serialize()
const seedWords = 'debris dizzy just program just float decrease vacant alarm reduce speak stadium'
try {
const result = await seedPhraseVerifier.verifyAccounts(createdAccounts, seedWords)
assert.fail('Should reject')
2018-03-03 00:32:57 +01:00
} catch (err) {
assert.ok(err.message.indexOf('Not identical accounts!') >= 0, 'Wrong error message')
}
})
it('should return error with undefined existing accounts', async function () {
2018-07-03 00:49:33 +02:00
const createdAccounts = await primaryKeyring.getAccounts()
2018-03-03 00:32:57 +01:00
assert.equal(createdAccounts.length, 1)
2018-07-03 00:49:33 +02:00
const serialized = await primaryKeyring.serialize()
const seedWords = 'debris dizzy just program just float decrease vacant alarm reduce speak stadium'
2018-03-03 00:32:57 +01:00
2018-07-03 00:49:33 +02:00
try {
const result = await seedPhraseVerifier.verifyAccounts(undefined, seedWords)
assert.fail('Should reject')
2018-03-03 00:32:57 +01:00
} catch (err) {
assert.equal(err.message, 'No created accounts defined.')
}
})
it('should return error with empty accounts array', async function () {
2018-07-03 00:49:33 +02:00
const createdAccounts = await primaryKeyring.getAccounts()
2018-03-03 00:32:57 +01:00
assert.equal(createdAccounts.length, 1)
2018-07-03 00:49:33 +02:00
const serialized = await primaryKeyring.serialize()
const seedWords = 'debris dizzy just program just float decrease vacant alarm reduce speak stadium'
2018-03-03 00:32:57 +01:00
2018-07-03 00:49:33 +02:00
try {
const result = await seedPhraseVerifier.verifyAccounts([], seedWords)
assert.fail('Should reject')
2018-03-03 00:32:57 +01:00
} catch (err) {
assert.equal(err.message, 'No created accounts defined.')
}
})
it('should be able to verify more than one created account with seed words', async function () {
const keyState = await keyringController.addNewAccount(primaryKeyring)
const keyState2 = await keyringController.addNewAccount(primaryKeyring)
2018-07-03 00:49:33 +02:00
const createdAccounts = await primaryKeyring.getAccounts()
2018-03-03 00:32:57 +01:00
assert.equal(createdAccounts.length, 3)
2018-07-03 00:49:33 +02:00
const serialized = await primaryKeyring.serialize()
const seedWords = serialized.mnemonic
2018-03-03 00:32:57 +01:00
assert.notEqual(seedWords.length, 0)
2018-07-03 00:49:33 +02:00
const result = await seedPhraseVerifier.verifyAccounts(createdAccounts, seedWords)
2018-03-03 00:32:57 +01:00
})
})
})