]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blob - tests/spec/tests.js
Merge pull request #267 from anonymousbitcoin/master
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / tests / spec / tests.js
1 // Usage:
2 // cd /path/to/repo/tests
3 // jasmine spec/tests.js
4 //
5 // Dependencies:
6 // nodejs
7 // selenium
8 // jasmine
9 // see https://developer.mozilla.org/en-US/docs/Mozilla/Firefox/Headless_mode#Automated_testing_with_headless_mode
10
11 // USER SPECIFIED OPTIONS
12 var browser = process.env.BROWSER; //"firefox"; // or "chrome"
13 if (!browser) {
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");
18 browser = "chrome";
19 }
20 else {
21 console.log("Using browser: " + browser);
22 }
23
24 // Globals
25
26 var webdriver = require('selenium-webdriver');
27 var By = webdriver.By;
28 var Key = webdriver.Key;
29 var until = webdriver.until;
30 var newDriver = null;
31 var driver = null;
32 // Delays in ms
33 var generateDelay = 1500;
34 var feedbackDelay = 500;
35 var entropyFeedbackDelay = 500;
36 var bip38delay = 15000;
37
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";
49 }
50
51 // Variables dependent on specific browser selection
52
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))
61 .build();
62 }
63 }
64 else if (browser == "chrome") {
65 var chrome = require('selenium-webdriver/chrome');
66 newDriver = function() {
67 return new webdriver.Builder()
68 .forBrowser('chrome')
69 .setChromeOptions(new chrome.Options().addArguments("headless"))
70 .build();
71 }
72 }
73
74 // Helper functions
75
76 function testNetwork(done, params) {
77 var phrase = params.phrase || 'abandon abandon ability';
78 driver.findElement(By.css('.phrase'))
79 .sendKeys(phrase);
80 selectNetwork(params.selectText);
81 driver.sleep(generateDelay).then(function() {
82 getFirstAddress(function(address) {
83 expect(address).toBe(params.firstAddress);
84 done();
85 });
86 });
87 }
88
89 function getFirstRowValue(handler, selector) {
90 driver.findElements(By.css(selector))
91 .then(function(els) {
92 els[0].getText()
93 .then(handler);
94 })
95 }
96
97 function getFirstAddress(handler) {
98 getFirstRowValue(handler, ".address");
99 }
100
101 function getFirstPath(handler) {
102 getFirstRowValue(handler, ".index");
103 }
104
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");
112 done();
113 });
114 })
115 }
116
117 function testRowsAreInCorrectOrder(done) {
118 driver.findElements(By.css('.index'))
119 .then(function(els) {
120 var testRowAtIndex = function(i) {
121 if (i >= els.length) {
122 done();
123 }
124 else {
125 els[i].getText()
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);
132 testRowAtIndex(i+1);
133 });
134 }
135 }
136 testRowAtIndex(0);
137 });
138 }
139
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");
148 }, name);
149 }
150
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'))
156 .click();
157 driver.findElement(By.css('.entropy'))
158 .sendKeys(entropyText);
159 driver.sleep(generateDelay).then(function() {
160 driver.findElement(By.css('.entropy-container'))
161 .getText()
162 .then(function(text) {
163 var re = new RegExp("Entropy Type\\s+" + entropyType);
164 expect(text).toMatch(re);
165 done();
166 });
167 });
168 }
169
170 function testEntropyBits(done, entropyText, entropyBits) {
171 driver.findElement(By.css('.use-entropy'))
172 .click();
173 driver.findElement(By.css('.entropy'))
174 .sendKeys(entropyText);
175 driver.sleep(generateDelay).then(function() {
176 driver.findElement(By.css('.entropy-container'))
177 .getText()
178 .then(function(text) {
179 var re = new RegExp("Total Bits\\s+" + entropyBits);
180 expect(text).toMatch(re);
181 done();
182 });
183 });
184 }
185
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, "\\$&");
191 }
192 driver.findElement(By.css('.use-entropy'))
193 .click();
194 driver.findElement(By.css('.entropy'))
195 .sendKeys(entropyDetail.entropy);
196 driver.sleep(entropyFeedbackDelay).then(function() {
197 driver.findElement(By.css('.entropy-container'))
198 .getText()
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);
209 }
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);
216 }
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);
223 }
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);
230 }
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);
237 }
238 if ("words" in entropyDetail) {
239 var actualWords = phrase.split(/\s+/)
240 .filter(function(w) { return w.length > 0 })
241 .length;
242 expect(actualWords).toBe(entropyDetail.words);
243 }
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);
250 }
251 done();
252 });
253 });
254 });
255 }
256
257 function testClientSelect(done, params) {
258 // set mnemonic and select bip32 tab
259 driver.findElement(By.css('#bip32-tab a'))
260 .click()
261 driver.findElement(By.css('.phrase'))
262 .sendKeys("abandon abandon ability");
263 driver.sleep(generateDelay).then(function() {
264 // BITCOIN CORE
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");
285 done();
286 });
287 });
288 });
289 });
290 });
291 }
292
293 // Tests
294
295 describe('BIP39 Tool Tests', function() {
296
297 beforeEach(function(done) {
298 driver = newDriver();
299 driver.get(url).then(done);
300 });
301
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);
305 });
306
307 // BEGIN TESTS
308
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('');
314 done();
315 });
316 });
317
318 // Page has text
319 it('Should have text on the page', function(done) {
320 driver.findElement(By.css('body'))
321 .getText()
322 .then(function(text) {
323 var textToFind = "You can enter an existing BIP39 mnemonic";
324 expect(text).toContain(textToFind);
325 done();
326 });
327 });
328
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);
337 done();
338 })
339 });
340 });
341
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);
349 // press generate
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);
357 done();
358 });
359 });
360 });
361 });
362
363 // Mnemonic length can be customized
364 it('Should allow custom length mnemonics', function(done) {
365 // set strength to 6
366 driver.executeScript(function() {
367 $(".strength option[selected]").removeAttr("selected");
368 $(".strength option[value=6]").prop("selected", true);
369 });
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);
377 done();
378 });
379 });
380 });
381
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");
391 done();
392 })
393 });
394 });
395
396 // Network can be set to networks other than bitcoin
397 it('Allows selection of bitcoin testnet', function(done) {
398 var params = {
399 selectText: "BTC - Bitcoin Testnet",
400 firstAddress: "mucaU5iiDaJDb69BHLeDv8JFfGiyg2nJKi",
401 };
402 testNetwork(done, params);
403 });
404 it('Allows selection of litecoin', function(done) {
405 var params = {
406 selectText: "LTC - Litecoin",
407 firstAddress: "LQ4XU8RX2ULPmPq9FcUHdVmPVchP9nwXdn",
408 };
409 testNetwork(done, params);
410 });
411 it('Allows selection of ripple', function(done) {
412 var params = {
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",
416 };
417 testNetwork(done, params);
418 });
419 it('Allows selection of dogecoin', function(done) {
420 var params = {
421 selectText: "DOGE - Dogecoin",
422 firstAddress: "DPQH2AtuzkVSG6ovjKk4jbUmZ6iXLpgbJA",
423 };
424 testNetwork(done, params);
425 });
426 it('Allows selection of denarius', function(done) {
427 var params = {
428 selectText: "DNR - Denarius",
429 firstAddress: "DFdFMVUMzU9xX88EywXvAGwjiwpxyh9vKb",
430 };
431 testNetwork(done, params);
432 });
433 it('Allows selection of shadowcash', function(done) {
434 var params = {
435 selectText: "SDC - ShadowCash",
436 firstAddress: "SiSZtfYAXEFvMm3XM8hmtkGDyViRwErtCG",
437 };
438 testNetwork(done, params);
439 });
440 it('Allows selection of shadowcash testnet', function(done) {
441 var params = {
442 selectText: "SDC - ShadowCash Testnet",
443 firstAddress: "tM2EDpVKaTiEg2NZg3yKg8eqjLr55BErHe",
444 };
445 testNetwork(done, params);
446 });
447 it('Allows selection of viacoin', function(done) {
448 var params = {
449 selectText: "VIA - Viacoin",
450 firstAddress: "Vq9Eq4N5SQnjqZvxtxzo7hZPW5XnyJsmXT",
451 };
452 testNetwork(done, params);
453 });
454 it('Allows selection of viacoin testnet', function(done) {
455 var params = {
456 selectText: "VIA - Viacoin Testnet",
457 firstAddress: "tM2EDpVKaTiEg2NZg3yKg8eqjLr55BErHe",
458 };
459 testNetwork(done, params);
460 });
461 it('Allows selection of jumbucks', function(done) {
462 var params = {
463 selectText: "JBS - Jumbucks",
464 firstAddress: "JLEXccwDXADK4RxBPkRez7mqsHVoJBEUew",
465 };
466 testNetwork(done, params);
467 });
468 it('Allows selection of clam', function(done) {
469 var params = {
470 selectText: "CLAM - Clams",
471 firstAddress: "xCp4sakjVx4pUAZ6cBCtuin8Ddb6U1sk9y",
472 };
473 testNetwork(done, params);
474 });
475 it('Allows selection of crown', function(done) {
476 var params = {
477 selectText: "CRW - Crown",
478 firstAddress: "18pWSwSUAQdiwMHUfFZB1fM2xue9X1FqE5",
479 };
480 testNetwork(done, params);
481 });
482 it('Allows selection of dash', function(done) {
483 var params = {
484 selectText: "DASH - Dash",
485 firstAddress: "XdbhtMuGsPSkE6bPdNTHoFSszQKmK4S5LT",
486 };
487 testNetwork(done, params);
488 });
489 it('Allows selection of dash testnet', function(done) {
490 var params = {
491 selectText: "DASH - Dash Testnet",
492 firstAddress: "yaR52EN4oojdJfBgzWJTymC4uuCLPT29Gw",
493 };
494 testNetwork(done, params);
495 });
496 it('Allows selection of game', function(done) {
497 var params = {
498 selectText: "GAME - GameCredits",
499 firstAddress: "GSMY9bAp36cMR4zyT4uGVS7GFjpdXbao5Q",
500 };
501 testNetwork(done, params);
502 });
503 it('Allows selection of komodo', function(done) {
504 var params = {
505 selectText: "KMD - Komodo",
506 firstAddress: "RMPPzJwAjPVZZAwJvXivHJGGjdCx6WBD2t",
507 };
508 testNetwork(done, params);
509 });
510 it('Allows selection of namecoin', function(done) {
511 var params = {
512 selectText: "NMC - Namecoin",
513 firstAddress: "Mw2vK2Bvex1yYtYF6sfbEg2YGoUc98YUD2",
514 };
515 testNetwork(done, params);
516 });
517 it('Allows selection of onixcoin', function(done) {
518 var params = {
519 selectText: "ONX - Onixcoin",
520 firstAddress: "XGwMqddeKjT3ddgX73QokjVbCL3aK6Yxfk",
521 };
522 testNetwork(done, params);
523 });
524 it('Allows selection of peercoin', function(done) {
525 var params = {
526 selectText: "PPC - Peercoin",
527 firstAddress: "PVAiioTaK2eDHSEo3tppT9AVdBYqxRTBAm",
528 };
529 testNetwork(done, params);
530 });
531 it('Allows selection of ethereum', function(done) {
532 var params = {
533 selectText: "ETH - Ethereum",
534 firstAddress: "0xe5815d5902Ad612d49283DEdEc02100Bd44C2772",
535 };
536 testNetwork(done, params);
537 // TODO test private key and public key
538 });
539 it('Allows selection of slimcoin', function(done) {
540 var params = {
541 selectText: "SLM - Slimcoin",
542 firstAddress: "SNzPi1CafHFm3WWjRo43aMgiaEEj3ogjww",
543 };
544 testNetwork(done, params);
545 });
546 it('Allows selection of slimcoin testnet', function(done) {
547 var params = {
548 selectText: "SLM - Slimcoin Testnet",
549 firstAddress: "n3nMgWufTek5QQAr6uwMhg5xbzj8xqc4Dq",
550 };
551 testNetwork(done, params);
552 });
553 it('Allows selection of bitcoin cash', function(done) {
554 var params = {
555 selectText: "BCH - Bitcoin Cash",
556 firstAddress: "bitcoincash:qzlquk7w4hkudxypl4fgv8x279r754dkvur7jpcsps",
557 };
558 testNetwork(done, params);
559 });
560 it('Allows selection of myriadcoin', function(done) {
561 var params = {
562 selectText: "XMY - Myriadcoin",
563 firstAddress: "MJEswvRR46wh9BoiVj9DzKYMBkCramhoBV",
564 };
565 testNetwork(done, params);
566 });
567 it('Allows selection of pivx', function(done) {
568 var params = {
569 selectText: "PIVX - PIVX",
570 firstAddress: "DBxgT7faCuno7jmtKuu6KWCiwqsVPqh1tS",
571 };
572 testNetwork(done, params);
573 });
574 it('Allows selection of pivx testnet', function(done) {
575 var params = {
576 selectText: "PIVX - PIVX Testnet",
577 firstAddress: "yB5U384n6dGkVE3by5y9VdvHHPwPg68fQj",
578 };
579 testNetwork(done, params);
580 });
581 it('Allows selection of maza', function(done) {
582 var params = {
583 selectText: "MAZA - Maza",
584 firstAddress: "MGW4Bmi2NEm4PxSjgeFwhP9vg18JHoRnfw",
585 };
586 testNetwork(done, params);
587 });
588 it('Allows selection of fujicoin', function(done) {
589 var params = {
590 selectText: "FJC - Fujicoin",
591 firstAddress: "FgiaLpG7C99DyR4WnPxXedRVHXSfKzUDhF",
592 };
593 testNetwork(done, params);
594 });
595 it('Allows selection of nubits', function(done) {
596 var params = {
597 selectText: "USNBT - NuBits",
598 firstAddress: "BLxkabXuZSJSdesLD7KxZdqovd4YwyBTU6",
599 };
600 testNetwork(done, params);
601 });
602 it('Allows selection of bitcoin gold', function(done) {
603 var params = {
604 selectText: "BTG - Bitcoin Gold",
605 firstAddress: "GdDqug4WUsn5syNbSTHatNn4XnuwZtzedx",
606 };
607 testNetwork(done, params);
608 });
609 it('Allows selection of monacoin', function(done) {
610 var params = {
611 selectText: "MONA - Monacoin",
612 firstAddress: "MKMiMr7MyjDKjJbCBzgF6u4ByqTS4NkRB1",
613 };
614 testNetwork(done, params);
615 });
616 it('Allows selection of AXE', function(done) {
617 var params = {
618 selectText: "AXE - Axe",
619 firstAddress: "PScwtLUyPiGrqtKXrHF37DGETLXLZdw4up",
620 };
621 testNetwork(done, params);
622 });
623 it('Allows selection of BlackCoin', function(done) {
624 var params = {
625 selectText: "BLK - BlackCoin",
626 firstAddress: "B5MznAKwj7uQ42vDz3w4onhBXPcqhTwJ9z",
627 };
628 testNetwork(done, params);
629 });
630 it('Allows selection of Neblio', function(done) {
631 var params = {
632 selectText: "NEBL - Neblio",
633 firstAddress: "NefkeEEvhusbHMmTRrxx7H9wFnUXd8qQsE",
634 };
635 testNetwork(done, params);
636 });
637 it('Allows selection of Beetlecoin', function(done) {
638 var params = {
639 selectText: "BEET - Beetlecoin",
640 firstAddress: "BVmtbEsGrjpknprmpHFq26z4kYHJUFHE71",
641 };
642 testNetwork(done, params);
643 });
644 it('Allows selection of Adcoin', function(done) {
645 var params = {
646 selectText: "ACC - Adcoin",
647 firstAddress: "AcEDM6V5sF4kFHC76MJjjfProtS5Sw2qcd",
648 };
649 testNetwork(done, params);
650 });
651 it('Allows selection of Asiacoin', function(done) {
652 var params = {
653 selectText: "AC - Asiacoin",
654 firstAddress: "ALupuEEz7kJjQTAvmtcBMBVuEjPa7GqZzE",
655 };
656 testNetwork(done, params);
657 });
658 it('Allows selection of Auroracoin', function(done) {
659 var params = {
660 selectText: "AUR - Auroracoin",
661 firstAddress: "ANuraS6F4Jpi413FEnavjYkKYJJRHkgYCm",
662 };
663 testNetwork(done, params);
664 });
665 it('Allows selection of Bata', function(done) {
666 var params = {
667 selectText: "BTA - Bata",
668 firstAddress: "BGxBdNeYPtF3GCuTtZBPQdFxCkdBYSF3fj",
669 };
670 testNetwork(done, params);
671 });
672 it('Allows selection of Belacoin', function(done) {
673 var params = {
674 selectText: "BELA - Belacoin",
675 firstAddress: "BEeetqpNffdzeknSpNmQp5KAFh2KK1Qx7S",
676 };
677 testNetwork(done, params);
678 });
679 it('Allows selection of Bitcoin Atom', function(done) {
680 var params = {
681 selectText: "BCA - Bitcoin Atom",
682 firstAddress: "AMy6qMbJeC4zsGRL6iWszmeCdQH65fgfih",
683 };
684 testNetwork(done, params);
685 });
686 it('Allows selection of Bitcoinplus', function(done) {
687 var params = {
688 selectText: "XBC - Bitcoinplus",
689 firstAddress: "B7FSynZoDbEwTCSgsXq9nJ5ue8owYLVL8r",
690 };
691 testNetwork(done, params);
692 });
693 it('Allows selection of Bitcoin Private', function(done) {
694 var params = {
695 selectText: "BTCP - Bitcoin Private",
696 firstAddress: "b1M3PbiXXyN6Hdivdw5rJv5VKpLjPzhm4jM",
697 };
698 testNetwork(done, params);
699 });
700 it('Allows selection of Bitcoinz', function(done) {
701 var params = {
702 selectText: "BTCZ - Bitcoinz",
703 firstAddress: "t1X2YQoxs8cYRo2oaBYgVEwW5QNjCC59NYc",
704 };
705 testNetwork(done, params);
706 });
707 it('Allows selection of BitCloud', function(done) {
708 var params = {
709 selectText: "BTDX - BitCloud",
710 firstAddress: "BE9tnWxiR7ALgVhG8LLDi2W9pvtjzZMFoM",
711 };
712 testNetwork(done, params);
713 });
714 it('Allows selection of Bitcore', function(done) {
715 var params = {
716 selectText: "BTX - Bitcore",
717 firstAddress: "2Rgp5Znhpy34TK4QmPkfCiYs9r4KovfTH9",
718 };
719 testNetwork(done, params);
720 });
721 it('Allows selection of Bitsend', function(done) {
722 var params = {
723 selectText: "BSD - Bitsend",
724 firstAddress: "iBPk7LYjDun3EPk7CRR8UUmnPoceVc1bp2",
725 };
726 testNetwork(done, params);
727 });
728 it('Allows selection of Britcoin', function(done) {
729 var params = {
730 selectText: "BRIT - Britcoin",
731 firstAddress: "B6Aue4J2XLs1f1dtD4H1SHYFfh4XrmEbrw",
732 };
733 testNetwork(done, params);
734 });
735 it('Allows selection of Canadaecoin', function(done) {
736 var params = {
737 selectText: "CDN - Canadaecoin",
738 firstAddress: "CanAyCfd5Rj2CQVfaoAmvDUZunPM5W1AEQ",
739 };
740 testNetwork(done, params);
741 });
742 it('Allows selection of Cannacoin', function(done) {
743 var params = {
744 selectText: "CCN - Cannacoin",
745 firstAddress: "CYjW8xWB43g6krLJTmmrPk1PonoQX7h9Qd",
746 };
747 testNetwork(done, params);
748 });
749 it('Allows selection of Clubcoin', function(done) {
750 var params = {
751 selectText: "CLUB - Clubcoin",
752 firstAddress: "CHMDEXN4sihpSVX4GyAa2hZ62shnby7uyN",
753 };
754 testNetwork(done, params);
755 });
756 it('Allows selection of Compcoin', function(done) {
757 var params = {
758 selectText: "CMP - Compcoin",
759 firstAddress: "CLshtw3zhxkseBJS46UF12v3AFy9Dx7JVv",
760 };
761 testNetwork(done, params);
762 });
763 it('Allows selection of Crave', function(done) {
764 var params = {
765 selectText: "CRAVE - Crave",
766 firstAddress: "VCYJeti6uKMNBFKCL7eP96UwuFWYHM7c85",
767 };
768 testNetwork(done, params);
769 });
770 it('Allows selection of Defcoin', function(done) {
771 var params = {
772 selectText: "DFC - Defcoin",
773 firstAddress: "D8swcgyaaFUrXZU3ATwbgy16buCpWqbG1M",
774 };
775 testNetwork(done, params);
776 });
777 it('Allows selection of Diamond', function(done) {
778 var params = {
779 selectText: "DMD - Diamond",
780 firstAddress: "dJnrVbLL9UPjdaVRz2C8VpqHZknqAqjLek",
781 };
782 testNetwork(done, params);
783 });
784 it('Allows selection of Digibyte', function(done) {
785 var params = {
786 selectText: "DGB - Digibyte",
787 firstAddress: "D85Rp9jwLtMdmP6wGjTiqHBdVQLST3YCEq",
788 };
789 testNetwork(done, params);
790 });
791 it('Allows selection of Digitalcoin', function(done) {
792 var params = {
793 selectText: "DGC - Digitalcoin",
794 firstAddress: "DKw4UGKEAZWweDNEbBFNQx4EM8x1mpUdia",
795 };
796 testNetwork(done, params);
797 });
798 it('Allows selection of Ecoin', function(done) {
799 var params = {
800 selectText: "ECN - Ecoin",
801 firstAddress: "e6WFPLG5gcXyF7cESFteH1hE2XSmowW5yB",
802 };
803 testNetwork(done, params);
804 });
805 it('Allows selection of Edrcoin', function(done) {
806 var params = {
807 selectText: "EDRC - Edrcoin",
808 firstAddress: "eh1nUJsvgKPFv6ebMBfcwJ299GMCpjeZUG",
809 };
810 testNetwork(done, params);
811 });
812 it('Allows selection of Egulden', function(done) {
813 var params = {
814 selectText: "EFL - Egulden",
815 firstAddress: "Lg66yt55R7edRM58cDhKzXik2kFme3viX7",
816 };
817 testNetwork(done, params);
818 });
819 it('Allows selection of Einsteinium', function(done) {
820 var params = {
821 selectText: "EMC2 - Einsteinium",
822 firstAddress: "EVAABm9hXKHk2MpVMbwNakRubFnNha5m8m",
823 };
824 testNetwork(done, params);
825 });
826 it('Allows selection of Europecoin', function(done) {
827 var params = {
828 selectText: "ERC - Europecoin",
829 firstAddress: "ESA2YwPYntAoaPrE8Fm5qkKRtkcwLcwD6R",
830 };
831 testNetwork(done, params);
832 });
833 it('Allows selection of Exclusivecoin', function(done) {
834 var params = {
835 selectText: "EXCL - Exclusivecoin",
836 firstAddress: "EbUa6m8UZW6nTxsYZD2FsDjkadKbp5M6JT",
837 };
838 testNetwork(done, params);
839 });
840 it('Allows selection of Feathercoin', function(done) {
841 var params = {
842 selectText: "FTC - Feathercoin",
843 firstAddress: "6gDdjAMoSgQaW8UhqK3oboHs6ftGAroKkM",
844 };
845 testNetwork(done, params);
846 });
847 it('Allows selection of Firstcoin', function(done) {
848 var params = {
849 selectText: "FRST - Firstcoin",
850 firstAddress: "FJN9GzfMm7Q8R4DJwK1H9F6A1GTghvFiMJ",
851 };
852 testNetwork(done, params);
853 });
854 it('Allows selection of Flashcoin', function(done) {
855 var params = {
856 selectText: "FLASH - Flashcoin",
857 firstAddress: "UWfpf5LfMmLxZYooEb2EyvWhZ8NG7EZDRt",
858 };
859 testNetwork(done, params);
860 });
861 it('Allows selection of GCRCoin', function(done) {
862 var params = {
863 selectText: "GCR - GCRCoin",
864 firstAddress: "GJjF5cLwyXLacpuvXAVksxGxKvHDjx58d6",
865 };
866 testNetwork(done, params);
867 });
868 it('Allows selection of Gobyte', function(done) {
869 var params = {
870 selectText: "GBX - Gobyte",
871 firstAddress: "GS813Ys2brkmvSUw1rUqGPm2HqQVDHJRyA",
872 };
873 testNetwork(done, params);
874 });
875 it('Allows selection of Gridcoin', function(done) {
876 var params = {
877 selectText: "GRC - Gridcoin",
878 firstAddress: "SGrWbBPvobgqKRF8td1Kdc9vbRY7MJ78Y9",
879 };
880 testNetwork(done, params);
881 });
882 it('Allows selection of Gulden', function(done) {
883 var params = {
884 selectText: "NLG - Gulden",
885 firstAddress: "GcDP7cNEc33MPPdTFNJ8pZc6VMZJ2CbKxY",
886 };
887 testNetwork(done, params);
888 });
889 it('Allows selection of Helleniccoin', function(done) {
890 var params = {
891 selectText: "HNC - Helleniccoin",
892 firstAddress: "LbHEKe5H72zp9G1fuWNiiNePTUfJb88915",
893 };
894 testNetwork(done, params);
895 });
896 it('Allows selection of Hempcoin', function(done) {
897 var params = {
898 selectText: "THC - Hempcoin",
899 firstAddress: "H8sdWbZyJV4gyXyHtLXDaNnAuUDhK5mfTV",
900 };
901 testNetwork(done, params);
902 });
903 it('Allows selection of Insane', function(done) {
904 var params = {
905 selectText: "INSN - Insane",
906 firstAddress: "iMPqEJMiXWuxC9U2NVinCCMr4t72h58EWx",
907 };
908 testNetwork(done, params);
909 });
910 it('Allows selection of Iop', function(done) {
911 var params = {
912 selectText: "IOP - Iop",
913 firstAddress: "pGKQmcaPf95Ur5o6oHK4qdiZ52p1yaTvq1",
914 };
915 testNetwork(done, params);
916 });
917 it('Allows selection of Ixcoin', function(done) {
918 var params = {
919 selectText: "IXC - Ixcoin",
920 firstAddress: "xgE9bTZ6YypT3E6ByzkTt31Hq68E9BqywH",
921 };
922 testNetwork(done, params);
923 });
924 it('Allows selection of Kobocoin', function(done) {
925 var params = {
926 selectText: "KOBO - Kobocoin",
927 firstAddress: "FTVoNJETXDAM8x7MnmdE8RwWndSr9PQWhy",
928 };
929 testNetwork(done, params);
930 });
931 it('Allows selection of Landcoin', function(done) {
932 var params = {
933 selectText: "LDCN - Landcoin",
934 firstAddress: "LLvLwNjG1aJcn1RS4W4GJUbv8fNaRATG7c",
935 };
936 testNetwork(done, params);
937 });
938 it('Allows selection of Library Credits', function(done) {
939 var params = {
940 selectText: "LBC - Library Credits",
941 firstAddress: "bQJEQrHDJyHdqycB32uysh1SWn8Ln8LMdg",
942 };
943 testNetwork(done, params);
944 });
945 it('Allows selection of Linx', function(done) {
946 var params = {
947 selectText: "LINX - Linx",
948 firstAddress: "XGWQ3cb3LGUB3VnHmj6xYSMgnokNbf6dyk",
949 };
950 testNetwork(done, params);
951 });
952 it('Allows selection of Litecoincash', function(done) {
953 var params = {
954 selectText: "LCC - Litecoincash",
955 firstAddress: "Ce5n7fjUuQPLutJ4W5nCCfQLKdKLE1mv9A",
956 };
957 testNetwork(done, params);
958 });
959 it('Allows selection of Lynx', function(done) {
960 var params = {
961 selectText: "LYNX - Lynx",
962 firstAddress: "KUeY3ZdZkg96p4W98pj1JjygCFU1XqWdw3",
963 };
964 testNetwork(done, params);
965 });
966 it('Allows selection of Megacoin', function(done) {
967 var params = {
968 selectText: "MEC - Megacoin",
969 firstAddress: "MHHRRPHcF8DvQpEySFF9M6fR8Qv4JH2fFC",
970 };
971 testNetwork(done, params);
972 });
973 it('Allows selection of Minexcoin', function(done) {
974 var params = {
975 selectText: "MNX - Minexcoin",
976 firstAddress: "XC1VnyJVfiMDwWgFtAHDp41cgY3AHk3dJT",
977 };
978 testNetwork(done, params);
979 });
980 it('Allows selection of Navcoin', function(done) {
981 var params = {
982 selectText: "NAV - Navcoin",
983 firstAddress: "NTQVTPK3NWSQLKoffkiQw99T8PifkF1Y2U",
984 };
985 testNetwork(done, params);
986 });
987 it('Allows selection of Neoscoin', function(done) {
988 var params = {
989 selectText: "NEOS - Neoscoin",
990 firstAddress: "NgATz6QbQNXvayHQ4CpZayugb9HeaPDdby",
991 };
992 testNetwork(done, params);
993 });
994 it('Allows selection of Neurocoin', function(done) {
995 var params = {
996 selectText: "NRO - Neurocoin",
997 firstAddress: "NVdYErQ3mFpDuF5DquW9WMiT7sLc8ufFTn",
998 };
999 testNetwork(done, params);
1000 });
1001 it('Allows selection of Newyorkc', function(done) {
1002 var params = {
1003 selectText: "NYC - Newyorkc",
1004 firstAddress: "RSVMfyH1fKfy3puADJEhut2vfkRyon6imm",
1005 };
1006 testNetwork(done, params);
1007 });
1008 it('Allows selection of Novacoin', function(done) {
1009 var params = {
1010 selectText: "NVC - Novacoin",
1011 firstAddress: "4JRvUmxcKCJmaMXZyvRoSS1cmG2XvnZfHN",
1012 };
1013 testNetwork(done, params);
1014 });
1015 it('Allows selection of Nushares', function(done) {
1016 var params = {
1017 selectText: "NSR - Nushares",
1018 firstAddress: "SecjXzU3c7EecdT7EbC4vvmbdtBBokWh6J",
1019 };
1020 testNetwork(done, params);
1021 });
1022 it('Allows selection of Okcash', function(done) {
1023 var params = {
1024 selectText: "OK - Okcash",
1025 firstAddress: "PV4Qp1TUYuGv4TqVtLZtqvrsWWRycfx1Yi",
1026 };
1027 testNetwork(done, params);
1028 });
1029 it('Allows selection of Omnicore', function(done) {
1030 var params = {
1031 selectText: "OMNI - Omnicore",
1032 firstAddress: "1Q1t3gonjCT3rW38TsTsCvgSc3hh7zBGbi",
1033 };
1034 testNetwork(done, params);
1035 });
1036 it('Allows selection of Pesobit', function(done) {
1037 var params = {
1038 selectText: "PSB - Pesobit",
1039 firstAddress: "PDePsF7ALyXP7JaywokdYiRTDtKa14MAr1",
1040 };
1041 testNetwork(done, params);
1042 });
1043 it('Allows selection of Pinkcoin', function(done) {
1044 var params = {
1045 selectText: "PINK - Pinkcoin",
1046 firstAddress: "2TgjYQffjbzUHJghNaVbdsjHbRwruC3yzC",
1047 };
1048 testNetwork(done, params);
1049 });
1050 it('Allows selection of POSWcoin', function(done) {
1051 var params = {
1052 selectText: "POSW - POSWcoin",
1053 firstAddress: "PNxewmZoPnGBvoEbH6hgQZCK1igDiBCdgC",
1054 };
1055 testNetwork(done, params);
1056 });
1057 it('Allows selection of Potcoin', function(done) {
1058 var params = {
1059 selectText: "POT - Potcoin",
1060 firstAddress: "PEo7Vg2ctXgpP4vuLPeY9aGJtZotyrmiHc",
1061 };
1062 testNetwork(done, params);
1063 });
1064 it('Allows selection of Putincoin', function(done) {
1065 var params = {
1066 selectText: "PUT - Putincoin",
1067 firstAddress: "PViWnfr2uFtovd6e7joM49C94CsGSnqJis",
1068 };
1069 testNetwork(done, params);
1070 });
1071 it('Allows selection of Reddcoin', function(done) {
1072 var params = {
1073 selectText: "RDD - Reddcoin",
1074 firstAddress: "RtgRvXMBng1y51ftteveFqwNfyRG18HpxQ",
1075 };
1076 testNetwork(done, params);
1077 });
1078 it('Allows selection of RevolutionVR', function(done) {
1079 var params = {
1080 selectText: "RVR - RevolutionVR",
1081 firstAddress: "VXeeoP2jkzZnMFxtc66ZBZK1NHN5QJnnjL",
1082 };
1083 testNetwork(done, params);
1084 });
1085 it('Allows selection of Rubycoin', function(done) {
1086 var params = {
1087 selectText: "RBY - Rubycoin",
1088 firstAddress: "RV76JDtjTs11JdMDRToYn6CHecMRPLnKS6",
1089 };
1090 testNetwork(done, params);
1091 });
1092 it('Allows selection of Salus', function(done) {
1093 var params = {
1094 selectText: "SLS - Salus",
1095 firstAddress: "SgdYBmVytcW2aCYitdegwkUcCU7RSqYokB",
1096 };
1097 });
1098 it('Allows selection of Smileycoin', function(done) {
1099 var params = {
1100 selectText: "SMLY - Smileycoin",
1101 firstAddress: "BEZVnEBCAyFByrgKpwAgYgtvP4rKAd9Sj2",
1102 };
1103 testNetwork(done, params);
1104 });
1105 it('Allows selection of Solarcoin', function(done) {
1106 var params = {
1107 selectText: "SLR - Solarcoin",
1108 firstAddress: "8LZ13HbnjtaMJWSvvVFNTLf71zFfDrhwLu",
1109 };
1110 testNetwork(done, params);
1111 });
1112 it('Allows selection of stash', function(done) {
1113 var params = {
1114 selectText: "STASH - Stash",
1115 firstAddress: "XxwAsWB7REDKmAvHA85SbEZQQtpxeUDxS3",
1116 };
1117 testNetwork(done, params);
1118 });
1119 it('Allows selection of stash testnet', function(done) {
1120 var params = {
1121 selectText: "STASH - Stash Testnet",
1122 firstAddress: "YdbhtMuGsPSkE6bPdNTHoFSszQKmK4S5LT",
1123 };
1124 testNetwork(done, params);
1125 });
1126 it('Allows selection of Stratis', function(done) {
1127 var params = {
1128 selectText: "STRAT - Stratis",
1129 firstAddress: "ScfJnq3QDhKgDMEds6sqUE1ot6ShfhmXXq",
1130 };
1131 testNetwork(done, params);
1132 });
1133 it('Allows selection of Stratis Test', function(done) {
1134 var params = {
1135 selectText: "TSTRAT - Stratis Testnet",
1136 firstAddress: "TRLWm3dye4FRrDWouwYUSUZP96xb76mBE3",
1137 };
1138 testNetwork(done, params);
1139 });
1140 it('Allows selection of Syscoin', function(done) {
1141 var params = {
1142 selectText: "SYS - Syscoin",
1143 firstAddress: "SZwJi42Pst3VAMomyK5DG4157WM5ofRmSj",
1144 };
1145 testNetwork(done, params);
1146 });
1147 it('Allows selection of Toa', function(done) {
1148 var params = {
1149 selectText: "TOA - Toa",
1150 firstAddress: "TSe1QAnUwQzUfbBusDzRJ9URttrRGKoNKF",
1151 };
1152 testNetwork(done, params);
1153 });
1154 it('Allows selection of Ultimatesecurecash', function(done) {
1155 var params = {
1156 selectText: "USC - Ultimatesecurecash",
1157 firstAddress: "UPyLAZU2Che5fiy7Ed8xVJFmXAUhitA4ug",
1158 };
1159 testNetwork(done, params);
1160 });
1161 it('Allows selection of Unobtanium', function(done) {
1162 var params = {
1163 selectText: "UNO - Unobtanium",
1164 firstAddress: "uUBMPVMXrR6qhqornJqKTWgr8L69vihSL9",
1165 };
1166 testNetwork(done, params);
1167 });
1168 it('Allows selection of Vcash', function(done) {
1169 var params = {
1170 selectText: "XVC - Vcash",
1171 firstAddress: "VuL53MSY6KjvAjKSeRkh3NDnKykacDVeps",
1172 };
1173 testNetwork(done, params);
1174 });
1175 it('Allows selection of Verge', function(done) {
1176 var params = {
1177 selectText: "XVG - Verge",
1178 firstAddress: "DCrVuGkMjLJpTGgwAgv9AcMdeb1nkWbjZA",
1179 };
1180 testNetwork(done, params);
1181 });
1182 it('Allows selection of Vertcoin', function(done) {
1183 var params = {
1184 selectText: "VTC - Vertcoin",
1185 firstAddress: "Vf6koGuiWdXQfx8tNqxoNeEDxh4xh5cxsG",
1186 };
1187 testNetwork(done, params);
1188 });
1189 it('Allows selection of Vivo', function(done) {
1190 var params = {
1191 selectText: "VIVO - Vivo",
1192 firstAddress: "VFmBwuXXGhJe7MarQG2GfzHMFebRHgfSpB",
1193 };
1194 testNetwork(done, params);
1195 });
1196 it('Allows selection of Vpncoin', function(done) {
1197 var params = {
1198 selectText: "VASH - Vpncoin",
1199 firstAddress: "VoEmH1qXC4TsSgBAStR21QYetwnFqbqCx9",
1200 };
1201 testNetwork(done, params);
1202 });
1203 it('Allows selection of Whitecoin', function(done) {
1204 var params = {
1205 selectText: "XWC - Whitecoin",
1206 firstAddress: "WcSwCAUqrSgeSYbsaS3SSWWhsx8KRYTFDR",
1207 };
1208 testNetwork(done, params);
1209 });
1210 it('Allows selection of Wincoin', function(done) {
1211 var params = {
1212 selectText: "WC - Wincoin",
1213 firstAddress: "WaDVCESMGgyKgNESdn3u43NnwmGSkZED3Z",
1214 };
1215 testNetwork(done, params);
1216 });
1217 it('Allows selection of Zcoin', function(done) {
1218 var params = {
1219 selectText: "XZC - Zcoin",
1220 firstAddress: "a6VcMdP4XgAA9Tr7xNszmPG5FZpfRf17Cq",
1221 };
1222 testNetwork(done, params);
1223 });
1224 it('Allows selection of Zcash', function(done) {
1225 var params = {
1226 selectText: "ZEC - Zcash",
1227 firstAddress: "t1Sz8AneMcVuzUg3tPJ8et5AS5LFJ7K2EF9",
1228 };
1229 testNetwork(done, params);
1230 });
1231 it('Allows selection of Zclassic', function(done) {
1232 var params = {
1233 selectText: "ZCL - Zclassic",
1234 firstAddress: "t1TBMxTvVJRybUbMLGWq8H4A8F4VUL7czEc",
1235 };
1236 testNetwork(done, params);
1237 });
1238 it('Allows selection of Zencash', function(done) {
1239 var params = {
1240 selectText: "ZEN - Zencash",
1241 firstAddress: "znWh9XASyW2dZq5tck84wFjiwuqVysi7q3p",
1242 };
1243 testNetwork(done, params);
1244 });
1245 it('Allows selection of Energi', function(done) {
1246 var params = {
1247 selectText: "NRG - Energi",
1248 firstAddress: "EejRy4t4nidzhGGzkJUgFP3z4HYBjhTsRt",
1249 };
1250 testNetwork(done, params);
1251 });
1252 it('Allows selection of Ethereum Classic', function(done) {
1253 var params = {
1254 selectText: "ETC - Ethereum Classic",
1255 firstAddress: "0x3c05e5556693808367afB62eF3b63e35d6eD249A",
1256 };
1257 testNetwork(done, params);
1258 });
1259 it('Allows selection of Pirl', function(done) {
1260 var params = {
1261 selectText: "PIRL - Pirl",
1262 firstAddress: "0xe77FC0723dA122B5025CA79193c28563eB47e776",
1263 };
1264 testNetwork(done, params);
1265 });
1266 it('Allows selection of MIX', function(done) {
1267 var params = {
1268 selectText: "MIX - MIX",
1269 firstAddress: "0x98BC5e63aeb6A4e82d72850d20710F07E29A29F1",
1270 };
1271 testNetwork(done, params);
1272 });
1273 it('Allows selection of Musicoin', function(done) {
1274 var params = {
1275 selectText: "MUSIC - Musicoin",
1276 firstAddress: "0xDc060e4A0b0313ea83Cf6B3A39B9db2D29004897",
1277 };
1278 testNetwork(done, params);
1279 });
1280 it('Allows selection of Poa', function(done) {
1281 var params = {
1282 selectText: "POA - Poa",
1283 firstAddress: "0x53aF28d754e106210C3d0467Dd581eaf7e3C5e60",
1284 };
1285 testNetwork(done, params);
1286 });
1287 it('Allows selection of Expanse', function(done) {
1288 var params = {
1289 selectText: "EXP - Expanse",
1290 firstAddress: "0xf57FeAbf26582b6E3E666559d3B1Cc6fB2b2c5F6",
1291 };
1292 testNetwork(done, params);
1293 });
1294 it('Allows selection of Callisto', function(done) {
1295 var params = {
1296 selectText: "CLO - Callisto",
1297 firstAddress: "0x4f9364F7420B317266C51Dc8eB979717D4dE3f4E",
1298 };
1299 testNetwork(done, params);
1300 });
1301 it('Allows selection of HUSH', function(done) {
1302 var params = {
1303 selectText: "HUSH - Hush",
1304 firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA",
1305 };
1306 testNetwork(done, params);
1307 });
1308 it('Allows selection of ExchangeCoin', function(done) {
1309 var params = {
1310 selectText: "EXCC - ExchangeCoin",
1311 firstAddress: "22txYKpFN5fwGwdSs2UBf7ywewbLM92YqK7E",
1312 };
1313 testNetwork(done, params);
1314 });
1315 it('Allows selection of Artax', function(done) {
1316 var params = {
1317 selectText: "XAX - Artax",
1318 firstAddress: "AYxaQPY7XLidG31V7F3yNzwxPYpYzRqG4q",
1319 };
1320 testNetwork(done, params);
1321 });
1322 it('Allows selection of ANON', function(done) {
1323 var params = {
1324 selectText: "ANON - ANON",
1325 firstAddress: "AnU6pijpEeUZFWSTyM2qTqZQn996Zq1Xard",
1326 };
1327 testNetwork(done, params);
1328 });
1329
1330
1331 // BIP39 seed is set from phrase
1332 it('Sets the bip39 seed from the prhase', function(done) {
1333 driver.findElement(By.css('.phrase'))
1334 .sendKeys('abandon abandon ability');
1335 driver.sleep(generateDelay).then(function() {
1336 driver.findElement(By.css('.seed'))
1337 .getAttribute("value")
1338 .then(function(seed) {
1339 expect(seed).toBe("20da140d3dd1df8713cefcc4d54ce0e445b4151027a1ab567b832f6da5fcc5afc1c3a3f199ab78b8e0ab4652efd7f414ac2c9a3b81bceb879a70f377aa0a58f3");
1340 done();
1341 })
1342 });
1343 });
1344
1345 // BIP32 root key is set from phrase
1346 it('Sets the bip39 root key from the prhase', function(done) {
1347 driver.findElement(By.css('.phrase'))
1348 .sendKeys('abandon abandon ability');
1349 driver.sleep(generateDelay).then(function() {
1350 driver.findElement(By.css('.root-key'))
1351 .getAttribute("value")
1352 .then(function(seed) {
1353 expect(seed).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
1354 done();
1355 })
1356 });
1357 });
1358
1359 // Tabs show correct addresses when changed
1360 it('Shows the correct address when tab is changed', function(done) {
1361 driver.findElement(By.css('.phrase'))
1362 .sendKeys('abandon abandon ability');
1363 driver.sleep(generateDelay).then(function() {
1364 driver.findElement(By.css('#bip32-tab a'))
1365 .click();
1366 driver.sleep(generateDelay).then(function() {
1367 getFirstAddress(function(address) {
1368 expect(address).toBe("17uQ7s2izWPwBmEVFikTmZUjbBKWYdJchz");
1369 done();
1370 });
1371 });
1372 });
1373 });
1374
1375 // BIP44 derivation path is shown
1376 it('Shows the derivation path for bip44 tab', function(done) {
1377 driver.findElement(By.css('.phrase'))
1378 .sendKeys('abandon abandon ability');
1379 driver.sleep(generateDelay).then(function() {
1380 driver.findElement(By.css('#bip44 .path'))
1381 .getAttribute("value")
1382 .then(function(path) {
1383 expect(path).toBe("m/44'/0'/0'/0");
1384 done();
1385 })
1386 });
1387 });
1388
1389 // BIP44 extended private key is shown
1390 it('Shows the extended private key for bip44 tab', function(done) {
1391 driver.findElement(By.css('.phrase'))
1392 .sendKeys('abandon abandon ability');
1393 driver.sleep(generateDelay).then(function() {
1394 driver.findElement(By.css('.extended-priv-key'))
1395 .getAttribute("value")
1396 .then(function(path) {
1397 expect(path).toBe("xprvA2DxxvPZcyRvYgZMGS53nadR32mVDeCyqQYyFhrCVbJNjPoxMeVf7QT5g7mQASbTf9Kp4cryvcXnu2qurjWKcrdsr91jXymdCDNxKgLFKJG");
1398 done();
1399 })
1400 });
1401 });
1402
1403 // BIP44 extended public key is shown
1404 it('Shows the extended public key for bip44 tab', function(done) {
1405 driver.findElement(By.css('.phrase'))
1406 .sendKeys('abandon abandon ability');
1407 driver.sleep(generateDelay).then(function() {
1408 driver.findElement(By.css('.extended-pub-key'))
1409 .getAttribute("value")
1410 .then(function(path) {
1411 expect(path).toBe("xpub6FDKNRvTTLzDmAdpNTc49ia9b4byd6vqCdUa46Fp3vqMcC96uBoufCmZXQLiN5AK3iSCJMhf9gT2sxkpyaPepRuA7W3MujV5tGmF5VfbueM");
1412 done();
1413 })
1414 });
1415 });
1416
1417 // BIP44 account field changes address list
1418 it('Changes the address list if bip44 account is changed', function(done) {
1419 driver.findElement(By.css('#bip44 .account'))
1420 .sendKeys('1');
1421 driver.findElement(By.css('.phrase'))
1422 .sendKeys('abandon abandon ability');
1423 driver.sleep(generateDelay).then(function() {
1424 getFirstAddress(function(address) {
1425 expect(address).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H");
1426 done();
1427 });
1428 });
1429 });
1430
1431 // BIP44 change field changes address list
1432 it('Changes the address list if bip44 change is changed', function(done) {
1433 driver.findElement(By.css('#bip44 .change'))
1434 .sendKeys('1');
1435 driver.findElement(By.css('.phrase'))
1436 .sendKeys('abandon abandon ability');
1437 driver.sleep(generateDelay).then(function() {
1438 getFirstAddress(function(address) {
1439 expect(address).toBe("1KAGfWgqfVbSSXY56fNQ7YnhyKuoskHtYo");
1440 done();
1441 });
1442 });
1443 });
1444
1445 // BIP32 derivation path can be set
1446 it('Can use a custom bip32 derivation path', function(done) {
1447 driver.findElement(By.css('#bip32-tab a'))
1448 .click();
1449 driver.findElement(By.css('#bip32 .path'))
1450 .clear();
1451 driver.findElement(By.css('#bip32 .path'))
1452 .sendKeys('m/1');
1453 driver.findElement(By.css('.phrase'))
1454 .sendKeys('abandon abandon ability');
1455 driver.sleep(generateDelay).then(function() {
1456 getFirstAddress(function(address) {
1457 expect(address).toBe("16pYQQdLD1hH4hwTGLXBaZ9Teboi1AGL8L");
1458 done();
1459 });
1460 });
1461 });
1462
1463 // BIP32 can use hardened derivation paths
1464 it('Can use a hardened derivation paths', function(done) {
1465 driver.findElement(By.css('#bip32-tab a'))
1466 .click();
1467 driver.findElement(By.css('#bip32 .path'))
1468 .clear();
1469 driver.findElement(By.css('#bip32 .path'))
1470 .sendKeys("m/0'");
1471 driver.findElement(By.css('.phrase'))
1472 .sendKeys('abandon abandon ability');
1473 driver.sleep(generateDelay).then(function() {
1474 getFirstAddress(function(address) {
1475 expect(address).toBe("14aXZeprXAE3UUKQc4ihvwBvww2LuEoHo4");
1476 done();
1477 });
1478 });
1479 });
1480
1481 // BIP32 extended private key is shown
1482 it('Shows the BIP32 extended private key', function(done) {
1483 driver.findElement(By.css('#bip32-tab a'))
1484 .click();
1485 driver.findElement(By.css('.phrase'))
1486 .sendKeys('abandon abandon ability');
1487 driver.sleep(generateDelay).then(function() {
1488 driver.findElement(By.css('.extended-priv-key'))
1489 .getAttribute("value")
1490 .then(function(privKey) {
1491 expect(privKey).toBe("xprv9va99uTVE5aLiutUVLTyfxfe8v8aaXjSQ1XxZbK6SezYVuikA9MnjQVTA8rQHpNA5LKvyQBpLiHbBQiiccKiBDs7eRmBogsvq3THFeLHYbe");
1492 done();
1493 });
1494 });
1495 });
1496
1497 // BIP32 extended public key is shown
1498 it('Shows the BIP32 extended public key', function(done) {
1499 driver.findElement(By.css('#bip32-tab a'))
1500 .click();
1501 driver.findElement(By.css('.phrase'))
1502 .sendKeys('abandon abandon ability');
1503 driver.sleep(generateDelay).then(function() {
1504 driver.findElement(By.css('.extended-pub-key'))
1505 .getAttribute("value")
1506 .then(function(pubKey) {
1507 expect(pubKey).toBe("xpub69ZVZQzP4T8dwPxwbMzz36cNgwy4yzTHmETZMyihzzXXNi3thgg3HCow1RtY252wdw5rS8369xKnraN5Q93y3FkFfJp2XEHWUrkyXsjS93P");
1508 done();
1509 });
1510 });
1511 });
1512
1513 // Derivation path is shown in table
1514 it('Shows the derivation path in the table', function(done) {
1515 driver.findElement(By.css('.phrase'))
1516 .sendKeys('abandon abandon ability');
1517 driver.sleep(generateDelay).then(function() {
1518 getFirstPath(function(path) {
1519 expect(path).toBe("m/44'/0'/0'/0/0");
1520 done();
1521 });
1522 });
1523 });
1524
1525 // Derivation path for address can be hardened
1526 it('Can derive hardened addresses', function(done) {
1527 driver.findElement(By.css('#bip32-tab a'))
1528 .click();
1529 driver.executeScript(function() {
1530 $(".hardened-addresses").prop("checked", true);
1531 });
1532 driver.findElement(By.css('.phrase'))
1533 .sendKeys('abandon abandon ability');
1534 driver.sleep(generateDelay).then(function() {
1535 getFirstAddress(function(address) {
1536 expect(address).toBe("18exLzUv7kfpiXRzmCjFDoC9qwNLFyvwyd");
1537 done();
1538 });
1539 });
1540 });
1541
1542 // Derivation path visibility can be toggled
1543 it('Can toggle visibility of the derivation path column', function(done) {
1544 driver.findElement(By.css('.phrase'))
1545 .sendKeys('abandon abandon ability');
1546 driver.sleep(generateDelay).then(function() {
1547 driver.findElement(By.css('.index-toggle'))
1548 .click();
1549 testColumnValuesAreInvisible(done, "index");
1550 });
1551 });
1552
1553 // Address is shown
1554 it('Shows the address in the table', function(done) {
1555 driver.findElement(By.css('.phrase'))
1556 .sendKeys('abandon abandon ability');
1557 driver.sleep(generateDelay).then(function() {
1558 getFirstAddress(function(address) {
1559 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
1560 done();
1561 });
1562 });
1563 });
1564
1565 // Addresses are shown in order of derivation path
1566 it('Shows the address in order of derivation path', function(done) {
1567 driver.findElement(By.css('.phrase'))
1568 .sendKeys('abandon abandon ability');
1569 driver.sleep(generateDelay).then(function() {
1570 testRowsAreInCorrectOrder(done);
1571 });
1572 });
1573
1574 // Address visibility can be toggled
1575 it('Can toggle visibility of the address column', function(done) {
1576 driver.findElement(By.css('.phrase'))
1577 .sendKeys('abandon abandon ability');
1578 driver.sleep(generateDelay).then(function() {
1579 driver.findElement(By.css('.address-toggle'))
1580 .click();
1581 testColumnValuesAreInvisible(done, "address");
1582 });
1583 });
1584
1585 // Public key is shown in table
1586 it('Shows the public key in the table', function(done) {
1587 driver.findElement(By.css('.phrase'))
1588 .sendKeys('abandon abandon ability');
1589 driver.sleep(generateDelay).then(function() {
1590 driver.findElements(By.css('.pubkey'))
1591 .then(function(els) {
1592 els[0].getText()
1593 .then(function(pubkey) {
1594 expect(pubkey).toBe("033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3");
1595 done();
1596 });
1597 });
1598 });
1599 });
1600
1601 // Public key visibility can be toggled
1602 it('Can toggle visibility of the public key column', function(done) {
1603 driver.findElement(By.css('.phrase'))
1604 .sendKeys('abandon abandon ability');
1605 driver.sleep(generateDelay).then(function() {
1606 driver.findElement(By.css('.public-key-toggle'))
1607 .click();
1608 testColumnValuesAreInvisible(done, "pubkey");
1609 });
1610 });
1611
1612 // Private key is shown in table
1613 it('Shows the private key in the table', function(done) {
1614 driver.findElement(By.css('.phrase'))
1615 .sendKeys('abandon abandon ability');
1616 driver.sleep(generateDelay).then(function() {
1617 driver.findElements(By.css('.privkey'))
1618 .then(function(els) {
1619 els[0].getText()
1620 .then(function(pubkey) {
1621 expect(pubkey).toBe("L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE");
1622 done();
1623 });
1624 });
1625 });
1626 });
1627
1628 // Private key visibility can be toggled
1629 it('Can toggle visibility of the private key column', function(done) {
1630 driver.findElement(By.css('.phrase'))
1631 .sendKeys('abandon abandon ability');
1632 driver.sleep(generateDelay).then(function() {
1633 driver.findElement(By.css('.private-key-toggle'))
1634 .click();
1635 testColumnValuesAreInvisible(done, "privkey");
1636 });
1637 });
1638
1639 // More addresses can be generated
1640 it('Can generate more rows in the table', function(done) {
1641 driver.findElement(By.css('.phrase'))
1642 .sendKeys('abandon abandon ability');
1643 driver.sleep(generateDelay).then(function() {
1644 driver.findElement(By.css('.more'))
1645 .click();
1646 driver.sleep(generateDelay).then(function() {
1647 driver.findElements(By.css('.address'))
1648 .then(function(els) {
1649 expect(els.length).toBe(40);
1650 done();
1651 });
1652 });
1653 });
1654 });
1655
1656 // A custom number of additional addresses can be generated
1657 it('Can generate more rows in the table', function(done) {
1658 driver.findElement(By.css('.phrase'))
1659 .sendKeys('abandon abandon ability');
1660 driver.sleep(generateDelay).then(function() {
1661 driver.findElement(By.css('.rows-to-add'))
1662 .clear();
1663 driver.findElement(By.css('.rows-to-add'))
1664 .sendKeys('1');
1665 driver.findElement(By.css('.more'))
1666 .click();
1667 driver.sleep(generateDelay).then(function() {
1668 driver.findElements(By.css('.address'))
1669 .then(function(els) {
1670 expect(els.length).toBe(21);
1671 done();
1672 });
1673 });
1674 });
1675 });
1676
1677 // Additional addresses are shown in order of derivation path
1678 it('Shows additional addresses in order of derivation path', function(done) {
1679 driver.findElement(By.css('.phrase'))
1680 .sendKeys('abandon abandon ability');
1681 driver.sleep(generateDelay).then(function() {
1682 driver.findElement(By.css('.more'))
1683 .click();
1684 driver.sleep(generateDelay).then(function() {
1685 testRowsAreInCorrectOrder(done);
1686 });
1687 });
1688 });
1689
1690 // BIP32 root key can be set by the user
1691 it('Allows the user to set the BIP32 root key', function(done) {
1692 driver.findElement(By.css('.root-key'))
1693 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1694 driver.sleep(generateDelay).then(function() {
1695 getFirstAddress(function(address) {
1696 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
1697 done();
1698 });
1699 });
1700 });
1701
1702 // Setting BIP32 root key clears the existing phrase, passphrase and seed
1703 // TODO this doesn't work in selenium with chrome
1704 it('Confirms the existing phrase should be cleared', function(done) {
1705 if (browser == "chrome") {
1706 pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
1707 }
1708 driver.findElement(By.css('.phrase'))
1709 .sendKeys('A non-blank but invalid value');
1710 driver.findElement(By.css('.root-key'))
1711 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1712 driver.switchTo().alert().accept();
1713 driver.findElement(By.css('.phrase'))
1714 .getAttribute("value").then(function(value) {
1715 expect(value).toBe("");
1716 done();
1717 });
1718 });
1719
1720 // Clearing of phrase, passphrase and seed can be cancelled by user
1721 // TODO this doesn't work in selenium with chrome
1722 it('Allows the clearing of the phrase to be cancelled', function(done) {
1723 if (browser == "chrome") {
1724 pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
1725 }
1726 driver.findElement(By.css('.phrase'))
1727 .sendKeys('abandon abandon ability');
1728 driver.sleep(generateDelay).then(function() {
1729 driver.findElement(By.css('.root-key'))
1730 .clear();
1731 driver.findElement(By.css('.root-key'))
1732 .sendKeys('x');
1733 driver.switchTo().alert().dismiss();
1734 driver.findElement(By.css('.phrase'))
1735 .getAttribute("value").then(function(value) {
1736 expect(value).toBe("abandon abandon ability");
1737 done();
1738 });
1739 });
1740 });
1741
1742 // Custom BIP32 root key is used when changing the derivation path
1743 it('Can set derivation path for root key instead of phrase', function(done) {
1744 driver.findElement(By.css('#bip44 .account'))
1745 .sendKeys('1');
1746 driver.findElement(By.css('.root-key'))
1747 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1748 driver.sleep(generateDelay).then(function() {
1749 getFirstAddress(function(address) {
1750 expect(address).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H");
1751 done();
1752 });
1753 });
1754 });
1755
1756 // Incorrect mnemonic shows error
1757 it('Shows an error for incorrect mnemonic', function(done) {
1758 driver.findElement(By.css('.phrase'))
1759 .sendKeys('abandon abandon abandon');
1760 driver.sleep(feedbackDelay).then(function() {
1761 driver.findElement(By.css('.feedback'))
1762 .getText()
1763 .then(function(feedback) {
1764 expect(feedback).toBe("Invalid mnemonic");
1765 done();
1766 });
1767 });
1768 });
1769
1770 // Incorrect word shows suggested replacement
1771 it('Shows word suggestion for incorrect word', function(done) {
1772 driver.findElement(By.css('.phrase'))
1773 .sendKeys('abandon abandon abiliti');
1774 driver.sleep(feedbackDelay).then(function() {
1775 driver.findElement(By.css('.feedback'))
1776 .getText()
1777 .then(function(feedback) {
1778 var msg = "abiliti not in wordlist, did you mean ability?";
1779 expect(feedback).toBe(msg);
1780 done();
1781 });
1782 });
1783 });
1784
1785 // Github pull request 48
1786 // First four letters of word shows that word, not closest
1787 // since first four letters gives unique word in BIP39 wordlist
1788 // eg ille should show illegal, not idle
1789 it('Shows word suggestion based on first four chars', function(done) {
1790 driver.findElement(By.css('.phrase'))
1791 .sendKeys('ille');
1792 driver.sleep(feedbackDelay).then(function() {
1793 driver.findElement(By.css('.feedback'))
1794 .getText()
1795 .then(function(feedback) {
1796 var msg = "ille not in wordlist, did you mean illegal?";
1797 expect(feedback).toBe(msg);
1798 done();
1799 });
1800 });
1801 });
1802
1803 // Incorrect BIP32 root key shows error
1804 it('Shows error for incorrect root key', function(done) {
1805 driver.findElement(By.css('.root-key'))
1806 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpj');
1807 driver.sleep(feedbackDelay).then(function() {
1808 driver.findElement(By.css('.feedback'))
1809 .getText()
1810 .then(function(feedback) {
1811 var msg = "Invalid root key";
1812 expect(feedback).toBe(msg);
1813 done();
1814 });
1815 });
1816 });
1817
1818 // Derivation path not starting with m shows error
1819 it('Shows error for derivation path not starting with m', function(done) {
1820 driver.findElement(By.css('#bip32-tab a'))
1821 .click();
1822 driver.findElement(By.css('#bip32 .path'))
1823 .clear();
1824 driver.findElement(By.css('#bip32 .path'))
1825 .sendKeys('n/0');
1826 driver.findElement(By.css('.phrase'))
1827 .sendKeys('abandon abandon ability');
1828 driver.sleep(feedbackDelay).then(function() {
1829 driver.findElement(By.css('.feedback'))
1830 .getText()
1831 .then(function(feedback) {
1832 var msg = "First character must be 'm'";
1833 expect(feedback).toBe(msg);
1834 done();
1835 });
1836 });
1837 });
1838
1839 // Derivation path containing invalid characters shows useful error
1840 it('Shows error for derivation path not starting with m', function(done) {
1841 driver.findElement(By.css('#bip32-tab a'))
1842 .click();
1843 driver.findElement(By.css('#bip32 .path'))
1844 .clear();
1845 driver.findElement(By.css('#bip32 .path'))
1846 .sendKeys('m/1/0wrong1/1');
1847 driver.findElement(By.css('.phrase'))
1848 .sendKeys('abandon abandon ability');
1849 driver.sleep(feedbackDelay).then(function() {
1850 driver.findElement(By.css('.feedback'))
1851 .getText()
1852 .then(function(feedback) {
1853 var msg = "Invalid characters 0wrong1 found at depth 2";
1854 expect(feedback).toBe(msg);
1855 done();
1856 });
1857 });
1858 });
1859
1860 // Github Issue 11: Default word length is 15
1861 // https://github.com/iancoleman/bip39/issues/11
1862 it('Sets the default word length to 15', function(done) {
1863 driver.findElement(By.css('.strength'))
1864 .getAttribute("value")
1865 .then(function(strength) {
1866 expect(strength).toBe("15");
1867 done();
1868 });
1869 });
1870
1871 // Github Issue 12: Generate more rows with private keys hidden
1872 // https://github.com/iancoleman/bip39/issues/12
1873 it('Sets the correct hidden column state on new rows', function(done) {
1874 driver.findElement(By.css('.phrase'))
1875 .sendKeys("abandon abandon ability");
1876 driver.sleep(generateDelay).then(function() {
1877 driver.findElement(By.css('.private-key-toggle'))
1878 .click();
1879 driver.findElement(By.css('.more'))
1880 .click();
1881 driver.sleep(generateDelay).then(function() {
1882 driver.findElements(By.css('.privkey'))
1883 .then(function(els) {
1884 expect(els.length).toBe(40);
1885 });
1886 testColumnValuesAreInvisible(done, "privkey");
1887 });
1888 });
1889 });
1890
1891 // Github Issue 19: Mnemonic is not sensitive to whitespace
1892 // https://github.com/iancoleman/bip39/issues/19
1893 it('Ignores excess whitespace in the mnemonic', function(done) {
1894 var doublespace = " ";
1895 var mnemonic = "urge cat" + doublespace + "bid";
1896 driver.findElement(By.css('.phrase'))
1897 .sendKeys(mnemonic);
1898 driver.sleep(generateDelay).then(function() {
1899 driver.findElement(By.css('.root-key'))
1900 .getAttribute("value")
1901 .then(function(seed) {
1902 expect(seed).toBe("xprv9s21ZrQH143K3isaZsWbKVoTtbvd34Y1ZGRugGdMeBGbM3AgBVzTH159mj1cbbtYSJtQr65w6L5xy5L9SFC7c9VJZWHxgAzpj4mun5LhrbC");
1903 done();
1904 });
1905 });
1906 });
1907
1908 // Github Issue 23: Part 1: Use correct derivation path when changing tabs
1909 // https://github.com/iancoleman/bip39/issues/23
1910 it('Uses the correct derivation path when changing tabs', function(done) {
1911 // 1) and 2) set the phrase
1912 driver.findElement(By.css('.phrase'))
1913 .sendKeys("abandon abandon ability");
1914 driver.sleep(generateDelay).then(function() {
1915 // 3) select bip32 tab
1916 driver.findElement(By.css('#bip32-tab a'))
1917 .click();
1918 driver.sleep(generateDelay).then(function() {
1919 // 4) switch from bitcoin to litecoin
1920 selectNetwork("LTC - Litecoin");
1921 driver.sleep(generateDelay).then(function() {
1922 // 5) Check address is displayed correctly
1923 getFirstAddress(function(address) {
1924 expect(address).toBe("LS8MP5LZ5AdzSZveRrjm3aYVoPgnfFh5T5");
1925 // 5) Check derivation path is displayed correctly
1926 getFirstPath(function(path) {
1927 expect(path).toBe("m/0/0");
1928 done();
1929 });
1930 });
1931 });
1932 });
1933 });
1934 });
1935
1936 // Github Issue 23 Part 2: Coin selection in derivation path
1937 // https://github.com/iancoleman/bip39/issues/23#issuecomment-238011920
1938 it('Uses the correct derivation path when changing coins', function(done) {
1939 // set the phrase
1940 driver.findElement(By.css('.phrase'))
1941 .sendKeys("abandon abandon ability");
1942 driver.sleep(generateDelay).then(function() {
1943 // switch from bitcoin to clam
1944 selectNetwork("CLAM - Clams");
1945 driver.sleep(generateDelay).then(function() {
1946 // check derivation path is displayed correctly
1947 getFirstPath(function(path) {
1948 expect(path).toBe("m/44'/23'/0'/0/0");
1949 done();
1950 });
1951 });
1952 });
1953 });
1954
1955 // Github Issue 26: When using a Root key derrived altcoins are incorrect
1956 // https://github.com/iancoleman/bip39/issues/26
1957 it('Uses the correct derivation for altcoins with root keys', function(done) {
1958 // 1) 2) and 3) set the root key
1959 driver.findElement(By.css('.root-key'))
1960 .sendKeys("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
1961 driver.sleep(generateDelay).then(function() {
1962 // 4) switch from bitcoin to viacoin
1963 selectNetwork("VIA - Viacoin");
1964 driver.sleep(generateDelay).then(function() {
1965 // 5) ensure the derived address is correct
1966 getFirstAddress(function(address) {
1967 expect(address).toBe("Vq9Eq4N5SQnjqZvxtxzo7hZPW5XnyJsmXT");
1968 done();
1969 });
1970 });
1971 });
1972 });
1973
1974 // Selecting a language with no existing phrase should generate a phrase in
1975 // that language.
1976 it('Generate a random phrase when language is selected and no current phrase', function(done) {
1977 driver.findElement(By.css("a[href='#japanese']"))
1978 .click();
1979 driver.sleep(generateDelay).then(function() {
1980 driver.findElement(By.css(".phrase"))
1981 .getAttribute("value").then(function(phrase) {
1982 expect(phrase.search(/[a-z]/)).toBe(-1);
1983 expect(phrase.length).toBeGreaterThan(0);
1984 done();
1985 });
1986 });
1987 });
1988
1989 // Selecting a language with existing phrase should update the phrase to use
1990 // that language.
1991 it('Updates existing phrases when the language is changed', function(done) {
1992 driver.findElement(By.css(".phrase"))
1993 .sendKeys("abandon abandon ability");
1994 driver.sleep(generateDelay).then(function() {
1995 driver.findElement(By.css("a[href='#italian']"))
1996 .click();
1997 driver.sleep(generateDelay).then(function() {
1998 driver.findElement(By.css(".phrase"))
1999 .getAttribute("value").then(function(phrase) {
2000 // Check only the language changes, not the phrase
2001 expect(phrase).toBe("abaco abaco abbaglio");
2002 getFirstAddress(function(address) {
2003 // Check the address is correct
2004 expect(address).toBe("1Dz5TgDhdki9spa6xbPFbBqv5sjMrx3xgV");
2005 done();
2006 });
2007 });
2008 });
2009 });
2010 });
2011
2012 // Suggested replacement for erroneous word in non-English language
2013 it('Shows word suggestion for incorrect word in non-English language', function(done) {
2014 driver.findElement(By.css('.phrase'))
2015 .sendKeys('abaco abaco zbbaglio');
2016 driver.sleep(feedbackDelay).then(function() {
2017 driver.findElement(By.css('.feedback'))
2018 .getText()
2019 .then(function(feedback) {
2020 var msg = "zbbaglio not in wordlist, did you mean abbaglio?";
2021 expect(feedback).toBe(msg);
2022 done();
2023 });
2024 });
2025 });
2026
2027 // Japanese word does not break across lines.
2028 // Point 2 from
2029 // https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md#japanese
2030 it('Does not break Japanese words across lines', function(done) {
2031 driver.findElement(By.css('.phrase'))
2032 .getCssValue("word-break")
2033 .then(function(value) {
2034 expect(value).toBe("keep-all");
2035 done();
2036 });
2037 });
2038
2039 // Language can be specified at page load using hash value in url
2040 it('Can set the language from the url hash', function(done) {
2041 driver.get(url + "#japanese").then(function() {
2042 driver.findElement(By.css('.generate')).click();
2043 driver.sleep(generateDelay).then(function() {
2044 driver.findElement(By.css(".phrase"))
2045 .getAttribute("value").then(function(phrase) {
2046 expect(phrase.search(/[a-z]/)).toBe(-1);
2047 expect(phrase.length).toBeGreaterThan(0);
2048 done();
2049 });
2050 });
2051 });
2052 });
2053
2054 // Entropy can be entered by the user
2055 it('Allows entropy to be entered', function(done) {
2056 driver.findElement(By.css('.use-entropy'))
2057 .click();
2058 driver.findElement(By.css('.entropy'))
2059 .sendKeys('00000000 00000000 00000000 00000000');
2060 driver.sleep(generateDelay).then(function() {
2061 driver.findElement(By.css(".phrase"))
2062 .getAttribute("value").then(function(phrase) {
2063 expect(phrase).toBe("abandon abandon ability");
2064 getFirstAddress(function(address) {
2065 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2066 done();
2067 })
2068 });
2069 });
2070 });
2071
2072 // A warning about entropy is shown to the user, with additional information
2073 it('Shows a warning about using entropy', function(done) {
2074 driver.findElement(By.css('.use-entropy'))
2075 .click();
2076 driver.findElement(By.css('.entropy-container'))
2077 .getText()
2078 .then(function(containerText) {
2079 var warning = "mnemonic may be insecure";
2080 expect(containerText).toContain(warning);
2081 driver.findElement(By.css('#entropy-notes'))
2082 .findElement(By.xpath("parent::*"))
2083 .getText()
2084 .then(function(notesText) {
2085 var detail = "flipping a fair coin, rolling a fair dice, noise measurements etc";
2086 expect(notesText).toContain(detail);
2087 done();
2088 });
2089 });
2090 });
2091
2092 // The types of entropy available are described to the user
2093 it('Shows the types of entropy available', function(done) {
2094 driver.findElement(By.css('.entropy'))
2095 .getAttribute("placeholder")
2096 .then(function(placeholderText) {
2097 var options = [
2098 "binary",
2099 "base 6",
2100 "dice",
2101 "base 10",
2102 "hexadecimal",
2103 "cards",
2104 ];
2105 for (var i=0; i<options.length; i++) {
2106 var option = options[i];
2107 expect(placeholderText).toContain(option);
2108 }
2109 done();
2110 });
2111 });
2112
2113 // The actual entropy used is shown to the user
2114 it('Shows the actual entropy used', function(done) {
2115 driver.findElement(By.css('.use-entropy'))
2116 .click();
2117 driver.findElement(By.css('.entropy'))
2118 .sendKeys('Not A Very Good Entropy Source At All');
2119 driver.sleep(generateDelay).then(function() {
2120 driver.findElement(By.css('.entropy-container'))
2121 .getText()
2122 .then(function(text) {
2123 expect(text).toMatch(/Filtered Entropy\s+AedEceAA/);
2124 done();
2125 });
2126 });
2127 });
2128
2129 // Binary entropy can be entered
2130 it('Allows binary entropy to be entered', function(done) {
2131 testEntropyType(done, "01", "binary");
2132 });
2133
2134 // Base 6 entropy can be entered
2135 it('Allows base 6 entropy to be entered', function(done) {
2136 testEntropyType(done, "012345", "base 6");
2137 });
2138
2139 // Base 6 dice entropy can be entered
2140 it('Allows base 6 dice entropy to be entered', function(done) {
2141 testEntropyType(done, "123456", "base 6 (dice)");
2142 });
2143
2144 // Base 10 entropy can be entered
2145 it('Allows base 10 entropy to be entered', function(done) {
2146 testEntropyType(done, "789", "base 10");
2147 });
2148
2149 // Hexadecimal entropy can be entered
2150 it('Allows hexadecimal entropy to be entered', function(done) {
2151 testEntropyType(done, "abcdef", "hexadecimal");
2152 });
2153
2154 // Dice entropy value is shown as the converted base 6 value
2155 // ie 123456 is converted to 123450
2156 it('Shows dice entropy as base 6', function(done) {
2157 driver.findElement(By.css('.use-entropy'))
2158 .click();
2159 driver.findElement(By.css('.entropy'))
2160 .sendKeys("123456");
2161 driver.sleep(generateDelay).then(function() {
2162 driver.findElement(By.css('.entropy-container'))
2163 .getText()
2164 .then(function(text) {
2165 expect(text).toMatch(/Filtered Entropy\s+123450/);
2166 done();
2167 });
2168 });
2169 });
2170
2171 // The number of bits of entropy accumulated is shown
2172 it("Shows the number of bits of entropy for 20 bits of binary", function(done) {
2173 testEntropyBits(done, "0000 0000 0000 0000 0000", "20");
2174 });
2175 it("Shows the number of bits of entropy for 1 bit of binary", function(done) {
2176 testEntropyBits(done, "0", "1");
2177 });
2178 it("Shows the number of bits of entropy for 4 bits of binary", function(done) {
2179 testEntropyBits(done, "0000", "4");
2180 });
2181 it("Shows the number of bits of entropy for 1 character of base 6 (dice)", function(done) {
2182 // 6 in card is 0 in base 6, 0 in base 6 is 2.6 bits (rounded down to 2 bits)
2183 testEntropyBits(done, "6", "2");
2184 });
2185 it("Shows the number of bits of entropy for 1 character of base 10 with 3 bits", function(done) {
2186 // 7 in base 10 is 111 in base 2, no leading zeros
2187 testEntropyBits(done, "7", "3");
2188 });
2189 it("Shows the number of bits of entropy for 1 character of base 10 with 4 bis", function(done) {
2190 testEntropyBits(done, "8", "4");
2191 });
2192 it("Shows the number of bits of entropy for 1 character of hex", function(done) {
2193 testEntropyBits(done, "F", "4");
2194 });
2195 it("Shows the number of bits of entropy for 2 characters of base 10", function(done) {
2196 testEntropyBits(done, "29", "6");
2197 });
2198 it("Shows the number of bits of entropy for 2 characters of hex", function(done) {
2199 testEntropyBits(done, "0A", "8");
2200 });
2201 it("Shows the number of bits of entropy for 2 characters of hex with 3 leading zeros", function(done) {
2202 // hex is always multiple of 4 bits of entropy
2203 testEntropyBits(done, "1A", "8");
2204 });
2205 it("Shows the number of bits of entropy for 2 characters of hex with 2 leading zeros", function(done) {
2206 testEntropyBits(done, "2A", "8");
2207 });
2208 it("Shows the number of bits of entropy for 2 characters of hex with 1 leading zero", function(done) {
2209 testEntropyBits(done, "4A", "8");
2210 });
2211 it("Shows the number of bits of entropy for 2 characters of hex with no leading zeros", function(done) {
2212 testEntropyBits(done, "8A", "8");
2213 });
2214 it("Shows the number of bits of entropy for 2 characters of hex starting with F", function(done) {
2215 testEntropyBits(done, "FA", "8");
2216 });
2217 it("Shows the number of bits of entropy for 4 characters of hex with leading zeros", function(done) {
2218 testEntropyBits(done, "000A", "16");
2219 });
2220 it("Shows the number of bits of entropy for 4 characters of base 6", function(done) {
2221 testEntropyBits(done, "5555", "11");
2222 });
2223 it("Shows the number of bits of entropy for 4 characters of base 6 dice", function(done) {
2224 // uses dice, so entropy is actually 0000 in base 6, which is 4 lots of
2225 // 2.58 bits, which is 10.32 bits (rounded down to 10 bits)
2226 testEntropyBits(done, "6666", "10");
2227 });
2228 it("Shows the number of bits of entropy for 4 charactes of base 10", function(done) {
2229 // Uses base 10, which is 4 lots of 3.32 bits, which is 13.3 bits (rounded
2230 // down to 13)
2231 testEntropyBits(done, "2227", "13");
2232 });
2233 it("Shows the number of bits of entropy for 4 characters of hex with 2 leading zeros", function(done) {
2234 testEntropyBits(done, "222F", "16");
2235 });
2236 it("Shows the number of bits of entropy for 4 characters of hex starting with F", function(done) {
2237 testEntropyBits(done, "FFFF", "16");
2238 });
2239 it("Shows the number of bits of entropy for 10 characters of base 10", function(done) {
2240 // 10 events at 3.32 bits per event
2241 testEntropyBits(done, "0000101017", "33");
2242 });
2243 it("Shows the number of bits of entropy for a full deck of cards", function(done) {
2244 // cards are not replaced, so a full deck is not 52^52 entropy which is 296
2245 // bits, it's 52!, which is 225 bits
2246 testEntropyBits(done, "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", "225");
2247 });
2248
2249 it("Shows details about the entered entropy", function(done) {
2250 testEntropyFeedback(done,
2251 {
2252 entropy: "A",
2253 filtered: "A",
2254 type: "hexadecimal",
2255 events: "1",
2256 bits: "4",
2257 words: 0,
2258 strength: "less than a second",
2259 }
2260 );
2261 });
2262 it("Shows details about the entered entropy", function(done) {
2263 testEntropyFeedback(done,
2264 {
2265 entropy: "AAAAAAAA",
2266 filtered: "AAAAAAAA",
2267 type: "hexadecimal",
2268 events: "8",
2269 bits: "32",
2270 words: 3,
2271 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2272 }
2273 );
2274 });
2275 it("Shows details about the entered entropy", function(done) {
2276 testEntropyFeedback(done,
2277 {
2278 entropy: "AAAAAAAA B",
2279 filtered: "AAAAAAAAB",
2280 type: "hexadecimal",
2281 events: "9",
2282 bits: "36",
2283 words: 3,
2284 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2285 }
2286 );
2287 });
2288 it("Shows details about the entered entropy", function(done) {
2289 testEntropyFeedback(done,
2290 {
2291 entropy: "AAAAAAAA BBBBBBBB",
2292 filtered: "AAAAAAAABBBBBBBB",
2293 type: "hexadecimal",
2294 events: "16",
2295 bits: "64",
2296 words: 6,
2297 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2298 }
2299 );
2300 });
2301 it("Shows details about the entered entropy", function(done) {
2302 testEntropyFeedback(done,
2303 {
2304 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC",
2305 filtered: "AAAAAAAABBBBBBBBCCCCCCCC",
2306 type: "hexadecimal",
2307 events: "24",
2308 bits: "96",
2309 words: 9,
2310 strength: "less than a second",
2311 }
2312 );
2313 });
2314 it("Shows details about the entered entropy", function(done) {
2315 testEntropyFeedback(done,
2316 {
2317 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD",
2318 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD",
2319 type: "hexadecimal",
2320 events: "32",
2321 bits: "128",
2322 words: 12,
2323 strength: "2 minutes",
2324 }
2325 );
2326 });
2327 it("Shows details about the entered entropy", function(done) {
2328 testEntropyFeedback(done,
2329 {
2330 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA",
2331 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDA",
2332 type: "hexadecimal",
2333 events: "32",
2334 bits: "128",
2335 words: 12,
2336 strength: "2 days",
2337 }
2338 );
2339 });
2340 it("Shows details about the entered entropy", function(done) {
2341 testEntropyFeedback(done,
2342 {
2343 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE",
2344 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEE",
2345 type: "hexadecimal",
2346 events: "40",
2347 bits: "160",
2348 words: 15,
2349 strength: "3 years",
2350 }
2351 );
2352 });
2353 it("Shows details about the entered entropy", function(done) {
2354 testEntropyFeedback(done,
2355 {
2356 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE FFFFFFFF",
2357 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEEFFFFFFFF",
2358 type: "hexadecimal",
2359 events: "48",
2360 bits: "192",
2361 words: 18,
2362 strength: "centuries",
2363 }
2364 );
2365 });
2366 it("Shows details about the entered entropy", function(done) {
2367 testEntropyFeedback(done,
2368 {
2369 entropy: "7d",
2370 type: "card",
2371 events: "1",
2372 bits: "4",
2373 words: 0,
2374 strength: "less than a second",
2375 }
2376 );
2377 });
2378 it("Shows details about the entered entropy", function(done) {
2379 testEntropyFeedback(done,
2380 {
2381 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2382 type: "card (full deck)",
2383 events: "52",
2384 bits: "225",
2385 words: 21,
2386 strength: "centuries",
2387 }
2388 );
2389 });
2390 it("Shows details about the entered entropy", function(done) {
2391 testEntropyFeedback(done,
2392 {
2393 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks3d",
2394 type: "card (full deck, 1 duplicate: 3d)",
2395 events: "53",
2396 bits: "254",
2397 words: 21,
2398 strength: "centuries",
2399 }
2400 );
2401 });
2402 it("Shows details about the entered entropy", function(done) {
2403 testEntropyFeedback(done,
2404 {
2405 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d",
2406 type: "card (2 duplicates: 3d 4d, 1 missing: KS)",
2407 events: "53",
2408 bits: "254",
2409 words: 21,
2410 strength: "centuries",
2411 }
2412 );
2413 });
2414 it("Shows details about the entered entropy", function(done) {
2415 testEntropyFeedback(done,
2416 {
2417 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d5d6d",
2418 type: "card (4 duplicates: 3d 4d 5d..., 1 missing: KS)",
2419 events: "55",
2420 bits: "264",
2421 words: 24,
2422 strength: "centuries",
2423 }
2424 );
2425 });
2426 it("Shows details about the entered entropy", function(done) {
2427 testEntropyFeedback(done,
2428 // Next test was throwing uncaught error in zxcvbn
2429 // Also tests 451 bits, ie Math.log2(52!)*2 = 225.58 * 2
2430 {
2431 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsksac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2432 type: "card (full deck, 52 duplicates: ac 2c 3c...)",
2433 events: "104",
2434 bits: "499",
2435 words: 45,
2436 strength: "centuries",
2437 }
2438 );
2439 });
2440 it("Shows details about the entered entropy", function(done) {
2441 testEntropyFeedback(done,
2442 // Case insensitivity to duplicate cards
2443 {
2444 entropy: "asAS",
2445 type: "card (1 duplicate: AS)",
2446 events: "2",
2447 bits: "9",
2448 words: 0,
2449 strength: "less than a second",
2450 }
2451 );
2452 });
2453 it("Shows details about the entered entropy", function(done) {
2454 testEntropyFeedback(done,
2455 {
2456 entropy: "ASas",
2457 type: "card (1 duplicate: as)",
2458 events: "2",
2459 bits: "9",
2460 words: 0,
2461 strength: "less than a second",
2462 }
2463 );
2464 });
2465 it("Shows details about the entered entropy", function(done) {
2466 testEntropyFeedback(done,
2467 // Missing cards are detected
2468 {
2469 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2470 type: "card (1 missing: 9C)",
2471 events: "51",
2472 bits: "221",
2473 words: 18,
2474 strength: "centuries",
2475 }
2476 );
2477 });
2478 it("Shows details about the entered entropy", function(done) {
2479 testEntropyFeedback(done,
2480 {
2481 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2482 type: "card (2 missing: 9C 5D)",
2483 events: "50",
2484 bits: "216",
2485 words: 18,
2486 strength: "centuries",
2487 }
2488 );
2489 });
2490 it("Shows details about the entered entropy", function(done) {
2491 testEntropyFeedback(done,
2492 {
2493 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjd kdah2h3h 5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2494 type: "card (4 missing: 9C 5D QD...)",
2495 events: "48",
2496 bits: "208",
2497 words: 18,
2498 strength: "centuries",
2499 }
2500 );
2501 });
2502 it("Shows details about the entered entropy", function(done) {
2503 testEntropyFeedback(done,
2504 // More than six missing cards does not show message
2505 {
2506 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d 8d9d jd kdah2h3h 5h6h7h8h9hthjhqhkh 2s3s4s5s6s7s8s9stsjsqsks",
2507 type: "card",
2508 events: "45",
2509 bits: "195",
2510 words: 18,
2511 strength: "centuries",
2512 }
2513 );
2514 });
2515 it("Shows details about the entered entropy", function(done) {
2516 testEntropyFeedback(done,
2517 // Multiple decks of cards increases bits per event
2518 {
2519 entropy: "3d",
2520 events: "1",
2521 bits: "4",
2522 bitsPerEvent: "4.34",
2523 }
2524 );
2525 });
2526 it("Shows details about the entered entropy", function(done) {
2527 testEntropyFeedback(done,
2528 {
2529 entropy: "3d3d",
2530 events: "2",
2531 bits: "9",
2532 bitsPerEvent: "4.80",
2533 }
2534 );
2535 });
2536 it("Shows details about the entered entropy", function(done) {
2537 testEntropyFeedback(done,
2538 {
2539 entropy: "3d3d3d",
2540 events: "3",
2541 bits: "15",
2542 bitsPerEvent: "5.01",
2543 }
2544 );
2545 });
2546 it("Shows details about the entered entropy", function(done) {
2547 testEntropyFeedback(done,
2548 {
2549 entropy: "3d3d3d3d",
2550 events: "4",
2551 bits: "20",
2552 bitsPerEvent: "5.14",
2553 }
2554 );
2555 });
2556 it("Shows details about the entered entropy", function(done) {
2557 testEntropyFeedback(done,
2558 {
2559 entropy: "3d3d3d3d3d",
2560 events: "5",
2561 bits: "26",
2562 bitsPerEvent: "5.22",
2563 }
2564 );
2565 });
2566 it("Shows details about the entered entropy", function(done) {
2567 testEntropyFeedback(done,
2568 {
2569 entropy: "3d3d3d3d3d3d",
2570 events: "6",
2571 bits: "31",
2572 bitsPerEvent: "5.28",
2573 }
2574 );
2575 });
2576 it("Shows details about the entered entropy", function(done) {
2577 testEntropyFeedback(done,
2578 {
2579 entropy: "3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d",
2580 events: "33",
2581 bits: "184",
2582 bitsPerEvent: "5.59",
2583 strength: 'less than a second - Repeats like "abcabcabc" are only slightly harder to guess than "abc"',
2584 }
2585 );
2586 });
2587
2588 // Entropy is truncated from the left
2589 it('Truncates entropy from the left', function(done) {
2590 // Truncate from left means 0000 is removed from the start
2591 // which gives mnemonic 'avocado zoo zone'
2592 // not 1111 removed from the end
2593 // which gives the mnemonic 'abstract zoo zoo'
2594 var entropy = "00000000 00000000 00000000 00000000";
2595 entropy += "11111111 11111111 11111111 1111"; // Missing last byte
2596 driver.findElement(By.css('.use-entropy'))
2597 .click();
2598 driver.findElement(By.css('.entropy'))
2599 .sendKeys(entropy);
2600 driver.sleep(generateDelay).then(function() {
2601 driver.findElement(By.css(".phrase"))
2602 .getAttribute("value").then(function(phrase) {
2603 expect(phrase).toBe("avocado zoo zone");
2604 done();
2605 });
2606 });
2607 });
2608
2609 // Very large entropy results in very long mnemonics
2610 it('Converts very long entropy to very long mnemonics', function(done) {
2611 var entropy = "";
2612 for (var i=0; i<33; i++) {
2613 entropy += "AAAAAAAA"; // 3 words * 33 iterations = 99 words
2614 }
2615 driver.findElement(By.css('.use-entropy'))
2616 .click();
2617 driver.findElement(By.css('.entropy'))
2618 .sendKeys(entropy);
2619 driver.sleep(generateDelay).then(function() {
2620 driver.findElement(By.css(".phrase"))
2621 .getAttribute("value").then(function(phrase) {
2622 var wordCount = phrase.split(/\s+/g).length;
2623 expect(wordCount).toBe(99);
2624 done();
2625 });
2626 });
2627 });
2628
2629 // Is compatible with bip32jp entropy
2630 // https://bip32jp.github.io/english/index.html
2631 // NOTES:
2632 // Is incompatible with:
2633 // base 20
2634 it('Is compatible with bip32jp.github.io', function(done) {
2635 var entropy = "543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543";
2636 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";
2637 driver.findElement(By.css('.use-entropy'))
2638 .click();
2639 driver.findElement(By.css('.entropy'))
2640 .sendKeys(entropy);
2641 driver.sleep(generateDelay).then(function() {
2642 driver.findElement(By.css(".phrase"))
2643 .getAttribute("value").then(function(phrase) {
2644 expect(phrase).toBe(expectedPhrase);
2645 done();
2646 });
2647 });
2648 });
2649
2650 // Blank entropy does not generate mnemonic or addresses
2651 it('Does not generate mnemonic for blank entropy', function(done) {
2652 driver.findElement(By.css('.use-entropy'))
2653 .click();
2654 driver.findElement(By.css('.entropy'))
2655 .clear();
2656 // check there is no mnemonic
2657 driver.sleep(generateDelay).then(function() {
2658 driver.findElement(By.css(".phrase"))
2659 .getAttribute("value").then(function(phrase) {
2660 expect(phrase).toBe("");
2661 // check there is no mnemonic
2662 driver.findElements(By.css(".address"))
2663 .then(function(addresses) {
2664 expect(addresses.length).toBe(0);
2665 // Check the feedback says 'blank entropy'
2666 driver.findElement(By.css(".feedback"))
2667 .getText()
2668 .then(function(feedbackText) {
2669 expect(feedbackText).toBe("Blank entropy");
2670 done();
2671 });
2672 })
2673 });
2674 });
2675 });
2676
2677 // Mnemonic length can be selected even for weak entropy
2678 it('Allows selection of mnemonic length even for weak entropy', function(done) {
2679 driver.findElement(By.css('.use-entropy'))
2680 .click();
2681 driver.executeScript(function() {
2682 $(".mnemonic-length").val("18").trigger("change");
2683 });
2684 driver.findElement(By.css('.entropy'))
2685 .sendKeys("012345");
2686 driver.sleep(generateDelay).then(function() {
2687 driver.findElement(By.css(".phrase"))
2688 .getAttribute("value").then(function(phrase) {
2689 var wordCount = phrase.split(/\s+/g).length;
2690 expect(wordCount).toBe(18);
2691 done();
2692 });
2693 });
2694 });
2695
2696 // Github issue 33
2697 // https://github.com/iancoleman/bip39/issues/33
2698 // Final cards should contribute entropy
2699 it('Uses as much entropy as possible for the mnemonic', function(done) {
2700 driver.findElement(By.css('.use-entropy'))
2701 .click();
2702 driver.findElement(By.css('.entropy'))
2703 .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");
2704 driver.sleep(generateDelay).then(function() {
2705 // Get mnemonic
2706 driver.findElement(By.css(".phrase"))
2707 .getAttribute("value").then(function(originalPhrase) {
2708 // Set the last 12 cards to be AS
2709 driver.findElement(By.css('.entropy'))
2710 .clear();
2711 driver.findElement(By.css('.entropy'))
2712 .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");
2713 driver.sleep(generateDelay).then(function() {
2714 // Get new mnemonic
2715 driver.findElement(By.css(".phrase"))
2716 .getAttribute("value").then(function(newPhrase) {
2717 expect(originalPhrase).not.toEqual(newPhrase);
2718 done();
2719 });
2720 });
2721 });
2722 });
2723 });
2724
2725 // Github issue 35
2726 // https://github.com/iancoleman/bip39/issues/35
2727 // QR Code support
2728 // TODO this doesn't work in selenium with firefox
2729 // see https://stackoverflow.com/q/40360223
2730 it('Shows a qr code on hover for the phrase', function(done) {
2731 if (browser == "firefox") {
2732 pending("Selenium + Firefox bug for mouseMove, see https://stackoverflow.com/q/40360223");
2733 }
2734 // generate a random mnemonic
2735 var generateEl = driver.findElement(By.css('.generate'));
2736 generateEl.click();
2737 // toggle qr to show (hidden by default)
2738 var phraseEl = driver.findElement(By.css(".phrase"));
2739 phraseEl.click();
2740 var rootKeyEl = driver.findElement(By.css(".root-key"));
2741 driver.sleep(generateDelay).then(function() {
2742 // hover over the root key
2743 driver.actions().mouseMove(rootKeyEl).perform().then(function() {
2744 // check the qr code shows
2745 driver.executeScript(function() {
2746 return $(".qr-container").find("canvas").length > 0;
2747 })
2748 .then(function(qrShowing) {
2749 expect(qrShowing).toBe(true);
2750 // hover away from the phrase
2751 driver.actions().mouseMove(generateEl).perform().then(function() {;
2752 // check the qr code hides
2753 driver.executeScript(function() {
2754 return $(".qr-container").find("canvas").length == 0;
2755 })
2756 .then(function(qrHidden) {
2757 expect(qrHidden).toBe(true);
2758 done();
2759 });
2760 });
2761 });
2762 });
2763 });
2764 });
2765
2766 // BIP44 account extendend private key is shown
2767 // github issue 37 - compatibility with electrum
2768 it('Shows the bip44 account extended private key', function(done) {
2769 driver.findElement(By.css(".phrase"))
2770 .sendKeys("abandon abandon ability");
2771 driver.sleep(generateDelay).then(function() {
2772 driver.findElement(By.css("#bip44 .account-xprv"))
2773 .getAttribute("value")
2774 .then(function(xprv) {
2775 expect(xprv).toBe("xprv9yzrnt4zWVJUr1k2VxSPy9ettKz5PpeDMgaVG7UKedhqnw1tDkxP2UyYNhuNSumk2sLE5ctwKZs9vwjsq3e1vo9egCK6CzP87H2cVYXpfwQ");
2776 done();
2777 });
2778 });
2779 });
2780
2781 // BIP44 account extendend public key is shown
2782 // github issue 37 - compatibility with electrum
2783 it('Shows the bip44 account extended public key', function(done) {
2784 driver.findElement(By.css(".phrase"))
2785 .sendKeys("abandon abandon ability");
2786 driver.sleep(generateDelay).then(function() {
2787 driver.findElement(By.css("#bip44 .account-xpub"))
2788 .getAttribute("value")
2789 .then(function(xprv) {
2790 expect(xprv).toBe("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2791 done();
2792 });
2793 });
2794 });
2795
2796 // github issue 40
2797 // BIP32 root key can be set as an xpub
2798 it('Generates addresses from xpub as bip32 root key', function(done) {
2799 driver.findElement(By.css('#bip32-tab a'))
2800 .click();
2801 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2802 driver.findElement(By.css("#root-key"))
2803 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2804 driver.sleep(generateDelay).then(function() {
2805 // check the addresses are generated
2806 getFirstAddress(function(address) {
2807 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2808 // check the xprv key is not set
2809 driver.findElement(By.css(".extended-priv-key"))
2810 .getAttribute("value")
2811 .then(function(xprv) {
2812 expect(xprv).toBe("NA");
2813 // check the private key is not set
2814 driver.findElements(By.css(".privkey"))
2815 .then(function(els) {
2816 els[0]
2817 .getText()
2818 .then(function(privkey) {
2819 expect(xprv).toBe("NA");
2820 done();
2821 });
2822 });
2823 });
2824 });
2825 });
2826 });
2827
2828 // github issue 40
2829 // xpub for bip32 root key will not work with hardened derivation paths
2830 it('Shows error for hardened derivation paths with xpub root key', function(done) {
2831 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2832 driver.findElement(By.css("#root-key"))
2833 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2834 driver.sleep(feedbackDelay).then(function() {
2835 // Check feedback is correct
2836 driver.findElement(By.css('.feedback'))
2837 .getText()
2838 .then(function(feedback) {
2839 var msg = "Hardened derivation path is invalid with xpub key";
2840 expect(feedback).toBe(msg);
2841 // Check no addresses are shown
2842 driver.findElements(By.css('.addresses tr'))
2843 .then(function(rows) {
2844 expect(rows.length).toBe(0);
2845 done();
2846 });
2847 });
2848 });
2849 });
2850
2851 // github issue 39
2852 // no root key shows feedback
2853 it('Shows feedback for no root key', function(done) {
2854 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2855 driver.findElement(By.css('#bip32-tab a'))
2856 .click();
2857 driver.sleep(feedbackDelay).then(function() {
2858 // Check feedback is correct
2859 driver.findElement(By.css('.feedback'))
2860 .getText()
2861 .then(function(feedback) {
2862 expect(feedback).toBe("Invalid root key");
2863 done();
2864 });
2865 });
2866 });
2867
2868 // Github issue 44
2869 // display error switching tabs while addresses are generating
2870 it('Can change details while old addresses are still being generated', function(done) {
2871 // Set to generate 199 more addresses.
2872 // This will take a long time allowing a new set of addresses to be
2873 // generated midway through this lot.
2874 // The newly generated addresses should not include any from the old set.
2875 // Any more than 199 will show an alert which needs to be accepted.
2876 driver.findElement(By.css('.rows-to-add'))
2877 .clear();
2878 driver.findElement(By.css('.rows-to-add'))
2879 .sendKeys('199');
2880 // set the prhase
2881 driver.findElement(By.css('.phrase'))
2882 .sendKeys("abandon abandon ability");
2883 driver.sleep(generateDelay).then(function() {
2884 // change tabs which should cancel the previous generating
2885 driver.findElement(By.css('.rows-to-add'))
2886 .clear();
2887 driver.findElement(By.css('.rows-to-add'))
2888 .sendKeys('20');
2889 driver.findElement(By.css('#bip32-tab a'))
2890 .click()
2891 driver.sleep(generateDelay).then(function() {
2892 driver.findElements(By.css('.index'))
2893 .then(function(els) {
2894 // check the derivation paths have the right quantity
2895 expect(els.length).toBe(20);
2896 // check the derivation paths are in order
2897 testRowsAreInCorrectOrder(done);
2898 });
2899 });
2900 });
2901 }, generateDelay + 5000);
2902
2903 // Github issue 49
2904 // padding for binary should give length with multiple of 256
2905 // hashed entropy 1111 is length 252, so requires 4 leading zeros
2906 // prior to issue 49 it would only generate 2 leading zeros, ie missing 2
2907 it('Pads hashed entropy with leading zeros', function(done) {
2908 driver.findElement(By.css('.use-entropy'))
2909 .click();
2910 driver.executeScript(function() {
2911 $(".mnemonic-length").val("15").trigger("change");
2912 });
2913 driver.findElement(By.css('.entropy'))
2914 .sendKeys("1111");
2915 driver.sleep(generateDelay).then(function() {
2916 driver.findElement(By.css('.phrase'))
2917 .getAttribute("value")
2918 .then(function(phrase) {
2919 expect(phrase).toBe("avocado valid quantum cross link predict excuse edit street able flame large galaxy ginger nuclear");
2920 done();
2921 });
2922 });
2923 });
2924
2925 // Github pull request 55
2926 // https://github.com/iancoleman/bip39/pull/55
2927 // Client select
2928 it('Can set the derivation path on bip32 tab for bitcoincore', function(done) {
2929 testClientSelect(done, {
2930 selectValue: "0",
2931 bip32path: "m/0'/0'",
2932 useHardenedAddresses: "true",
2933 });
2934 });
2935 it('Can set the derivation path on bip32 tab for multibit', function(done) {
2936 testClientSelect(done, {
2937 selectValue: "2",
2938 bip32path: "m/0'/0",
2939 useHardenedAddresses: null,
2940 });
2941 });
2942 it('Can set the derivation path on bip32 tab for coinomi/ledger', function(done) {
2943 testClientSelect(done, {
2944 selectValue: "3",
2945 bip32path: "m/44'/0'/0'",
2946 useHardenedAddresses: null,
2947 });
2948 });
2949
2950 // github issue 58
2951 // https://github.com/iancoleman/bip39/issues/58
2952 // bip32 derivation is correct, does not drop leading zeros
2953 // see also
2954 // https://medium.com/@alexberegszaszi/why-do-my-bip32-wallets-disagree-6f3254cc5846
2955 it('Retains leading zeros for bip32 derivation', function(done) {
2956 driver.findElement(By.css(".phrase"))
2957 .sendKeys("fruit wave dwarf banana earth journey tattoo true farm silk olive fence");
2958 driver.findElement(By.css(".passphrase"))
2959 .sendKeys("banana");
2960 driver.sleep(generateDelay).then(function() {
2961 getFirstAddress(function(address) {
2962 // Note that bitcore generates an incorrect address
2963 // 13EuKhffWkBE2KUwcbkbELZb1MpzbimJ3Y
2964 // see the medium.com link above for more details
2965 expect(address).toBe("17rxURoF96VhmkcEGCj5LNQkmN9HVhWb7F");
2966 done();
2967 });
2968 });
2969 });
2970
2971 // github issue 60
2972 // Japanese mnemonics generate incorrect bip32 seed
2973 // BIP39 seed is set from phrase
2974 it('Generates correct seed for Japanese mnemonics', function(done) {
2975 driver.findElement(By.css(".phrase"))
2976 .sendKeys("あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あおぞら");
2977 driver.findElement(By.css(".passphrase"))
2978 .sendKeys("メートルガバヴァぱばぐゞちぢ十人十色");
2979 driver.sleep(generateDelay).then(function() {
2980 driver.findElement(By.css(".seed"))
2981 .getAttribute("value")
2982 .then(function(seed) {
2983 expect(seed).toBe("a262d6fb6122ecf45be09c50492b31f92e9beb7d9a845987a02cefda57a15f9c467a17872029a9e92299b5cbdf306e3a0ee620245cbd508959b6cb7ca637bd55");
2984 done();
2985 });
2986 });
2987 });
2988
2989 // BIP49 official test vectors
2990 // https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki#test-vectors
2991 it('Generates BIP49 addresses matching the official test vectors', function(done) {
2992 driver.findElement(By.css('#bip49-tab a'))
2993 .click();
2994 selectNetwork("BTC - Bitcoin Testnet");
2995 driver.findElement(By.css(".phrase"))
2996 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about");
2997 driver.sleep(generateDelay).then(function() {
2998 getFirstAddress(function(address) {
2999 expect(address).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2");
3000 done();
3001 });
3002 });
3003 });
3004
3005 // BIP49 derivation path is shown
3006 it('Shows the bip49 derivation path', function(done) {
3007 driver.findElement(By.css('#bip49-tab a'))
3008 .click();
3009 driver.findElement(By.css(".phrase"))
3010 .sendKeys("abandon abandon ability");
3011 driver.sleep(generateDelay).then(function() {
3012 driver.findElement(By.css('#bip49 .path'))
3013 .getAttribute("value")
3014 .then(function(path) {
3015 expect(path).toBe("m/49'/0'/0'/0");
3016 done();
3017 });
3018 });
3019 });
3020
3021 // BIP49 extended private key is shown
3022 it('Shows the bip49 extended private key', function(done) {
3023 driver.findElement(By.css('#bip49-tab a'))
3024 .click();
3025 driver.findElement(By.css(".phrase"))
3026 .sendKeys("abandon abandon ability");
3027 driver.sleep(generateDelay).then(function() {
3028 driver.findElement(By.css('.extended-priv-key'))
3029 .getAttribute("value")
3030 .then(function(xprv) {
3031 expect(xprv).toBe("yprvALYB4DYRG6CzzVgzQZwwqjAA2wjBGC3iEd7KYYScpoDdmf75qMRWZWxoFcRXBJjgEXdFqJ9vDRGRLJQsrL22Su5jMbNFeM9vetaGVqy9Qy2");
3032 done();
3033 });
3034 });
3035 });
3036
3037 // BIP49 extended public key is shown
3038 it('Shows the bip49 extended public key', function(done) {
3039 driver.findElement(By.css('#bip49-tab a'))
3040 .click();
3041 driver.findElement(By.css(".phrase"))
3042 .sendKeys("abandon abandon ability");
3043 driver.sleep(generateDelay).then(function() {
3044 driver.findElement(By.css('.extended-pub-key'))
3045 .getAttribute("value")
3046 .then(function(xprv) {
3047 expect(xprv).toBe("ypub6ZXXTj5K6TmJCymTWbUxCs6tayZffemZbr2vLvrEP8kceTSENtjm7KHH6thvAKxVar9fGe8rgsPEX369zURLZ68b4f7Vexz7RuXsjQ69YDt");
3048 done();
3049 });
3050 });
3051 });
3052
3053 // BIP49 account field changes address list
3054 it('Can set the bip49 account field', function(done) {
3055 driver.findElement(By.css('#bip49-tab a'))
3056 .click();
3057 driver.findElement(By.css('#bip49 .account'))
3058 .clear();
3059 driver.findElement(By.css('#bip49 .account'))
3060 .sendKeys("1");
3061 driver.findElement(By.css(".phrase"))
3062 .sendKeys("abandon abandon ability");
3063 driver.sleep(generateDelay).then(function() {
3064 getFirstAddress(function(address) {
3065 expect(address).toBe("381wg1GGN4rP88rNC9v7QWsiww63yLVPsn");
3066 done();
3067 });
3068 });
3069 });
3070
3071 // BIP49 change field changes address list
3072 it('Can set the bip49 change field', function(done) {
3073 driver.findElement(By.css('#bip49-tab a'))
3074 .click();
3075 driver.findElement(By.css('#bip49 .change'))
3076 .clear();
3077 driver.findElement(By.css('#bip49 .change'))
3078 .sendKeys("1");
3079 driver.findElement(By.css(".phrase"))
3080 .sendKeys("abandon abandon ability");
3081 driver.sleep(generateDelay).then(function() {
3082 getFirstAddress(function(address) {
3083 expect(address).toBe("3PEM7MiKed5konBoN66PQhK8r3hjGhy9dT");
3084 done();
3085 });
3086 });
3087 });
3088
3089 // BIP49 account extendend private key is shown
3090 it('Shows the bip49 account extended private key', function(done) {
3091 driver.findElement(By.css('#bip49-tab a'))
3092 .click();
3093 driver.findElement(By.css(".phrase"))
3094 .sendKeys("abandon abandon ability");
3095 driver.sleep(generateDelay).then(function() {
3096 driver.findElement(By.css('#bip49 .account-xprv'))
3097 .getAttribute("value")
3098 .then(function(xprv) {
3099 expect(xprv).toBe("yprvAHtB1M5Wp675aLzFy9TJYK2mSsLkg6mcBRh5DZTR7L4EnYSmYPaL63KFA4ycg1PngW5LfkmejxzosCs17TKZMpRFKc3z5SJar6QAKaFcaZL");
3100 done();
3101 });
3102 });
3103 });
3104
3105 // BIP49 account extendend public key is shown
3106 it('Shows the bip49 account extended public key', function(done) {
3107 driver.findElement(By.css('#bip49-tab a'))
3108 .click();
3109 driver.findElement(By.css(".phrase"))
3110 .sendKeys("abandon abandon ability");
3111 driver.sleep(generateDelay).then(function() {
3112 driver.findElement(By.css('#bip49 .account-xpub'))
3113 .getAttribute("value")
3114 .then(function(xprv) {
3115 expect(xprv).toBe("ypub6WsXQrcQeTfNnq4j5AzJuSyVzuBF5ZVTYecg1ws2ffbDfLmv5vtadqdj1NgR6C6gufMpMfJpHxvb6JEQKvETVNWCRanNedfJtnTchZiJtsL");
3116 done();
3117 });
3118 });
3119 });
3120
3121 // Test selecting coin where bip49 is unavailable (eg CLAM)
3122 it('Shows an error on bip49 tab for coins without bip49', function(done) {
3123 driver.findElement(By.css('#bip49-tab a'))
3124 .click();
3125 driver.findElement(By.css(".phrase"))
3126 .sendKeys("abandon abandon ability");
3127 driver.sleep(generateDelay).then(function() {
3128 selectNetwork("CLAM - Clams");
3129 // bip49 available is hidden
3130 driver.findElement(By.css('#bip49 .available'))
3131 .getAttribute("class")
3132 .then(function(classes) {
3133 expect(classes).toContain("hidden");
3134 // bip49 unavailable is shown
3135 driver.findElement(By.css('#bip49 .unavailable'))
3136 .getAttribute("class")
3137 .then(function(classes) {
3138 expect(classes).not.toContain("hidden");
3139 // check there are no addresses shown
3140 driver.findElements(By.css('.addresses tr'))
3141 .then(function(rows) {
3142 expect(rows.length).toBe(0);
3143 // check the derived private key is blank
3144 driver.findElement(By.css('.extended-priv-key'))
3145 .getAttribute("value")
3146 .then(function(xprv) {
3147 expect(xprv).toBe('');
3148 // check the derived public key is blank
3149 driver.findElement(By.css('.extended-pub-key'))
3150 .getAttribute("value")
3151 .then(function(xpub) {
3152 expect(xpub).toBe('');
3153 done();
3154 });
3155 });
3156 })
3157 });
3158 });
3159 });
3160 });
3161
3162 // github issue 43
3163 // Cleared mnemonic and root key still allows addresses to be generated
3164 // https://github.com/iancoleman/bip39/issues/43
3165 it('Clears old root keys from memory when mnemonic is cleared', function(done) {
3166 // set the phrase
3167 driver.findElement(By.css(".phrase"))
3168 .sendKeys("abandon abandon ability");
3169 driver.sleep(generateDelay).then(function() {
3170 // clear the mnemonic and root key
3171 // using selenium .clear() doesn't seem to trigger the 'input' event
3172 // so clear it using keys instead
3173 driver.findElement(By.css('.phrase'))
3174 .sendKeys(Key.CONTROL,"a");
3175 driver.findElement(By.css('.phrase'))
3176 .sendKeys(Key.DELETE);
3177 driver.findElement(By.css('.root-key'))
3178 .sendKeys(Key.CONTROL,"a");
3179 driver.findElement(By.css('.root-key'))
3180 .sendKeys(Key.DELETE);
3181 driver.sleep(generateDelay).then(function() {
3182 // try to generate more addresses
3183 driver.findElement(By.css('.more'))
3184 .click();
3185 driver.sleep(generateDelay).then(function() {
3186 driver.findElements(By.css(".addresses tr"))
3187 .then(function(els) {
3188 // check there are no addresses shown
3189 expect(els.length).toBe(0);
3190 done();
3191 });
3192 });
3193 });
3194 });
3195 });
3196
3197 // Github issue 95
3198 // error trying to generate addresses from xpub with hardened derivation
3199 it('Shows error for hardened addresses with xpub root key', function(done) {
3200 driver.findElement(By.css('#bip32-tab a'))
3201 .click()
3202 driver.executeScript(function() {
3203 $(".hardened-addresses").prop("checked", true);
3204 });
3205 // set xpub for account 0 of bip44 for 'abandon abandon ability'
3206 driver.findElement(By.css("#root-key"))
3207 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
3208 driver.sleep(feedbackDelay).then(function() {
3209 // Check feedback is correct
3210 driver.findElement(By.css('.feedback'))
3211 .getText()
3212 .then(function(feedback) {
3213 var msg = "Hardened derivation path is invalid with xpub key";
3214 expect(feedback).toBe(msg);
3215 done();
3216 });
3217 });
3218 });
3219
3220 // Litecoin uses ltub by default, and can optionally be set to xprv
3221 // github issue 96
3222 // https://github.com/iancoleman/bip39/issues/96
3223 // Issue with extended keys on Litecoin
3224 it('Uses ltub by default for litecoin, but can be set to xprv', function(done) {
3225 driver.findElement(By.css('.phrase'))
3226 .sendKeys("abandon abandon ability");
3227 selectNetwork("LTC - Litecoin");
3228 driver.sleep(generateDelay).then(function() {
3229 // check the extended key is generated correctly
3230 driver.findElement(By.css('.root-key'))
3231 .getAttribute("value")
3232 .then(function(rootKey) {
3233 expect(rootKey).toBe("Ltpv71G8qDifUiNesiPqf6h5V6eQ8ic77oxQiYtawiACjBEx3sTXNR2HGDGnHETYxESjqkMLFBkKhWVq67ey1B2MKQXannUqNy1RZVHbmrEjnEU");
3234 // set litecoin to use ltub
3235 driver.executeScript(function() {
3236 $(".litecoin-use-ltub").prop("checked", false);
3237 $(".litecoin-use-ltub").trigger("change");
3238 });
3239 driver.sleep(generateDelay).then(function() {
3240 driver.findElement(By.css('.root-key'))
3241 .getAttribute("value")
3242 .then(function(rootKey) {
3243 expect(rootKey).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
3244 done();
3245 });
3246 })
3247 });
3248 });
3249 });
3250
3251 // github issue 99
3252 // https://github.com/iancoleman/bip39/issues/99#issuecomment-327094159
3253 // "warn me emphatically when they have detected invalid input" to the entropy field
3254 // A warning is shown when entropy is filtered and discarded
3255 it('Warns when entropy is filtered and discarded', function(done) {
3256 driver.findElement(By.css('.use-entropy'))
3257 .click();
3258 // set entropy to have no filtered content
3259 driver.findElement(By.css('.entropy'))
3260 .sendKeys("00000000 00000000 00000000 00000000");
3261 driver.sleep(generateDelay).then(function() {
3262 // check the filter warning does not show
3263 driver.findElement(By.css('.entropy-container .filter-warning'))
3264 .getAttribute("class")
3265 .then(function(classes) {
3266 expect(classes).toContain("hidden");
3267 // set entropy to have some filtered content
3268 driver.findElement(By.css('.entropy'))
3269 .sendKeys("10000000 zxcvbn 00000000 00000000 00000000");
3270 driver.sleep(entropyFeedbackDelay).then(function() {
3271 // check the filter warning shows
3272 driver.findElement(By.css('.entropy-container .filter-warning'))
3273 .getAttribute("class")
3274 .then(function(classes) {
3275 expect(classes).not.toContain("hidden");
3276 done();
3277 });
3278 });
3279 });
3280 });
3281 });
3282
3283 // Bitcoin Cash address can be set to use cashaddr format
3284 it('Can use cashaddr format for bitcoin cash addresses', function(done) {
3285 driver.executeScript(function() {
3286 $(".use-bch-cashaddr-addresses").prop("checked", true);
3287 });
3288 driver.findElement(By.css('.phrase'))
3289 .sendKeys("abandon abandon ability");
3290 selectNetwork("BCH - Bitcoin Cash");
3291 driver.sleep(generateDelay).then(function() {
3292 getFirstAddress(function(address) {
3293 expect(address).toBe("bitcoincash:qzlquk7w4hkudxypl4fgv8x279r754dkvur7jpcsps");
3294 done();
3295 });
3296 });
3297 });
3298
3299 // Bitcoin Cash address can be set to use bitpay format
3300 it('Can use bitpay format for bitcoin cash addresses', function(done) {
3301 driver.executeScript(function() {
3302 $(".use-bch-bitpay-addresses").prop("checked", true);
3303 });
3304 driver.findElement(By.css('.phrase'))
3305 .sendKeys("abandon abandon ability");
3306 selectNetwork("BCH - Bitcoin Cash");
3307 driver.sleep(generateDelay).then(function() {
3308 getFirstAddress(function(address) {
3309 expect(address).toBe("CZnpA9HPmvhuhLLPWJP8rNDpLUYXy1LXFk");
3310 done();
3311 });
3312 });
3313 });
3314
3315 // Bitcoin Cash address can be set to use legacy format
3316 it('Can use legacy format for bitcoin cash addresses', function(done) {
3317 driver.executeScript(function() {
3318 $(".use-bch-legacy-addresses").prop("checked", true);
3319 });
3320 driver.findElement(By.css('.phrase'))
3321 .sendKeys("abandon abandon ability");
3322 selectNetwork("BCH - Bitcoin Cash");
3323 driver.sleep(generateDelay).then(function() {
3324 getFirstAddress(function(address) {
3325 expect(address).toBe("1JKvb6wKtsjNoCRxpZ4DGrbniML7z5U16A");
3326 done();
3327 });
3328 });
3329 });
3330
3331 // End of tests ported from old suit, so no more comments above each test now
3332
3333 it('Can generate more addresses from a custom index', function(done) {
3334 var expectedIndexes = [
3335 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,
3336 40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59
3337 ];
3338 driver.findElement(By.css('.phrase'))
3339 .sendKeys("abandon abandon ability");
3340 driver.sleep(generateDelay).then(function() {
3341 // Set start of next lot of rows to be from index 40
3342 // which means indexes 20-39 will not be in the table.
3343 driver.findElement(By.css('.more-rows-start-index'))
3344 .sendKeys("40");
3345 driver.findElement(By.css('.more'))
3346 .click();
3347 driver.sleep(generateDelay).then(function() {
3348 // Check actual indexes in the table match the expected pattern
3349 driver.findElements(By.css(".index"))
3350 .then(function(els) {
3351 expect(els.length).toBe(expectedIndexes.length);
3352 var testRowAtIndex = function(i) {
3353 if (i >= expectedIndexes.length) {
3354 done();
3355 }
3356 else {
3357 els[i].getText()
3358 .then(function(actualPath) {
3359 var noHardened = actualPath.replace(/'/g, "");
3360 var pathBits = noHardened.split("/")
3361 var lastBit = pathBits[pathBits.length-1];
3362 var actualIndex = parseInt(lastBit);
3363 var expectedIndex = expectedIndexes[i];
3364 expect(actualIndex).toBe(expectedIndex);
3365 testRowAtIndex(i+1);
3366 });
3367 }
3368 }
3369 testRowAtIndex(0);
3370 });
3371 });
3372 });
3373 });
3374
3375 it('Can generate BIP141 addresses with P2WPKH-in-P2SH semanitcs', function(done) {
3376 // Sourced from BIP49 official test specs
3377 driver.findElement(By.css('#bip141-tab a'))
3378 .click();
3379 driver.findElement(By.css('.bip141-path'))
3380 .clear();
3381 driver.findElement(By.css('.bip141-path'))
3382 .sendKeys("m/49'/1'/0'/0");
3383 selectNetwork("BTC - Bitcoin Testnet");
3384 driver.findElement(By.css(".phrase"))
3385 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about");
3386 driver.sleep(generateDelay).then(function() {
3387 getFirstAddress(function(address) {
3388 expect(address).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2");
3389 done();
3390 });
3391 });
3392 });
3393
3394 it('Can generate BIP141 addresses with P2WPKH semanitcs', function(done) {
3395 // This result tested against bitcoinjs-lib test spec for segwit address
3396 // using the first private key of this mnemonic and default path m/0
3397 // https://github.com/bitcoinjs/bitcoinjs-lib/blob/9c8503cab0c6c30a95127042703bc18e8d28c76d/test/integration/addresses.js#L50
3398 // so whilst not directly comparable, substituting the private key produces
3399 // identical results between this tool and the bitcoinjs-lib test.
3400 // Private key generated is:
3401 // L3L8Nu9whawPBNLGtFqDhKut9DKKfG3CQoysupT7BimqVCZsLFNP
3402 driver.findElement(By.css('#bip141-tab a'))
3403 .click();
3404 // Choose P2WPKH
3405 driver.executeScript(function() {
3406 $(".bip141-semantics option[selected]").removeAttr("selected");
3407 $(".bip141-semantics option").filter(function(i,e) {
3408 return $(e).html() == "P2WPKH";
3409 }).prop("selected", true);
3410 $(".bip141-semantics").trigger("change");
3411 });
3412 driver.findElement(By.css(".phrase"))
3413 .sendKeys("abandon abandon ability");
3414 driver.sleep(generateDelay).then(function() {
3415 getFirstAddress(function(address) {
3416 expect(address).toBe("bc1qfwu6a5a3evygrk8zvdxxvz4547lmpyx5vsfxe9");
3417 done();
3418 });
3419 });
3420 });
3421
3422 it('Shows the entropy used by the PRNG when clicking generate', function(done) {
3423 driver.findElement(By.css('.generate')).click();
3424 driver.sleep(generateDelay).then(function() {
3425 driver.findElement(By.css('.entropy'))
3426 .getAttribute("value")
3427 .then(function(entropy) {
3428 expect(entropy).not.toBe("");
3429 done();
3430 });
3431 });
3432 });
3433
3434 it('Shows the index of each word in the mnemonic', function(done) {
3435 driver.findElement(By.css('.phrase'))
3436 .sendKeys("abandon abandon ability");
3437 driver.sleep(generateDelay).then(function() {
3438 driver.findElement(By.css('.use-entropy'))
3439 .click();
3440 driver.findElement(By.css('.word-indexes'))
3441 .getText()
3442 .then(function(indexes) {
3443 expect(indexes).toBe("0, 0, 1");
3444 done();
3445 });
3446 });
3447 });
3448
3449 it('Shows the derivation path for bip84 tab', function(done) {
3450 driver.findElement(By.css('#bip84-tab a'))
3451 .click()
3452 driver.findElement(By.css('.phrase'))
3453 .sendKeys('abandon abandon ability');
3454 driver.sleep(generateDelay).then(function() {
3455 driver.findElement(By.css('#bip84 .path'))
3456 .getAttribute("value")
3457 .then(function(path) {
3458 expect(path).toBe("m/84'/0'/0'/0");
3459 done();
3460 })
3461 });
3462 });
3463
3464 it('Shows the extended private key for bip84 tab', function(done) {
3465 driver.findElement(By.css('#bip84-tab a'))
3466 .click()
3467 driver.findElement(By.css('.phrase'))
3468 .sendKeys('abandon abandon ability');
3469 driver.sleep(generateDelay).then(function() {
3470 driver.findElement(By.css('.extended-priv-key'))
3471 .getAttribute("value")
3472 .then(function(path) {
3473 expect(path).toBe("zprvAev3RKrZ3QVKiUFCfdeMRen1BPDJgdNt1XpxiDy8acSs4kkAGTCvq7HeRYRNNpo8EtEjCFQBWavJwtCUR29y4TUCH4X5RXMcyq48uN8y9BP");
3474 done();
3475 })
3476 });
3477 });
3478
3479 it('Shows the extended public key for bip84 tab', function(done) {
3480 driver.findElement(By.css('#bip84-tab a'))
3481 .click()
3482 driver.findElement(By.css('.phrase'))
3483 .sendKeys('abandon abandon ability');
3484 driver.sleep(generateDelay).then(function() {
3485 driver.findElement(By.css('.extended-pub-key'))
3486 .getAttribute("value")
3487 .then(function(path) {
3488 expect(path).toBe("zpub6suPpqPSsn3cvxKfmfBMnnijjR3o666jNkkZWcNk8wyqwZ5JozXBNuc8Gs7DB3uLwTDvGVTspVEAUQcEjKF3pZHgywVbubdTqbXTUg7usyx");
3489 done();
3490 })
3491 });
3492 });
3493
3494 it('Changes the address list if bip84 account is changed', function(done) {
3495 driver.findElement(By.css('#bip84-tab a'))
3496 .click()
3497 driver.findElement(By.css('#bip84 .account'))
3498 .sendKeys('1');
3499 driver.findElement(By.css('.phrase'))
3500 .sendKeys('abandon abandon ability');
3501 driver.sleep(generateDelay).then(function() {
3502 getFirstAddress(function(address) {
3503 expect(address).toBe("bc1qp7vv669t2fy965jdzvqwrraana89ctd5ewc662");
3504 done();
3505 });
3506 });
3507 });
3508
3509 it('Changes the address list if bip84 change is changed', function(done) {
3510 driver.findElement(By.css('#bip84-tab a'))
3511 .click()
3512 driver.findElement(By.css('#bip84 .change'))
3513 .sendKeys('1');
3514 driver.findElement(By.css('.phrase'))
3515 .sendKeys('abandon abandon ability');
3516 driver.sleep(generateDelay).then(function() {
3517 getFirstAddress(function(address) {
3518 expect(address).toBe("bc1qr39vj6rh06ff05m53uxq8uazehwhccswylhrs2");
3519 done();
3520 });
3521 });
3522 });
3523
3524 it('Passes the official BIP84 test spec for rootpriv', function(done) {
3525 driver.findElement(By.css('#bip84-tab a'))
3526 .click()
3527 driver.findElement(By.css('.phrase'))
3528 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3529 driver.sleep(generateDelay).then(function() {
3530 driver.findElement(By.css(".root-key"))
3531 .getAttribute("value")
3532 .then(function(rootKey) {
3533 expect(rootKey).toBe("zprvAWgYBBk7JR8Gjrh4UJQ2uJdG1r3WNRRfURiABBE3RvMXYSrRJL62XuezvGdPvG6GFBZduosCc1YP5wixPox7zhZLfiUm8aunE96BBa4Kei5");
3534 done();
3535 })
3536 });
3537 });
3538
3539 it('Passes the official BIP84 test spec for account 0 xprv', function(done) {
3540 driver.findElement(By.css('#bip84-tab a'))
3541 .click()
3542 driver.findElement(By.css('.phrase'))
3543 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3544 driver.sleep(generateDelay).then(function() {
3545 driver.findElement(By.css("#bip84 .account-xprv"))
3546 .getAttribute("value")
3547 .then(function(rootKey) {
3548 expect(rootKey).toBe("zprvAdG4iTXWBoARxkkzNpNh8r6Qag3irQB8PzEMkAFeTRXxHpbF9z4QgEvBRmfvqWvGp42t42nvgGpNgYSJA9iefm1yYNZKEm7z6qUWCroSQnE");
3549 done();
3550 })
3551 });
3552 });
3553
3554 it('Passes the official BIP84 test spec for account 0 xpub', function(done) {
3555 driver.findElement(By.css('#bip84-tab a'))
3556 .click()
3557 driver.findElement(By.css('.phrase'))
3558 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3559 driver.sleep(generateDelay).then(function() {
3560 driver.findElement(By.css("#bip84 .account-xpub"))
3561 .getAttribute("value")
3562 .then(function(rootKey) {
3563 expect(rootKey).toBe("zpub6rFR7y4Q2AijBEqTUquhVz398htDFrtymD9xYYfG1m4wAcvPhXNfE3EfH1r1ADqtfSdVCToUG868RvUUkgDKf31mGDtKsAYz2oz2AGutZYs");
3564 done();
3565 })
3566 });
3567 });
3568
3569 it('Passes the official BIP84 test spec for account 0 first address', function(done) {
3570 driver.findElement(By.css('#bip84-tab a'))
3571 .click()
3572 driver.findElement(By.css('.phrase'))
3573 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3574 driver.sleep(generateDelay).then(function() {
3575 getFirstAddress(function(address) {
3576 expect(address).toBe("bc1qcr8te4kr609gcawutmrza0j4xv80jy8z306fyu");
3577 done();
3578 });
3579 });
3580 });
3581
3582 it('Passes the official BIP84 test spec for account 0 first change address', function(done) {
3583 driver.findElement(By.css('#bip84-tab a'))
3584 .click()
3585 driver.findElement(By.css('.phrase'))
3586 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3587 driver.findElement(By.css('#bip84 .change'))
3588 .sendKeys('1');
3589 driver.sleep(generateDelay).then(function() {
3590 getFirstAddress(function(address) {
3591 expect(address).toBe("bc1q8c6fshw2dlwun7ekn9qwf37cu2rn755upcp6el");
3592 done();
3593 });
3594 });
3595 });
3596
3597 it('Can display the table as csv', function(done) {
3598 var headings = "path,address,public key,private key";
3599 var row1 = "m/44'/0'/0'/0/0,1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug,033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3,L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE";
3600 var row20 = "m/44'/0'/0'/0/19,1KhBy28XLAciXnnRvm71PvQJaETyrxGV55,02b4b3e396434d8cdd20c03ac4aaa07387784d5d867b75987f516f5705ee68cb3a,L4GrDrjReMsCAu5DkLXn79jSb95qR7Zfx7eshybCQZ1qL32MXJab";
3601 driver.findElement(By.css('.phrase'))
3602 .sendKeys('abandon abandon ability');
3603 driver.sleep(generateDelay).then(function() {
3604 driver.findElement(By.css('.csv'))
3605 .getAttribute("value")
3606 .then(function(csv) {
3607 expect(csv).toContain(headings);
3608 expect(csv).toContain(row1);
3609 expect(csv).toContain(row20);
3610 done();
3611 });
3612 });
3613 });
3614
3615 it('LeftPads ethereum keys that are less than 32 bytes', function(done) {
3616 // see https://github.com/iancoleman/bip39/issues/155
3617 selectNetwork("ETH - Ethereum");
3618 driver.findElement(By.css('#bip32-tab a'))
3619 .click()
3620 driver.findElement(By.css('#bip32-path'))
3621 .clear();
3622 driver.findElement(By.css('#bip32-path'))
3623 .sendKeys("m/44'/60'/0'");
3624 driver.findElement(By.css('.phrase'))
3625 .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');
3626 driver.sleep(generateDelay).then(function() {
3627 getFirstAddress(function(address) {
3628 expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118");
3629 done();
3630 });
3631 });
3632 });
3633
3634 it('Can encrypt private keys using BIP38', function(done) {
3635 // see https://github.com/iancoleman/bip39/issues/140
3636 driver.executeScript(function() {
3637 $(".use-bip38").prop("checked", true);
3638 });
3639 driver.findElement(By.css('.bip38-password'))
3640 .sendKeys('bip38password');
3641 driver.findElement(By.css('.rows-to-add'))
3642 .clear();
3643 driver.findElement(By.css('.rows-to-add'))
3644 .sendKeys('1');
3645 driver.findElement(By.css('.phrase'))
3646 .sendKeys('abandon abandon ability');
3647 driver.sleep(bip38delay).then(function() {
3648 // address
3649 getFirstRowValue(function(address) {
3650 expect(address).toBe("1NCvSdumA3ngMM9c4aqU56AM6rqXddfuXB");
3651 // pubkey
3652 getFirstRowValue(function(pubkey) {
3653 expect(pubkey).toBe("043f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3884a74447ea901729b1e73a999b7520e7cb55b4120e6432c64153ccab8a848e1");
3654 // privkey
3655 getFirstRowValue(function(privkey) {
3656 expect(privkey).toBe("6PRNRiFnj1RoR3sXhymdCvoZCgnUHQpfupNdKkFbWJkwWQEKesWt1EDMDM");
3657 done();
3658 }, ".privkey");
3659 }, ".pubkey");
3660 }, ".address");
3661 });
3662 }, bip38delay + 5000);
3663
3664 it('Shows the checksum for the entropy', function(done) {
3665 driver.findElement(By.css('.use-entropy'))
3666 .click();
3667 driver.findElement(By.css('.entropy'))
3668 .sendKeys("00000000000000000000000000000000");
3669 driver.sleep(generateDelay).then(function() {
3670 driver.findElement(By.css('.checksum'))
3671 .getText()
3672 .then(function(text) {
3673 expect(text).toBe("1");
3674 done();
3675 });
3676 });
3677 });
3678
3679 it('Shows the checksum for the entropy with the correct groupings', function(done) {
3680 driver.findElement(By.css('.use-entropy'))
3681 .click();
3682 // create a checksum of 20 bits, which spans multiple words
3683 driver.findElement(By.css('.entropy'))
3684 .sendKeys("F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000");
3685 driver.sleep(generateDelay).then(function() {
3686 driver.findElement(By.css('.checksum'))
3687 .getText()
3688 .then(function(text) {
3689 // first group is 9 bits, second group is 11
3690 expect(text).toBe("011010111 01110000110");
3691 done();
3692 });
3693 });
3694 });
3695
3696 it('Uses vprv for bitcoin testnet p2wpkh', function(done) {
3697 selectNetwork("BTC - Bitcoin Testnet");
3698 driver.findElement(By.css('#bip84-tab a'))
3699 .click()
3700 driver.findElement(By.css('.phrase'))
3701 .sendKeys('abandon abandon ability');
3702 driver.sleep(generateDelay).then(function() {
3703 driver.findElement(By.css('.root-key'))
3704 .getAttribute("value")
3705 .then(function(path) {
3706 expect(path).toBe("vprv9DMUxX4ShgxML9N2YV5CvWEebWrM9aJ5ULpbRRyzyWu6vs4BzTvbfFFrH41N5hVi7MYSfiugd765L3JmAfDM5po36Y8ouCKRDeYQwByCmS7");
3707 done();
3708 })
3709 });
3710 });
3711
3712 it('Shows a warning if generating weak mnemonics', function(done) {
3713 driver.executeScript(function() {
3714 $(".strength option[selected]").removeAttr("selected");
3715 $(".strength option[value=6]").prop("selected", true);
3716 $(".strength").trigger("change");
3717 });
3718 driver.findElement(By.css(".generate-container .warning"))
3719 .getAttribute("class")
3720 .then(function(classes) {
3721 expect(classes).not.toContain("hidden");
3722 done();
3723 });
3724 });
3725
3726 it('Does not show a warning if generating strong mnemonics', function(done) {
3727 driver.executeScript(function() {
3728 $(".strength option[selected]").removeAttr("selected");
3729 $(".strength option[value=12]").prop("selected", true);
3730 });
3731 driver.findElement(By.css(".generate-container .warning"))
3732 .getAttribute("class")
3733 .then(function(classes) {
3734 expect(classes).toContain("hidden");
3735 done();
3736 });
3737 });
3738
3739 it('Shows a warning if overriding weak entropy with longer mnemonics', function(done) {
3740 driver.findElement(By.css('.use-entropy'))
3741 .click();
3742 driver.findElement(By.css('.entropy'))
3743 .sendKeys("0123456789abcdef"); // 6 words
3744 driver.executeScript(function() {
3745 $(".mnemonic-length").val("12").trigger("change");
3746 });
3747 driver.findElement(By.css(".weak-entropy-override-warning"))
3748 .getAttribute("class")
3749 .then(function(classes) {
3750 expect(classes).not.toContain("hidden");
3751 done();
3752 });
3753 });
3754
3755 it('Does not show a warning if entropy is stronger than mnemonic length', function(done) {
3756 driver.findElement(By.css('.use-entropy'))
3757 .click();
3758 driver.findElement(By.css('.entropy'))
3759 .sendKeys("0123456789abcdef0123456789abcdef0123456789abcdef"); // 18 words
3760 driver.executeScript(function() {
3761 $(".mnemonic-length").val("12").trigger("change");
3762 });
3763 driver.findElement(By.css(".weak-entropy-override-warning"))
3764 .getAttribute("class")
3765 .then(function(classes) {
3766 expect(classes).toContain("hidden");
3767 done();
3768 });
3769 });
3770
3771 it('Shows litecoin BIP49 addresses', function(done) {
3772 driver.findElement(By.css('.phrase'))
3773 .sendKeys('abandon abandon ability');
3774 selectNetwork("LTC - Litecoin");
3775 driver.findElement(By.css('#bip49-tab a'))
3776 .click()
3777 // bip49 addresses are shown
3778 driver.sleep(generateDelay).then(function() {
3779 driver.findElement(By.css('#bip49 .available'))
3780 .getAttribute("class")
3781 .then(function(classes) {
3782 expect(classes).not.toContain("hidden");
3783 // check first address
3784 getFirstAddress(function(address) {
3785 expect(address).toBe("MFwLPhsXoBuSLL8cLmW9uK6tChkzduV8qN");
3786 done();
3787 });
3788 });
3789 });
3790 });
3791
3792 it('Can use root keys to generate segwit table rows', function(done) {
3793 // segwit uses ypub / zpub instead of xpub but the root key should still
3794 // be valid regardless of the encoding used to import that key.
3795 // Maybe this breaks the reason for the different extended key prefixes, but
3796 // since the parsed root key is used behind the scenes anyhow this should be
3797 // allowed.
3798 driver.findElement(By.css('#root-key'))
3799 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
3800 driver.findElement(By.css('#bip49-tab a'))
3801 .click()
3802 // bip49 addresses are shown
3803 driver.sleep(generateDelay).then(function() {
3804 getFirstAddress(function(address) {
3805 expect(address).toBe("3QG2Y9AA4xZ846gKHZqNf7mvVKbLqMKxr2");
3806 done();
3807 });
3808 });
3809 });
3810
3811 });