From fa4da08668757f5f2ea6fb56011c2d048ab21429 Mon Sep 17 00:00:00 2001 From: Ian Coleman Date: Tue, 23 Aug 2016 20:09:38 +1000 Subject: [PATCH] Test BIP44 change field --- tests.js | 34 ++++++++++++++++++++++++++++++++-- 1 file changed, 32 insertions(+), 2 deletions(-) diff --git a/tests.js b/tests.js index 183411f..648b397 100644 --- a/tests.js +++ b/tests.js @@ -710,9 +710,39 @@ page.open(url, function(status) { }); }, -// TODO finish these tests +// BIP44 change field changes address list +function() { +page.open(url, function(status) { + // set the phrase + var expected = "1KAGfWgqfVbSSXY56fNQ7YnhyKuoskHtYo"; + page.evaluate(function() { + $(".phrase").val("abandon abandon ability"); + $(".phrase").trigger("input"); + }); + waitForGenerate(function() { + // change the bip44 purpose field to 45 + page.evaluate(function() { + $("#bip44 .change").val("1"); + $("#bip44 .change").trigger("input"); + }); + waitForGenerate(function() { + // check the address for the new derivation path + var actual = page.evaluate(function() { + return $(".address:first").text(); + }); + if (actual != expected) { + console.log("BIP44 change field generates incorrect address"); + console.log("Expected: " + expected); + console.log("Actual: " + actual); + fail(); + } + next(); + }); + }); +}); +}, -// BIP44 external/internal field changes address list +// TODO finish these tests // BIP32 derivation path can be set // BIP32 can use hardened derivation paths -- 2.41.0