]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/commitdiff
Test BIP32 root key being set by user
authorIan Coleman <coleman.ian@gmail.com>
Wed, 14 Sep 2016 06:46:20 +0000 (16:46 +1000)
committerIan Coleman <coleman.ian@gmail.com>
Wed, 14 Sep 2016 06:46:20 +0000 (16:46 +1000)
tests.js

index 2800e6cf073b4ee6cc0f8a1dbcac9480eed55f63..cef6e138828af369827332194fcb5a354f476527 100644 (file)
--- a/tests.js
+++ b/tests.js
@@ -1291,6 +1291,28 @@ page.open(url, function(status) {
 },
 
 // BIP32 root key can be set by the user
+function() {
+page.open(url, function(status) {
+    var expected = "1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug";
+    // set the root key
+    page.evaluate(function() {
+        $(".root-key").val("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi").trigger("input");
+    });
+    waitForGenerate(function() {
+        var actual = page.evaluate(function() {
+            return $(".address:first").text();
+        });
+        if (actual != expected) {
+            console.log("Passphrase results in wrong address");
+            console.log("Expected: " + expected);
+            console.log("Actual: " + actual);
+            fail();
+        }
+        next();
+    });
+});
+},
+
 // Setting BIP32 root key clears the existing phrase, passphrase and seed
 // Clearing of phrase, passphrase and seed can be cancelled by user
 // Custom BIP32 root key is used when changing the derivation path