2 // cd /path/to/repo/tests
3 // jasmine spec/tests.js
9 // see https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Headless_mode#Automated_testing_with_headless_mode
11 // USER SPECIFIED OPTIONS
12 var browser
= process
.env
.BROWSER
; //"firefox"; // or "chrome"
14 console
.log("Browser can be set via environment variable, eg");
15 console
.log("BROWSER=firefox jasmine spec/tests.js");
16 console
.log("Options for BROWSER are firefox chrome");
17 console
.log("Using default browser: chrome");
21 console
.log("Using browser: " + browser
);
26 var webdriver
= require('selenium-webdriver');
27 var By
= webdriver
.By
;
28 var Key
= webdriver
.Key
;
29 var until
= webdriver
.until
;
33 var generateDelay
= 1500;
34 var feedbackDelay
= 500;
35 var entropyFeedbackDelay
= 500;
36 var bip38delay
= 15000;
38 // url uses file:// scheme
39 var path
= require('path')
40 var parentDir
= path
.resolve(process
.cwd(), '..', 'src', 'index.html');
41 var url
= "file://" + parentDir
;
42 if (browser
== "firefox") {
43 // TODO loading local html in firefox is broken
44 console
.log("Loading local html in firefox is broken, see https://stackoverflow.com/q/46367054");
45 console
.log("You must run a server in this case, ie do this:");
46 console
.log("$ cd /path/to/bip39/src");
47 console
.log("$ python -m http.server");
48 url
= "http://localhost:8000";
51 // Variables dependent on specific browser selection
53 if (browser
== "firefox") {
54 var firefox
= require('selenium-webdriver/firefox');
55 var binary
= new firefox
.Binary(firefox
.Channel
.NIGHTLY
);
56 binary
.addArguments("-headless");
57 newDriver = function() {
58 return new webdriver
.Builder()
59 .forBrowser('firefox')
60 .setFirefoxOptions(new firefox
.Options().setBinary(binary
))
64 else if (browser
== "chrome") {
65 var chrome
= require('selenium-webdriver/chrome');
66 newDriver = function() {
67 return new webdriver
.Builder()
69 .setChromeOptions(new chrome
.Options().addArguments("headless"))
76 function testNetwork(done
, params
) {
77 var phrase
= params
.phrase
|| 'abandon abandon ability';
78 driver
.findElement(By
.css('.phrase'))
80 selectNetwork(params
.selectText
);
81 driver
.sleep(generateDelay
).then(function() {
82 getFirstAddress(function(address
) {
83 expect(address
).toBe(params
.firstAddress
);
89 function getFirstRowValue(handler
, selector
) {
90 driver
.findElements(By
.css(selector
))
97 function getFirstAddress(handler
) {
98 getFirstRowValue(handler
, ".address");
101 function getFirstPath(handler
) {
102 getFirstRowValue(handler
, ".index");
105 function testColumnValuesAreInvisible(done
, columnClassName
) {
106 var selector
= "." + columnClassName
+ " span";
107 driver
.findElements(By
.css(selector
))
108 .then(function(els
) {
109 els
[0].getAttribute("class")
110 .then(function(classes
) {
111 expect(classes
).toContain("invisible");
117 function testRowsAreInCorrectOrder(done
) {
118 driver
.findElements(By
.css('.index'))
119 .then(function(els
) {
120 var testRowAtIndex = function(i
) {
121 if (i
>= els
.length
) {
126 .then(function(actualPath
) {
127 var noHardened
= actualPath
.replace(/'/g, "");
128 var pathBits = noHardened.split("/")
129 var lastBit = pathBits[pathBits.length-1];
130 var actualIndex = parseInt(lastBit);
131 expect(actualIndex).toBe(i);
140 function selectNetwork(name) {
141 driver.executeScript(function() {
142 var selectText = arguments[0];
143 $(".network option[selected]").removeAttr("selected");
144 $(".network option").filter(function(i,e) {
145 return $(e).html() == selectText;
146 }).prop("selected", true);
147 $(".network").trigger("change");
151 function testEntropyType(done, entropyText, entropyTypeUnsafe) {
152 // entropy type is compiled into regexp so needs escaping
153 // see https://stackoverflow.com/a/2593661
154 var entropyType = (entropyTypeUnsafe+'').replace(/[.?*+^$[\]\\(){}|-]/g, "\\$&");
155 driver.findElement(By.css('.use-entropy
'))
157 driver.findElement(By.css('.entropy
'))
158 .sendKeys(entropyText);
159 driver.sleep(generateDelay).then(function() {
160 driver.findElement(By.css('.entropy
-container
'))
162 .then(function(text) {
163 var re = new RegExp("Entropy Type\\s+" + entropyType);
164 expect(text).toMatch(re);
170 function testEntropyBits(done, entropyText, entropyBits) {
171 driver.findElement(By.css('.use-entropy
'))
173 driver.findElement(By.css('.entropy
'))
174 .sendKeys(entropyText);
175 driver.sleep(generateDelay).then(function() {
176 driver.findElement(By.css('.entropy
-container
'))
178 .then(function(text) {
179 var re = new RegExp("Total Bits\\s+" + entropyBits);
180 expect(text).toMatch(re);
186 function testEntropyFeedback(done, entropyDetail) {
187 // entropy type is compiled into regexp so needs escaping
188 // see https://stackoverflow.com/a/2593661
189 if ("type" in entropyDetail) {
190 entropyDetail.type = (entropyDetail.type+'').replace(/[.?*+^$[\]\\(){}|-]/g, "\\$&");
192 driver.findElement(By.css('.use-entropy
'))
194 driver.findElement(By.css('.entropy
'))
195 .sendKeys(entropyDetail.entropy);
196 driver.sleep(entropyFeedbackDelay).then(function() {
197 driver.findElement(By.css('.entropy
-container
'))
199 .then(function(text) {
200 driver.findElement(By.css('.phrase
'))
201 .getAttribute("value")
202 .then(function(phrase) {
203 if ("filtered" in entropyDetail) {
204 var key = "Filtered Entropy";
205 var value = entropyDetail.filtered;
206 var reText = key + "\\s+" + value;
207 var re = new RegExp(reText);
208 expect(text).toMatch(re);
210 if ("type" in entropyDetail) {
211 var key = "Entropy Type";
212 var value = entropyDetail.type;
213 var reText = key + "\\s+" + value;
214 var re = new RegExp(reText);
215 expect(text).toMatch(re);
217 if ("events" in entropyDetail) {
218 var key = "Event Count";
219 var value = entropyDetail.events;
220 var reText = key + "\\s+" + value;
221 var re = new RegExp(reText);
222 expect(text).toMatch(re);
224 if ("bits" in entropyDetail) {
225 var key = "Total Bits";
226 var value = entropyDetail.bits;
227 var reText = key + "\\s+" + value;
228 var re = new RegExp(reText);
229 expect(text).toMatch(re);
231 if ("bitsPerEvent" in entropyDetail) {
232 var key = "Bits Per Event";
233 var value = entropyDetail.bitsPerEvent;
234 var reText = key + "\\s+" + value;
235 var re = new RegExp(reText);
236 expect(text).toMatch(re);
238 if ("words" in entropyDetail) {
239 var actualWords = phrase.split(/\s+/)
240 .filter(function(w) { return w.length > 0 })
242 expect(actualWords).toBe(entropyDetail.words);
244 if ("strength" in entropyDetail) {
245 var key = "Time To Crack";
246 var value = entropyDetail.strength;
247 var reText = key + "\\s+" + value;
248 var re = new RegExp(reText);
249 expect(text).toMatch(re);
257 function testClientSelect(done, params) {
258 // set mnemonic and select bip32 tab
259 driver.findElement(By.css('#bip32
-tab a
'))
261 driver.findElement(By.css('.phrase
'))
262 .sendKeys("abandon abandon ability");
263 driver.sleep(generateDelay).then(function() {
265 // set bip32 client to bitcoin core
266 driver.executeScript(function() {
267 $("#bip32-client").val(arguments[0]).trigger("change");
268 }, params.selectValue);
269 driver.sleep(generateDelay).then(function() {
270 // check the derivation path is correct
271 driver.findElement(By.css("#bip32-path"))
272 .getAttribute("value")
273 .then(function(path) {
274 expect(path).toBe(params.bip32path);
275 // check hardened addresses is selected
276 driver.findElement(By.css(".hardened-addresses"))
277 .getAttribute("checked")
278 .then(function(isChecked) {
279 expect(isChecked).toBe(params.useHardenedAddresses);
280 // check input is readonly
281 driver.findElement(By.css("#bip32-path"))
282 .getAttribute("readonly")
283 .then(function(isReadonly) {
284 expect(isReadonly).toBe("true");
295 describe('BIP39 Tool Tests
', function() {
297 beforeEach(function(done) {
298 driver = newDriver();
299 driver.get(url).then(done);
302 // Close the website after each test is run (so that it is opened fresh each time)
303 afterEach(function(done) {
304 driver.quit().then(done);
309 // Page initially loads with blank phrase
310 it('Should load the page
', function(done) {
311 driver.findElement(By.css('.phrase
'))
312 .getAttribute('value
').then(function(value) {
313 expect(value).toBe('');
319 it('Should have text on the page
', function(done) {
320 driver.findElement(By.css('body
'))
322 .then(function(text) {
323 var textToFind = "You can enter an existing BIP39 mnemonic";
324 expect(text).toContain(textToFind);
329 // Entering mnemonic generates addresses
330 it('Should have a list
of addresses
', function(done) {
331 driver.findElement(By.css('.phrase
'))
332 .sendKeys('abandon abandon ability
');
333 driver.sleep(generateDelay).then(function() {
334 driver.findElements(By.css('.address
'))
335 .then(function(els) {
336 expect(els.length).toBe(20);
342 // Generate button generates random mnemonic
343 it('Should be able to generate a random mnemonic
', function(done) {
344 // initial phrase is blank
345 driver.findElement(By.css('.phrase
'))
346 .getAttribute("value")
347 .then(function(phrase) {
348 expect(phrase.length).toBe(0);
350 driver.findElement(By.css('.generate
')).click();
351 driver.sleep(generateDelay).then(function() {
352 // new phrase is not blank
353 driver.findElement(By.css('.phrase
'))
354 .getAttribute("value")
355 .then(function(phrase) {
356 expect(phrase.length).toBeGreaterThan(0);
363 // Mnemonic length can be customized
364 it('Should allow custom length mnemonics
', function(done) {
366 driver.executeScript(function() {
367 $(".strength option[selected]").removeAttr("selected");
368 $(".strength option[value=6]").prop("selected", true);
370 driver.findElement(By.css('.generate
')).click();
371 driver.sleep(generateDelay).then(function() {
372 driver.findElement(By.css('.phrase
'))
373 .getAttribute("value")
374 .then(function(phrase) {
375 var words = phrase.split(" ");
376 expect(words.length).toBe(6);
382 // Passphrase can be set
383 it('Allows a passphrase to be
set', function(done) {
384 driver.findElement(By.css('.phrase
'))
385 .sendKeys('abandon abandon ability
');
386 driver.findElement(By.css('.passphrase
'))
387 .sendKeys('secure_passphrase
');
388 driver.sleep(generateDelay).then(function() {
389 getFirstAddress(function(address) {
390 expect(address).toBe("15pJzUWPGzR7avffV9nY5by4PSgSKG9rba");
396 // Network can be set to networks other than bitcoin
397 it('Allows selection
of bitcoin testnet
', function(done) {
399 selectText: "BTC - Bitcoin Testnet",
400 firstAddress: "mucaU5iiDaJDb69BHLeDv8JFfGiyg2nJKi",
402 testNetwork(done, params);
404 it('Allows selection
of litecoin
', function(done) {
406 selectText: "LTC - Litecoin",
407 firstAddress: "LQ4XU8RX2ULPmPq9FcUHdVmPVchP9nwXdn",
409 testNetwork(done, params);
411 it('Allows selection
of ripple
', function(done) {
413 selectText: "XRP - Ripple",
414 firstAddress: "rLTFnqbmCVPGx6VfaygdtuKWJgcN4v1zRS",
415 phrase: "ill clump only blind unit burden thing track silver cloth review awake useful craft whale all satisfy else trophy sunset walk vanish hope valve",
417 testNetwork(done, params);
419 it('Allows selection
of dogecoin
', function(done) {
421 selectText: "DOGE - Dogecoin",
422 firstAddress: "DPQH2AtuzkVSG6ovjKk4jbUmZ6iXLpgbJA",
424 testNetwork(done, params);
426 it('Allows selection
of denarius
', function(done) {
428 selectText: "DNR - Denarius",
429 firstAddress: "DFdFMVUMzU9xX88EywXvAGwjiwpxyh9vKb",
431 testNetwork(done, params);
433 it('Allows selection
of shadowcash
', function(done) {
435 selectText: "SDC - ShadowCash",
436 firstAddress: "SiSZtfYAXEFvMm3XM8hmtkGDyViRwErtCG",
438 testNetwork(done, params);
440 it('Allows selection
of shadowcash testnet
', function(done) {
442 selectText: "SDC - ShadowCash Testnet",
443 firstAddress: "tM2EDpVKaTiEg2NZg3yKg8eqjLr55BErHe",
445 testNetwork(done, params);
447 it('Allows selection
of viacoin
', function(done) {
449 selectText: "VIA - Viacoin",
450 firstAddress: "Vq9Eq4N5SQnjqZvxtxzo7hZPW5XnyJsmXT",
452 testNetwork(done, params);
454 it('Allows selection
of viacoin testnet
', function(done) {
456 selectText: "VIA - Viacoin Testnet",
457 firstAddress: "tM2EDpVKaTiEg2NZg3yKg8eqjLr55BErHe",
459 testNetwork(done, params);
461 it('Allows selection
of jumbucks
', function(done) {
463 selectText: "JBS - Jumbucks",
464 firstAddress: "JLEXccwDXADK4RxBPkRez7mqsHVoJBEUew",
466 testNetwork(done, params);
468 it('Allows selection
of clam
', function(done) {
470 selectText: "CLAM - Clams",
471 firstAddress: "xCp4sakjVx4pUAZ6cBCtuin8Ddb6U1sk9y",
473 testNetwork(done, params);
475 it('Allows selection
of crown
', function(done) {
477 selectText: "CRW - Crown",
478 firstAddress: "18pWSwSUAQdiwMHUfFZB1fM2xue9X1FqE5",
480 testNetwork(done, params);
482 it('Allows selection
of dash
', function(done) {
484 selectText: "DASH - Dash",
485 firstAddress: "XdbhtMuGsPSkE6bPdNTHoFSszQKmK4S5LT",
487 testNetwork(done, params);
489 it('Allows selection
of dash testnet
', function(done) {
491 selectText: "DASH - Dash Testnet",
492 firstAddress: "yaR52EN4oojdJfBgzWJTymC4uuCLPT29Gw",
494 testNetwork(done, params);
496 it('Allows selection
of game
', function(done) {
498 selectText: "GAME - GameCredits",
499 firstAddress: "GSMY9bAp36cMR4zyT4uGVS7GFjpdXbao5Q",
501 testNetwork(done, params);
503 it('Allows selection
of komodo
', function(done) {
505 selectText: "KMD - Komodo",
506 firstAddress: "RMPPzJwAjPVZZAwJvXivHJGGjdCx6WBD2t",
508 testNetwork(done, params);
510 it('Allows selection
of namecoin
', function(done) {
512 selectText: "NMC - Namecoin",
513 firstAddress: "Mw2vK2Bvex1yYtYF6sfbEg2YGoUc98YUD2",
515 testNetwork(done, params);
517 it('Allows selection
of onixcoin
', function(done) {
519 selectText: "ONX - Onixcoin",
520 firstAddress: "XGwMqddeKjT3ddgX73QokjVbCL3aK6Yxfk",
522 testNetwork(done, params);
524 it('Allows selection
of peercoin
', function(done) {
526 selectText: "PPC - Peercoin",
527 firstAddress: "PVAiioTaK2eDHSEo3tppT9AVdBYqxRTBAm",
529 testNetwork(done, params);
531 it('Allows selection
of ethereum
', function(done) {
533 selectText: "ETH - Ethereum",
534 firstAddress: "0xe5815d5902Ad612d49283DEdEc02100Bd44C2772",
536 testNetwork(done, params);
537 // TODO test private key and public key
539 it('Allows selection
of slimcoin
', function(done) {
541 selectText: "SLM - Slimcoin",
542 firstAddress: "SNzPi1CafHFm3WWjRo43aMgiaEEj3ogjww",
544 testNetwork(done, params);
546 it('Allows selection
of slimcoin testnet
', function(done) {
548 selectText: "SLM - Slimcoin Testnet",
549 firstAddress: "n3nMgWufTek5QQAr6uwMhg5xbzj8xqc4Dq",
551 testNetwork(done, params);
553 it('Allows selection
of bitcoin cash
', function(done) {
555 selectText: "BCH - Bitcoin Cash",
556 firstAddress: "bitcoincash:qzlquk7w4hkudxypl4fgv8x279r754dkvur7jpcsps",
558 testNetwork(done, params);
560 it('Allows selection
of myriadcoin
', function(done) {
562 selectText: "XMY - Myriadcoin",
563 firstAddress: "MJEswvRR46wh9BoiVj9DzKYMBkCramhoBV",
565 testNetwork(done, params);
567 it('Allows selection
of pivx
', function(done) {
569 selectText: "PIVX - PIVX",
570 firstAddress: "DBxgT7faCuno7jmtKuu6KWCiwqsVPqh1tS",
572 testNetwork(done, params);
574 it('Allows selection
of pivx testnet
', function(done) {
576 selectText: "PIVX - PIVX Testnet",
577 firstAddress: "yB5U384n6dGkVE3by5y9VdvHHPwPg68fQj",
579 testNetwork(done, params);
581 it('Allows selection
of maza
', function(done) {
583 selectText: "MAZA - Maza",
584 firstAddress: "MGW4Bmi2NEm4PxSjgeFwhP9vg18JHoRnfw",
586 testNetwork(done, params);
588 it('Allows selection
of fujicoin
', function(done) {
590 selectText: "FJC - Fujicoin",
591 firstAddress: "FgiaLpG7C99DyR4WnPxXedRVHXSfKzUDhF",
593 testNetwork(done, params);
595 it('Allows selection
of nubits
', function(done) {
597 selectText: "USNBT - NuBits",
598 firstAddress: "BLxkabXuZSJSdesLD7KxZdqovd4YwyBTU6",
600 testNetwork(done, params);
602 it('Allows selection
of bitcoin gold
', function(done) {
604 selectText: "BTG - Bitcoin Gold",
605 firstAddress: "GdDqug4WUsn5syNbSTHatNn4XnuwZtzedx",
607 testNetwork(done, params);
609 it('Allows selection
of monacoin
', function(done) {
611 selectText: "MONA - Monacoin",
612 firstAddress: "MKMiMr7MyjDKjJbCBzgF6u4ByqTS4NkRB1",
614 testNetwork(done, params);
616 it('Allows selection
of AXE
', function(done) {
618 selectText: "AXE - Axe",
619 firstAddress: "PScwtLUyPiGrqtKXrHF37DGETLXLZdw4up",
621 testNetwork(done, params);
623 it('Allows selection
of BlackCoin
', function(done) {
625 selectText: "BLK - BlackCoin",
626 firstAddress: "B5MznAKwj7uQ42vDz3w4onhBXPcqhTwJ9z",
628 testNetwork(done, params);
630 it('Allows selection
of Neblio
', function(done) {
632 selectText: "NEBL - Neblio",
633 firstAddress: "NefkeEEvhusbHMmTRrxx7H9wFnUXd8qQsE",
635 testNetwork(done, params);
637 it('Allows selection
of Beetlecoin
', function(done) {
639 selectText: "BEET - Beetlecoin",
640 firstAddress: "BVmtbEsGrjpknprmpHFq26z4kYHJUFHE71",
642 testNetwork(done, params);
644 it('Allows selection
of Adcoin
', function(done) {
646 selectText: "ACC - Adcoin",
647 firstAddress: "AcEDM6V5sF4kFHC76MJjjfProtS5Sw2qcd",
649 testNetwork(done, params);
651 it('Allows selection
of Asiacoin
', function(done) {
653 selectText: "AC - Asiacoin",
654 firstAddress: "ALupuEEz7kJjQTAvmtcBMBVuEjPa7GqZzE",
656 testNetwork(done, params);
658 it('Allows selection
of Auroracoin
', function(done) {
660 selectText: "AUR - Auroracoin",
661 firstAddress: "ANuraS6F4Jpi413FEnavjYkKYJJRHkgYCm",
663 testNetwork(done, params);
665 it('Allows selection
of Bata
', function(done) {
667 selectText: "BTA - Bata",
668 firstAddress: "BGxBdNeYPtF3GCuTtZBPQdFxCkdBYSF3fj",
670 testNetwork(done, params);
672 it('Allows selection
of Belacoin
', function(done) {
674 selectText: "BELA - Belacoin",
675 firstAddress: "BEeetqpNffdzeknSpNmQp5KAFh2KK1Qx7S",
677 testNetwork(done, params);
679 it('Allows selection
of Bitcoin Atom
', function(done) {
681 selectText: "BCA - Bitcoin Atom",
682 firstAddress: "AMy6qMbJeC4zsGRL6iWszmeCdQH65fgfih",
684 testNetwork(done, params);
686 it('Allows selection
of Bitcoinplus
', function(done) {
688 selectText: "XBC - Bitcoinplus",
689 firstAddress: "B7FSynZoDbEwTCSgsXq9nJ5ue8owYLVL8r",
691 testNetwork(done, params);
693 it('Allows selection
of Bitcoin Private
', function(done) {
695 selectText: "BTCP - Bitcoin Private",
696 firstAddress: "b1M3PbiXXyN6Hdivdw5rJv5VKpLjPzhm4jM",
698 testNetwork(done, params);
700 it('Allows selection
of Bitcoinz
', function(done) {
702 selectText: "BTCZ - Bitcoinz",
703 firstAddress: "t1X2YQoxs8cYRo2oaBYgVEwW5QNjCC59NYc",
705 testNetwork(done, params);
707 it('Allows selection
of BitCloud
', function(done) {
709 selectText: "BTDX - BitCloud",
710 firstAddress: "BE9tnWxiR7ALgVhG8LLDi2W9pvtjzZMFoM",
712 testNetwork(done, params);
714 it('Allows selection
of Bitcore
', function(done) {
716 selectText: "BTX - Bitcore",
717 firstAddress: "2Rgp5Znhpy34TK4QmPkfCiYs9r4KovfTH9",
719 testNetwork(done, params);
721 it('Allows selection
of Bitsend
', function(done) {
723 selectText: "BSD - Bitsend",
724 firstAddress: "iBPk7LYjDun3EPk7CRR8UUmnPoceVc1bp2",
726 testNetwork(done, params);
728 it('Allows selection
of Britcoin
', function(done) {
730 selectText: "BRIT - Britcoin",
731 firstAddress: "B6Aue4J2XLs1f1dtD4H1SHYFfh4XrmEbrw",
733 testNetwork(done, params);
735 it('Allows selection
of Canadaecoin
', function(done) {
737 selectText: "CDN - Canadaecoin",
738 firstAddress: "CanAyCfd5Rj2CQVfaoAmvDUZunPM5W1AEQ",
740 testNetwork(done, params);
742 it('Allows selection
of Cannacoin
', function(done) {
744 selectText: "CCN - Cannacoin",
745 firstAddress: "CYjW8xWB43g6krLJTmmrPk1PonoQX7h9Qd",
747 testNetwork(done, params);
749 it('Allows selection
of Clubcoin
', function(done) {
751 selectText: "CLUB - Clubcoin",
752 firstAddress: "CHMDEXN4sihpSVX4GyAa2hZ62shnby7uyN",
754 testNetwork(done, params);
756 it('Allows selection
of Compcoin
', function(done) {
758 selectText: "CMP - Compcoin",
759 firstAddress: "CLshtw3zhxkseBJS46UF12v3AFy9Dx7JVv",
761 testNetwork(done, params);
763 it('Allows selection
of Crave
', function(done) {
765 selectText: "CRAVE - Crave",
766 firstAddress: "VCYJeti6uKMNBFKCL7eP96UwuFWYHM7c85",
768 testNetwork(done, params);
770 it('Allows selection
of Defcoin
', function(done) {
772 selectText: "DFC - Defcoin",
773 firstAddress: "D8swcgyaaFUrXZU3ATwbgy16buCpWqbG1M",
775 testNetwork(done, params);
777 it('Allows selection
of Diamond
', function(done) {
779 selectText: "DMD - Diamond",
780 firstAddress: "dJnrVbLL9UPjdaVRz2C8VpqHZknqAqjLek",
782 testNetwork(done, params);
784 it('Allows selection
of Digibyte
', function(done) {
786 selectText: "DGB - Digibyte",
787 firstAddress: "D85Rp9jwLtMdmP6wGjTiqHBdVQLST3YCEq",
789 testNetwork(done, params);
791 it('Allows selection
of Digitalcoin
', function(done) {
793 selectText: "DGC - Digitalcoin",
794 firstAddress: "DKw4UGKEAZWweDNEbBFNQx4EM8x1mpUdia",
796 testNetwork(done, params);
798 it('Allows selection
of Ecoin
', function(done) {
800 selectText: "ECN - Ecoin",
801 firstAddress: "e6WFPLG5gcXyF7cESFteH1hE2XSmowW5yB",
803 testNetwork(done, params);
805 it('Allows selection
of Edrcoin
', function(done) {
807 selectText: "EDRC - Edrcoin",
808 firstAddress: "eh1nUJsvgKPFv6ebMBfcwJ299GMCpjeZUG",
810 testNetwork(done, params);
812 it('Allows selection
of Egulden
', function(done) {
814 selectText: "EFL - Egulden",
815 firstAddress: "Lg66yt55R7edRM58cDhKzXik2kFme3viX7",
817 testNetwork(done, params);
819 it('Allows selection
of Einsteinium
', function(done) {
821 selectText: "EMC2 - Einsteinium",
822 firstAddress: "EVAABm9hXKHk2MpVMbwNakRubFnNha5m8m",
824 testNetwork(done, params);
826 it('Allows selection
of Europecoin
', function(done) {
828 selectText: "ERC - Europecoin",
829 firstAddress: "ESA2YwPYntAoaPrE8Fm5qkKRtkcwLcwD6R",
831 testNetwork(done, params);
833 it('Allows selection
of Exclusivecoin
', function(done) {
835 selectText: "EXCL - Exclusivecoin",
836 firstAddress: "EbUa6m8UZW6nTxsYZD2FsDjkadKbp5M6JT",
838 testNetwork(done, params);
840 it('Allows selection
of Feathercoin
', function(done) {
842 selectText: "FTC - Feathercoin",
843 firstAddress: "6gDdjAMoSgQaW8UhqK3oboHs6ftGAroKkM",
845 testNetwork(done, params);
847 it('Allows selection
of Firstcoin
', function(done) {
849 selectText: "FRST - Firstcoin",
850 firstAddress: "FJN9GzfMm7Q8R4DJwK1H9F6A1GTghvFiMJ",
852 testNetwork(done, params);
854 it('Allows selection
of Flashcoin
', function(done) {
856 selectText: "FLASH - Flashcoin",
857 firstAddress: "UWfpf5LfMmLxZYooEb2EyvWhZ8NG7EZDRt",
859 testNetwork(done, params);
861 it('Allows selection
of GCRCoin
', function(done) {
863 selectText: "GCR - GCRCoin",
864 firstAddress: "GJjF5cLwyXLacpuvXAVksxGxKvHDjx58d6",
866 testNetwork(done, params);
868 it('Allows selection
of Gobyte
', function(done) {
870 selectText: "GBX - Gobyte",
871 firstAddress: "GS813Ys2brkmvSUw1rUqGPm2HqQVDHJRyA",
873 testNetwork(done, params);
875 it('Allows selection
of Gridcoin
', function(done) {
877 selectText: "GRC - Gridcoin",
878 firstAddress: "SGrWbBPvobgqKRF8td1Kdc9vbRY7MJ78Y9",
880 testNetwork(done, params);
882 it('Allows selection
of Gulden
', function(done) {
884 selectText: "NLG - Gulden",
885 firstAddress: "GcDP7cNEc33MPPdTFNJ8pZc6VMZJ2CbKxY",
887 testNetwork(done, params);
889 it('Allows selection
of Helleniccoin
', function(done) {
891 selectText: "HNC - Helleniccoin",
892 firstAddress: "LbHEKe5H72zp9G1fuWNiiNePTUfJb88915",
894 testNetwork(done, params);
896 it('Allows selection
of Hempcoin
', function(done) {
898 selectText: "THC - Hempcoin",
899 firstAddress: "H8sdWbZyJV4gyXyHtLXDaNnAuUDhK5mfTV",
901 testNetwork(done, params);
903 it('Allows selection
of Insane
', function(done) {
905 selectText: "INSN - Insane",
906 firstAddress: "iMPqEJMiXWuxC9U2NVinCCMr4t72h58EWx",
908 testNetwork(done, params);
910 it('Allows selection
of Iop
', function(done) {
912 selectText: "IOP - Iop",
913 firstAddress: "pGKQmcaPf95Ur5o6oHK4qdiZ52p1yaTvq1",
915 testNetwork(done, params);
917 it('Allows selection
of Ixcoin
', function(done) {
919 selectText: "IXC - Ixcoin",
920 firstAddress: "xgE9bTZ6YypT3E6ByzkTt31Hq68E9BqywH",
922 testNetwork(done, params);
924 it('Allows selection
of Kobocoin
', function(done) {
926 selectText: "KOBO - Kobocoin",
927 firstAddress: "FTVoNJETXDAM8x7MnmdE8RwWndSr9PQWhy",
929 testNetwork(done, params);
931 it('Allows selection
of Landcoin
', function(done) {
933 selectText: "LDCN - Landcoin",
934 firstAddress: "LLvLwNjG1aJcn1RS4W4GJUbv8fNaRATG7c",
936 testNetwork(done, params);
938 it('Allows selection
of Library Credits
', function(done) {
940 selectText: "LBC - Library Credits",
941 firstAddress: "bQJEQrHDJyHdqycB32uysh1SWn8Ln8LMdg",
943 testNetwork(done, params);
945 it('Allows selection
of Linx
', function(done) {
947 selectText: "LINX - Linx",
948 firstAddress: "XGWQ3cb3LGUB3VnHmj6xYSMgnokNbf6dyk",
950 testNetwork(done, params);
952 it('Allows selection
of Litecoincash
', function(done) {
954 selectText: "LCC - Litecoincash",
955 firstAddress: "Ce5n7fjUuQPLutJ4W5nCCfQLKdKLE1mv9A",
957 testNetwork(done, params);
959 it('Allows selection
of Lynx
', function(done) {
961 selectText: "LYNX - Lynx",
962 firstAddress: "KUeY3ZdZkg96p4W98pj1JjygCFU1XqWdw3",
964 testNetwork(done, params);
966 it('Allows selection
of Megacoin
', function(done) {
968 selectText: "MEC - Megacoin",
969 firstAddress: "MHHRRPHcF8DvQpEySFF9M6fR8Qv4JH2fFC",
971 testNetwork(done, params);
973 it('Allows selection
of Minexcoin
', function(done) {
975 selectText: "MNX - Minexcoin",
976 firstAddress: "XC1VnyJVfiMDwWgFtAHDp41cgY3AHk3dJT",
978 testNetwork(done, params);
980 it('Allows selection
of Navcoin
', function(done) {
982 selectText: "NAV - Navcoin",
983 firstAddress: "NTQVTPK3NWSQLKoffkiQw99T8PifkF1Y2U",
985 testNetwork(done, params);
987 it('Allows selection
of Neoscoin
', function(done) {
989 selectText: "NEOS - Neoscoin",
990 firstAddress: "NgATz6QbQNXvayHQ4CpZayugb9HeaPDdby",
992 testNetwork(done, params);
994 it('Allows selection
of Neurocoin
', function(done) {
996 selectText: "NRO - Neurocoin",
997 firstAddress: "NVdYErQ3mFpDuF5DquW9WMiT7sLc8ufFTn",
999 testNetwork(done, params);
1001 it('Allows selection
of Newyorkc
', function(done) {
1003 selectText: "NYC - Newyorkc",
1004 firstAddress: "RSVMfyH1fKfy3puADJEhut2vfkRyon6imm",
1006 testNetwork(done, params);
1008 it('Allows selection
of Novacoin
', function(done) {
1010 selectText: "NVC - Novacoin",
1011 firstAddress: "4JRvUmxcKCJmaMXZyvRoSS1cmG2XvnZfHN",
1013 testNetwork(done, params);
1015 it('Allows selection
of Nushares
', function(done) {
1017 selectText: "NSR - Nushares",
1018 firstAddress: "SecjXzU3c7EecdT7EbC4vvmbdtBBokWh6J",
1020 testNetwork(done, params);
1022 it('Allows selection
of Okcash
', function(done) {
1024 selectText: "OK - Okcash",
1025 firstAddress: "PV4Qp1TUYuGv4TqVtLZtqvrsWWRycfx1Yi",
1027 testNetwork(done, params);
1029 it('Allows selection
of Omnicore
', function(done) {
1031 selectText: "OMNI - Omnicore",
1032 firstAddress: "1Q1t3gonjCT3rW38TsTsCvgSc3hh7zBGbi",
1034 testNetwork(done, params);
1036 it('Allows selection
of Pesobit
', function(done) {
1038 selectText: "PSB - Pesobit",
1039 firstAddress: "PDePsF7ALyXP7JaywokdYiRTDtKa14MAr1",
1041 testNetwork(done, params);
1043 it('Allows selection
of Pinkcoin
', function(done) {
1045 selectText: "PINK - Pinkcoin",
1046 firstAddress: "2TgjYQffjbzUHJghNaVbdsjHbRwruC3yzC",
1048 testNetwork(done, params);
1050 it('Allows selection
of POSWcoin
', function(done) {
1052 selectText: "POSW - POSWcoin",
1053 firstAddress: "PNxewmZoPnGBvoEbH6hgQZCK1igDiBCdgC",
1055 testNetwork(done, params);
1057 it('Allows selection
of Potcoin
', function(done) {
1059 selectText: "POT - Potcoin",
1060 firstAddress: "PEo7Vg2ctXgpP4vuLPeY9aGJtZotyrmiHc",
1062 testNetwork(done, params);
1064 it('Allows selection
of Putincoin
', function(done) {
1066 selectText: "PUT - Putincoin",
1067 firstAddress: "PViWnfr2uFtovd6e7joM49C94CsGSnqJis",
1069 testNetwork(done, params);
1071 it('Allows selection
of Reddcoin
', function(done) {
1073 selectText: "RDD - Reddcoin",
1074 firstAddress: "RtgRvXMBng1y51ftteveFqwNfyRG18HpxQ",
1076 testNetwork(done, params);
1078 it('Allows selection
of RevolutionVR
', function(done) {
1080 selectText: "RVR - RevolutionVR",
1081 firstAddress: "VXeeoP2jkzZnMFxtc66ZBZK1NHN5QJnnjL",
1083 testNetwork(done, params);
1085 it('Allows selection
of Rubycoin
', function(done) {
1087 selectText: "RBY - Rubycoin",
1088 firstAddress: "RV76JDtjTs11JdMDRToYn6CHecMRPLnKS6",
1090 testNetwork(done, params);
1092 it('Allows selection
of Salus
', function(done) {
1094 selectText: "SLS - Salus",
1095 firstAddress: "SgdYBmVytcW2aCYitdegwkUcCU7RSqYokB",
1098 it('Allows selection
of Smileycoin
', function(done) {
1100 selectText: "SMLY - Smileycoin",
1101 firstAddress: "BEZVnEBCAyFByrgKpwAgYgtvP4rKAd9Sj2",
1103 testNetwork(done, params);
1105 it('Allows selection
of Solarcoin
', function(done) {
1107 selectText: "SLR - Solarcoin",
1108 firstAddress: "8LZ13HbnjtaMJWSvvVFNTLf71zFfDrhwLu",
1110 testNetwork(done, params);
1112 it('Allows selection
of stash
', function(done) {
1114 selectText: "STASH - Stash",
1115 firstAddress: "XxwAsWB7REDKmAvHA85SbEZQQtpxeUDxS3",
1117 testNetwork(done, params);
1119 it('Allows selection
of stash testnet
', function(done) {
1121 selectText: "STASH - Stash Testnet",
1122 firstAddress: "YdbhtMuGsPSkE6bPdNTHoFSszQKmK4S5LT",
1124 testNetwork(done, params);
1126 it('Allows selection
of Stratis
', function(done) {
1128 selectText: "STRAT - Stratis",
1129 firstAddress: "ScfJnq3QDhKgDMEds6sqUE1ot6ShfhmXXq",
1131 testNetwork(done, params);
1133 it('Allows selection
of Stratis Test
', function(done) {
1135 selectText: "TSTRAT - Stratis Testnet",
1136 firstAddress: "TRLWm3dye4FRrDWouwYUSUZP96xb76mBE3",
1138 testNetwork(done, params);
1140 it('Allows selection
of Syscoin
', function(done) {
1142 selectText: "SYS - Syscoin",
1143 firstAddress: "SZwJi42Pst3VAMomyK5DG4157WM5ofRmSj",
1145 testNetwork(done, params);
1147 it('Allows selection
of Toa
', function(done) {
1149 selectText: "TOA - Toa",
1150 firstAddress: "TSe1QAnUwQzUfbBusDzRJ9URttrRGKoNKF",
1152 testNetwork(done, params);
1154 it('Allows selection
of Ultimatesecurecash
', function(done) {
1156 selectText: "USC - Ultimatesecurecash",
1157 firstAddress: "UPyLAZU2Che5fiy7Ed8xVJFmXAUhitA4ug",
1159 testNetwork(done, params);
1161 it('Allows selection
of Unobtanium
', function(done) {
1163 selectText: "UNO - Unobtanium",
1164 firstAddress: "uUBMPVMXrR6qhqornJqKTWgr8L69vihSL9",
1166 testNetwork(done, params);
1168 it('Allows selection
of Vcash
', function(done) {
1170 selectText: "XVC - Vcash",
1171 firstAddress: "VuL53MSY6KjvAjKSeRkh3NDnKykacDVeps",
1173 testNetwork(done, params);
1175 it('Allows selection
of Verge
', function(done) {
1177 selectText: "XVG - Verge",
1178 firstAddress: "DCrVuGkMjLJpTGgwAgv9AcMdeb1nkWbjZA",
1180 testNetwork(done, params);
1182 it('Allows selection
of Vertcoin
', function(done) {
1184 selectText: "VTC - Vertcoin",
1185 firstAddress: "Vf6koGuiWdXQfx8tNqxoNeEDxh4xh5cxsG",
1187 testNetwork(done, params);
1189 it('Allows selection
of Vivo
', function(done) {
1191 selectText: "VIVO - Vivo",
1192 firstAddress: "VFmBwuXXGhJe7MarQG2GfzHMFebRHgfSpB",
1194 testNetwork(done, params);
1196 it('Allows selection
of Vpncoin
', function(done) {
1198 selectText: "VASH - Vpncoin",
1199 firstAddress: "VoEmH1qXC4TsSgBAStR21QYetwnFqbqCx9",
1201 testNetwork(done, params);
1203 it('Allows selection
of Whitecoin
', function(done) {
1205 selectText: "XWC - Whitecoin",
1206 firstAddress: "WcSwCAUqrSgeSYbsaS3SSWWhsx8KRYTFDR",
1208 testNetwork(done, params);
1210 it('Allows selection
of Wincoin
', function(done) {
1212 selectText: "WC - Wincoin",
1213 firstAddress: "WaDVCESMGgyKgNESdn3u43NnwmGSkZED3Z",
1215 testNetwork(done, params);
1217 it('Allows selection
of Zcoin
', function(done) {
1219 selectText: "XZC - Zcoin",
1220 firstAddress: "a6VcMdP4XgAA9Tr7xNszmPG5FZpfRf17Cq",
1222 testNetwork(done, params);
1224 it('Allows selection
of Zcash
', function(done) {
1226 selectText: "ZEC - Zcash",
1227 firstAddress: "t1Sz8AneMcVuzUg3tPJ8et5AS5LFJ7K2EF9",
1229 testNetwork(done, params);
1231 it('Allows selection
of Zclassic
', function(done) {
1233 selectText: "ZCL - Zclassic",
1234 firstAddress: "t1TBMxTvVJRybUbMLGWq8H4A8F4VUL7czEc",
1236 testNetwork(done, params);
1238 it('Allows selection
of Zencash
', function(done) {
1240 selectText: "ZEN - Zencash",
1241 firstAddress: "znWh9XASyW2dZq5tck84wFjiwuqVysi7q3p",
1243 testNetwork(done, params);
1245 it('Allows selection
of Energi
', function(done) {
1247 selectText: "NRG - Energi",
1248 firstAddress: "EejRy4t4nidzhGGzkJUgFP3z4HYBjhTsRt",
1250 testNetwork(done, params);
1252 it('Allows selection
of Ethereum Classic
', function(done) {
1254 selectText: "ETC - Ethereum Classic",
1255 firstAddress: "0x3c05e5556693808367afB62eF3b63e35d6eD249A",
1257 testNetwork(done, params);
1259 it('Allows selection
of Pirl
', function(done) {
1261 selectText: "PIRL - Pirl",
1262 firstAddress: "0xe77FC0723dA122B5025CA79193c28563eB47e776",
1264 testNetwork(done, params);
1266 it('Allows selection
of MIX
', function(done) {
1268 selectText: "MIX - MIX",
1269 firstAddress: "0x98BC5e63aeb6A4e82d72850d20710F07E29A29F1",
1271 testNetwork(done, params);
1273 it('Allows selection
of Musicoin
', function(done) {
1275 selectText: "MUSIC - Musicoin",
1276 firstAddress: "0xDc060e4A0b0313ea83Cf6B3A39B9db2D29004897",
1278 testNetwork(done, params);
1280 it('Allows selection
of Poa
', function(done) {
1282 selectText: "POA - Poa",
1283 firstAddress: "0x53aF28d754e106210C3d0467Dd581eaf7e3C5e60",
1285 testNetwork(done, params);
1287 it('Allows selection
of Expanse
', function(done) {
1289 selectText: "EXP - Expanse",
1290 firstAddress: "0xf57FeAbf26582b6E3E666559d3B1Cc6fB2b2c5F6",
1292 testNetwork(done, params);
1294 it('Allows selection
of Callisto
', function(done) {
1296 selectText: "CLO - Callisto",
1297 firstAddress: "0x4f9364F7420B317266C51Dc8eB979717D4dE3f4E",
1299 testNetwork(done, params);
1301 it('Allows selection
of HUSH
', function(done) {
1303 selectText: "HUSH - Hush",
1304 firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA",
1306 testNetwork(done, params);
1308 it('Allows selection
of ExchangeCoin
', function(done) {
1310 selectText: "EXCC - ExchangeCoin",
1311 firstAddress: "22txYKpFN5fwGwdSs2UBf7ywewbLM92YqK7E",
1313 testNetwork(done, params);
1315 it('Allows selection
of Artax
', function(done) {
1317 selectText: "XAX - Artax",
1318 firstAddress: "AYxaQPY7XLidG31V7F3yNzwxPYpYzRqG4q",
1320 testNetwork(done, params);
1322 it('Allows selection
of BitcoinGreen
', function(done) {
1324 selectText: "BITG - Bitcoin Green",
1325 firstAddress: "GeNGm9SkEfwbsws3UrrUSE2sJeyWYjzraY",
1327 testNetwork(done, params);
1329 it('Allows selection
of ANON
', function(done) {
1331 selectText: "ANON - ANON",
1332 firstAddress: "AnU6pijpEeUZFWSTyM2qTqZQn996Zq1Xard",
1334 testNetwork(done, params);
1336 it('Allows selection
of ProjectCoin
', function(done) {
1338 selectText: "PRJ - ProjectCoin",
1339 firstAddress: "PXZG97saRseSCftfe1mcFmfAA7pf6qBbaz",
1341 testNetwork(done, params);
1344 // BIP39 seed is set from phrase
1345 it('Sets the bip39 seed
from the prhase
', function(done) {
1346 driver.findElement(By.css('.phrase
'))
1347 .sendKeys('abandon abandon ability
');
1348 driver.sleep(generateDelay).then(function() {
1349 driver.findElement(By.css('.seed
'))
1350 .getAttribute("value")
1351 .then(function(seed) {
1352 expect(seed).toBe("20da140d3dd1df8713cefcc4d54ce0e445b4151027a1ab567b832f6da5fcc5afc1c3a3f199ab78b8e0ab4652efd7f414ac2c9a3b81bceb879a70f377aa0a58f3");
1358 // BIP32 root key is set from phrase
1359 it('Sets the bip39 root key
from the prhase
', function(done) {
1360 driver.findElement(By.css('.phrase
'))
1361 .sendKeys('abandon abandon ability
');
1362 driver.sleep(generateDelay).then(function() {
1363 driver.findElement(By.css('.root
-key
'))
1364 .getAttribute("value")
1365 .then(function(seed) {
1366 expect(seed).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
1372 // Tabs show correct addresses when changed
1373 it('Shows the correct address when tab is changed
', function(done) {
1374 driver.findElement(By.css('.phrase
'))
1375 .sendKeys('abandon abandon ability
');
1376 driver.sleep(generateDelay).then(function() {
1377 driver.findElement(By.css('#bip32
-tab a
'))
1379 driver.sleep(generateDelay).then(function() {
1380 getFirstAddress(function(address) {
1381 expect(address).toBe("17uQ7s2izWPwBmEVFikTmZUjbBKWYdJchz");
1388 // BIP44 derivation path is shown
1389 it('Shows the derivation path
for bip44 tab
', function(done) {
1390 driver.findElement(By.css('.phrase
'))
1391 .sendKeys('abandon abandon ability
');
1392 driver.sleep(generateDelay).then(function() {
1393 driver.findElement(By.css('#bip44
.path
'))
1394 .getAttribute("value")
1395 .then(function(path) {
1396 expect(path).toBe("m/44'/0'/0'/0");
1402 // BIP44 extended private key is shown
1403 it('Shows the extended private key for bip44 tab', function(done) {
1404 driver.findElement(By.css('.phrase'))
1405 .sendKeys('abandon abandon ability');
1406 driver.sleep(generateDelay).then(function() {
1407 driver.findElement(By.css('.extended-priv-key'))
1408 .getAttribute("value
")
1409 .then(function(path) {
1410 expect(path).toBe("xprvA2DxxvPZcyRvYgZMGS53nadR32mVDeCyqQYyFhrCVbJNjPoxMeVf7QT5g7mQASbTf9Kp4cryvcXnu2qurjWKcrdsr91jXymdCDNxKgLFKJG
");
1416 // BIP44 extended public key is shown
1417 it('Shows the extended public key for bip44 tab', function(done) {
1418 driver.findElement(By.css('.phrase'))
1419 .sendKeys('abandon abandon ability');
1420 driver.sleep(generateDelay).then(function() {
1421 driver.findElement(By.css('.extended-pub-key'))
1422 .getAttribute("value
")
1423 .then(function(path) {
1424 expect(path).toBe("xpub6FDKNRvTTLzDmAdpNTc49ia9b4byd6vqCdUa46Fp3vqMcC96uBoufCmZXQLiN5AK3iSCJMhf9gT2sxkpyaPepRuA7W3MujV5tGmF5VfbueM
");
1430 // BIP44 account field changes address list
1431 it('Changes the address list if bip44 account is changed', function(done) {
1432 driver.findElement(By.css('#bip44 .account'))
1434 driver.findElement(By.css('.phrase'))
1435 .sendKeys('abandon abandon ability');
1436 driver.sleep(generateDelay).then(function() {
1437 getFirstAddress(function(address) {
1438 expect(address).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H
");
1444 // BIP44 change field changes address list
1445 it('Changes the address list if bip44 change is changed', function(done) {
1446 driver.findElement(By.css('#bip44 .change'))
1448 driver.findElement(By.css('.phrase'))
1449 .sendKeys('abandon abandon ability');
1450 driver.sleep(generateDelay).then(function() {
1451 getFirstAddress(function(address) {
1452 expect(address).toBe("1KAGfWgqfVbSSXY56fNQ7YnhyKuoskHtYo
");
1458 // BIP32 derivation path can be set
1459 it('Can use a custom bip32 derivation path', function(done) {
1460 driver.findElement(By.css('#bip32-tab a'))
1462 driver.findElement(By.css('#bip32 .path'))
1464 driver.findElement(By.css('#bip32 .path'))
1466 driver.findElement(By.css('.phrase'))
1467 .sendKeys('abandon abandon ability');
1468 driver.sleep(generateDelay).then(function() {
1469 getFirstAddress(function(address) {
1470 expect(address).toBe("16pYQQdLD1hH4hwTGLXBaZ9Teboi1AGL8L
");
1476 // BIP32 can use hardened derivation paths
1477 it('Can use a hardened derivation paths', function(done) {
1478 driver.findElement(By.css('#bip32-tab a'))
1480 driver.findElement(By.css('#bip32 .path'))
1482 driver.findElement(By.css('#bip32 .path'))
1484 driver.findElement(By.css('.phrase
'))
1485 .sendKeys('abandon abandon ability
');
1486 driver.sleep(generateDelay).then(function() {
1487 getFirstAddress(function(address) {
1488 expect(address).toBe("14aXZeprXAE3UUKQc4ihvwBvww2LuEoHo4");
1494 // BIP32 extended private key is shown
1495 it('Shows the BIP32 extended
private key
', function(done) {
1496 driver.findElement(By.css('#bip32
-tab a
'))
1498 driver.findElement(By.css('.phrase
'))
1499 .sendKeys('abandon abandon ability
');
1500 driver.sleep(generateDelay).then(function() {
1501 driver.findElement(By.css('.extended
-priv
-key
'))
1502 .getAttribute("value")
1503 .then(function(privKey) {
1504 expect(privKey).toBe("xprv9va99uTVE5aLiutUVLTyfxfe8v8aaXjSQ1XxZbK6SezYVuikA9MnjQVTA8rQHpNA5LKvyQBpLiHbBQiiccKiBDs7eRmBogsvq3THFeLHYbe");
1510 // BIP32 extended public key is shown
1511 it('Shows the BIP32 extended
public key
', function(done) {
1512 driver.findElement(By.css('#bip32
-tab a
'))
1514 driver.findElement(By.css('.phrase
'))
1515 .sendKeys('abandon abandon ability
');
1516 driver.sleep(generateDelay).then(function() {
1517 driver.findElement(By.css('.extended
-pub
-key
'))
1518 .getAttribute("value")
1519 .then(function(pubKey) {
1520 expect(pubKey).toBe("xpub69ZVZQzP4T8dwPxwbMzz36cNgwy4yzTHmETZMyihzzXXNi3thgg3HCow1RtY252wdw5rS8369xKnraN5Q93y3FkFfJp2XEHWUrkyXsjS93P");
1526 // Derivation path is shown in table
1527 it('Shows the derivation path
in the table
', function(done) {
1528 driver.findElement(By.css('.phrase
'))
1529 .sendKeys('abandon abandon ability
');
1530 driver.sleep(generateDelay).then(function() {
1531 getFirstPath(function(path) {
1532 expect(path).toBe("m/44'/0'/0'/0/0");
1538 // Derivation path for address can be hardened
1539 it('Can derive hardened addresses', function(done) {
1540 driver.findElement(By.css('#bip32-tab a'))
1542 driver.executeScript(function() {
1543 $(".hardened
-addresses
").prop("checked
", true);
1545 driver.findElement(By.css('.phrase'))
1546 .sendKeys('abandon abandon ability');
1547 driver.sleep(generateDelay).then(function() {
1548 getFirstAddress(function(address) {
1549 expect(address).toBe("18exLzUv7kfpiXRzmCjFDoC9qwNLFyvwyd
");
1555 // Derivation path visibility can be toggled
1556 it('Can toggle visibility of the derivation path column', function(done) {
1557 driver.findElement(By.css('.phrase'))
1558 .sendKeys('abandon abandon ability');
1559 driver.sleep(generateDelay).then(function() {
1560 driver.findElement(By.css('.index-toggle'))
1562 testColumnValuesAreInvisible(done, "index
");
1567 it('Shows the address in the table', function(done) {
1568 driver.findElement(By.css('.phrase'))
1569 .sendKeys('abandon abandon ability');
1570 driver.sleep(generateDelay).then(function() {
1571 getFirstAddress(function(address) {
1572 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug
");
1578 // Addresses are shown in order of derivation path
1579 it('Shows the address in order of derivation path', function(done) {
1580 driver.findElement(By.css('.phrase'))
1581 .sendKeys('abandon abandon ability');
1582 driver.sleep(generateDelay).then(function() {
1583 testRowsAreInCorrectOrder(done);
1587 // Address visibility can be toggled
1588 it('Can toggle visibility of the address column', function(done) {
1589 driver.findElement(By.css('.phrase'))
1590 .sendKeys('abandon abandon ability');
1591 driver.sleep(generateDelay).then(function() {
1592 driver.findElement(By.css('.address-toggle'))
1594 testColumnValuesAreInvisible(done, "address
");
1598 // Public key is shown in table
1599 it('Shows the public key in the table', function(done) {
1600 driver.findElement(By.css('.phrase'))
1601 .sendKeys('abandon abandon ability');
1602 driver.sleep(generateDelay).then(function() {
1603 driver.findElements(By.css('.pubkey'))
1604 .then(function(els) {
1606 .then(function(pubkey) {
1607 expect(pubkey).toBe("033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3
");
1614 // Public key visibility can be toggled
1615 it('Can toggle visibility of the public key column', function(done) {
1616 driver.findElement(By.css('.phrase'))
1617 .sendKeys('abandon abandon ability');
1618 driver.sleep(generateDelay).then(function() {
1619 driver.findElement(By.css('.public-key-toggle'))
1621 testColumnValuesAreInvisible(done, "pubkey
");
1625 // Private key is shown in table
1626 it('Shows the private key in the table', function(done) {
1627 driver.findElement(By.css('.phrase'))
1628 .sendKeys('abandon abandon ability');
1629 driver.sleep(generateDelay).then(function() {
1630 driver.findElements(By.css('.privkey'))
1631 .then(function(els) {
1633 .then(function(pubkey) {
1634 expect(pubkey).toBe("L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE
");
1641 // Private key visibility can be toggled
1642 it('Can toggle visibility of the private key column', function(done) {
1643 driver.findElement(By.css('.phrase'))
1644 .sendKeys('abandon abandon ability');
1645 driver.sleep(generateDelay).then(function() {
1646 driver.findElement(By.css('.private-key-toggle'))
1648 testColumnValuesAreInvisible(done, "privkey
");
1652 // More addresses can be generated
1653 it('Can generate more rows in the table', function(done) {
1654 driver.findElement(By.css('.phrase'))
1655 .sendKeys('abandon abandon ability');
1656 driver.sleep(generateDelay).then(function() {
1657 driver.findElement(By.css('.more'))
1659 driver.sleep(generateDelay).then(function() {
1660 driver.findElements(By.css('.address'))
1661 .then(function(els) {
1662 expect(els.length).toBe(40);
1669 // A custom number of additional addresses can be generated
1670 it('Can generate more rows in the table', function(done) {
1671 driver.findElement(By.css('.phrase'))
1672 .sendKeys('abandon abandon ability');
1673 driver.sleep(generateDelay).then(function() {
1674 driver.findElement(By.css('.rows-to-add'))
1676 driver.findElement(By.css('.rows-to-add'))
1678 driver.findElement(By.css('.more'))
1680 driver.sleep(generateDelay).then(function() {
1681 driver.findElements(By.css('.address'))
1682 .then(function(els) {
1683 expect(els.length).toBe(21);
1690 // Additional addresses are shown in order of derivation path
1691 it('Shows additional addresses in order of derivation path', function(done) {
1692 driver.findElement(By.css('.phrase'))
1693 .sendKeys('abandon abandon ability');
1694 driver.sleep(generateDelay).then(function() {
1695 driver.findElement(By.css('.more'))
1697 driver.sleep(generateDelay).then(function() {
1698 testRowsAreInCorrectOrder(done);
1703 // BIP32 root key can be set by the user
1704 it('Allows the user to set the BIP32 root key', function(done) {
1705 driver.findElement(By.css('.root-key'))
1706 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1707 driver.sleep(generateDelay).then(function() {
1708 getFirstAddress(function(address) {
1709 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug
");
1715 // Setting BIP32 root key clears the existing phrase, passphrase and seed
1716 // TODO this doesn't work in selenium with chrome
1717 it('Confirms the existing phrase should be cleared', function(done) {
1718 if (browser == "chrome
") {
1719 pending("Selenium
+ Chrome headless bug
for alert
, see
https://stackoverflow.com/q/45242264");
1721 driver
.findElement(By
.css('.phrase'))
1722 .sendKeys('A non-blank but invalid value');
1723 driver
.findElement(By
.css('.root-key'))
1724 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1725 driver
.switchTo().alert().accept();
1726 driver
.findElement(By
.css('.phrase'))
1727 .getAttribute("value").then(function(value
) {
1728 expect(value
).toBe("");
1733 // Clearing of phrase, passphrase and seed can be cancelled by user
1734 // TODO this doesn't work in selenium with chrome
1735 it('Allows the clearing of the phrase to be cancelled', function(done
) {
1736 if (browser
== "chrome") {
1737 pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
1739 driver
.findElement(By
.css('.phrase'))
1740 .sendKeys('abandon abandon ability');
1741 driver
.sleep(generateDelay
).then(function() {
1742 driver
.findElement(By
.css('.root-key'))
1744 driver
.findElement(By
.css('.root-key'))
1746 driver
.switchTo().alert().dismiss();
1747 driver
.findElement(By
.css('.phrase'))
1748 .getAttribute("value").then(function(value
) {
1749 expect(value
).toBe("abandon abandon ability");
1755 // Custom BIP32 root key is used when changing the derivation path
1756 it('Can set derivation path for root key instead of phrase', function(done
) {
1757 driver
.findElement(By
.css('#bip44 .account'))
1759 driver
.findElement(By
.css('.root-key'))
1760 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1761 driver
.sleep(generateDelay
).then(function() {
1762 getFirstAddress(function(address
) {
1763 expect(address
).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H");
1769 // Incorrect mnemonic shows error
1770 it('Shows an error for incorrect mnemonic', function(done
) {
1771 driver
.findElement(By
.css('.phrase'))
1772 .sendKeys('abandon abandon abandon');
1773 driver
.sleep(feedbackDelay
).then(function() {
1774 driver
.findElement(By
.css('.feedback'))
1776 .then(function(feedback
) {
1777 expect(feedback
).toBe("Invalid mnemonic");
1783 // Incorrect word shows suggested replacement
1784 it('Shows word suggestion for incorrect word', function(done
) {
1785 driver
.findElement(By
.css('.phrase'))
1786 .sendKeys('abandon abandon abiliti');
1787 driver
.sleep(feedbackDelay
).then(function() {
1788 driver
.findElement(By
.css('.feedback'))
1790 .then(function(feedback
) {
1791 var msg
= "abiliti not in wordlist, did you mean ability?";
1792 expect(feedback
).toBe(msg
);
1798 // Github pull request 48
1799 // First four letters of word shows that word, not closest
1800 // since first four letters gives unique word in BIP39 wordlist
1801 // eg ille should show illegal, not idle
1802 it('Shows word suggestion based on first four chars', function(done
) {
1803 driver
.findElement(By
.css('.phrase'))
1805 driver
.sleep(feedbackDelay
).then(function() {
1806 driver
.findElement(By
.css('.feedback'))
1808 .then(function(feedback
) {
1809 var msg
= "ille not in wordlist, did you mean illegal?";
1810 expect(feedback
).toBe(msg
);
1816 // Incorrect BIP32 root key shows error
1817 it('Shows error for incorrect root key', function(done
) {
1818 driver
.findElement(By
.css('.root-key'))
1819 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpj');
1820 driver
.sleep(feedbackDelay
).then(function() {
1821 driver
.findElement(By
.css('.feedback'))
1823 .then(function(feedback
) {
1824 var msg
= "Invalid root key";
1825 expect(feedback
).toBe(msg
);
1831 // Derivation path not starting with m shows error
1832 it('Shows error for derivation path not starting with m', function(done
) {
1833 driver
.findElement(By
.css('#bip32-tab a'))
1835 driver
.findElement(By
.css('#bip32 .path'))
1837 driver
.findElement(By
.css('#bip32 .path'))
1839 driver
.findElement(By
.css('.phrase'))
1840 .sendKeys('abandon abandon ability');
1841 driver
.sleep(feedbackDelay
).then(function() {
1842 driver
.findElement(By
.css('.feedback'))
1844 .then(function(feedback
) {
1845 var msg
= "First character must be 'm'";
1846 expect(feedback
).toBe(msg
);
1852 // Derivation path containing invalid characters shows useful error
1853 it('Shows error for derivation path not starting with m', function(done
) {
1854 driver
.findElement(By
.css('#bip32-tab a'))
1856 driver
.findElement(By
.css('#bip32 .path'))
1858 driver
.findElement(By
.css('#bip32 .path'))
1859 .sendKeys('m/1/0wrong1/1');
1860 driver
.findElement(By
.css('.phrase'))
1861 .sendKeys('abandon abandon ability');
1862 driver
.sleep(feedbackDelay
).then(function() {
1863 driver
.findElement(By
.css('.feedback'))
1865 .then(function(feedback
) {
1866 var msg
= "Invalid characters 0wrong1 found at depth 2";
1867 expect(feedback
).toBe(msg
);
1873 // Github Issue 11: Default word length is 15
1874 // https://github.com/iancoleman/bip39/issues/11
1875 it('Sets the default word length to 15', function(done
) {
1876 driver
.findElement(By
.css('.strength'))
1877 .getAttribute("value")
1878 .then(function(strength
) {
1879 expect(strength
).toBe("15");
1884 // Github Issue 12: Generate more rows with private keys hidden
1885 // https://github.com/iancoleman/bip39/issues/12
1886 it('Sets the correct hidden column state on new rows', function(done
) {
1887 driver
.findElement(By
.css('.phrase'))
1888 .sendKeys("abandon abandon ability");
1889 driver
.sleep(generateDelay
).then(function() {
1890 driver
.findElement(By
.css('.private-key-toggle'))
1892 driver
.findElement(By
.css('.more'))
1894 driver
.sleep(generateDelay
).then(function() {
1895 driver
.findElements(By
.css('.privkey'))
1896 .then(function(els
) {
1897 expect(els
.length
).toBe(40);
1899 testColumnValuesAreInvisible(done
, "privkey");
1904 // Github Issue 19: Mnemonic is not sensitive to whitespace
1905 // https://github.com/iancoleman/bip39/issues/19
1906 it('Ignores excess whitespace in the mnemonic', function(done
) {
1907 var doublespace
= " ";
1908 var mnemonic
= "urge cat" + doublespace
+ "bid";
1909 driver
.findElement(By
.css('.phrase'))
1910 .sendKeys(mnemonic
);
1911 driver
.sleep(generateDelay
).then(function() {
1912 driver
.findElement(By
.css('.root-key'))
1913 .getAttribute("value")
1914 .then(function(seed
) {
1915 expect(seed
).toBe("xprv9s21ZrQH143K3isaZsWbKVoTtbvd34Y1ZGRugGdMeBGbM3AgBVzTH159mj1cbbtYSJtQr65w6L5xy5L9SFC7c9VJZWHxgAzpj4mun5LhrbC");
1921 // Github Issue 23: Part 1: Use correct derivation path when changing tabs
1922 // https://github.com/iancoleman/bip39/issues/23
1923 it('Uses the correct derivation path when changing tabs', function(done
) {
1924 // 1) and 2) set the phrase
1925 driver
.findElement(By
.css('.phrase'))
1926 .sendKeys("abandon abandon ability");
1927 driver
.sleep(generateDelay
).then(function() {
1928 // 3) select bip32 tab
1929 driver
.findElement(By
.css('#bip32-tab a'))
1931 driver
.sleep(generateDelay
).then(function() {
1932 // 4) switch from bitcoin to litecoin
1933 selectNetwork("LTC - Litecoin");
1934 driver
.sleep(generateDelay
).then(function() {
1935 // 5) Check address is displayed correctly
1936 getFirstAddress(function(address
) {
1937 expect(address
).toBe("LS8MP5LZ5AdzSZveRrjm3aYVoPgnfFh5T5");
1938 // 5) Check derivation path is displayed correctly
1939 getFirstPath(function(path
) {
1940 expect(path
).toBe("m/0/0");
1949 // Github Issue 23 Part 2: Coin selection in derivation path
1950 // https://github.com/iancoleman/bip39/issues/23#issuecomment-238011920
1951 it('Uses the correct derivation path when changing coins', function(done
) {
1953 driver
.findElement(By
.css('.phrase'))
1954 .sendKeys("abandon abandon ability");
1955 driver
.sleep(generateDelay
).then(function() {
1956 // switch from bitcoin to clam
1957 selectNetwork("CLAM - Clams");
1958 driver
.sleep(generateDelay
).then(function() {
1959 // check derivation path is displayed correctly
1960 getFirstPath(function(path
) {
1961 expect(path
).toBe("m/44'/23'/0'/0/0");
1968 // Github Issue 26: When using a Root key derrived altcoins are incorrect
1969 // https://github.com/iancoleman/bip39/issues/26
1970 it('Uses the correct derivation for altcoins with root keys', function(done
) {
1971 // 1) 2) and 3) set the root key
1972 driver
.findElement(By
.css('.root-key'))
1973 .sendKeys("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
1974 driver
.sleep(generateDelay
).then(function() {
1975 // 4) switch from bitcoin to viacoin
1976 selectNetwork("VIA - Viacoin");
1977 driver
.sleep(generateDelay
).then(function() {
1978 // 5) ensure the derived address is correct
1979 getFirstAddress(function(address
) {
1980 expect(address
).toBe("Vq9Eq4N5SQnjqZvxtxzo7hZPW5XnyJsmXT");
1987 // Selecting a language with no existing phrase should generate a phrase in
1989 it('Generate a random phrase when language is selected and no current phrase', function(done
) {
1990 driver
.findElement(By
.css("a[href='#japanese']"))
1992 driver
.sleep(generateDelay
).then(function() {
1993 driver
.findElement(By
.css(".phrase"))
1994 .getAttribute("value").then(function(phrase
) {
1995 expect(phrase
.search(/[a-z]/)).toBe(-1);
1996 expect(phrase
.length
).toBeGreaterThan(0);
2002 // Selecting a language with existing phrase should update the phrase to use
2004 it('Updates existing phrases when the language is changed', function(done
) {
2005 driver
.findElement(By
.css(".phrase"))
2006 .sendKeys("abandon abandon ability");
2007 driver
.sleep(generateDelay
).then(function() {
2008 driver
.findElement(By
.css("a[href='#italian']"))
2010 driver
.sleep(generateDelay
).then(function() {
2011 driver
.findElement(By
.css(".phrase"))
2012 .getAttribute("value").then(function(phrase
) {
2013 // Check only the language changes, not the phrase
2014 expect(phrase
).toBe("abaco abaco abbaglio");
2015 getFirstAddress(function(address
) {
2016 // Check the address is correct
2017 expect(address
).toBe("1Dz5TgDhdki9spa6xbPFbBqv5sjMrx3xgV");
2025 // Suggested replacement for erroneous word in non-English language
2026 it('Shows word suggestion for incorrect word in non-English language', function(done
) {
2027 driver
.findElement(By
.css('.phrase'))
2028 .sendKeys('abaco abaco zbbaglio');
2029 driver
.sleep(feedbackDelay
).then(function() {
2030 driver
.findElement(By
.css('.feedback'))
2032 .then(function(feedback
) {
2033 var msg
= "zbbaglio not in wordlist, did you mean abbaglio?";
2034 expect(feedback
).toBe(msg
);
2040 // Japanese word does not break across lines.
2042 // https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md#japanese
2043 it('Does not break Japanese words across lines', function(done
) {
2044 driver
.findElement(By
.css('.phrase'))
2045 .getCssValue("word-break")
2046 .then(function(value
) {
2047 expect(value
).toBe("keep-all");
2052 // Language can be specified at page load using hash value in url
2053 it('Can set the language from the url hash', function(done
) {
2054 driver
.get(url
+ "#japanese").then(function() {
2055 driver
.findElement(By
.css('.generate')).click();
2056 driver
.sleep(generateDelay
).then(function() {
2057 driver
.findElement(By
.css(".phrase"))
2058 .getAttribute("value").then(function(phrase
) {
2059 expect(phrase
.search(/[a-z]/)).toBe(-1);
2060 expect(phrase
.length
).toBeGreaterThan(0);
2067 // Entropy can be entered by the user
2068 it('Allows entropy to be entered', function(done
) {
2069 driver
.findElement(By
.css('.use-entropy'))
2071 driver
.findElement(By
.css('.entropy'))
2072 .sendKeys('00000000 00000000 00000000 00000000');
2073 driver
.sleep(generateDelay
).then(function() {
2074 driver
.findElement(By
.css(".phrase"))
2075 .getAttribute("value").then(function(phrase
) {
2076 expect(phrase
).toBe("abandon abandon ability");
2077 getFirstAddress(function(address
) {
2078 expect(address
).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2085 // A warning about entropy is shown to the user, with additional information
2086 it('Shows a warning about using entropy', function(done
) {
2087 driver
.findElement(By
.css('.use-entropy'))
2089 driver
.findElement(By
.css('.entropy-container'))
2091 .then(function(containerText
) {
2092 var warning
= "mnemonic may be insecure";
2093 expect(containerText
).toContain(warning
);
2094 driver
.findElement(By
.css('#entropy-notes'))
2095 .findElement(By
.xpath("parent::*"))
2097 .then(function(notesText
) {
2098 var detail
= "flipping a fair coin, rolling a fair dice, noise measurements etc";
2099 expect(notesText
).toContain(detail
);
2105 // The types of entropy available are described to the user
2106 it('Shows the types of entropy available', function(done
) {
2107 driver
.findElement(By
.css('.entropy'))
2108 .getAttribute("placeholder")
2109 .then(function(placeholderText
) {
2118 for (var i
=0; i
<options
.length
; i
++) {
2119 var option
= options
[i
];
2120 expect(placeholderText
).toContain(option
);
2126 // The actual entropy used is shown to the user
2127 it('Shows the actual entropy used', function(done
) {
2128 driver
.findElement(By
.css('.use-entropy'))
2130 driver
.findElement(By
.css('.entropy'))
2131 .sendKeys('Not A Very Good Entropy Source At All');
2132 driver
.sleep(generateDelay
).then(function() {
2133 driver
.findElement(By
.css('.entropy-container'))
2135 .then(function(text
) {
2136 expect(text
).toMatch(/Filtered Entropy
\s
+AedEceAA
/);
2142 // Binary entropy can be entered
2143 it('Allows binary entropy to be entered', function(done
) {
2144 testEntropyType(done
, "01", "binary");
2147 // Base 6 entropy can be entered
2148 it('Allows base 6 entropy to be entered', function(done
) {
2149 testEntropyType(done
, "012345", "base 6");
2152 // Base 6 dice entropy can be entered
2153 it('Allows base 6 dice entropy to be entered', function(done
) {
2154 testEntropyType(done
, "123456", "base 6 (dice)");
2157 // Base 10 entropy can be entered
2158 it('Allows base 10 entropy to be entered', function(done
) {
2159 testEntropyType(done
, "789", "base 10");
2162 // Hexadecimal entropy can be entered
2163 it('Allows hexadecimal entropy to be entered', function(done
) {
2164 testEntropyType(done
, "abcdef", "hexadecimal");
2167 // Dice entropy value is shown as the converted base 6 value
2168 // ie 123456 is converted to 123450
2169 it('Shows dice entropy as base 6', function(done
) {
2170 driver
.findElement(By
.css('.use-entropy'))
2172 driver
.findElement(By
.css('.entropy'))
2173 .sendKeys("123456");
2174 driver
.sleep(generateDelay
).then(function() {
2175 driver
.findElement(By
.css('.entropy-container'))
2177 .then(function(text
) {
2178 expect(text
).toMatch(/Filtered Entropy
\s
+123450/);
2184 // The number of bits of entropy accumulated is shown
2185 it("Shows the number of bits of entropy for 20 bits of binary", function(done
) {
2186 testEntropyBits(done
, "0000 0000 0000 0000 0000", "20");
2188 it("Shows the number of bits of entropy for 1 bit of binary", function(done
) {
2189 testEntropyBits(done
, "0", "1");
2191 it("Shows the number of bits of entropy for 4 bits of binary", function(done
) {
2192 testEntropyBits(done
, "0000", "4");
2194 it("Shows the number of bits of entropy for 1 character of base 6 (dice)", function(done
) {
2195 // 6 in card is 0 in base 6, 0 in base 6 is 2.6 bits (rounded down to 2 bits)
2196 testEntropyBits(done
, "6", "2");
2198 it("Shows the number of bits of entropy for 1 character of base 10 with 3 bits", function(done
) {
2199 // 7 in base 10 is 111 in base 2, no leading zeros
2200 testEntropyBits(done
, "7", "3");
2202 it("Shows the number of bits of entropy for 1 character of base 10 with 4 bis", function(done
) {
2203 testEntropyBits(done
, "8", "4");
2205 it("Shows the number of bits of entropy for 1 character of hex", function(done
) {
2206 testEntropyBits(done
, "F", "4");
2208 it("Shows the number of bits of entropy for 2 characters of base 10", function(done
) {
2209 testEntropyBits(done
, "29", "6");
2211 it("Shows the number of bits of entropy for 2 characters of hex", function(done
) {
2212 testEntropyBits(done
, "0A", "8");
2214 it("Shows the number of bits of entropy for 2 characters of hex with 3 leading zeros", function(done
) {
2215 // hex is always multiple of 4 bits of entropy
2216 testEntropyBits(done
, "1A", "8");
2218 it("Shows the number of bits of entropy for 2 characters of hex with 2 leading zeros", function(done
) {
2219 testEntropyBits(done
, "2A", "8");
2221 it("Shows the number of bits of entropy for 2 characters of hex with 1 leading zero", function(done
) {
2222 testEntropyBits(done
, "4A", "8");
2224 it("Shows the number of bits of entropy for 2 characters of hex with no leading zeros", function(done
) {
2225 testEntropyBits(done
, "8A", "8");
2227 it("Shows the number of bits of entropy for 2 characters of hex starting with F", function(done
) {
2228 testEntropyBits(done
, "FA", "8");
2230 it("Shows the number of bits of entropy for 4 characters of hex with leading zeros", function(done
) {
2231 testEntropyBits(done
, "000A", "16");
2233 it("Shows the number of bits of entropy for 4 characters of base 6", function(done
) {
2234 testEntropyBits(done
, "5555", "11");
2236 it("Shows the number of bits of entropy for 4 characters of base 6 dice", function(done
) {
2237 // uses dice, so entropy is actually 0000 in base 6, which is 4 lots of
2238 // 2.58 bits, which is 10.32 bits (rounded down to 10 bits)
2239 testEntropyBits(done
, "6666", "10");
2241 it("Shows the number of bits of entropy for 4 charactes of base 10", function(done
) {
2242 // Uses base 10, which is 4 lots of 3.32 bits, which is 13.3 bits (rounded
2244 testEntropyBits(done
, "2227", "13");
2246 it("Shows the number of bits of entropy for 4 characters of hex with 2 leading zeros", function(done
) {
2247 testEntropyBits(done
, "222F", "16");
2249 it("Shows the number of bits of entropy for 4 characters of hex starting with F", function(done
) {
2250 testEntropyBits(done
, "FFFF", "16");
2252 it("Shows the number of bits of entropy for 10 characters of base 10", function(done
) {
2253 // 10 events at 3.32 bits per event
2254 testEntropyBits(done
, "0000101017", "33");
2256 it("Shows the number of bits of entropy for a full deck of cards", function(done
) {
2257 // cards are not replaced, so a full deck is not 52^52 entropy which is 296
2258 // bits, it's 52!, which is 225 bits
2259 testEntropyBits(done
, "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", "225");
2262 it("Shows details about the entered entropy", function(done
) {
2263 testEntropyFeedback(done
,
2267 type: "hexadecimal",
2271 strength: "less than a second",
2275 it("Shows details about the entered entropy", function(done
) {
2276 testEntropyFeedback(done
,
2278 entropy: "AAAAAAAA",
2279 filtered: "AAAAAAAA",
2280 type: "hexadecimal",
2284 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2288 it("Shows details about the entered entropy", function(done
) {
2289 testEntropyFeedback(done
,
2291 entropy: "AAAAAAAA B",
2292 filtered: "AAAAAAAAB",
2293 type: "hexadecimal",
2297 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2301 it("Shows details about the entered entropy", function(done
) {
2302 testEntropyFeedback(done
,
2304 entropy: "AAAAAAAA BBBBBBBB",
2305 filtered: "AAAAAAAABBBBBBBB",
2306 type: "hexadecimal",
2310 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2314 it("Shows details about the entered entropy", function(done
) {
2315 testEntropyFeedback(done
,
2317 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC",
2318 filtered: "AAAAAAAABBBBBBBBCCCCCCCC",
2319 type: "hexadecimal",
2323 strength: "less than a second",
2327 it("Shows details about the entered entropy", function(done
) {
2328 testEntropyFeedback(done
,
2330 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD",
2331 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD",
2332 type: "hexadecimal",
2336 strength: "2 minutes",
2340 it("Shows details about the entered entropy", function(done
) {
2341 testEntropyFeedback(done
,
2343 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA",
2344 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDA",
2345 type: "hexadecimal",
2353 it("Shows details about the entered entropy", function(done
) {
2354 testEntropyFeedback(done
,
2356 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE",
2357 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEE",
2358 type: "hexadecimal",
2362 strength: "3 years",
2366 it("Shows details about the entered entropy", function(done
) {
2367 testEntropyFeedback(done
,
2369 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE FFFFFFFF",
2370 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEEFFFFFFFF",
2371 type: "hexadecimal",
2375 strength: "centuries",
2379 it("Shows details about the entered entropy", function(done
) {
2380 testEntropyFeedback(done
,
2387 strength: "less than a second",
2391 it("Shows details about the entered entropy", function(done
) {
2392 testEntropyFeedback(done
,
2394 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2395 type: "card (full deck)",
2399 strength: "centuries",
2403 it("Shows details about the entered entropy", function(done
) {
2404 testEntropyFeedback(done
,
2406 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks3d",
2407 type: "card (full deck, 1 duplicate: 3d)",
2411 strength: "centuries",
2415 it("Shows details about the entered entropy", function(done
) {
2416 testEntropyFeedback(done
,
2418 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d",
2419 type: "card (2 duplicates: 3d 4d, 1 missing: KS)",
2423 strength: "centuries",
2427 it("Shows details about the entered entropy", function(done
) {
2428 testEntropyFeedback(done
,
2430 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d5d6d",
2431 type: "card (4 duplicates: 3d 4d 5d..., 1 missing: KS)",
2435 strength: "centuries",
2439 it("Shows details about the entered entropy", function(done
) {
2440 testEntropyFeedback(done
,
2441 // Next test was throwing uncaught error in zxcvbn
2442 // Also tests 451 bits, ie Math.log2(52!)*2 = 225.58 * 2
2444 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsksac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2445 type: "card (full deck, 52 duplicates: ac 2c 3c...)",
2449 strength: "centuries",
2453 it("Shows details about the entered entropy", function(done
) {
2454 testEntropyFeedback(done
,
2455 // Case insensitivity to duplicate cards
2458 type: "card (1 duplicate: AS)",
2462 strength: "less than a second",
2466 it("Shows details about the entered entropy", function(done
) {
2467 testEntropyFeedback(done
,
2470 type: "card (1 duplicate: as)",
2474 strength: "less than a second",
2478 it("Shows details about the entered entropy", function(done
) {
2479 testEntropyFeedback(done
,
2480 // Missing cards are detected
2482 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2483 type: "card (1 missing: 9C)",
2487 strength: "centuries",
2491 it("Shows details about the entered entropy", function(done
) {
2492 testEntropyFeedback(done
,
2494 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2495 type: "card (2 missing: 9C 5D)",
2499 strength: "centuries",
2503 it("Shows details about the entered entropy", function(done
) {
2504 testEntropyFeedback(done
,
2506 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjd kdah2h3h 5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2507 type: "card (4 missing: 9C 5D QD...)",
2511 strength: "centuries",
2515 it("Shows details about the entered entropy", function(done
) {
2516 testEntropyFeedback(done
,
2517 // More than six missing cards does not show message
2519 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d 8d9d jd kdah2h3h 5h6h7h8h9hthjhqhkh 2s3s4s5s6s7s8s9stsjsqsks",
2524 strength: "centuries",
2528 it("Shows details about the entered entropy", function(done
) {
2529 testEntropyFeedback(done
,
2530 // Multiple decks of cards increases bits per event
2535 bitsPerEvent: "4.34",
2539 it("Shows details about the entered entropy", function(done
) {
2540 testEntropyFeedback(done
,
2545 bitsPerEvent: "4.80",
2549 it("Shows details about the entered entropy", function(done
) {
2550 testEntropyFeedback(done
,
2555 bitsPerEvent: "5.01",
2559 it("Shows details about the entered entropy", function(done
) {
2560 testEntropyFeedback(done
,
2562 entropy: "3d3d3d3d",
2565 bitsPerEvent: "5.14",
2569 it("Shows details about the entered entropy", function(done
) {
2570 testEntropyFeedback(done
,
2572 entropy: "3d3d3d3d3d",
2575 bitsPerEvent: "5.22",
2579 it("Shows details about the entered entropy", function(done
) {
2580 testEntropyFeedback(done
,
2582 entropy: "3d3d3d3d3d3d",
2585 bitsPerEvent: "5.28",
2589 it("Shows details about the entered entropy", function(done
) {
2590 testEntropyFeedback(done
,
2592 entropy: "3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d",
2595 bitsPerEvent: "5.59",
2596 strength: 'less than a second - Repeats like "abcabcabc" are only slightly harder to guess than "abc"',
2601 // Entropy is truncated from the left
2602 it('Truncates entropy from the left', function(done
) {
2603 // Truncate from left means 0000 is removed from the start
2604 // which gives mnemonic 'avocado zoo zone'
2605 // not 1111 removed from the end
2606 // which gives the mnemonic 'abstract zoo zoo'
2607 var entropy
= "00000000 00000000 00000000 00000000";
2608 entropy
+= "11111111 11111111 11111111 1111"; // Missing last byte
2609 driver
.findElement(By
.css('.use-entropy'))
2611 driver
.findElement(By
.css('.entropy'))
2613 driver
.sleep(generateDelay
).then(function() {
2614 driver
.findElement(By
.css(".phrase"))
2615 .getAttribute("value").then(function(phrase
) {
2616 expect(phrase
).toBe("avocado zoo zone");
2622 // Very large entropy results in very long mnemonics
2623 it('Converts very long entropy to very long mnemonics', function(done
) {
2625 for (var i
=0; i
<33; i
++) {
2626 entropy
+= "AAAAAAAA"; // 3 words * 33 iterations = 99 words
2628 driver
.findElement(By
.css('.use-entropy'))
2630 driver
.findElement(By
.css('.entropy'))
2632 driver
.sleep(generateDelay
).then(function() {
2633 driver
.findElement(By
.css(".phrase"))
2634 .getAttribute("value").then(function(phrase
) {
2635 var wordCount
= phrase
.split(/\s+/g).length
;
2636 expect(wordCount
).toBe(99);
2642 // Is compatible with bip32jp entropy
2643 // https://bip32jp.github.io/english/index.html
2645 // Is incompatible with:
2647 it('Is compatible with bip32jp.github.io', function(done
) {
2648 var entropy
= "543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543";
2649 var expectedPhrase
= "train then jungle barely whip fiber purpose puppy eagle cloud clump hospital robot brave balcony utility detect estate old green desk skill multiply virus";
2650 driver
.findElement(By
.css('.use-entropy'))
2652 driver
.findElement(By
.css('.entropy'))
2654 driver
.sleep(generateDelay
).then(function() {
2655 driver
.findElement(By
.css(".phrase"))
2656 .getAttribute("value").then(function(phrase
) {
2657 expect(phrase
).toBe(expectedPhrase
);
2663 // Blank entropy does not generate mnemonic or addresses
2664 it('Does not generate mnemonic for blank entropy', function(done
) {
2665 driver
.findElement(By
.css('.use-entropy'))
2667 driver
.findElement(By
.css('.entropy'))
2669 // check there is no mnemonic
2670 driver
.sleep(generateDelay
).then(function() {
2671 driver
.findElement(By
.css(".phrase"))
2672 .getAttribute("value").then(function(phrase
) {
2673 expect(phrase
).toBe("");
2674 // check there is no mnemonic
2675 driver
.findElements(By
.css(".address"))
2676 .then(function(addresses
) {
2677 expect(addresses
.length
).toBe(0);
2678 // Check the feedback says 'blank entropy'
2679 driver
.findElement(By
.css(".feedback"))
2681 .then(function(feedbackText
) {
2682 expect(feedbackText
).toBe("Blank entropy");
2690 // Mnemonic length can be selected even for weak entropy
2691 it('Allows selection of mnemonic length even for weak entropy', function(done
) {
2692 driver
.findElement(By
.css('.use-entropy'))
2694 driver
.executeScript(function() {
2695 $(".mnemonic-length").val("18").trigger("change");
2697 driver
.findElement(By
.css('.entropy'))
2698 .sendKeys("012345");
2699 driver
.sleep(generateDelay
).then(function() {
2700 driver
.findElement(By
.css(".phrase"))
2701 .getAttribute("value").then(function(phrase
) {
2702 var wordCount
= phrase
.split(/\s+/g).length
;
2703 expect(wordCount
).toBe(18);
2710 // https://github.com/iancoleman/bip39/issues/33
2711 // Final cards should contribute entropy
2712 it('Uses as much entropy as possible for the mnemonic', function(done
) {
2713 driver
.findElement(By
.css('.use-entropy'))
2715 driver
.findElement(By
.css('.entropy'))
2716 .sendKeys("7S 9H 9S QH 8C KS AS 7D 7C QD 4S 4D TC 2D 5S JS 3D 8S 8H 4C 3C AC 3S QC 9C JC 7H AD TD JD 6D KH 5C QS 2S 6S 6H JH KD 9D-6C TS TH 4H KC 5H 2H AH 2C 8D 3H 5D");
2717 driver
.sleep(generateDelay
).then(function() {
2719 driver
.findElement(By
.css(".phrase"))
2720 .getAttribute("value").then(function(originalPhrase
) {
2721 // Set the last 12 cards to be AS
2722 driver
.findElement(By
.css('.entropy'))
2724 driver
.findElement(By
.css('.entropy'))
2725 .sendKeys("7S 9H 9S QH 8C KS AS 7D 7C QD 4S 4D TC 2D 5S JS 3D 8S 8H 4C 3C AC 3S QC 9C JC 7H AD TD JD 6D KH 5C QS 2S 6S 6H JH KD 9D-AS AS AS AS AS AS AS AS AS AS AS AS");
2726 driver
.sleep(generateDelay
).then(function() {
2728 driver
.findElement(By
.css(".phrase"))
2729 .getAttribute("value").then(function(newPhrase
) {
2730 expect(originalPhrase
).not
.toEqual(newPhrase
);
2739 // https://github.com/iancoleman/bip39/issues/35
2741 // TODO this doesn't work in selenium with firefox
2742 // see https://stackoverflow.com/q/40360223
2743 it('Shows a qr code on hover for the phrase', function(done
) {
2744 if (browser
== "firefox") {
2745 pending("Selenium + Firefox bug for mouseMove, see https://stackoverflow.com/q/40360223");
2747 // generate a random mnemonic
2748 var generateEl
= driver
.findElement(By
.css('.generate'));
2750 // toggle qr to show (hidden by default)
2751 var phraseEl
= driver
.findElement(By
.css(".phrase"));
2753 var rootKeyEl
= driver
.findElement(By
.css(".root-key"));
2754 driver
.sleep(generateDelay
).then(function() {
2755 // hover over the root key
2756 driver
.actions().mouseMove(rootKeyEl
).perform().then(function() {
2757 // check the qr code shows
2758 driver
.executeScript(function() {
2759 return $(".qr-container").find("canvas").length
> 0;
2761 .then(function(qrShowing
) {
2762 expect(qrShowing
).toBe(true);
2763 // hover away from the phrase
2764 driver
.actions().mouseMove(generateEl
).perform().then(function() {;
2765 // check the qr code hides
2766 driver
.executeScript(function() {
2767 return $(".qr-container").find("canvas").length
== 0;
2769 .then(function(qrHidden
) {
2770 expect(qrHidden
).toBe(true);
2779 // BIP44 account extendend private key is shown
2780 // github issue 37 - compatibility with electrum
2781 it('Shows the bip44 account extended private key', function(done
) {
2782 driver
.findElement(By
.css(".phrase"))
2783 .sendKeys("abandon abandon ability");
2784 driver
.sleep(generateDelay
).then(function() {
2785 driver
.findElement(By
.css("#bip44 .account-xprv"))
2786 .getAttribute("value")
2787 .then(function(xprv
) {
2788 expect(xprv
).toBe("xprv9yzrnt4zWVJUr1k2VxSPy9ettKz5PpeDMgaVG7UKedhqnw1tDkxP2UyYNhuNSumk2sLE5ctwKZs9vwjsq3e1vo9egCK6CzP87H2cVYXpfwQ");
2794 // BIP44 account extendend public key is shown
2795 // github issue 37 - compatibility with electrum
2796 it('Shows the bip44 account extended public key', function(done
) {
2797 driver
.findElement(By
.css(".phrase"))
2798 .sendKeys("abandon abandon ability");
2799 driver
.sleep(generateDelay
).then(function() {
2800 driver
.findElement(By
.css("#bip44 .account-xpub"))
2801 .getAttribute("value")
2802 .then(function(xprv
) {
2803 expect(xprv
).toBe("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2810 // BIP32 root key can be set as an xpub
2811 it('Generates addresses from xpub as bip32 root key', function(done
) {
2812 driver
.findElement(By
.css('#bip32-tab a'))
2814 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2815 driver
.findElement(By
.css("#root-key"))
2816 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2817 driver
.sleep(generateDelay
).then(function() {
2818 // check the addresses are generated
2819 getFirstAddress(function(address
) {
2820 expect(address
).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2821 // check the xprv key is not set
2822 driver
.findElement(By
.css(".extended-priv-key"))
2823 .getAttribute("value")
2824 .then(function(xprv
) {
2825 expect(xprv
).toBe("NA");
2826 // check the private key is not set
2827 driver
.findElements(By
.css(".privkey"))
2828 .then(function(els
) {
2831 .then(function(privkey
) {
2832 expect(xprv
).toBe("NA");
2842 // xpub for bip32 root key will not work with hardened derivation paths
2843 it('Shows error for hardened derivation paths with xpub root key', function(done
) {
2844 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2845 driver
.findElement(By
.css("#root-key"))
2846 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2847 driver
.sleep(feedbackDelay
).then(function() {
2848 // Check feedback is correct
2849 driver
.findElement(By
.css('.feedback'))
2851 .then(function(feedback
) {
2852 var msg
= "Hardened derivation path is invalid with xpub key";
2853 expect(feedback
).toBe(msg
);
2854 // Check no addresses are shown
2855 driver
.findElements(By
.css('.addresses tr'))
2856 .then(function(rows
) {
2857 expect(rows
.length
).toBe(0);
2865 // no root key shows feedback
2866 it('Shows feedback for no root key', function(done
) {
2867 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2868 driver
.findElement(By
.css('#bip32-tab a'))
2870 driver
.sleep(feedbackDelay
).then(function() {
2871 // Check feedback is correct
2872 driver
.findElement(By
.css('.feedback'))
2874 .then(function(feedback
) {
2875 expect(feedback
).toBe("Invalid root key");
2882 // display error switching tabs while addresses are generating
2883 it('Can change details while old addresses are still being generated', function(done
) {
2884 // Set to generate 199 more addresses.
2885 // This will take a long time allowing a new set of addresses to be
2886 // generated midway through this lot.
2887 // The newly generated addresses should not include any from the old set.
2888 // Any more than 199 will show an alert which needs to be accepted.
2889 driver
.findElement(By
.css('.rows-to-add'))
2891 driver
.findElement(By
.css('.rows-to-add'))
2894 driver
.findElement(By
.css('.phrase'))
2895 .sendKeys("abandon abandon ability");
2896 driver
.sleep(generateDelay
).then(function() {
2897 // change tabs which should cancel the previous generating
2898 driver
.findElement(By
.css('.rows-to-add'))
2900 driver
.findElement(By
.css('.rows-to-add'))
2902 driver
.findElement(By
.css('#bip32-tab a'))
2904 driver
.sleep(generateDelay
).then(function() {
2905 driver
.findElements(By
.css('.index'))
2906 .then(function(els
) {
2907 // check the derivation paths have the right quantity
2908 expect(els
.length
).toBe(20);
2909 // check the derivation paths are in order
2910 testRowsAreInCorrectOrder(done
);
2914 }, generateDelay
+ 5000);
2917 // padding for binary should give length with multiple of 256
2918 // hashed entropy 1111 is length 252, so requires 4 leading zeros
2919 // prior to issue 49 it would only generate 2 leading zeros, ie missing 2
2920 it('Pads hashed entropy with leading zeros', function(done
) {
2921 driver
.findElement(By
.css('.use-entropy'))
2923 driver
.executeScript(function() {
2924 $(".mnemonic-length").val("15").trigger("change");
2926 driver
.findElement(By
.css('.entropy'))
2928 driver
.sleep(generateDelay
).then(function() {
2929 driver
.findElement(By
.css('.phrase'))
2930 .getAttribute("value")
2931 .then(function(phrase
) {
2932 expect(phrase
).toBe("avocado valid quantum cross link predict excuse edit street able flame large galaxy ginger nuclear");
2938 // Github pull request 55
2939 // https://github.com/iancoleman/bip39/pull/55
2941 it('Can set the derivation path on bip32 tab for bitcoincore', function(done
) {
2942 testClientSelect(done
, {
2944 bip32path: "m/0'/0'",
2945 useHardenedAddresses: "true",
2948 it('Can set the derivation path on bip32 tab for multibit', function(done
) {
2949 testClientSelect(done
, {
2951 bip32path: "m/0'/0",
2952 useHardenedAddresses: null,
2955 it('Can set the derivation path on bip32 tab for coinomi/ledger', function(done
) {
2956 testClientSelect(done
, {
2958 bip32path: "m/44'/0'/0'",
2959 useHardenedAddresses: null,
2964 // https://github.com/iancoleman/bip39/issues/58
2965 // bip32 derivation is correct, does not drop leading zeros
2967 // https://medium.com/@alexberegszaszi/why-do-my-bip32-wallets-disagree-6f3254cc5846
2968 it('Retains leading zeros for bip32 derivation', function(done
) {
2969 driver
.findElement(By
.css(".phrase"))
2970 .sendKeys("fruit wave dwarf banana earth journey tattoo true farm silk olive fence");
2971 driver
.findElement(By
.css(".passphrase"))
2972 .sendKeys("banana");
2973 driver
.sleep(generateDelay
).then(function() {
2974 getFirstAddress(function(address
) {
2975 // Note that bitcore generates an incorrect address
2976 // 13EuKhffWkBE2KUwcbkbELZb1MpzbimJ3Y
2977 // see the medium.com link above for more details
2978 expect(address
).toBe("17rxURoF96VhmkcEGCj5LNQkmN9HVhWb7F");
2985 // Japanese mnemonics generate incorrect bip32 seed
2986 // BIP39 seed is set from phrase
2987 it('Generates correct seed for Japanese mnemonics', function(done
) {
2988 driver
.findElement(By
.css(".phrase"))
2989 .sendKeys("あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あおぞら");
2990 driver
.findElement(By
.css(".passphrase"))
2991 .sendKeys("メートルガバヴァぱばぐゞちぢ十人十色");
2992 driver
.sleep(generateDelay
).then(function() {
2993 driver
.findElement(By
.css(".seed"))
2994 .getAttribute("value")
2995 .then(function(seed
) {
2996 expect(seed
).toBe("a262d6fb6122ecf45be09c50492b31f92e9beb7d9a845987a02cefda57a15f9c467a17872029a9e92299b5cbdf306e3a0ee620245cbd508959b6cb7ca637bd55");
3002 // BIP49 official test vectors
3003 // https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki#test-vectors
3004 it('Generates BIP49 addresses matching the official test vectors', function(done
) {
3005 driver
.findElement(By
.css('#bip49-tab a'))
3007 selectNetwork("BTC - Bitcoin Testnet");
3008 driver
.findElement(By
.css(".phrase"))
3009 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about");
3010 driver
.sleep(generateDelay
).then(function() {
3011 getFirstAddress(function(address
) {
3012 expect(address
).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2");
3018 // BIP49 derivation path is shown
3019 it('Shows the bip49 derivation path', function(done
) {
3020 driver
.findElement(By
.css('#bip49-tab a'))
3022 driver
.findElement(By
.css(".phrase"))
3023 .sendKeys("abandon abandon ability");
3024 driver
.sleep(generateDelay
).then(function() {
3025 driver
.findElement(By
.css('#bip49 .path'))
3026 .getAttribute("value")
3027 .then(function(path
) {
3028 expect(path
).toBe("m/49'/0'/0'/0");
3034 // BIP49 extended private key is shown
3035 it('Shows the bip49 extended private key', function(done
) {
3036 driver
.findElement(By
.css('#bip49-tab a'))
3038 driver
.findElement(By
.css(".phrase"))
3039 .sendKeys("abandon abandon ability");
3040 driver
.sleep(generateDelay
).then(function() {
3041 driver
.findElement(By
.css('.extended-priv-key'))
3042 .getAttribute("value")
3043 .then(function(xprv
) {
3044 expect(xprv
).toBe("yprvALYB4DYRG6CzzVgzQZwwqjAA2wjBGC3iEd7KYYScpoDdmf75qMRWZWxoFcRXBJjgEXdFqJ9vDRGRLJQsrL22Su5jMbNFeM9vetaGVqy9Qy2");
3050 // BIP49 extended public key is shown
3051 it('Shows the bip49 extended public key', function(done
) {
3052 driver
.findElement(By
.css('#bip49-tab a'))
3054 driver
.findElement(By
.css(".phrase"))
3055 .sendKeys("abandon abandon ability");
3056 driver
.sleep(generateDelay
).then(function() {
3057 driver
.findElement(By
.css('.extended-pub-key'))
3058 .getAttribute("value")
3059 .then(function(xprv
) {
3060 expect(xprv
).toBe("ypub6ZXXTj5K6TmJCymTWbUxCs6tayZffemZbr2vLvrEP8kceTSENtjm7KHH6thvAKxVar9fGe8rgsPEX369zURLZ68b4f7Vexz7RuXsjQ69YDt");
3066 // BIP49 account field changes address list
3067 it('Can set the bip49 account field', function(done
) {
3068 driver
.findElement(By
.css('#bip49-tab a'))
3070 driver
.findElement(By
.css('#bip49 .account'))
3072 driver
.findElement(By
.css('#bip49 .account'))
3074 driver
.findElement(By
.css(".phrase"))
3075 .sendKeys("abandon abandon ability");
3076 driver
.sleep(generateDelay
).then(function() {
3077 getFirstAddress(function(address
) {
3078 expect(address
).toBe("381wg1GGN4rP88rNC9v7QWsiww63yLVPsn");
3084 // BIP49 change field changes address list
3085 it('Can set the bip49 change field', function(done
) {
3086 driver
.findElement(By
.css('#bip49-tab a'))
3088 driver
.findElement(By
.css('#bip49 .change'))
3090 driver
.findElement(By
.css('#bip49 .change'))
3092 driver
.findElement(By
.css(".phrase"))
3093 .sendKeys("abandon abandon ability");
3094 driver
.sleep(generateDelay
).then(function() {
3095 getFirstAddress(function(address
) {
3096 expect(address
).toBe("3PEM7MiKed5konBoN66PQhK8r3hjGhy9dT");
3102 // BIP49 account extendend private key is shown
3103 it('Shows the bip49 account extended private key', function(done
) {
3104 driver
.findElement(By
.css('#bip49-tab a'))
3106 driver
.findElement(By
.css(".phrase"))
3107 .sendKeys("abandon abandon ability");
3108 driver
.sleep(generateDelay
).then(function() {
3109 driver
.findElement(By
.css('#bip49 .account-xprv'))
3110 .getAttribute("value")
3111 .then(function(xprv
) {
3112 expect(xprv
).toBe("yprvAHtB1M5Wp675aLzFy9TJYK2mSsLkg6mcBRh5DZTR7L4EnYSmYPaL63KFA4ycg1PngW5LfkmejxzosCs17TKZMpRFKc3z5SJar6QAKaFcaZL");
3118 // BIP49 account extendend public key is shown
3119 it('Shows the bip49 account extended public key', function(done
) {
3120 driver
.findElement(By
.css('#bip49-tab a'))
3122 driver
.findElement(By
.css(".phrase"))
3123 .sendKeys("abandon abandon ability");
3124 driver
.sleep(generateDelay
).then(function() {
3125 driver
.findElement(By
.css('#bip49 .account-xpub'))
3126 .getAttribute("value")
3127 .then(function(xprv
) {
3128 expect(xprv
).toBe("ypub6WsXQrcQeTfNnq4j5AzJuSyVzuBF5ZVTYecg1ws2ffbDfLmv5vtadqdj1NgR6C6gufMpMfJpHxvb6JEQKvETVNWCRanNedfJtnTchZiJtsL");
3134 // Test selecting coin where bip49 is unavailable (eg CLAM)
3135 it('Shows an error on bip49 tab for coins without bip49', function(done
) {
3136 driver
.findElement(By
.css('#bip49-tab a'))
3138 driver
.findElement(By
.css(".phrase"))
3139 .sendKeys("abandon abandon ability");
3140 driver
.sleep(generateDelay
).then(function() {
3141 selectNetwork("CLAM - Clams");
3142 // bip49 available is hidden
3143 driver
.findElement(By
.css('#bip49 .available'))
3144 .getAttribute("class")
3145 .then(function(classes
) {
3146 expect(classes
).toContain("hidden");
3147 // bip49 unavailable is shown
3148 driver
.findElement(By
.css('#bip49 .unavailable'))
3149 .getAttribute("class")
3150 .then(function(classes
) {
3151 expect(classes
).not
.toContain("hidden");
3152 // check there are no addresses shown
3153 driver
.findElements(By
.css('.addresses tr'))
3154 .then(function(rows
) {
3155 expect(rows
.length
).toBe(0);
3156 // check the derived private key is blank
3157 driver
.findElement(By
.css('.extended-priv-key'))
3158 .getAttribute("value")
3159 .then(function(xprv
) {
3160 expect(xprv
).toBe('');
3161 // check the derived public key is blank
3162 driver
.findElement(By
.css('.extended-pub-key'))
3163 .getAttribute("value")
3164 .then(function(xpub
) {
3165 expect(xpub
).toBe('');
3176 // Cleared mnemonic and root key still allows addresses to be generated
3177 // https://github.com/iancoleman/bip39/issues/43
3178 it('Clears old root keys from memory when mnemonic is cleared', function(done
) {
3180 driver
.findElement(By
.css(".phrase"))
3181 .sendKeys("abandon abandon ability");
3182 driver
.sleep(generateDelay
).then(function() {
3183 // clear the mnemonic and root key
3184 // using selenium .clear() doesn't seem to trigger the 'input' event
3185 // so clear it using keys instead
3186 driver
.findElement(By
.css('.phrase'))
3187 .sendKeys(Key
.CONTROL
,"a");
3188 driver
.findElement(By
.css('.phrase'))
3189 .sendKeys(Key
.DELETE
);
3190 driver
.findElement(By
.css('.root-key'))
3191 .sendKeys(Key
.CONTROL
,"a");
3192 driver
.findElement(By
.css('.root-key'))
3193 .sendKeys(Key
.DELETE
);
3194 driver
.sleep(generateDelay
).then(function() {
3195 // try to generate more addresses
3196 driver
.findElement(By
.css('.more'))
3198 driver
.sleep(generateDelay
).then(function() {
3199 driver
.findElements(By
.css(".addresses tr"))
3200 .then(function(els
) {
3201 // check there are no addresses shown
3202 expect(els
.length
).toBe(0);
3211 // error trying to generate addresses from xpub with hardened derivation
3212 it('Shows error for hardened addresses with xpub root key', function(done
) {
3213 driver
.findElement(By
.css('#bip32-tab a'))
3215 driver
.executeScript(function() {
3216 $(".hardened-addresses").prop("checked", true);
3218 // set xpub for account 0 of bip44 for 'abandon abandon ability'
3219 driver
.findElement(By
.css("#root-key"))
3220 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
3221 driver
.sleep(feedbackDelay
).then(function() {
3222 // Check feedback is correct
3223 driver
.findElement(By
.css('.feedback'))
3225 .then(function(feedback
) {
3226 var msg
= "Hardened derivation path is invalid with xpub key";
3227 expect(feedback
).toBe(msg
);
3233 // Litecoin uses ltub by default, and can optionally be set to xprv
3235 // https://github.com/iancoleman/bip39/issues/96
3236 // Issue with extended keys on Litecoin
3237 it('Uses ltub by default for litecoin, but can be set to xprv', function(done
) {
3238 driver
.findElement(By
.css('.phrase'))
3239 .sendKeys("abandon abandon ability");
3240 selectNetwork("LTC - Litecoin");
3241 driver
.sleep(generateDelay
).then(function() {
3242 // check the extended key is generated correctly
3243 driver
.findElement(By
.css('.root-key'))
3244 .getAttribute("value")
3245 .then(function(rootKey
) {
3246 expect(rootKey
).toBe("Ltpv71G8qDifUiNesiPqf6h5V6eQ8ic77oxQiYtawiACjBEx3sTXNR2HGDGnHETYxESjqkMLFBkKhWVq67ey1B2MKQXannUqNy1RZVHbmrEjnEU");
3247 // set litecoin to use ltub
3248 driver
.executeScript(function() {
3249 $(".litecoin-use-ltub").prop("checked", false);
3250 $(".litecoin-use-ltub").trigger("change");
3252 driver
.sleep(generateDelay
).then(function() {
3253 driver
.findElement(By
.css('.root-key'))
3254 .getAttribute("value")
3255 .then(function(rootKey
) {
3256 expect(rootKey
).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
3265 // https://github.com/iancoleman/bip39/issues/99#issuecomment-327094159
3266 // "warn me emphatically when they have detected invalid input" to the entropy field
3267 // A warning is shown when entropy is filtered and discarded
3268 it('Warns when entropy is filtered and discarded', function(done
) {
3269 driver
.findElement(By
.css('.use-entropy'))
3271 // set entropy to have no filtered content
3272 driver
.findElement(By
.css('.entropy'))
3273 .sendKeys("00000000 00000000 00000000 00000000");
3274 driver
.sleep(generateDelay
).then(function() {
3275 // check the filter warning does not show
3276 driver
.findElement(By
.css('.entropy-container .filter-warning'))
3277 .getAttribute("class")
3278 .then(function(classes
) {
3279 expect(classes
).toContain("hidden");
3280 // set entropy to have some filtered content
3281 driver
.findElement(By
.css('.entropy'))
3282 .sendKeys("10000000 zxcvbn 00000000 00000000 00000000");
3283 driver
.sleep(entropyFeedbackDelay
).then(function() {
3284 // check the filter warning shows
3285 driver
.findElement(By
.css('.entropy-container .filter-warning'))
3286 .getAttribute("class")
3287 .then(function(classes
) {
3288 expect(classes
).not
.toContain("hidden");
3296 // Bitcoin Cash address can be set to use cashaddr format
3297 it('Can use cashaddr format for bitcoin cash addresses', function(done
) {
3298 driver
.executeScript(function() {
3299 $(".use-bch-cashaddr-addresses").prop("checked", true);
3301 driver
.findElement(By
.css('.phrase'))
3302 .sendKeys("abandon abandon ability");
3303 selectNetwork("BCH - Bitcoin Cash");
3304 driver
.sleep(generateDelay
).then(function() {
3305 getFirstAddress(function(address
) {
3306 expect(address
).toBe("bitcoincash:qzlquk7w4hkudxypl4fgv8x279r754dkvur7jpcsps");
3312 // Bitcoin Cash address can be set to use bitpay format
3313 it('Can use bitpay format for bitcoin cash addresses', function(done
) {
3314 driver
.executeScript(function() {
3315 $(".use-bch-bitpay-addresses").prop("checked", true);
3317 driver
.findElement(By
.css('.phrase'))
3318 .sendKeys("abandon abandon ability");
3319 selectNetwork("BCH - Bitcoin Cash");
3320 driver
.sleep(generateDelay
).then(function() {
3321 getFirstAddress(function(address
) {
3322 expect(address
).toBe("CZnpA9HPmvhuhLLPWJP8rNDpLUYXy1LXFk");
3328 // Bitcoin Cash address can be set to use legacy format
3329 it('Can use legacy format for bitcoin cash addresses', function(done
) {
3330 driver
.executeScript(function() {
3331 $(".use-bch-legacy-addresses").prop("checked", true);
3333 driver
.findElement(By
.css('.phrase'))
3334 .sendKeys("abandon abandon ability");
3335 selectNetwork("BCH - Bitcoin Cash");
3336 driver
.sleep(generateDelay
).then(function() {
3337 getFirstAddress(function(address
) {
3338 expect(address
).toBe("1JKvb6wKtsjNoCRxpZ4DGrbniML7z5U16A");
3344 // End of tests ported from old suit, so no more comments above each test now
3346 it('Can generate more addresses from a custom index', function(done
) {
3347 var expectedIndexes
= [
3348 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,
3349 40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59
3351 driver
.findElement(By
.css('.phrase'))
3352 .sendKeys("abandon abandon ability");
3353 driver
.sleep(generateDelay
).then(function() {
3354 // Set start of next lot of rows to be from index 40
3355 // which means indexes 20-39 will not be in the table.
3356 driver
.findElement(By
.css('.more-rows-start-index'))
3358 driver
.findElement(By
.css('.more'))
3360 driver
.sleep(generateDelay
).then(function() {
3361 // Check actual indexes in the table match the expected pattern
3362 driver
.findElements(By
.css(".index"))
3363 .then(function(els
) {
3364 expect(els
.length
).toBe(expectedIndexes
.length
);
3365 var testRowAtIndex = function(i
) {
3366 if (i
>= expectedIndexes
.length
) {
3371 .then(function(actualPath
) {
3372 var noHardened
= actualPath
.replace(/'/g, "");
3373 var pathBits = noHardened.split("/")
3374 var lastBit = pathBits[pathBits.length-1];
3375 var actualIndex = parseInt(lastBit);
3376 var expectedIndex = expectedIndexes[i];
3377 expect(actualIndex).toBe(expectedIndex);
3378 testRowAtIndex(i+1);
3388 it('Can generate BIP141 addresses
with P2WPKH
-in-P2SH semanitcs
', function(done) {
3389 // Sourced from BIP49 official test specs
3390 driver.findElement(By.css('#bip141
-tab a
'))
3392 driver.findElement(By.css('.bip141
-path
'))
3394 driver.findElement(By.css('.bip141
-path
'))
3395 .sendKeys("m/49'/1'/0'/0");
3396 selectNetwork("BTC
- Bitcoin Testnet
");
3397 driver.findElement(By.css(".phrase
"))
3398 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about
");
3399 driver.sleep(generateDelay).then(function() {
3400 getFirstAddress(function(address) {
3401 expect(address).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2
");
3407 it('Can generate BIP141 addresses with P2WPKH semanitcs', function(done) {
3408 // This result tested against bitcoinjs-lib test spec for segwit address
3409 // using the first private key of this mnemonic and default path m/0
3410 // https://github.com/bitcoinjs/bitcoinjs-lib/blob/9c8503cab0c6c30a95127042703bc18e8d28c76d/test/integration/addresses.js#L50
3411 // so whilst not directly comparable, substituting the private key produces
3412 // identical results between this tool and the bitcoinjs-lib test.
3413 // Private key generated is:
3414 // L3L8Nu9whawPBNLGtFqDhKut9DKKfG3CQoysupT7BimqVCZsLFNP
3415 driver.findElement(By.css('#bip141-tab a'))
3418 driver.executeScript(function() {
3419 $(".bip141
-semantics option
[selected
]").removeAttr("selected
");
3420 $(".bip141
-semantics option
").filter(function(i,e) {
3421 return $(e).html() == "P2WPKH
";
3422 }).prop("selected
", true);
3423 $(".bip141
-semantics
").trigger("change
");
3425 driver.findElement(By.css(".phrase
"))
3426 .sendKeys("abandon abandon ability
");
3427 driver.sleep(generateDelay).then(function() {
3428 getFirstAddress(function(address) {
3429 expect(address).toBe("bc1qfwu6a5a3evygrk8zvdxxvz4547lmpyx5vsfxe9
");
3435 it('Shows the entropy used by the PRNG when clicking generate', function(done) {
3436 driver.findElement(By.css('.generate')).click();
3437 driver.sleep(generateDelay).then(function() {
3438 driver.findElement(By.css('.entropy'))
3439 .getAttribute("value
")
3440 .then(function(entropy) {
3441 expect(entropy).not.toBe("");
3447 it('Shows the index of each word in the mnemonic', function(done) {
3448 driver.findElement(By.css('.phrase'))
3449 .sendKeys("abandon abandon ability
");
3450 driver.sleep(generateDelay).then(function() {
3451 driver.findElement(By.css('.use-entropy'))
3453 driver.findElement(By.css('.word-indexes'))
3455 .then(function(indexes) {
3456 expect(indexes).toBe("0, 0, 1");
3462 it('Shows the derivation path for bip84 tab', function(done) {
3463 driver.findElement(By.css('#bip84-tab a'))
3465 driver.findElement(By.css('.phrase'))
3466 .sendKeys('abandon abandon ability');
3467 driver.sleep(generateDelay).then(function() {
3468 driver.findElement(By.css('#bip84 .path'))
3469 .getAttribute("value
")
3470 .then(function(path) {
3471 expect(path).toBe("m
/84'/0'/0'/0");
3477 it('Shows the extended private key for bip84 tab', function(done) {
3478 driver.findElement(By.css('#bip84-tab a'))
3480 driver.findElement(By.css('.phrase'))
3481 .sendKeys('abandon abandon ability');
3482 driver.sleep(generateDelay).then(function() {
3483 driver.findElement(By.css('.extended-priv-key'))
3484 .getAttribute("value
")
3485 .then(function(path) {
3486 expect(path).toBe("zprvAev3RKrZ3QVKiUFCfdeMRen1BPDJgdNt1XpxiDy8acSs4kkAGTCvq7HeRYRNNpo8EtEjCFQBWavJwtCUR29y4TUCH4X5RXMcyq48uN8y9BP
");
3492 it('Shows the extended public key for bip84 tab', function(done) {
3493 driver.findElement(By.css('#bip84-tab a'))
3495 driver.findElement(By.css('.phrase'))
3496 .sendKeys('abandon abandon ability');
3497 driver.sleep(generateDelay).then(function() {
3498 driver.findElement(By.css('.extended-pub-key'))
3499 .getAttribute("value
")
3500 .then(function(path) {
3501 expect(path).toBe("zpub6suPpqPSsn3cvxKfmfBMnnijjR3o666jNkkZWcNk8wyqwZ5JozXBNuc8Gs7DB3uLwTDvGVTspVEAUQcEjKF3pZHgywVbubdTqbXTUg7usyx
");
3507 it('Changes the address list if bip84 account is changed', function(done) {
3508 driver.findElement(By.css('#bip84-tab a'))
3510 driver.findElement(By.css('#bip84 .account'))
3512 driver.findElement(By.css('.phrase'))
3513 .sendKeys('abandon abandon ability');
3514 driver.sleep(generateDelay).then(function() {
3515 getFirstAddress(function(address) {
3516 expect(address).toBe("bc1qp7vv669t2fy965jdzvqwrraana89ctd5ewc662
");
3522 it('Changes the address list if bip84 change is changed', function(done) {
3523 driver.findElement(By.css('#bip84-tab a'))
3525 driver.findElement(By.css('#bip84 .change'))
3527 driver.findElement(By.css('.phrase'))
3528 .sendKeys('abandon abandon ability');
3529 driver.sleep(generateDelay).then(function() {
3530 getFirstAddress(function(address) {
3531 expect(address).toBe("bc1qr39vj6rh06ff05m53uxq8uazehwhccswylhrs2
");
3537 it('Passes the official BIP84 test spec for rootpriv', function(done) {
3538 driver.findElement(By.css('#bip84-tab a'))
3540 driver.findElement(By.css('.phrase'))
3541 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3542 driver.sleep(generateDelay).then(function() {
3543 driver.findElement(By.css(".root
-key
"))
3544 .getAttribute("value
")
3545 .then(function(rootKey) {
3546 expect(rootKey).toBe("zprvAWgYBBk7JR8Gjrh4UJQ2uJdG1r3WNRRfURiABBE3RvMXYSrRJL62XuezvGdPvG6GFBZduosCc1YP5wixPox7zhZLfiUm8aunE96BBa4Kei5
");
3552 it('Passes the official BIP84 test spec for account 0 xprv', function(done) {
3553 driver.findElement(By.css('#bip84-tab a'))
3555 driver.findElement(By.css('.phrase'))
3556 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3557 driver.sleep(generateDelay).then(function() {
3558 driver.findElement(By.css("#bip84
.account
-xprv
"))
3559 .getAttribute("value
")
3560 .then(function(rootKey) {
3561 expect(rootKey).toBe("zprvAdG4iTXWBoARxkkzNpNh8r6Qag3irQB8PzEMkAFeTRXxHpbF9z4QgEvBRmfvqWvGp42t42nvgGpNgYSJA9iefm1yYNZKEm7z6qUWCroSQnE
");
3567 it('Passes the official BIP84 test spec for account 0 xpub', function(done) {
3568 driver.findElement(By.css('#bip84-tab a'))
3570 driver.findElement(By.css('.phrase'))
3571 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3572 driver.sleep(generateDelay).then(function() {
3573 driver.findElement(By.css("#bip84
.account
-xpub
"))
3574 .getAttribute("value
")
3575 .then(function(rootKey) {
3576 expect(rootKey).toBe("zpub6rFR7y4Q2AijBEqTUquhVz398htDFrtymD9xYYfG1m4wAcvPhXNfE3EfH1r1ADqtfSdVCToUG868RvUUkgDKf31mGDtKsAYz2oz2AGutZYs
");
3582 it('Passes the official BIP84 test spec for account 0 first address', function(done) {
3583 driver.findElement(By.css('#bip84-tab a'))
3585 driver.findElement(By.css('.phrase'))
3586 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3587 driver.sleep(generateDelay).then(function() {
3588 getFirstAddress(function(address) {
3589 expect(address).toBe("bc1qcr8te4kr609gcawutmrza0j4xv80jy8z306fyu
");
3595 it('Passes the official BIP84 test spec for account 0 first change address', function(done) {
3596 driver.findElement(By.css('#bip84-tab a'))
3598 driver.findElement(By.css('.phrase'))
3599 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3600 driver.findElement(By.css('#bip84 .change'))
3602 driver.sleep(generateDelay).then(function() {
3603 getFirstAddress(function(address) {
3604 expect(address).toBe("bc1q8c6fshw2dlwun7ekn9qwf37cu2rn755upcp6el
");
3610 it('Can display the table as csv', function(done) {
3611 var headings = "path
,address
,public key
,private key
";
3612 var row1 = "m
/44'/0'/0'/0/0,1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug
,033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3
,L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE
";
3613 var row20 = "m
/44'/0'/0'/0/19,1KhBy28XLAciXnnRvm71PvQJaETyrxGV55
,02b4b3e396434d8cdd20c03ac4aaa07387784d5d867b75987f516f5705ee68cb3a
,L4GrDrjReMsCAu5DkLXn79jSb95qR7Zfx7eshybCQZ1qL32MXJab
";
3614 driver.findElement(By.css('.phrase'))
3615 .sendKeys('abandon abandon ability');
3616 driver.sleep(generateDelay).then(function() {
3617 driver.findElement(By.css('.csv'))
3618 .getAttribute("value
")
3619 .then(function(csv) {
3620 expect(csv).toContain(headings);
3621 expect(csv).toContain(row1);
3622 expect(csv).toContain(row20);
3628 it('LeftPads ethereum keys that are less than 32 bytes', function(done) {
3629 // see https://github.com/iancoleman/bip39/issues/155
3630 selectNetwork("ETH
- Ethereum
");
3631 driver.findElement(By.css('#bip32-tab a'))
3633 driver.findElement(By.css('#bip32-path'))
3635 driver.findElement(By.css('#bip32-path'))
3636 .sendKeys("m
/44'/60'/0'");
3637 driver.findElement(By.css('.phrase'))
3638 .sendKeys('scout sort custom elite radar rare vivid thing trophy gesture cover snake change narrow kite list nation sustain buffalo erode open balance system young');
3639 driver.sleep(generateDelay).then(function() {
3640 getFirstAddress(function(address) {
3641 expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118");
3647 it('Can encrypt private keys using BIP38', function(done) {
3648 // see https://github.com/iancoleman/bip39/issues/140
3649 driver.executeScript(function() {
3650 $(".use-bip38
").prop("checked
", true);
3652 driver.findElement(By.css('.bip38-password'))
3653 .sendKeys('bip38password');
3654 driver.findElement(By.css('.rows-to-add'))
3656 driver.findElement(By.css('.rows-to-add'))
3658 driver.findElement(By.css('.phrase'))
3659 .sendKeys('abandon abandon ability');
3660 driver.sleep(bip38delay).then(function() {
3662 getFirstRowValue(function(address) {
3663 expect(address).toBe("1NCvSdumA3ngMM9c4aqU56AM6rqXddfuXB
");
3665 getFirstRowValue(function(pubkey) {
3666 expect(pubkey).toBe("043f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3884a74447ea901729b1e73a999b7520e7cb55b4120e6432c64153ccab8a848e1
");
3668 getFirstRowValue(function(privkey) {
3669 expect(privkey).toBe("6PRNRiFnj1RoR3sXhymdCvoZCgnUHQpfupNdKkFbWJkwWQEKesWt1EDMDM
");
3675 }, bip38delay + 5000);
3677 it('Shows the checksum for the entropy', function(done) {
3678 driver.findElement(By.css('.use-entropy'))
3680 driver.findElement(By.css('.entropy'))
3681 .sendKeys("00000000000000000000000000000000");
3682 driver.sleep(generateDelay).then(function() {
3683 driver.findElement(By.css('.checksum'))
3685 .then(function(text) {
3686 expect(text).toBe("1");
3692 it('Shows the checksum for the entropy with the correct groupings', function(done) {
3693 driver.findElement(By.css('.use-entropy'))
3695 // create a checksum of 20 bits, which spans multiple words
3696 driver.findElement(By.css('.entropy'))
3697 .sendKeys("F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
");
3698 driver.sleep(generateDelay).then(function() {
3699 driver.findElement(By.css('.checksum'))
3701 .then(function(text) {
3702 // first group is 9 bits, second group is 11
3703 expect(text).toBe("011010111 01110000110");
3709 it('Uses vprv for bitcoin testnet p2wpkh', function(done) {
3710 selectNetwork("BTC
- Bitcoin Testnet
");
3711 driver.findElement(By.css('#bip84-tab a'))
3713 driver.findElement(By.css('.phrase'))
3714 .sendKeys('abandon abandon ability');
3715 driver.sleep(generateDelay).then(function() {
3716 driver.findElement(By.css('.root-key'))
3717 .getAttribute("value
")
3718 .then(function(path) {
3719 expect(path).toBe("vprv9DMUxX4ShgxML9N2YV5CvWEebWrM9aJ5ULpbRRyzyWu6vs4BzTvbfFFrH41N5hVi7MYSfiugd765L3JmAfDM5po36Y8ouCKRDeYQwByCmS7
");
3725 it('Shows a warning if generating weak mnemonics', function(done) {
3726 driver.executeScript(function() {
3727 $(".strength option
[selected
]").removeAttr("selected
");
3728 $(".strength option
[value
=6]").prop("selected
", true);
3729 $(".strength
").trigger("change
");
3731 driver.findElement(By.css(".generate
-container
.warning
"))
3732 .getAttribute("class")
3733 .then(function(classes) {
3734 expect(classes).not.toContain("hidden
");
3739 it('Does not show a warning if generating strong mnemonics', function(done) {
3740 driver.executeScript(function() {
3741 $(".strength option
[selected
]").removeAttr("selected
");
3742 $(".strength option
[value
=12]").prop("selected
", true);
3744 driver.findElement(By.css(".generate
-container
.warning
"))
3745 .getAttribute("class")
3746 .then(function(classes) {
3747 expect(classes).toContain("hidden
");
3752 it('Shows a warning if overriding weak entropy with longer mnemonics', function(done) {
3753 driver.findElement(By.css('.use-entropy'))
3755 driver.findElement(By.css('.entropy'))
3756 .sendKeys("0123456789abcdef
"); // 6 words
3757 driver.executeScript(function() {
3758 $(".mnemonic
-length
").val("12").trigger("change
");
3760 driver.findElement(By.css(".weak
-entropy
-override
-warning
"))
3761 .getAttribute("class")
3762 .then(function(classes) {
3763 expect(classes).not.toContain("hidden
");
3768 it('Does not show a warning if entropy is stronger than mnemonic length', function(done) {
3769 driver.findElement(By.css('.use-entropy'))
3771 driver.findElement(By.css('.entropy'))
3772 .sendKeys("0123456789abcdef0123456789abcdef0123456789abcdef
"); // 18 words
3773 driver.executeScript(function() {
3774 $(".mnemonic
-length
").val("12").trigger("change
");
3776 driver.findElement(By.css(".weak
-entropy
-override
-warning
"))
3777 .getAttribute("class")
3778 .then(function(classes) {
3779 expect(classes).toContain("hidden
");
3784 it('Shows litecoin BIP49 addresses', function(done) {
3785 driver.findElement(By.css('.phrase'))
3786 .sendKeys('abandon abandon ability');
3787 selectNetwork("LTC
- Litecoin
");
3788 driver.findElement(By.css('#bip49-tab a'))
3790 // bip49 addresses are shown
3791 driver.sleep(generateDelay).then(function() {
3792 driver.findElement(By.css('#bip49 .available'))
3793 .getAttribute("class")
3794 .then(function(classes) {
3795 expect(classes).not.toContain("hidden
");
3796 // check first address
3797 getFirstAddress(function(address) {
3798 expect(address).toBe("MFwLPhsXoBuSLL8cLmW9uK6tChkzduV8qN
");
3805 it('Can use root keys to generate segwit table rows', function(done) {
3806 // segwit uses ypub / zpub instead of xpub but the root key should still
3807 // be valid regardless of the encoding used to import that key.
3808 // Maybe this breaks the reason for the different extended key prefixes, but
3809 // since the parsed root key is used behind the scenes anyhow this should be
3811 driver.findElement(By.css('#root-key'))
3812 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
3813 driver.findElement(By.css('#bip49-tab a'))
3815 // bip49 addresses are shown
3816 driver.sleep(generateDelay).then(function() {
3817 getFirstAddress(function(address) {
3818 expect(address).toBe("3QG2Y9AA4xZ846gKHZqNf7mvVKbLqMKxr2
");