X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests.js;h=850e58fcb7392c50d95eacb1239d12bef87d11d4;hb=8dd28f2cff4e1f673f4aa7adc93a7254de72a297;hp=8965f80a8d3935ad0da5bfb333dc77eec6c2327e;hpb=88311463c74f022177a21c5d88f8928dc8007d8b;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/tests.js b/tests.js index 8965f80..850e58f 100644 --- a/tests.js +++ b/tests.js @@ -1022,6 +1022,36 @@ page.open(url, function(status) { }); }, +// Network can be set to fujicoin +function() { +page.open(url, function(status) { + // set the phrase and coin + var expected = "FgiaLpG7C99DyR4WnPxXedRVHXSfKzUDhF"; + page.evaluate(function() { + $(".phrase").val("abandon abandon ability"); + $(".phrase").trigger("input"); + $(".network option[selected]").removeAttr("selected"); + $(".network option").filter(function() { + return $(this).html() == "FJC - Fujicoin"; + }).prop("selected", true); + $(".network").trigger("change"); + }); + // check the address is generated correctly + waitForGenerate(function() { + var actual = page.evaluate(function() { + return $(".address:first").text(); + }); + if (actual != expected) { + console.log("Fujicoin address is incorrect"); + console.log("Expected: " + expected); + console.log("Actual: " + actual); + fail(); + } + next(); + }); +}); +}, + // BIP39 seed is set from phrase function() { page.open(url, function(status) { @@ -4306,6 +4336,44 @@ page.open(url, function(status) { }); }, +// github issue 99 +// https://github.com/iancoleman/bip39/issues/99#issuecomment-327094159 +// "warn me emphatically when they have detected invalid input" to the entropy field +// A warning is shown when entropy is filtered and discarded +function() { +page.open(url, function(status) { + // use entropy + page.evaluate(function() { + $(".use-entropy").prop("checked", true).trigger("change"); + $(".entropy").val("00000000 00000000 00000000 00000000").trigger("input"); + }); + // check the filter warning does not show + waitForGenerate(function() { + var warningIsHidden = page.evaluate(function() { + return $(".entropy-container .filter-warning").hasClass("hidden"); + }); + if (!warningIsHidden) { + console.log("Entropy filter warning is showing when it should not"); + fail(); + } + page.evaluate(function() { + $(".entropy").val("10000000 zxcvbn 00000000 00000000 00000000").trigger("input"); + }); + // check the filter warning shows + waitForEntropyFeedback(function() { + var warningIsHidden = page.evaluate(function() { + return $(".entropy-container .filter-warning").hasClass("hidden"); + }); + if (warningIsHidden) { + console.log("Entropy filter warning is not showing when it should"); + fail(); + } + next(); + }); + }); +}); +}, + // If you wish to add more tests, do so here... // Here is a blank test template