Root key validity is checked before deriving

This commit is contained in:
Ian Coleman
2016-12-19 14:16:49 +11:00
parent ba3cb9ecae
commit 0a1f0259d1
3 changed files with 40 additions and 0 deletions

View File

@@ -3241,6 +3241,30 @@ page.open(url, function(status) {
});
},
// github issue 39
// no root key shows feedback
function() {
page.open(url, function(status) {
// click the bip32 tab on fresh page
page.evaluate(function() {
$("#bip32-tab a").click();
});
waitForFeedback(function() {
// Check feedback is correct
var expected = "No root key";
var actual = page.evaluate(function() {
return $(".feedback").text();
});
if (actual != expected) {
console.log("Blank root key not detected");
console.log("Expected: " + expected);
console.log("Actual: " + actual);
fail();
}
next();
});
});
},
// If you wish to add more tests, do so here...