X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests.js;h=909868becddec930712545e5c3876647d29c3c0d;hb=0f6b34d68b26bfbc60bf19ce6b74b9e16d585d4e;hp=8ac56468c1fc6a779c38518b498802547adaa491;hpb=0cca6e893af22e7b6d4e3621a8a0bf3c68c00e41;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/tests.js b/tests.js index 8ac5646..909868b 100644 --- a/tests.js +++ b/tests.js @@ -3690,7 +3690,7 @@ page.open(url, function(status) { }); waitForFeedback(function() { // Check feedback is correct - var expected = "No root key"; + var expected = "Invalid root key"; var actual = page.evaluate(function() { return $(".feedback").text(); }); @@ -3997,7 +3997,7 @@ page.open(url, function(status) { function() { page.open(url, function(status) { // set the phrase - var expected = "xprvA1hukYsW7QfX9CVsaDAKde4eryajKa4DKWb6m9YjSnqkiZHrahFwwTJfEQTwBQ5kptWT5pZMkkusT1oK8dc1efQ8VFfq4SLSPAWd7Cpt423"; + var expected = "yprvALYB4DYRG6CzzVgzQZwwqjAA2wjBGC3iEd7KYYScpoDdmf75qMRWZWxoFcRXBJjgEXdFqJ9vDRGRLJQsrL22Su5jMbNFeM9vetaGVqy9Qy2"; page.evaluate(function() { $("#bip49-tab a").click(); $(".phrase").val("abandon abandon ability").trigger("input"); @@ -4022,7 +4022,7 @@ page.open(url, function(status) { function() { page.open(url, function(status) { // set the phrase - var expected = "xpub6EhGA4QPwnDpMgaLgEhKzn1PR1RDj2n4gjWhZXxM18NjbMd18EaCVFd95gkLARJaBD2rXAYJED2gdkUbGn1KkrSzCKR554AdABUELoainnt"; + var expected = "ypub6ZXXTj5K6TmJCymTWbUxCs6tayZffemZbr2vLvrEP8kceTSENtjm7KHH6thvAKxVar9fGe8rgsPEX369zURLZ68b4f7Vexz7RuXsjQ69YDt"; page.evaluate(function() { $("#bip49-tab a").click(); $(".phrase").val("abandon abandon ability").trigger("input"); @@ -4111,7 +4111,7 @@ page.open(url, function(status) { function() { page.open(url, function(status) { // set the phrase - var expected = "xprv9y3uhgQbfQZbj3o98nfgLDwGGuCJjUn7GKArSAZXjKgMjSdYHjQmTyf78s22g6jsGrxXvHB6HJeFyvFSPkuYZajeTGMZVXV6aNLWw2fagCn"; + var expected = "yprvAHtB1M5Wp675aLzFy9TJYK2mSsLkg6mcBRh5DZTR7L4EnYSmYPaL63KFA4ycg1PngW5LfkmejxzosCs17TKZMpRFKc3z5SJar6QAKaFcaZL"; page.evaluate(function() { $("#bip49-tab a").click(); $(".phrase").val("abandon abandon ability"); @@ -4137,7 +4137,7 @@ page.open(url, function(status) { function() { page.open(url, function(status) { // set the phrase - var expected = "xpub6C3G7BwVVn7twXscEpCghMszpw2o8wVxdY6TEYy9HfDLcExgqGj21myazAiq6HSmW2F1cBiFqJa3D1cqcDpSh8pbZF5x4iqpd4PyJvd3gjB"; + var expected = "ypub6WsXQrcQeTfNnq4j5AzJuSyVzuBF5ZVTYecg1ws2ffbDfLmv5vtadqdj1NgR6C6gufMpMfJpHxvb6JEQKvETVNWCRanNedfJtnTchZiJtsL"; page.evaluate(function() { $("#bip49-tab a").click(); $(".phrase").val("abandon abandon ability"); @@ -4404,6 +4404,37 @@ page.open(url, function(status) { }); }, +// Bitcoin Cash address can be set to use bitpay format +function() { +page.open(url, function(status) { + // set the phrase and coin and address format + var expected = "CZnpA9HPmvhuhLLPWJP8rNDpLUYXy1LXFk"; + page.evaluate(function() { + $(".use-bitpay-addresses").prop("checked", true); + $(".phrase").val("abandon abandon ability"); + $(".phrase").trigger("input"); + $(".network option[selected]").removeAttr("selected"); + $(".network option").filter(function() { + return $(this).html() == "BCH - Bitcoin Cash"; + }).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("Bitcoin Cash address is incorrect"); + console.log("Expected: " + expected); + console.log("Actual: " + actual); + fail(); + } + next(); + }); +}); +}, + // If you wish to add more tests, do so here... // Here is a blank test template