ethers.js/tests/test-hdnode.js
2018-06-22 03:36:00 -04:00

77 lines
3.0 KiB
JavaScript

'use strict';
var assert = require('assert');
if (global.ethers) {
console.log('Using global ethers; ' + __filename);
var ethers = global.ethers;
} else {
var ethers = require('..');
}
var utils = require('./utils');
describe('Test HD Node Derivation', function(test) {
var tests = utils.loadTests('hdnode');
tests.forEach(function(test) {
it('Derives the HD nodes - ' + test.name, function() {
this.timeout(10000);
var rootNode = new ethers.HDNode.fromSeed(test.seed);
test.hdnodes.forEach(function(nodeTest) {
var node = rootNode.derivePath(nodeTest.path);
assert.equal(node.privateKey, nodeTest.privateKey,
'Generates privateKey - ' + nodeTest.privateKey);
var wallet = new ethers.Wallet(node.privateKey);
assert.equal(wallet.address.toLowerCase(), nodeTest.address,
'Generates address - ' + nodeTest.privateKey);
});
});
});
});
describe('Test HD Mnemonic Phrases', function testMnemonic() {
var tests = utils.loadTests('hdnode');
tests.forEach(function(test) {
it(('converts mnemonic phrases - ' + test.name), function() {
this.timeout(1000000);
assert.equal(ethers.HDNode.entropyToMnemonic(test.entropy), test.mnemonic,
'Converts entropy to mnemonic ' + test.name);
assert.equal(ethers.HDNode.mnemonicToEntropy(test.mnemonic), test.entropy,
'Converts mnemonic to entropy - ' + test.mnemonic);
assert.equal(ethers.HDNode.mnemonicToSeed(test.mnemonic, test.password), test.seed,
'Converts mnemonic to seed - ' + test.mnemonic + ':' + test.password);
});
});
});
// See: https://github.com/nym-zone/easyseed
function testEasySeed(lang, locale) {
describe('Test easyseed BIP39 Test cases - ' + locale, function() {
var tests = utils.loadJson('easyseed-bip39/bip39_vectors.' + locale + '.json');
tests.forEach(function(test) {
it('test - ' + test.entropy, function() {
this.timeout(100000);
var seed = ethers.HDNode.mnemonicToSeed(test.mnemonic, test.passphrase);
assert.equal(seed, '0x' + test.seed, 'seeds match');
var entropy = ethers.HDNode.mnemonicToEntropy(test.mnemonic, lang);
assert.equal(entropy, '0x' + test.entropy, 'entropy match');
var mnemonic = ethers.HDNode.entropyToMnemonic('0x' + test.entropy, lang);
assert.equal(mnemonic.normalize('NFKD'), test.mnemonic.normalize('NFKD'), 'mnemonic match');
});
});
});
}
testEasySeed(require('../wordlists/lang-ja').langJa, 'ja');
testEasySeed(require('../wordlists/lang-zh').langZhCn, 'zh_cn');
testEasySeed(require('../wordlists/lang-zh').langZhTw, 'zh_tw');
testEasySeed(require('../wordlists/lang-it').langIt, 'it');
testEasySeed(require('../wordlists/lang-ko').langKo, 'ko');