]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blob - tests/spec/tests.js
Merge pull request #281 from Fair-Exchange/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: "BHbWitXCNgTf1BhsRDNMP186EeibuzmrBi",
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: "MDfAj9CzkC1HpcUiVGnHp8yKTa7WXgu8AY",
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 Ravencoin', function(done) {
1072 var params = {
1073 selectText: "RVN - Ravencoin",
1074 firstAddress: "RBuDoVNnzvFsEcX8XKPm8ic4mgiCzjUCNk",
1075 };
1076 testNetwork(done, params);
1077 });
1078 it('Allows selection of Reddcoin', function(done) {
1079 var params = {
1080 selectText: "RDD - Reddcoin",
1081 firstAddress: "RtgRvXMBng1y51ftteveFqwNfyRG18HpxQ",
1082 };
1083 testNetwork(done, params);
1084 });
1085 it('Allows selection of RevolutionVR', function(done) {
1086 var params = {
1087 selectText: "RVR - RevolutionVR",
1088 firstAddress: "VXeeoP2jkzZnMFxtc66ZBZK1NHN5QJnnjL",
1089 };
1090 testNetwork(done, params);
1091 });
1092 it('Allows selection of Rubycoin', function(done) {
1093 var params = {
1094 selectText: "RBY - Rubycoin",
1095 firstAddress: "RV76JDtjTs11JdMDRToYn6CHecMRPLnKS6",
1096 };
1097 testNetwork(done, params);
1098 });
1099 it('Allows selection of Salus', function(done) {
1100 var params = {
1101 selectText: "SLS - Salus",
1102 firstAddress: "SNzPi1CafHFm3WWjRo43aMgiaEEj3ogjww",
1103 };
1104 testNetwork(done, params);
1105 });
1106 it('Allows selection of Smileycoin', function(done) {
1107 var params = {
1108 selectText: "SMLY - Smileycoin",
1109 firstAddress: "BEZVnEBCAyFByrgKpwAgYgtvP4rKAd9Sj2",
1110 };
1111 testNetwork(done, params);
1112 });
1113 it('Allows selection of Solarcoin', function(done) {
1114 var params = {
1115 selectText: "SLR - Solarcoin",
1116 firstAddress: "8LZ13HbnjtaMJWSvvVFNTLf71zFfDrhwLu",
1117 };
1118 testNetwork(done, params);
1119 });
1120 it('Allows selection of stash', function(done) {
1121 var params = {
1122 selectText: "STASH - Stash",
1123 firstAddress: "XxwAsWB7REDKmAvHA85SbEZQQtpxeUDxS3",
1124 };
1125 testNetwork(done, params);
1126 });
1127 it('Allows selection of stash testnet', function(done) {
1128 var params = {
1129 selectText: "STASH - Stash Testnet",
1130 firstAddress: "yWQCTSkUst7ddYuebKsqa1kSoXEjpCkGKR",
1131 };
1132 testNetwork(done, params);
1133 });
1134 it('Allows selection of Stratis', function(done) {
1135 var params = {
1136 selectText: "STRAT - Stratis",
1137 firstAddress: "ScfJnq3QDhKgDMEds6sqUE1ot6ShfhmXXq",
1138 };
1139 testNetwork(done, params);
1140 });
1141 it('Allows selection of Stratis Test', function(done) {
1142 var params = {
1143 selectText: "TSTRAT - Stratis Testnet",
1144 firstAddress: "TRLWm3dye4FRrDWouwYUSUZP96xb76mBE3",
1145 };
1146 testNetwork(done, params);
1147 });
1148 it('Allows selection of Syscoin', function(done) {
1149 var params = {
1150 selectText: "SYS - Syscoin",
1151 firstAddress: "SZwJi42Pst3VAMomyK5DG4157WM5ofRmSj",
1152 };
1153 testNetwork(done, params);
1154 });
1155 it('Allows selection of Toa', function(done) {
1156 var params = {
1157 selectText: "TOA - Toa",
1158 firstAddress: "TSe1QAnUwQzUfbBusDzRJ9URttrRGKoNKF",
1159 };
1160 testNetwork(done, params);
1161 });
1162 it('Allows selection of Ultimatesecurecash', function(done) {
1163 var params = {
1164 selectText: "USC - Ultimatesecurecash",
1165 firstAddress: "UPyLAZU2Che5fiy7Ed8xVJFmXAUhitA4ug",
1166 };
1167 testNetwork(done, params);
1168 });
1169 it('Allows selection of Unobtanium', function(done) {
1170 var params = {
1171 selectText: "UNO - Unobtanium",
1172 firstAddress: "uUBMPVMXrR6qhqornJqKTWgr8L69vihSL9",
1173 };
1174 testNetwork(done, params);
1175 });
1176 it('Allows selection of Vcash', function(done) {
1177 var params = {
1178 selectText: "XVC - Vcash",
1179 firstAddress: "VuL53MSY6KjvAjKSeRkh3NDnKykacDVeps",
1180 };
1181 testNetwork(done, params);
1182 });
1183 it('Allows selection of Verge', function(done) {
1184 var params = {
1185 selectText: "XVG - Verge",
1186 firstAddress: "DCrVuGkMjLJpTGgwAgv9AcMdeb1nkWbjZA",
1187 };
1188 testNetwork(done, params);
1189 });
1190 it('Allows selection of Vertcoin', function(done) {
1191 var params = {
1192 selectText: "VTC - Vertcoin",
1193 firstAddress: "Vf6koGuiWdXQfx8tNqxoNeEDxh4xh5cxsG",
1194 };
1195 testNetwork(done, params);
1196 });
1197 it('Allows selection of Vivo', function(done) {
1198 var params = {
1199 selectText: "VIVO - Vivo",
1200 firstAddress: "VFmBwuXXGhJe7MarQG2GfzHMFebRHgfSpB",
1201 };
1202 testNetwork(done, params);
1203 });
1204 it('Allows selection of Vpncoin', function(done) {
1205 var params = {
1206 selectText: "VASH - Vpncoin",
1207 firstAddress: "VoEmH1qXC4TsSgBAStR21QYetwnFqbqCx9",
1208 };
1209 testNetwork(done, params);
1210 });
1211 it('Allows selection of Whitecoin', function(done) {
1212 var params = {
1213 selectText: "XWC - Whitecoin",
1214 firstAddress: "WcSwCAUqrSgeSYbsaS3SSWWhsx8KRYTFDR",
1215 };
1216 testNetwork(done, params);
1217 });
1218 it('Allows selection of Wincoin', function(done) {
1219 var params = {
1220 selectText: "WC - Wincoin",
1221 firstAddress: "WaDVCESMGgyKgNESdn3u43NnwmGSkZED3Z",
1222 };
1223 testNetwork(done, params);
1224 });
1225 it('Allows selection of Zcoin', function(done) {
1226 var params = {
1227 selectText: "XZC - Zcoin",
1228 firstAddress: "a6VcMdP4XgAA9Tr7xNszmPG5FZpfRf17Cq",
1229 };
1230 testNetwork(done, params);
1231 });
1232 it('Allows selection of Zcash', function(done) {
1233 var params = {
1234 selectText: "ZEC - Zcash",
1235 firstAddress: "t1Sz8AneMcVuzUg3tPJ8et5AS5LFJ7K2EF9",
1236 };
1237 testNetwork(done, params);
1238 });
1239 it('Allows selection of Zclassic', function(done) {
1240 var params = {
1241 selectText: "ZCL - Zclassic",
1242 firstAddress: "t1TBMxTvVJRybUbMLGWq8H4A8F4VUL7czEc",
1243 };
1244 testNetwork(done, params);
1245 });
1246 it('Allows selection of Zencash', function(done) {
1247 var params = {
1248 selectText: "ZEN - Zencash",
1249 firstAddress: "znWh9XASyW2dZq5tck84wFjiwuqVysi7q3p",
1250 };
1251 testNetwork(done, params);
1252 });
1253 it('Allows selection of Energi', function(done) {
1254 var params = {
1255 selectText: "NRG - Energi",
1256 firstAddress: "EejRy4t4nidzhGGzkJUgFP3z4HYBjhTsRt",
1257 };
1258 testNetwork(done, params);
1259 });
1260 it('Allows selection of Ethereum Classic', function(done) {
1261 var params = {
1262 selectText: "ETC - Ethereum Classic",
1263 firstAddress: "0x3c05e5556693808367afB62eF3b63e35d6eD249A",
1264 };
1265 testNetwork(done, params);
1266 });
1267 it('Allows selection of Pirl', function(done) {
1268 var params = {
1269 selectText: "PIRL - Pirl",
1270 firstAddress: "0xe77FC0723dA122B5025CA79193c28563eB47e776",
1271 };
1272 testNetwork(done, params);
1273 });
1274 it('Allows selection of MIX', function(done) {
1275 var params = {
1276 selectText: "MIX - MIX",
1277 firstAddress: "0x98BC5e63aeb6A4e82d72850d20710F07E29A29F1",
1278 };
1279 testNetwork(done, params);
1280 });
1281 it('Allows selection of Musicoin', function(done) {
1282 var params = {
1283 selectText: "MUSIC - Musicoin",
1284 firstAddress: "0xDc060e4A0b0313ea83Cf6B3A39B9db2D29004897",
1285 };
1286 testNetwork(done, params);
1287 });
1288 it('Allows selection of Poa', function(done) {
1289 var params = {
1290 selectText: "POA - Poa",
1291 firstAddress: "0x53aF28d754e106210C3d0467Dd581eaf7e3C5e60",
1292 };
1293 testNetwork(done, params);
1294 });
1295 it('Allows selection of Expanse', function(done) {
1296 var params = {
1297 selectText: "EXP - Expanse",
1298 firstAddress: "0xf57FeAbf26582b6E3E666559d3B1Cc6fB2b2c5F6",
1299 };
1300 testNetwork(done, params);
1301 });
1302 it('Allows selection of Callisto', function(done) {
1303 var params = {
1304 selectText: "CLO - Callisto",
1305 firstAddress: "0x4f9364F7420B317266C51Dc8eB979717D4dE3f4E",
1306 };
1307 testNetwork(done, params);
1308 });
1309 it('Allows selection of HUSH', function(done) {
1310 var params = {
1311 selectText: "HUSH - Hush",
1312 firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA",
1313 };
1314 testNetwork(done, params);
1315 });
1316 it('Allows selection of ExchangeCoin', function(done) {
1317 var params = {
1318 selectText: "EXCC - ExchangeCoin",
1319 firstAddress: "22txYKpFN5fwGwdSs2UBf7ywewbLM92YqK7E",
1320 };
1321 testNetwork(done, params);
1322 });
1323 it('Allows selection of Artax', function(done) {
1324 var params = {
1325 selectText: "XAX - Artax",
1326 firstAddress: "AYxaQPY7XLidG31V7F3yNzwxPYpYzRqG4q",
1327 };
1328 testNetwork(done, params);
1329 });
1330 it('Allows selection of BitcoinGreen', function(done) {
1331 var params = {
1332 selectText: "BITG - Bitcoin Green",
1333 firstAddress: "GeNGm9SkEfwbsws3UrrUSE2sJeyWYjzraY",
1334 };
1335 testNetwork(done, params);
1336 });
1337 it('Allows selection of ANON', function(done) {
1338 var params = {
1339 selectText: "ANON - ANON",
1340 firstAddress: "AnU6pijpEeUZFWSTyM2qTqZQn996Zq1Xard",
1341 };
1342 testNetwork(done, params);
1343 });
1344 it('Allows selection of ProjectCoin', function(done) {
1345 var params = {
1346 selectText: "PRJ - ProjectCoin",
1347 firstAddress: "PXZG97saRseSCftfe1mcFmfAA7pf6qBbaz",
1348 };
1349 testNetwork(done, params);
1350 });
1351 it('Allows selection of Phore', function(done) {
1352 var params = {
1353 selectText: "PHR - Phore",
1354 firstAddress: "PJThxpoXAG6hqrmdeQQbVDX4TJtFTMMymC",
1355 };
1356 testNetwork(done, params);
1357 });
1358 it('Allows selection of Safecoin', function(done) {
1359 var params = {
1360 selectText: "SAFE - Safecoin",
1361 firstAddress: "RmV56kPW7jeCmDA8sukHwbR7RZSbg9NFNF",
1362 };
1363 testNetwork(done, params);
1364 });
1365 it('Allows selection of Blocknode', function(done) {
1366 var params = {
1367 selectText: "BND - Blocknode",
1368 firstAddress: "BG8xZSAur2jYLG9VXt8dYfkKxxeR7w9bSe",
1369 };
1370 testNetwork(done, params);
1371 });
1372 it('Allows selection of Blocknode Testnet', function(done) {
1373 var params = {
1374 selectText: "tBND - Blocknode Testnet",
1375 firstAddress: "bSptsFyDktFSKpWveRywJsDoJA2TC6qfHv",
1376 };
1377 testNetwork(done, params);
1378 });
1379
1380 // BIP39 seed is set from phrase
1381 it('Sets the bip39 seed from the prhase', function(done) {
1382 driver.findElement(By.css('.phrase'))
1383 .sendKeys('abandon abandon ability');
1384 driver.sleep(generateDelay).then(function() {
1385 driver.findElement(By.css('.seed'))
1386 .getAttribute("value")
1387 .then(function(seed) {
1388 expect(seed).toBe("20da140d3dd1df8713cefcc4d54ce0e445b4151027a1ab567b832f6da5fcc5afc1c3a3f199ab78b8e0ab4652efd7f414ac2c9a3b81bceb879a70f377aa0a58f3");
1389 done();
1390 })
1391 });
1392 });
1393
1394 // BIP32 root key is set from phrase
1395 it('Sets the bip39 root key from the prhase', function(done) {
1396 driver.findElement(By.css('.phrase'))
1397 .sendKeys('abandon abandon ability');
1398 driver.sleep(generateDelay).then(function() {
1399 driver.findElement(By.css('.root-key'))
1400 .getAttribute("value")
1401 .then(function(seed) {
1402 expect(seed).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
1403 done();
1404 })
1405 });
1406 });
1407
1408 // Tabs show correct addresses when changed
1409 it('Shows the correct address when tab is changed', function(done) {
1410 driver.findElement(By.css('.phrase'))
1411 .sendKeys('abandon abandon ability');
1412 driver.sleep(generateDelay).then(function() {
1413 driver.findElement(By.css('#bip32-tab a'))
1414 .click();
1415 driver.sleep(generateDelay).then(function() {
1416 getFirstAddress(function(address) {
1417 expect(address).toBe("17uQ7s2izWPwBmEVFikTmZUjbBKWYdJchz");
1418 done();
1419 });
1420 });
1421 });
1422 });
1423
1424 // BIP44 derivation path is shown
1425 it('Shows the derivation path for bip44 tab', function(done) {
1426 driver.findElement(By.css('.phrase'))
1427 .sendKeys('abandon abandon ability');
1428 driver.sleep(generateDelay).then(function() {
1429 driver.findElement(By.css('#bip44 .path'))
1430 .getAttribute("value")
1431 .then(function(path) {
1432 expect(path).toBe("m/44'/0'/0'/0");
1433 done();
1434 })
1435 });
1436 });
1437
1438 // BIP44 extended private key is shown
1439 it('Shows the extended private key for bip44 tab', function(done) {
1440 driver.findElement(By.css('.phrase'))
1441 .sendKeys('abandon abandon ability');
1442 driver.sleep(generateDelay).then(function() {
1443 driver.findElement(By.css('.extended-priv-key'))
1444 .getAttribute("value")
1445 .then(function(path) {
1446 expect(path).toBe("xprvA2DxxvPZcyRvYgZMGS53nadR32mVDeCyqQYyFhrCVbJNjPoxMeVf7QT5g7mQASbTf9Kp4cryvcXnu2qurjWKcrdsr91jXymdCDNxKgLFKJG");
1447 done();
1448 })
1449 });
1450 });
1451
1452 // BIP44 extended public key is shown
1453 it('Shows the extended public key for bip44 tab', function(done) {
1454 driver.findElement(By.css('.phrase'))
1455 .sendKeys('abandon abandon ability');
1456 driver.sleep(generateDelay).then(function() {
1457 driver.findElement(By.css('.extended-pub-key'))
1458 .getAttribute("value")
1459 .then(function(path) {
1460 expect(path).toBe("xpub6FDKNRvTTLzDmAdpNTc49ia9b4byd6vqCdUa46Fp3vqMcC96uBoufCmZXQLiN5AK3iSCJMhf9gT2sxkpyaPepRuA7W3MujV5tGmF5VfbueM");
1461 done();
1462 })
1463 });
1464 });
1465
1466 // BIP44 account field changes address list
1467 it('Changes the address list if bip44 account is changed', function(done) {
1468 driver.findElement(By.css('#bip44 .account'))
1469 .sendKeys('1');
1470 driver.findElement(By.css('.phrase'))
1471 .sendKeys('abandon abandon ability');
1472 driver.sleep(generateDelay).then(function() {
1473 getFirstAddress(function(address) {
1474 expect(address).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H");
1475 done();
1476 });
1477 });
1478 });
1479
1480 // BIP44 change field changes address list
1481 it('Changes the address list if bip44 change is changed', function(done) {
1482 driver.findElement(By.css('#bip44 .change'))
1483 .sendKeys('1');
1484 driver.findElement(By.css('.phrase'))
1485 .sendKeys('abandon abandon ability');
1486 driver.sleep(generateDelay).then(function() {
1487 getFirstAddress(function(address) {
1488 expect(address).toBe("1KAGfWgqfVbSSXY56fNQ7YnhyKuoskHtYo");
1489 done();
1490 });
1491 });
1492 });
1493
1494 // BIP32 derivation path can be set
1495 it('Can use a custom bip32 derivation path', function(done) {
1496 driver.findElement(By.css('#bip32-tab a'))
1497 .click();
1498 driver.findElement(By.css('#bip32 .path'))
1499 .clear();
1500 driver.findElement(By.css('#bip32 .path'))
1501 .sendKeys('m/1');
1502 driver.findElement(By.css('.phrase'))
1503 .sendKeys('abandon abandon ability');
1504 driver.sleep(generateDelay).then(function() {
1505 getFirstAddress(function(address) {
1506 expect(address).toBe("16pYQQdLD1hH4hwTGLXBaZ9Teboi1AGL8L");
1507 done();
1508 });
1509 });
1510 });
1511
1512 // BIP32 can use hardened derivation paths
1513 it('Can use a hardened derivation paths', function(done) {
1514 driver.findElement(By.css('#bip32-tab a'))
1515 .click();
1516 driver.findElement(By.css('#bip32 .path'))
1517 .clear();
1518 driver.findElement(By.css('#bip32 .path'))
1519 .sendKeys("m/0'");
1520 driver.findElement(By.css('.phrase'))
1521 .sendKeys('abandon abandon ability');
1522 driver.sleep(generateDelay).then(function() {
1523 getFirstAddress(function(address) {
1524 expect(address).toBe("14aXZeprXAE3UUKQc4ihvwBvww2LuEoHo4");
1525 done();
1526 });
1527 });
1528 });
1529
1530 // BIP32 extended private key is shown
1531 it('Shows the BIP32 extended private key', function(done) {
1532 driver.findElement(By.css('#bip32-tab a'))
1533 .click();
1534 driver.findElement(By.css('.phrase'))
1535 .sendKeys('abandon abandon ability');
1536 driver.sleep(generateDelay).then(function() {
1537 driver.findElement(By.css('.extended-priv-key'))
1538 .getAttribute("value")
1539 .then(function(privKey) {
1540 expect(privKey).toBe("xprv9va99uTVE5aLiutUVLTyfxfe8v8aaXjSQ1XxZbK6SezYVuikA9MnjQVTA8rQHpNA5LKvyQBpLiHbBQiiccKiBDs7eRmBogsvq3THFeLHYbe");
1541 done();
1542 });
1543 });
1544 });
1545
1546 // BIP32 extended public key is shown
1547 it('Shows the BIP32 extended public key', function(done) {
1548 driver.findElement(By.css('#bip32-tab a'))
1549 .click();
1550 driver.findElement(By.css('.phrase'))
1551 .sendKeys('abandon abandon ability');
1552 driver.sleep(generateDelay).then(function() {
1553 driver.findElement(By.css('.extended-pub-key'))
1554 .getAttribute("value")
1555 .then(function(pubKey) {
1556 expect(pubKey).toBe("xpub69ZVZQzP4T8dwPxwbMzz36cNgwy4yzTHmETZMyihzzXXNi3thgg3HCow1RtY252wdw5rS8369xKnraN5Q93y3FkFfJp2XEHWUrkyXsjS93P");
1557 done();
1558 });
1559 });
1560 });
1561
1562 // Derivation path is shown in table
1563 it('Shows the derivation path in the table', function(done) {
1564 driver.findElement(By.css('.phrase'))
1565 .sendKeys('abandon abandon ability');
1566 driver.sleep(generateDelay).then(function() {
1567 getFirstPath(function(path) {
1568 expect(path).toBe("m/44'/0'/0'/0/0");
1569 done();
1570 });
1571 });
1572 });
1573
1574 // Derivation path for address can be hardened
1575 it('Can derive hardened addresses', function(done) {
1576 driver.findElement(By.css('#bip32-tab a'))
1577 .click();
1578 driver.executeScript(function() {
1579 $(".hardened-addresses").prop("checked", true);
1580 });
1581 driver.findElement(By.css('.phrase'))
1582 .sendKeys('abandon abandon ability');
1583 driver.sleep(generateDelay).then(function() {
1584 getFirstAddress(function(address) {
1585 expect(address).toBe("18exLzUv7kfpiXRzmCjFDoC9qwNLFyvwyd");
1586 done();
1587 });
1588 });
1589 });
1590
1591 // Derivation path visibility can be toggled
1592 it('Can toggle visibility of the derivation path column', function(done) {
1593 driver.findElement(By.css('.phrase'))
1594 .sendKeys('abandon abandon ability');
1595 driver.sleep(generateDelay).then(function() {
1596 driver.findElement(By.css('.index-toggle'))
1597 .click();
1598 testColumnValuesAreInvisible(done, "index");
1599 });
1600 });
1601
1602 // Address is shown
1603 it('Shows the address in the table', function(done) {
1604 driver.findElement(By.css('.phrase'))
1605 .sendKeys('abandon abandon ability');
1606 driver.sleep(generateDelay).then(function() {
1607 getFirstAddress(function(address) {
1608 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
1609 done();
1610 });
1611 });
1612 });
1613
1614 // Addresses are shown in order of derivation path
1615 it('Shows the address in order of derivation path', function(done) {
1616 driver.findElement(By.css('.phrase'))
1617 .sendKeys('abandon abandon ability');
1618 driver.sleep(generateDelay).then(function() {
1619 testRowsAreInCorrectOrder(done);
1620 });
1621 });
1622
1623 // Address visibility can be toggled
1624 it('Can toggle visibility of the address column', function(done) {
1625 driver.findElement(By.css('.phrase'))
1626 .sendKeys('abandon abandon ability');
1627 driver.sleep(generateDelay).then(function() {
1628 driver.findElement(By.css('.address-toggle'))
1629 .click();
1630 testColumnValuesAreInvisible(done, "address");
1631 });
1632 });
1633
1634 // Public key is shown in table
1635 it('Shows the public key in the table', function(done) {
1636 driver.findElement(By.css('.phrase'))
1637 .sendKeys('abandon abandon ability');
1638 driver.sleep(generateDelay).then(function() {
1639 driver.findElements(By.css('.pubkey'))
1640 .then(function(els) {
1641 els[0].getText()
1642 .then(function(pubkey) {
1643 expect(pubkey).toBe("033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3");
1644 done();
1645 });
1646 });
1647 });
1648 });
1649
1650 // Public key visibility can be toggled
1651 it('Can toggle visibility of the public key column', function(done) {
1652 driver.findElement(By.css('.phrase'))
1653 .sendKeys('abandon abandon ability');
1654 driver.sleep(generateDelay).then(function() {
1655 driver.findElement(By.css('.public-key-toggle'))
1656 .click();
1657 testColumnValuesAreInvisible(done, "pubkey");
1658 });
1659 });
1660
1661 // Private key is shown in table
1662 it('Shows the private key in the table', function(done) {
1663 driver.findElement(By.css('.phrase'))
1664 .sendKeys('abandon abandon ability');
1665 driver.sleep(generateDelay).then(function() {
1666 driver.findElements(By.css('.privkey'))
1667 .then(function(els) {
1668 els[0].getText()
1669 .then(function(pubkey) {
1670 expect(pubkey).toBe("L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE");
1671 done();
1672 });
1673 });
1674 });
1675 });
1676
1677 // Private key visibility can be toggled
1678 it('Can toggle visibility of the private key column', function(done) {
1679 driver.findElement(By.css('.phrase'))
1680 .sendKeys('abandon abandon ability');
1681 driver.sleep(generateDelay).then(function() {
1682 driver.findElement(By.css('.private-key-toggle'))
1683 .click();
1684 testColumnValuesAreInvisible(done, "privkey");
1685 });
1686 });
1687
1688 // More addresses can be generated
1689 it('Can generate more rows in the table', function(done) {
1690 driver.findElement(By.css('.phrase'))
1691 .sendKeys('abandon abandon ability');
1692 driver.sleep(generateDelay).then(function() {
1693 driver.findElement(By.css('.more'))
1694 .click();
1695 driver.sleep(generateDelay).then(function() {
1696 driver.findElements(By.css('.address'))
1697 .then(function(els) {
1698 expect(els.length).toBe(40);
1699 done();
1700 });
1701 });
1702 });
1703 });
1704
1705 // A custom number of additional addresses can be generated
1706 it('Can generate more rows in the table', function(done) {
1707 driver.findElement(By.css('.phrase'))
1708 .sendKeys('abandon abandon ability');
1709 driver.sleep(generateDelay).then(function() {
1710 driver.findElement(By.css('.rows-to-add'))
1711 .clear();
1712 driver.findElement(By.css('.rows-to-add'))
1713 .sendKeys('1');
1714 driver.findElement(By.css('.more'))
1715 .click();
1716 driver.sleep(generateDelay).then(function() {
1717 driver.findElements(By.css('.address'))
1718 .then(function(els) {
1719 expect(els.length).toBe(21);
1720 done();
1721 });
1722 });
1723 });
1724 });
1725
1726 // Additional addresses are shown in order of derivation path
1727 it('Shows additional addresses in order of derivation path', function(done) {
1728 driver.findElement(By.css('.phrase'))
1729 .sendKeys('abandon abandon ability');
1730 driver.sleep(generateDelay).then(function() {
1731 driver.findElement(By.css('.more'))
1732 .click();
1733 driver.sleep(generateDelay).then(function() {
1734 testRowsAreInCorrectOrder(done);
1735 });
1736 });
1737 });
1738
1739 // BIP32 root key can be set by the user
1740 it('Allows the user to set the BIP32 root key', function(done) {
1741 driver.findElement(By.css('.root-key'))
1742 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1743 driver.sleep(generateDelay).then(function() {
1744 getFirstAddress(function(address) {
1745 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
1746 done();
1747 });
1748 });
1749 });
1750
1751 // Setting BIP32 root key clears the existing phrase, passphrase and seed
1752 // TODO this doesn't work in selenium with chrome
1753 it('Confirms the existing phrase should be cleared', function(done) {
1754 if (browser == "chrome") {
1755 pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
1756 }
1757 driver.findElement(By.css('.phrase'))
1758 .sendKeys('A non-blank but invalid value');
1759 driver.findElement(By.css('.root-key'))
1760 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1761 driver.switchTo().alert().accept();
1762 driver.findElement(By.css('.phrase'))
1763 .getAttribute("value").then(function(value) {
1764 expect(value).toBe("");
1765 done();
1766 });
1767 });
1768
1769 // Clearing of phrase, passphrase and seed can be cancelled by user
1770 // TODO this doesn't work in selenium with chrome
1771 it('Allows the clearing of the phrase to be cancelled', function(done) {
1772 if (browser == "chrome") {
1773 pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
1774 }
1775 driver.findElement(By.css('.phrase'))
1776 .sendKeys('abandon abandon ability');
1777 driver.sleep(generateDelay).then(function() {
1778 driver.findElement(By.css('.root-key'))
1779 .clear();
1780 driver.findElement(By.css('.root-key'))
1781 .sendKeys('x');
1782 driver.switchTo().alert().dismiss();
1783 driver.findElement(By.css('.phrase'))
1784 .getAttribute("value").then(function(value) {
1785 expect(value).toBe("abandon abandon ability");
1786 done();
1787 });
1788 });
1789 });
1790
1791 // Custom BIP32 root key is used when changing the derivation path
1792 it('Can set derivation path for root key instead of phrase', function(done) {
1793 driver.findElement(By.css('#bip44 .account'))
1794 .sendKeys('1');
1795 driver.findElement(By.css('.root-key'))
1796 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1797 driver.sleep(generateDelay).then(function() {
1798 getFirstAddress(function(address) {
1799 expect(address).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H");
1800 done();
1801 });
1802 });
1803 });
1804
1805 // Incorrect mnemonic shows error
1806 it('Shows an error for incorrect mnemonic', function(done) {
1807 driver.findElement(By.css('.phrase'))
1808 .sendKeys('abandon abandon abandon');
1809 driver.sleep(feedbackDelay).then(function() {
1810 driver.findElement(By.css('.feedback'))
1811 .getText()
1812 .then(function(feedback) {
1813 expect(feedback).toBe("Invalid mnemonic");
1814 done();
1815 });
1816 });
1817 });
1818
1819 // Incorrect word shows suggested replacement
1820 it('Shows word suggestion for incorrect word', function(done) {
1821 driver.findElement(By.css('.phrase'))
1822 .sendKeys('abandon abandon abiliti');
1823 driver.sleep(feedbackDelay).then(function() {
1824 driver.findElement(By.css('.feedback'))
1825 .getText()
1826 .then(function(feedback) {
1827 var msg = "abiliti not in wordlist, did you mean ability?";
1828 expect(feedback).toBe(msg);
1829 done();
1830 });
1831 });
1832 });
1833
1834 // Github pull request 48
1835 // First four letters of word shows that word, not closest
1836 // since first four letters gives unique word in BIP39 wordlist
1837 // eg ille should show illegal, not idle
1838 it('Shows word suggestion based on first four chars', function(done) {
1839 driver.findElement(By.css('.phrase'))
1840 .sendKeys('ille');
1841 driver.sleep(feedbackDelay).then(function() {
1842 driver.findElement(By.css('.feedback'))
1843 .getText()
1844 .then(function(feedback) {
1845 var msg = "ille not in wordlist, did you mean illegal?";
1846 expect(feedback).toBe(msg);
1847 done();
1848 });
1849 });
1850 });
1851
1852 // Incorrect BIP32 root key shows error
1853 it('Shows error for incorrect root key', function(done) {
1854 driver.findElement(By.css('.root-key'))
1855 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpj');
1856 driver.sleep(feedbackDelay).then(function() {
1857 driver.findElement(By.css('.feedback'))
1858 .getText()
1859 .then(function(feedback) {
1860 var msg = "Invalid root key";
1861 expect(feedback).toBe(msg);
1862 done();
1863 });
1864 });
1865 });
1866
1867 // Derivation path not starting with m shows error
1868 it('Shows error for derivation path not starting with m', function(done) {
1869 driver.findElement(By.css('#bip32-tab a'))
1870 .click();
1871 driver.findElement(By.css('#bip32 .path'))
1872 .clear();
1873 driver.findElement(By.css('#bip32 .path'))
1874 .sendKeys('n/0');
1875 driver.findElement(By.css('.phrase'))
1876 .sendKeys('abandon abandon ability');
1877 driver.sleep(feedbackDelay).then(function() {
1878 driver.findElement(By.css('.feedback'))
1879 .getText()
1880 .then(function(feedback) {
1881 var msg = "First character must be 'm'";
1882 expect(feedback).toBe(msg);
1883 done();
1884 });
1885 });
1886 });
1887
1888 // Derivation path containing invalid characters shows useful error
1889 it('Shows error for derivation path not starting with m', function(done) {
1890 driver.findElement(By.css('#bip32-tab a'))
1891 .click();
1892 driver.findElement(By.css('#bip32 .path'))
1893 .clear();
1894 driver.findElement(By.css('#bip32 .path'))
1895 .sendKeys('m/1/0wrong1/1');
1896 driver.findElement(By.css('.phrase'))
1897 .sendKeys('abandon abandon ability');
1898 driver.sleep(feedbackDelay).then(function() {
1899 driver.findElement(By.css('.feedback'))
1900 .getText()
1901 .then(function(feedback) {
1902 var msg = "Invalid characters 0wrong1 found at depth 2";
1903 expect(feedback).toBe(msg);
1904 done();
1905 });
1906 });
1907 });
1908
1909 // Github Issue 11: Default word length is 15
1910 // https://github.com/iancoleman/bip39/issues/11
1911 it('Sets the default word length to 15', function(done) {
1912 driver.findElement(By.css('.strength'))
1913 .getAttribute("value")
1914 .then(function(strength) {
1915 expect(strength).toBe("15");
1916 done();
1917 });
1918 });
1919
1920 // Github Issue 12: Generate more rows with private keys hidden
1921 // https://github.com/iancoleman/bip39/issues/12
1922 it('Sets the correct hidden column state on new rows', function(done) {
1923 driver.findElement(By.css('.phrase'))
1924 .sendKeys("abandon abandon ability");
1925 driver.sleep(generateDelay).then(function() {
1926 driver.findElement(By.css('.private-key-toggle'))
1927 .click();
1928 driver.findElement(By.css('.more'))
1929 .click();
1930 driver.sleep(generateDelay).then(function() {
1931 driver.findElements(By.css('.privkey'))
1932 .then(function(els) {
1933 expect(els.length).toBe(40);
1934 });
1935 testColumnValuesAreInvisible(done, "privkey");
1936 });
1937 });
1938 });
1939
1940 // Github Issue 19: Mnemonic is not sensitive to whitespace
1941 // https://github.com/iancoleman/bip39/issues/19
1942 it('Ignores excess whitespace in the mnemonic', function(done) {
1943 var doublespace = " ";
1944 var mnemonic = "urge cat" + doublespace + "bid";
1945 driver.findElement(By.css('.phrase'))
1946 .sendKeys(mnemonic);
1947 driver.sleep(generateDelay).then(function() {
1948 driver.findElement(By.css('.root-key'))
1949 .getAttribute("value")
1950 .then(function(seed) {
1951 expect(seed).toBe("xprv9s21ZrQH143K3isaZsWbKVoTtbvd34Y1ZGRugGdMeBGbM3AgBVzTH159mj1cbbtYSJtQr65w6L5xy5L9SFC7c9VJZWHxgAzpj4mun5LhrbC");
1952 done();
1953 });
1954 });
1955 });
1956
1957 // Github Issue 23: Part 1: Use correct derivation path when changing tabs
1958 // https://github.com/iancoleman/bip39/issues/23
1959 it('Uses the correct derivation path when changing tabs', function(done) {
1960 // 1) and 2) set the phrase
1961 driver.findElement(By.css('.phrase'))
1962 .sendKeys("abandon abandon ability");
1963 driver.sleep(generateDelay).then(function() {
1964 // 3) select bip32 tab
1965 driver.findElement(By.css('#bip32-tab a'))
1966 .click();
1967 driver.sleep(generateDelay).then(function() {
1968 // 4) switch from bitcoin to litecoin
1969 selectNetwork("LTC - Litecoin");
1970 driver.sleep(generateDelay).then(function() {
1971 // 5) Check address is displayed correctly
1972 getFirstAddress(function(address) {
1973 expect(address).toBe("LS8MP5LZ5AdzSZveRrjm3aYVoPgnfFh5T5");
1974 // 5) Check derivation path is displayed correctly
1975 getFirstPath(function(path) {
1976 expect(path).toBe("m/0/0");
1977 done();
1978 });
1979 });
1980 });
1981 });
1982 });
1983 });
1984
1985 // Github Issue 23 Part 2: Coin selection in derivation path
1986 // https://github.com/iancoleman/bip39/issues/23#issuecomment-238011920
1987 it('Uses the correct derivation path when changing coins', function(done) {
1988 // set the phrase
1989 driver.findElement(By.css('.phrase'))
1990 .sendKeys("abandon abandon ability");
1991 driver.sleep(generateDelay).then(function() {
1992 // switch from bitcoin to clam
1993 selectNetwork("CLAM - Clams");
1994 driver.sleep(generateDelay).then(function() {
1995 // check derivation path is displayed correctly
1996 getFirstPath(function(path) {
1997 expect(path).toBe("m/44'/23'/0'/0/0");
1998 done();
1999 });
2000 });
2001 });
2002 });
2003
2004 // Github Issue 26: When using a Root key derrived altcoins are incorrect
2005 // https://github.com/iancoleman/bip39/issues/26
2006 it('Uses the correct derivation for altcoins with root keys', function(done) {
2007 // 1) 2) and 3) set the root key
2008 driver.findElement(By.css('.root-key'))
2009 .sendKeys("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
2010 driver.sleep(generateDelay).then(function() {
2011 // 4) switch from bitcoin to viacoin
2012 selectNetwork("VIA - Viacoin");
2013 driver.sleep(generateDelay).then(function() {
2014 // 5) ensure the derived address is correct
2015 getFirstAddress(function(address) {
2016 expect(address).toBe("Vq9Eq4N5SQnjqZvxtxzo7hZPW5XnyJsmXT");
2017 done();
2018 });
2019 });
2020 });
2021 });
2022
2023 // Selecting a language with no existing phrase should generate a phrase in
2024 // that language.
2025 it('Generate a random phrase when language is selected and no current phrase', function(done) {
2026 driver.findElement(By.css("a[href='#japanese']"))
2027 .click();
2028 driver.sleep(generateDelay).then(function() {
2029 driver.findElement(By.css(".phrase"))
2030 .getAttribute("value").then(function(phrase) {
2031 expect(phrase.search(/[a-z]/)).toBe(-1);
2032 expect(phrase.length).toBeGreaterThan(0);
2033 done();
2034 });
2035 });
2036 });
2037
2038 // Selecting a language with existing phrase should update the phrase to use
2039 // that language.
2040 it('Updates existing phrases when the language is changed', function(done) {
2041 driver.findElement(By.css(".phrase"))
2042 .sendKeys("abandon abandon ability");
2043 driver.sleep(generateDelay).then(function() {
2044 driver.findElement(By.css("a[href='#italian']"))
2045 .click();
2046 driver.sleep(generateDelay).then(function() {
2047 driver.findElement(By.css(".phrase"))
2048 .getAttribute("value").then(function(phrase) {
2049 // Check only the language changes, not the phrase
2050 expect(phrase).toBe("abaco abaco abbaglio");
2051 getFirstAddress(function(address) {
2052 // Check the address is correct
2053 expect(address).toBe("1Dz5TgDhdki9spa6xbPFbBqv5sjMrx3xgV");
2054 done();
2055 });
2056 });
2057 });
2058 });
2059 });
2060
2061 // Suggested replacement for erroneous word in non-English language
2062 it('Shows word suggestion for incorrect word in non-English language', function(done) {
2063 driver.findElement(By.css('.phrase'))
2064 .sendKeys('abaco abaco zbbaglio');
2065 driver.sleep(feedbackDelay).then(function() {
2066 driver.findElement(By.css('.feedback'))
2067 .getText()
2068 .then(function(feedback) {
2069 var msg = "zbbaglio not in wordlist, did you mean abbaglio?";
2070 expect(feedback).toBe(msg);
2071 done();
2072 });
2073 });
2074 });
2075
2076 // Japanese word does not break across lines.
2077 // Point 2 from
2078 // https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md#japanese
2079 it('Does not break Japanese words across lines', function(done) {
2080 driver.findElement(By.css('.phrase'))
2081 .getCssValue("word-break")
2082 .then(function(value) {
2083 expect(value).toBe("keep-all");
2084 done();
2085 });
2086 });
2087
2088 // Language can be specified at page load using hash value in url
2089 it('Can set the language from the url hash', function(done) {
2090 driver.get(url + "#japanese").then(function() {
2091 driver.findElement(By.css('.generate')).click();
2092 driver.sleep(generateDelay).then(function() {
2093 driver.findElement(By.css(".phrase"))
2094 .getAttribute("value").then(function(phrase) {
2095 expect(phrase.search(/[a-z]/)).toBe(-1);
2096 expect(phrase.length).toBeGreaterThan(0);
2097 done();
2098 });
2099 });
2100 });
2101 });
2102
2103 // Entropy can be entered by the user
2104 it('Allows entropy to be entered', function(done) {
2105 driver.findElement(By.css('.use-entropy'))
2106 .click();
2107 driver.findElement(By.css('.entropy'))
2108 .sendKeys('00000000 00000000 00000000 00000000');
2109 driver.sleep(generateDelay).then(function() {
2110 driver.findElement(By.css(".phrase"))
2111 .getAttribute("value").then(function(phrase) {
2112 expect(phrase).toBe("abandon abandon ability");
2113 getFirstAddress(function(address) {
2114 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2115 done();
2116 })
2117 });
2118 });
2119 });
2120
2121 // A warning about entropy is shown to the user, with additional information
2122 it('Shows a warning about using entropy', function(done) {
2123 driver.findElement(By.css('.use-entropy'))
2124 .click();
2125 driver.findElement(By.css('.entropy-container'))
2126 .getText()
2127 .then(function(containerText) {
2128 var warning = "mnemonic may be insecure";
2129 expect(containerText).toContain(warning);
2130 driver.findElement(By.css('#entropy-notes'))
2131 .findElement(By.xpath("parent::*"))
2132 .getText()
2133 .then(function(notesText) {
2134 var detail = "flipping a fair coin, rolling a fair dice, noise measurements etc";
2135 expect(notesText).toContain(detail);
2136 done();
2137 });
2138 });
2139 });
2140
2141 // The types of entropy available are described to the user
2142 it('Shows the types of entropy available', function(done) {
2143 driver.findElement(By.css('.entropy'))
2144 .getAttribute("placeholder")
2145 .then(function(placeholderText) {
2146 var options = [
2147 "binary",
2148 "base 6",
2149 "dice",
2150 "base 10",
2151 "hexadecimal",
2152 "cards",
2153 ];
2154 for (var i=0; i<options.length; i++) {
2155 var option = options[i];
2156 expect(placeholderText).toContain(option);
2157 }
2158 done();
2159 });
2160 });
2161
2162 // The actual entropy used is shown to the user
2163 it('Shows the actual entropy used', function(done) {
2164 driver.findElement(By.css('.use-entropy'))
2165 .click();
2166 driver.findElement(By.css('.entropy'))
2167 .sendKeys('Not A Very Good Entropy Source At All');
2168 driver.sleep(generateDelay).then(function() {
2169 driver.findElement(By.css('.entropy-container'))
2170 .getText()
2171 .then(function(text) {
2172 expect(text).toMatch(/Filtered Entropy\s+AedEceAA/);
2173 done();
2174 });
2175 });
2176 });
2177
2178 // Binary entropy can be entered
2179 it('Allows binary entropy to be entered', function(done) {
2180 testEntropyType(done, "01", "binary");
2181 });
2182
2183 // Base 6 entropy can be entered
2184 it('Allows base 6 entropy to be entered', function(done) {
2185 testEntropyType(done, "012345", "base 6");
2186 });
2187
2188 // Base 6 dice entropy can be entered
2189 it('Allows base 6 dice entropy to be entered', function(done) {
2190 testEntropyType(done, "123456", "base 6 (dice)");
2191 });
2192
2193 // Base 10 entropy can be entered
2194 it('Allows base 10 entropy to be entered', function(done) {
2195 testEntropyType(done, "789", "base 10");
2196 });
2197
2198 // Hexadecimal entropy can be entered
2199 it('Allows hexadecimal entropy to be entered', function(done) {
2200 testEntropyType(done, "abcdef", "hexadecimal");
2201 });
2202
2203 // Dice entropy value is shown as the converted base 6 value
2204 // ie 123456 is converted to 123450
2205 it('Shows dice entropy as base 6', function(done) {
2206 driver.findElement(By.css('.use-entropy'))
2207 .click();
2208 driver.findElement(By.css('.entropy'))
2209 .sendKeys("123456");
2210 driver.sleep(generateDelay).then(function() {
2211 driver.findElement(By.css('.entropy-container'))
2212 .getText()
2213 .then(function(text) {
2214 expect(text).toMatch(/Filtered Entropy\s+123450/);
2215 done();
2216 });
2217 });
2218 });
2219
2220 // The number of bits of entropy accumulated is shown
2221 it("Shows the number of bits of entropy for 20 bits of binary", function(done) {
2222 testEntropyBits(done, "0000 0000 0000 0000 0000", "20");
2223 });
2224 it("Shows the number of bits of entropy for 1 bit of binary", function(done) {
2225 testEntropyBits(done, "0", "1");
2226 });
2227 it("Shows the number of bits of entropy for 4 bits of binary", function(done) {
2228 testEntropyBits(done, "0000", "4");
2229 });
2230 it("Shows the number of bits of entropy for 1 character of base 6 (dice)", function(done) {
2231 // 6 in card is 0 in base 6, 0 in base 6 is 2.6 bits (rounded down to 2 bits)
2232 testEntropyBits(done, "6", "2");
2233 });
2234 it("Shows the number of bits of entropy for 1 character of base 10 with 3 bits", function(done) {
2235 // 7 in base 10 is 111 in base 2, no leading zeros
2236 testEntropyBits(done, "7", "3");
2237 });
2238 it("Shows the number of bits of entropy for 1 character of base 10 with 4 bis", function(done) {
2239 testEntropyBits(done, "8", "4");
2240 });
2241 it("Shows the number of bits of entropy for 1 character of hex", function(done) {
2242 testEntropyBits(done, "F", "4");
2243 });
2244 it("Shows the number of bits of entropy for 2 characters of base 10", function(done) {
2245 testEntropyBits(done, "29", "6");
2246 });
2247 it("Shows the number of bits of entropy for 2 characters of hex", function(done) {
2248 testEntropyBits(done, "0A", "8");
2249 });
2250 it("Shows the number of bits of entropy for 2 characters of hex with 3 leading zeros", function(done) {
2251 // hex is always multiple of 4 bits of entropy
2252 testEntropyBits(done, "1A", "8");
2253 });
2254 it("Shows the number of bits of entropy for 2 characters of hex with 2 leading zeros", function(done) {
2255 testEntropyBits(done, "2A", "8");
2256 });
2257 it("Shows the number of bits of entropy for 2 characters of hex with 1 leading zero", function(done) {
2258 testEntropyBits(done, "4A", "8");
2259 });
2260 it("Shows the number of bits of entropy for 2 characters of hex with no leading zeros", function(done) {
2261 testEntropyBits(done, "8A", "8");
2262 });
2263 it("Shows the number of bits of entropy for 2 characters of hex starting with F", function(done) {
2264 testEntropyBits(done, "FA", "8");
2265 });
2266 it("Shows the number of bits of entropy for 4 characters of hex with leading zeros", function(done) {
2267 testEntropyBits(done, "000A", "16");
2268 });
2269 it("Shows the number of bits of entropy for 4 characters of base 6", function(done) {
2270 testEntropyBits(done, "5555", "11");
2271 });
2272 it("Shows the number of bits of entropy for 4 characters of base 6 dice", function(done) {
2273 // uses dice, so entropy is actually 0000 in base 6, which is 4 lots of
2274 // 2.58 bits, which is 10.32 bits (rounded down to 10 bits)
2275 testEntropyBits(done, "6666", "10");
2276 });
2277 it("Shows the number of bits of entropy for 4 charactes of base 10", function(done) {
2278 // Uses base 10, which is 4 lots of 3.32 bits, which is 13.3 bits (rounded
2279 // down to 13)
2280 testEntropyBits(done, "2227", "13");
2281 });
2282 it("Shows the number of bits of entropy for 4 characters of hex with 2 leading zeros", function(done) {
2283 testEntropyBits(done, "222F", "16");
2284 });
2285 it("Shows the number of bits of entropy for 4 characters of hex starting with F", function(done) {
2286 testEntropyBits(done, "FFFF", "16");
2287 });
2288 it("Shows the number of bits of entropy for 10 characters of base 10", function(done) {
2289 // 10 events at 3.32 bits per event
2290 testEntropyBits(done, "0000101017", "33");
2291 });
2292 it("Shows the number of bits of entropy for a full deck of cards", function(done) {
2293 // cards are not replaced, so a full deck is not 52^52 entropy which is 296
2294 // bits, it's 52!, which is 225 bits
2295 testEntropyBits(done, "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", "225");
2296 });
2297
2298 it("Shows details about the entered entropy", function(done) {
2299 testEntropyFeedback(done,
2300 {
2301 entropy: "A",
2302 filtered: "A",
2303 type: "hexadecimal",
2304 events: "1",
2305 bits: "4",
2306 words: 0,
2307 strength: "less than a second",
2308 }
2309 );
2310 });
2311 it("Shows details about the entered entropy", function(done) {
2312 testEntropyFeedback(done,
2313 {
2314 entropy: "AAAAAAAA",
2315 filtered: "AAAAAAAA",
2316 type: "hexadecimal",
2317 events: "8",
2318 bits: "32",
2319 words: 3,
2320 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2321 }
2322 );
2323 });
2324 it("Shows details about the entered entropy", function(done) {
2325 testEntropyFeedback(done,
2326 {
2327 entropy: "AAAAAAAA B",
2328 filtered: "AAAAAAAAB",
2329 type: "hexadecimal",
2330 events: "9",
2331 bits: "36",
2332 words: 3,
2333 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2334 }
2335 );
2336 });
2337 it("Shows details about the entered entropy", function(done) {
2338 testEntropyFeedback(done,
2339 {
2340 entropy: "AAAAAAAA BBBBBBBB",
2341 filtered: "AAAAAAAABBBBBBBB",
2342 type: "hexadecimal",
2343 events: "16",
2344 bits: "64",
2345 words: 6,
2346 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2347 }
2348 );
2349 });
2350 it("Shows details about the entered entropy", function(done) {
2351 testEntropyFeedback(done,
2352 {
2353 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC",
2354 filtered: "AAAAAAAABBBBBBBBCCCCCCCC",
2355 type: "hexadecimal",
2356 events: "24",
2357 bits: "96",
2358 words: 9,
2359 strength: "less than a second",
2360 }
2361 );
2362 });
2363 it("Shows details about the entered entropy", function(done) {
2364 testEntropyFeedback(done,
2365 {
2366 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD",
2367 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD",
2368 type: "hexadecimal",
2369 events: "32",
2370 bits: "128",
2371 words: 12,
2372 strength: "2 minutes",
2373 }
2374 );
2375 });
2376 it("Shows details about the entered entropy", function(done) {
2377 testEntropyFeedback(done,
2378 {
2379 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA",
2380 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDA",
2381 type: "hexadecimal",
2382 events: "32",
2383 bits: "128",
2384 words: 12,
2385 strength: "2 days",
2386 }
2387 );
2388 });
2389 it("Shows details about the entered entropy", function(done) {
2390 testEntropyFeedback(done,
2391 {
2392 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE",
2393 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEE",
2394 type: "hexadecimal",
2395 events: "40",
2396 bits: "160",
2397 words: 15,
2398 strength: "3 years",
2399 }
2400 );
2401 });
2402 it("Shows details about the entered entropy", function(done) {
2403 testEntropyFeedback(done,
2404 {
2405 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE FFFFFFFF",
2406 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEEFFFFFFFF",
2407 type: "hexadecimal",
2408 events: "48",
2409 bits: "192",
2410 words: 18,
2411 strength: "centuries",
2412 }
2413 );
2414 });
2415 it("Shows details about the entered entropy", function(done) {
2416 testEntropyFeedback(done,
2417 {
2418 entropy: "7d",
2419 type: "card",
2420 events: "1",
2421 bits: "4",
2422 words: 0,
2423 strength: "less than a second",
2424 }
2425 );
2426 });
2427 it("Shows details about the entered entropy", function(done) {
2428 testEntropyFeedback(done,
2429 {
2430 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2431 type: "card (full deck)",
2432 events: "52",
2433 bits: "225",
2434 words: 21,
2435 strength: "centuries",
2436 }
2437 );
2438 });
2439 it("Shows details about the entered entropy", function(done) {
2440 testEntropyFeedback(done,
2441 {
2442 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks3d",
2443 type: "card (full deck, 1 duplicate: 3d)",
2444 events: "53",
2445 bits: "254",
2446 words: 21,
2447 strength: "centuries",
2448 }
2449 );
2450 });
2451 it("Shows details about the entered entropy", function(done) {
2452 testEntropyFeedback(done,
2453 {
2454 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d",
2455 type: "card (2 duplicates: 3d 4d, 1 missing: KS)",
2456 events: "53",
2457 bits: "254",
2458 words: 21,
2459 strength: "centuries",
2460 }
2461 );
2462 });
2463 it("Shows details about the entered entropy", function(done) {
2464 testEntropyFeedback(done,
2465 {
2466 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d5d6d",
2467 type: "card (4 duplicates: 3d 4d 5d..., 1 missing: KS)",
2468 events: "55",
2469 bits: "264",
2470 words: 24,
2471 strength: "centuries",
2472 }
2473 );
2474 });
2475 it("Shows details about the entered entropy", function(done) {
2476 testEntropyFeedback(done,
2477 // Next test was throwing uncaught error in zxcvbn
2478 // Also tests 451 bits, ie Math.log2(52!)*2 = 225.58 * 2
2479 {
2480 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsksac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2481 type: "card (full deck, 52 duplicates: ac 2c 3c...)",
2482 events: "104",
2483 bits: "499",
2484 words: 45,
2485 strength: "centuries",
2486 }
2487 );
2488 });
2489 it("Shows details about the entered entropy", function(done) {
2490 testEntropyFeedback(done,
2491 // Case insensitivity to duplicate cards
2492 {
2493 entropy: "asAS",
2494 type: "card (1 duplicate: AS)",
2495 events: "2",
2496 bits: "9",
2497 words: 0,
2498 strength: "less than a second",
2499 }
2500 );
2501 });
2502 it("Shows details about the entered entropy", function(done) {
2503 testEntropyFeedback(done,
2504 {
2505 entropy: "ASas",
2506 type: "card (1 duplicate: as)",
2507 events: "2",
2508 bits: "9",
2509 words: 0,
2510 strength: "less than a second",
2511 }
2512 );
2513 });
2514 it("Shows details about the entered entropy", function(done) {
2515 testEntropyFeedback(done,
2516 // Missing cards are detected
2517 {
2518 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2519 type: "card (1 missing: 9C)",
2520 events: "51",
2521 bits: "221",
2522 words: 18,
2523 strength: "centuries",
2524 }
2525 );
2526 });
2527 it("Shows details about the entered entropy", function(done) {
2528 testEntropyFeedback(done,
2529 {
2530 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2531 type: "card (2 missing: 9C 5D)",
2532 events: "50",
2533 bits: "216",
2534 words: 18,
2535 strength: "centuries",
2536 }
2537 );
2538 });
2539 it("Shows details about the entered entropy", function(done) {
2540 testEntropyFeedback(done,
2541 {
2542 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjd kdah2h3h 5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2543 type: "card (4 missing: 9C 5D QD...)",
2544 events: "48",
2545 bits: "208",
2546 words: 18,
2547 strength: "centuries",
2548 }
2549 );
2550 });
2551 it("Shows details about the entered entropy", function(done) {
2552 testEntropyFeedback(done,
2553 // More than six missing cards does not show message
2554 {
2555 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d 8d9d jd kdah2h3h 5h6h7h8h9hthjhqhkh 2s3s4s5s6s7s8s9stsjsqsks",
2556 type: "card",
2557 events: "45",
2558 bits: "195",
2559 words: 18,
2560 strength: "centuries",
2561 }
2562 );
2563 });
2564 it("Shows details about the entered entropy", function(done) {
2565 testEntropyFeedback(done,
2566 // Multiple decks of cards increases bits per event
2567 {
2568 entropy: "3d",
2569 events: "1",
2570 bits: "4",
2571 bitsPerEvent: "4.34",
2572 }
2573 );
2574 });
2575 it("Shows details about the entered entropy", function(done) {
2576 testEntropyFeedback(done,
2577 {
2578 entropy: "3d3d",
2579 events: "2",
2580 bits: "9",
2581 bitsPerEvent: "4.80",
2582 }
2583 );
2584 });
2585 it("Shows details about the entered entropy", function(done) {
2586 testEntropyFeedback(done,
2587 {
2588 entropy: "3d3d3d",
2589 events: "3",
2590 bits: "15",
2591 bitsPerEvent: "5.01",
2592 }
2593 );
2594 });
2595 it("Shows details about the entered entropy", function(done) {
2596 testEntropyFeedback(done,
2597 {
2598 entropy: "3d3d3d3d",
2599 events: "4",
2600 bits: "20",
2601 bitsPerEvent: "5.14",
2602 }
2603 );
2604 });
2605 it("Shows details about the entered entropy", function(done) {
2606 testEntropyFeedback(done,
2607 {
2608 entropy: "3d3d3d3d3d",
2609 events: "5",
2610 bits: "26",
2611 bitsPerEvent: "5.22",
2612 }
2613 );
2614 });
2615 it("Shows details about the entered entropy", function(done) {
2616 testEntropyFeedback(done,
2617 {
2618 entropy: "3d3d3d3d3d3d",
2619 events: "6",
2620 bits: "31",
2621 bitsPerEvent: "5.28",
2622 }
2623 );
2624 });
2625 it("Shows details about the entered entropy", function(done) {
2626 testEntropyFeedback(done,
2627 {
2628 entropy: "3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d",
2629 events: "33",
2630 bits: "184",
2631 bitsPerEvent: "5.59",
2632 strength: 'less than a second - Repeats like "abcabcabc" are only slightly harder to guess than "abc"',
2633 }
2634 );
2635 });
2636
2637 // Entropy is truncated from the left
2638 it('Truncates entropy from the left', function(done) {
2639 // Truncate from left means 0000 is removed from the start
2640 // which gives mnemonic 'avocado zoo zone'
2641 // not 1111 removed from the end
2642 // which gives the mnemonic 'abstract zoo zoo'
2643 var entropy = "00000000 00000000 00000000 00000000";
2644 entropy += "11111111 11111111 11111111 1111"; // Missing last byte
2645 driver.findElement(By.css('.use-entropy'))
2646 .click();
2647 driver.findElement(By.css('.entropy'))
2648 .sendKeys(entropy);
2649 driver.sleep(generateDelay).then(function() {
2650 driver.findElement(By.css(".phrase"))
2651 .getAttribute("value").then(function(phrase) {
2652 expect(phrase).toBe("avocado zoo zone");
2653 done();
2654 });
2655 });
2656 });
2657
2658 // Very large entropy results in very long mnemonics
2659 it('Converts very long entropy to very long mnemonics', function(done) {
2660 var entropy = "";
2661 for (var i=0; i<33; i++) {
2662 entropy += "AAAAAAAA"; // 3 words * 33 iterations = 99 words
2663 }
2664 driver.findElement(By.css('.use-entropy'))
2665 .click();
2666 driver.findElement(By.css('.entropy'))
2667 .sendKeys(entropy);
2668 driver.sleep(generateDelay).then(function() {
2669 driver.findElement(By.css(".phrase"))
2670 .getAttribute("value").then(function(phrase) {
2671 var wordCount = phrase.split(/\s+/g).length;
2672 expect(wordCount).toBe(99);
2673 done();
2674 });
2675 });
2676 });
2677
2678 // Is compatible with bip32jp entropy
2679 // https://bip32jp.github.io/english/index.html
2680 // NOTES:
2681 // Is incompatible with:
2682 // base 20
2683 it('Is compatible with bip32jp.github.io', function(done) {
2684 var entropy = "543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543";
2685 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";
2686 driver.findElement(By.css('.use-entropy'))
2687 .click();
2688 driver.findElement(By.css('.entropy'))
2689 .sendKeys(entropy);
2690 driver.sleep(generateDelay).then(function() {
2691 driver.findElement(By.css(".phrase"))
2692 .getAttribute("value").then(function(phrase) {
2693 expect(phrase).toBe(expectedPhrase);
2694 done();
2695 });
2696 });
2697 });
2698
2699 // Blank entropy does not generate mnemonic or addresses
2700 it('Does not generate mnemonic for blank entropy', function(done) {
2701 driver.findElement(By.css('.use-entropy'))
2702 .click();
2703 driver.findElement(By.css('.entropy'))
2704 .clear();
2705 // check there is no mnemonic
2706 driver.sleep(generateDelay).then(function() {
2707 driver.findElement(By.css(".phrase"))
2708 .getAttribute("value").then(function(phrase) {
2709 expect(phrase).toBe("");
2710 // check there is no mnemonic
2711 driver.findElements(By.css(".address"))
2712 .then(function(addresses) {
2713 expect(addresses.length).toBe(0);
2714 // Check the feedback says 'blank entropy'
2715 driver.findElement(By.css(".feedback"))
2716 .getText()
2717 .then(function(feedbackText) {
2718 expect(feedbackText).toBe("Blank entropy");
2719 done();
2720 });
2721 })
2722 });
2723 });
2724 });
2725
2726 // Mnemonic length can be selected even for weak entropy
2727 it('Allows selection of mnemonic length even for weak entropy', function(done) {
2728 driver.findElement(By.css('.use-entropy'))
2729 .click();
2730 driver.executeScript(function() {
2731 $(".mnemonic-length").val("18").trigger("change");
2732 });
2733 driver.findElement(By.css('.entropy'))
2734 .sendKeys("012345");
2735 driver.sleep(generateDelay).then(function() {
2736 driver.findElement(By.css(".phrase"))
2737 .getAttribute("value").then(function(phrase) {
2738 var wordCount = phrase.split(/\s+/g).length;
2739 expect(wordCount).toBe(18);
2740 done();
2741 });
2742 });
2743 });
2744
2745 // Github issue 33
2746 // https://github.com/iancoleman/bip39/issues/33
2747 // Final cards should contribute entropy
2748 it('Uses as much entropy as possible for the mnemonic', function(done) {
2749 driver.findElement(By.css('.use-entropy'))
2750 .click();
2751 driver.findElement(By.css('.entropy'))
2752 .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");
2753 driver.sleep(generateDelay).then(function() {
2754 // Get mnemonic
2755 driver.findElement(By.css(".phrase"))
2756 .getAttribute("value").then(function(originalPhrase) {
2757 // Set the last 12 cards to be AS
2758 driver.findElement(By.css('.entropy'))
2759 .clear();
2760 driver.findElement(By.css('.entropy'))
2761 .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");
2762 driver.sleep(generateDelay).then(function() {
2763 // Get new mnemonic
2764 driver.findElement(By.css(".phrase"))
2765 .getAttribute("value").then(function(newPhrase) {
2766 expect(originalPhrase).not.toEqual(newPhrase);
2767 done();
2768 });
2769 });
2770 });
2771 });
2772 });
2773
2774 // Github issue 35
2775 // https://github.com/iancoleman/bip39/issues/35
2776 // QR Code support
2777 // TODO this doesn't work in selenium with firefox
2778 // see https://stackoverflow.com/q/40360223
2779 it('Shows a qr code on hover for the phrase', function(done) {
2780 if (browser == "firefox") {
2781 pending("Selenium + Firefox bug for mouseMove, see https://stackoverflow.com/q/40360223");
2782 }
2783 // generate a random mnemonic
2784 var generateEl = driver.findElement(By.css('.generate'));
2785 generateEl.click();
2786 // toggle qr to show (hidden by default)
2787 var phraseEl = driver.findElement(By.css(".phrase"));
2788 phraseEl.click();
2789 var rootKeyEl = driver.findElement(By.css(".root-key"));
2790 driver.sleep(generateDelay).then(function() {
2791 // hover over the root key
2792 driver.actions().mouseMove(rootKeyEl).perform().then(function() {
2793 // check the qr code shows
2794 driver.executeScript(function() {
2795 return $(".qr-container").find("canvas").length > 0;
2796 })
2797 .then(function(qrShowing) {
2798 expect(qrShowing).toBe(true);
2799 // hover away from the phrase
2800 driver.actions().mouseMove(generateEl).perform().then(function() {;
2801 // check the qr code hides
2802 driver.executeScript(function() {
2803 return $(".qr-container").find("canvas").length == 0;
2804 })
2805 .then(function(qrHidden) {
2806 expect(qrHidden).toBe(true);
2807 done();
2808 });
2809 });
2810 });
2811 });
2812 });
2813 });
2814
2815 // BIP44 account extendend private key is shown
2816 // github issue 37 - compatibility with electrum
2817 it('Shows the bip44 account extended private key', function(done) {
2818 driver.findElement(By.css(".phrase"))
2819 .sendKeys("abandon abandon ability");
2820 driver.sleep(generateDelay).then(function() {
2821 driver.findElement(By.css("#bip44 .account-xprv"))
2822 .getAttribute("value")
2823 .then(function(xprv) {
2824 expect(xprv).toBe("xprv9yzrnt4zWVJUr1k2VxSPy9ettKz5PpeDMgaVG7UKedhqnw1tDkxP2UyYNhuNSumk2sLE5ctwKZs9vwjsq3e1vo9egCK6CzP87H2cVYXpfwQ");
2825 done();
2826 });
2827 });
2828 });
2829
2830 // BIP44 account extendend public key is shown
2831 // github issue 37 - compatibility with electrum
2832 it('Shows the bip44 account extended public key', function(done) {
2833 driver.findElement(By.css(".phrase"))
2834 .sendKeys("abandon abandon ability");
2835 driver.sleep(generateDelay).then(function() {
2836 driver.findElement(By.css("#bip44 .account-xpub"))
2837 .getAttribute("value")
2838 .then(function(xprv) {
2839 expect(xprv).toBe("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2840 done();
2841 });
2842 });
2843 });
2844
2845 // github issue 40
2846 // BIP32 root key can be set as an xpub
2847 it('Generates addresses from xpub as bip32 root key', function(done) {
2848 driver.findElement(By.css('#bip32-tab a'))
2849 .click();
2850 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2851 driver.findElement(By.css("#root-key"))
2852 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2853 driver.sleep(generateDelay).then(function() {
2854 // check the addresses are generated
2855 getFirstAddress(function(address) {
2856 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2857 // check the xprv key is not set
2858 driver.findElement(By.css(".extended-priv-key"))
2859 .getAttribute("value")
2860 .then(function(xprv) {
2861 expect(xprv).toBe("NA");
2862 // check the private key is not set
2863 driver.findElements(By.css(".privkey"))
2864 .then(function(els) {
2865 els[0]
2866 .getText()
2867 .then(function(privkey) {
2868 expect(xprv).toBe("NA");
2869 done();
2870 });
2871 });
2872 });
2873 });
2874 });
2875 });
2876
2877 // github issue 40
2878 // xpub for bip32 root key will not work with hardened derivation paths
2879 it('Shows error for hardened derivation paths with xpub root key', function(done) {
2880 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2881 driver.findElement(By.css("#root-key"))
2882 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2883 driver.sleep(feedbackDelay).then(function() {
2884 // Check feedback is correct
2885 driver.findElement(By.css('.feedback'))
2886 .getText()
2887 .then(function(feedback) {
2888 var msg = "Hardened derivation path is invalid with xpub key";
2889 expect(feedback).toBe(msg);
2890 // Check no addresses are shown
2891 driver.findElements(By.css('.addresses tr'))
2892 .then(function(rows) {
2893 expect(rows.length).toBe(0);
2894 done();
2895 });
2896 });
2897 });
2898 });
2899
2900 // github issue 39
2901 // no root key shows feedback
2902 it('Shows feedback for no root key', function(done) {
2903 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2904 driver.findElement(By.css('#bip32-tab a'))
2905 .click();
2906 driver.sleep(feedbackDelay).then(function() {
2907 // Check feedback is correct
2908 driver.findElement(By.css('.feedback'))
2909 .getText()
2910 .then(function(feedback) {
2911 expect(feedback).toBe("Invalid root key");
2912 done();
2913 });
2914 });
2915 });
2916
2917 // Github issue 44
2918 // display error switching tabs while addresses are generating
2919 it('Can change details while old addresses are still being generated', function(done) {
2920 // Set to generate 199 more addresses.
2921 // This will take a long time allowing a new set of addresses to be
2922 // generated midway through this lot.
2923 // The newly generated addresses should not include any from the old set.
2924 // Any more than 199 will show an alert which needs to be accepted.
2925 driver.findElement(By.css('.rows-to-add'))
2926 .clear();
2927 driver.findElement(By.css('.rows-to-add'))
2928 .sendKeys('199');
2929 // set the prhase
2930 driver.findElement(By.css('.phrase'))
2931 .sendKeys("abandon abandon ability");
2932 driver.sleep(generateDelay).then(function() {
2933 // change tabs which should cancel the previous generating
2934 driver.findElement(By.css('.rows-to-add'))
2935 .clear();
2936 driver.findElement(By.css('.rows-to-add'))
2937 .sendKeys('20');
2938 driver.findElement(By.css('#bip32-tab a'))
2939 .click()
2940 driver.sleep(generateDelay).then(function() {
2941 driver.findElements(By.css('.index'))
2942 .then(function(els) {
2943 // check the derivation paths have the right quantity
2944 expect(els.length).toBe(20);
2945 // check the derivation paths are in order
2946 testRowsAreInCorrectOrder(done);
2947 });
2948 });
2949 });
2950 }, generateDelay + 10000);
2951
2952 // Github issue 49
2953 // padding for binary should give length with multiple of 256
2954 // hashed entropy 1111 is length 252, so requires 4 leading zeros
2955 // prior to issue 49 it would only generate 2 leading zeros, ie missing 2
2956 it('Pads hashed entropy with leading zeros', function(done) {
2957 driver.findElement(By.css('.use-entropy'))
2958 .click();
2959 driver.executeScript(function() {
2960 $(".mnemonic-length").val("15").trigger("change");
2961 });
2962 driver.findElement(By.css('.entropy'))
2963 .sendKeys("1111");
2964 driver.sleep(generateDelay).then(function() {
2965 driver.findElement(By.css('.phrase'))
2966 .getAttribute("value")
2967 .then(function(phrase) {
2968 expect(phrase).toBe("avocado valid quantum cross link predict excuse edit street able flame large galaxy ginger nuclear");
2969 done();
2970 });
2971 });
2972 });
2973
2974 // Github pull request 55
2975 // https://github.com/iancoleman/bip39/pull/55
2976 // Client select
2977 it('Can set the derivation path on bip32 tab for bitcoincore', function(done) {
2978 testClientSelect(done, {
2979 selectValue: "0",
2980 bip32path: "m/0'/0'",
2981 useHardenedAddresses: "true",
2982 });
2983 });
2984 it('Can set the derivation path on bip32 tab for multibit', function(done) {
2985 testClientSelect(done, {
2986 selectValue: "2",
2987 bip32path: "m/0'/0",
2988 useHardenedAddresses: null,
2989 });
2990 });
2991 it('Can set the derivation path on bip32 tab for coinomi/ledger', function(done) {
2992 testClientSelect(done, {
2993 selectValue: "3",
2994 bip32path: "m/44'/0'/0'",
2995 useHardenedAddresses: null,
2996 });
2997 });
2998
2999 // github issue 58
3000 // https://github.com/iancoleman/bip39/issues/58
3001 // bip32 derivation is correct, does not drop leading zeros
3002 // see also
3003 // https://medium.com/@alexberegszaszi/why-do-my-bip32-wallets-disagree-6f3254cc5846
3004 it('Retains leading zeros for bip32 derivation', function(done) {
3005 driver.findElement(By.css(".phrase"))
3006 .sendKeys("fruit wave dwarf banana earth journey tattoo true farm silk olive fence");
3007 driver.findElement(By.css(".passphrase"))
3008 .sendKeys("banana");
3009 driver.sleep(generateDelay).then(function() {
3010 getFirstAddress(function(address) {
3011 // Note that bitcore generates an incorrect address
3012 // 13EuKhffWkBE2KUwcbkbELZb1MpzbimJ3Y
3013 // see the medium.com link above for more details
3014 expect(address).toBe("17rxURoF96VhmkcEGCj5LNQkmN9HVhWb7F");
3015 done();
3016 });
3017 });
3018 });
3019
3020 // github issue 60
3021 // Japanese mnemonics generate incorrect bip32 seed
3022 // BIP39 seed is set from phrase
3023 it('Generates correct seed for Japanese mnemonics', function(done) {
3024 driver.findElement(By.css(".phrase"))
3025 .sendKeys("あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あおぞら");
3026 driver.findElement(By.css(".passphrase"))
3027 .sendKeys("メートルガバヴァぱばぐゞちぢ十人十色");
3028 driver.sleep(generateDelay).then(function() {
3029 driver.findElement(By.css(".seed"))
3030 .getAttribute("value")
3031 .then(function(seed) {
3032 expect(seed).toBe("a262d6fb6122ecf45be09c50492b31f92e9beb7d9a845987a02cefda57a15f9c467a17872029a9e92299b5cbdf306e3a0ee620245cbd508959b6cb7ca637bd55");
3033 done();
3034 });
3035 });
3036 });
3037
3038 // BIP49 official test vectors
3039 // https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki#test-vectors
3040 it('Generates BIP49 addresses matching the official test vectors', function(done) {
3041 driver.findElement(By.css('#bip49-tab a'))
3042 .click();
3043 selectNetwork("BTC - Bitcoin Testnet");
3044 driver.findElement(By.css(".phrase"))
3045 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about");
3046 driver.sleep(generateDelay).then(function() {
3047 getFirstAddress(function(address) {
3048 expect(address).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2");
3049 done();
3050 });
3051 });
3052 });
3053
3054 // BIP49 derivation path is shown
3055 it('Shows the bip49 derivation path', function(done) {
3056 driver.findElement(By.css('#bip49-tab a'))
3057 .click();
3058 driver.findElement(By.css(".phrase"))
3059 .sendKeys("abandon abandon ability");
3060 driver.sleep(generateDelay).then(function() {
3061 driver.findElement(By.css('#bip49 .path'))
3062 .getAttribute("value")
3063 .then(function(path) {
3064 expect(path).toBe("m/49'/0'/0'/0");
3065 done();
3066 });
3067 });
3068 });
3069
3070 // BIP49 extended private key is shown
3071 it('Shows the bip49 extended private key', function(done) {
3072 driver.findElement(By.css('#bip49-tab a'))
3073 .click();
3074 driver.findElement(By.css(".phrase"))
3075 .sendKeys("abandon abandon ability");
3076 driver.sleep(generateDelay).then(function() {
3077 driver.findElement(By.css('.extended-priv-key'))
3078 .getAttribute("value")
3079 .then(function(xprv) {
3080 expect(xprv).toBe("yprvALYB4DYRG6CzzVgzQZwwqjAA2wjBGC3iEd7KYYScpoDdmf75qMRWZWxoFcRXBJjgEXdFqJ9vDRGRLJQsrL22Su5jMbNFeM9vetaGVqy9Qy2");
3081 done();
3082 });
3083 });
3084 });
3085
3086 // BIP49 extended public key is shown
3087 it('Shows the bip49 extended public key', function(done) {
3088 driver.findElement(By.css('#bip49-tab a'))
3089 .click();
3090 driver.findElement(By.css(".phrase"))
3091 .sendKeys("abandon abandon ability");
3092 driver.sleep(generateDelay).then(function() {
3093 driver.findElement(By.css('.extended-pub-key'))
3094 .getAttribute("value")
3095 .then(function(xprv) {
3096 expect(xprv).toBe("ypub6ZXXTj5K6TmJCymTWbUxCs6tayZffemZbr2vLvrEP8kceTSENtjm7KHH6thvAKxVar9fGe8rgsPEX369zURLZ68b4f7Vexz7RuXsjQ69YDt");
3097 done();
3098 });
3099 });
3100 });
3101
3102 // BIP49 account field changes address list
3103 it('Can set the bip49 account field', function(done) {
3104 driver.findElement(By.css('#bip49-tab a'))
3105 .click();
3106 driver.findElement(By.css('#bip49 .account'))
3107 .clear();
3108 driver.findElement(By.css('#bip49 .account'))
3109 .sendKeys("1");
3110 driver.findElement(By.css(".phrase"))
3111 .sendKeys("abandon abandon ability");
3112 driver.sleep(generateDelay).then(function() {
3113 getFirstAddress(function(address) {
3114 expect(address).toBe("381wg1GGN4rP88rNC9v7QWsiww63yLVPsn");
3115 done();
3116 });
3117 });
3118 });
3119
3120 // BIP49 change field changes address list
3121 it('Can set the bip49 change field', function(done) {
3122 driver.findElement(By.css('#bip49-tab a'))
3123 .click();
3124 driver.findElement(By.css('#bip49 .change'))
3125 .clear();
3126 driver.findElement(By.css('#bip49 .change'))
3127 .sendKeys("1");
3128 driver.findElement(By.css(".phrase"))
3129 .sendKeys("abandon abandon ability");
3130 driver.sleep(generateDelay).then(function() {
3131 getFirstAddress(function(address) {
3132 expect(address).toBe("3PEM7MiKed5konBoN66PQhK8r3hjGhy9dT");
3133 done();
3134 });
3135 });
3136 });
3137
3138 // BIP49 account extendend private key is shown
3139 it('Shows the bip49 account extended private key', function(done) {
3140 driver.findElement(By.css('#bip49-tab a'))
3141 .click();
3142 driver.findElement(By.css(".phrase"))
3143 .sendKeys("abandon abandon ability");
3144 driver.sleep(generateDelay).then(function() {
3145 driver.findElement(By.css('#bip49 .account-xprv'))
3146 .getAttribute("value")
3147 .then(function(xprv) {
3148 expect(xprv).toBe("yprvAHtB1M5Wp675aLzFy9TJYK2mSsLkg6mcBRh5DZTR7L4EnYSmYPaL63KFA4ycg1PngW5LfkmejxzosCs17TKZMpRFKc3z5SJar6QAKaFcaZL");
3149 done();
3150 });
3151 });
3152 });
3153
3154 // BIP49 account extendend public key is shown
3155 it('Shows the bip49 account extended public key', function(done) {
3156 driver.findElement(By.css('#bip49-tab a'))
3157 .click();
3158 driver.findElement(By.css(".phrase"))
3159 .sendKeys("abandon abandon ability");
3160 driver.sleep(generateDelay).then(function() {
3161 driver.findElement(By.css('#bip49 .account-xpub'))
3162 .getAttribute("value")
3163 .then(function(xprv) {
3164 expect(xprv).toBe("ypub6WsXQrcQeTfNnq4j5AzJuSyVzuBF5ZVTYecg1ws2ffbDfLmv5vtadqdj1NgR6C6gufMpMfJpHxvb6JEQKvETVNWCRanNedfJtnTchZiJtsL");
3165 done();
3166 });
3167 });
3168 });
3169
3170 // Test selecting coin where bip49 is unavailable (eg CLAM)
3171 it('Shows an error on bip49 tab for coins without bip49', function(done) {
3172 driver.findElement(By.css('#bip49-tab a'))
3173 .click();
3174 driver.findElement(By.css(".phrase"))
3175 .sendKeys("abandon abandon ability");
3176 driver.sleep(generateDelay).then(function() {
3177 selectNetwork("CLAM - Clams");
3178 // bip49 available is hidden
3179 driver.findElement(By.css('#bip49 .available'))
3180 .getAttribute("class")
3181 .then(function(classes) {
3182 expect(classes).toContain("hidden");
3183 // bip49 unavailable is shown
3184 driver.findElement(By.css('#bip49 .unavailable'))
3185 .getAttribute("class")
3186 .then(function(classes) {
3187 expect(classes).not.toContain("hidden");
3188 // check there are no addresses shown
3189 driver.findElements(By.css('.addresses tr'))
3190 .then(function(rows) {
3191 expect(rows.length).toBe(0);
3192 // check the derived private key is blank
3193 driver.findElement(By.css('.extended-priv-key'))
3194 .getAttribute("value")
3195 .then(function(xprv) {
3196 expect(xprv).toBe('');
3197 // check the derived public key is blank
3198 driver.findElement(By.css('.extended-pub-key'))
3199 .getAttribute("value")
3200 .then(function(xpub) {
3201 expect(xpub).toBe('');
3202 done();
3203 });
3204 });
3205 })
3206 });
3207 });
3208 });
3209 });
3210
3211 // github issue 43
3212 // Cleared mnemonic and root key still allows addresses to be generated
3213 // https://github.com/iancoleman/bip39/issues/43
3214 it('Clears old root keys from memory when mnemonic is cleared', function(done) {
3215 // set the phrase
3216 driver.findElement(By.css(".phrase"))
3217 .sendKeys("abandon abandon ability");
3218 driver.sleep(generateDelay).then(function() {
3219 // clear the mnemonic and root key
3220 // using selenium .clear() doesn't seem to trigger the 'input' event
3221 // so clear it using keys instead
3222 driver.findElement(By.css('.phrase'))
3223 .sendKeys(Key.CONTROL,"a");
3224 driver.findElement(By.css('.phrase'))
3225 .sendKeys(Key.DELETE);
3226 driver.findElement(By.css('.root-key'))
3227 .sendKeys(Key.CONTROL,"a");
3228 driver.findElement(By.css('.root-key'))
3229 .sendKeys(Key.DELETE);
3230 driver.sleep(generateDelay).then(function() {
3231 // try to generate more addresses
3232 driver.findElement(By.css('.more'))
3233 .click();
3234 driver.sleep(generateDelay).then(function() {
3235 driver.findElements(By.css(".addresses tr"))
3236 .then(function(els) {
3237 // check there are no addresses shown
3238 expect(els.length).toBe(0);
3239 done();
3240 });
3241 });
3242 });
3243 });
3244 });
3245
3246 // Github issue 95
3247 // error trying to generate addresses from xpub with hardened derivation
3248 it('Shows error for hardened addresses with xpub root key', function(done) {
3249 driver.findElement(By.css('#bip32-tab a'))
3250 .click()
3251 driver.executeScript(function() {
3252 $(".hardened-addresses").prop("checked", true);
3253 });
3254 // set xpub for account 0 of bip44 for 'abandon abandon ability'
3255 driver.findElement(By.css("#root-key"))
3256 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
3257 driver.sleep(feedbackDelay).then(function() {
3258 // Check feedback is correct
3259 driver.findElement(By.css('.feedback'))
3260 .getText()
3261 .then(function(feedback) {
3262 var msg = "Hardened derivation path is invalid with xpub key";
3263 expect(feedback).toBe(msg);
3264 done();
3265 });
3266 });
3267 });
3268
3269 // Litecoin uses ltub by default, and can optionally be set to xprv
3270 // github issue 96
3271 // https://github.com/iancoleman/bip39/issues/96
3272 // Issue with extended keys on Litecoin
3273 it('Uses ltub by default for litecoin, but can be set to xprv', function(done) {
3274 driver.findElement(By.css('.phrase'))
3275 .sendKeys("abandon abandon ability");
3276 selectNetwork("LTC - Litecoin");
3277 driver.sleep(generateDelay).then(function() {
3278 // check the extended key is generated correctly
3279 driver.findElement(By.css('.root-key'))
3280 .getAttribute("value")
3281 .then(function(rootKey) {
3282 expect(rootKey).toBe("Ltpv71G8qDifUiNesiPqf6h5V6eQ8ic77oxQiYtawiACjBEx3sTXNR2HGDGnHETYxESjqkMLFBkKhWVq67ey1B2MKQXannUqNy1RZVHbmrEjnEU");
3283 // set litecoin to use ltub
3284 driver.executeScript(function() {
3285 $(".litecoin-use-ltub").prop("checked", false);
3286 $(".litecoin-use-ltub").trigger("change");
3287 });
3288 driver.sleep(generateDelay).then(function() {
3289 driver.findElement(By.css('.root-key'))
3290 .getAttribute("value")
3291 .then(function(rootKey) {
3292 expect(rootKey).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
3293 done();
3294 });
3295 })
3296 });
3297 });
3298 });
3299
3300 // github issue 99
3301 // https://github.com/iancoleman/bip39/issues/99#issuecomment-327094159
3302 // "warn me emphatically when they have detected invalid input" to the entropy field
3303 // A warning is shown when entropy is filtered and discarded
3304 it('Warns when entropy is filtered and discarded', function(done) {
3305 driver.findElement(By.css('.use-entropy'))
3306 .click();
3307 // set entropy to have no filtered content
3308 driver.findElement(By.css('.entropy'))
3309 .sendKeys("00000000 00000000 00000000 00000000");
3310 driver.sleep(generateDelay).then(function() {
3311 // check the filter warning does not show
3312 driver.findElement(By.css('.entropy-container .filter-warning'))
3313 .getAttribute("class")
3314 .then(function(classes) {
3315 expect(classes).toContain("hidden");
3316 // set entropy to have some filtered content
3317 driver.findElement(By.css('.entropy'))
3318 .sendKeys("10000000 zxcvbn 00000000 00000000 00000000");
3319 driver.sleep(entropyFeedbackDelay).then(function() {
3320 // check the filter warning shows
3321 driver.findElement(By.css('.entropy-container .filter-warning'))
3322 .getAttribute("class")
3323 .then(function(classes) {
3324 expect(classes).not.toContain("hidden");
3325 done();
3326 });
3327 });
3328 });
3329 });
3330 });
3331
3332 // Bitcoin Cash address can be set to use cashaddr format
3333 it('Can use cashaddr format for bitcoin cash addresses', function(done) {
3334 driver.executeScript(function() {
3335 $(".use-bch-cashaddr-addresses").prop("checked", true);
3336 });
3337 driver.findElement(By.css('.phrase'))
3338 .sendKeys("abandon abandon ability");
3339 selectNetwork("BCH - Bitcoin Cash");
3340 driver.sleep(generateDelay).then(function() {
3341 getFirstAddress(function(address) {
3342 expect(address).toBe("bitcoincash:qzlquk7w4hkudxypl4fgv8x279r754dkvur7jpcsps");
3343 done();
3344 });
3345 });
3346 });
3347
3348 // Bitcoin Cash address can be set to use bitpay format
3349 it('Can use bitpay format for bitcoin cash addresses', function(done) {
3350 driver.executeScript(function() {
3351 $(".use-bch-bitpay-addresses").prop("checked", true);
3352 });
3353 driver.findElement(By.css('.phrase'))
3354 .sendKeys("abandon abandon ability");
3355 selectNetwork("BCH - Bitcoin Cash");
3356 driver.sleep(generateDelay).then(function() {
3357 getFirstAddress(function(address) {
3358 expect(address).toBe("CZnpA9HPmvhuhLLPWJP8rNDpLUYXy1LXFk");
3359 done();
3360 });
3361 });
3362 });
3363
3364 // Bitcoin Cash address can be set to use legacy format
3365 it('Can use legacy format for bitcoin cash addresses', function(done) {
3366 driver.executeScript(function() {
3367 $(".use-bch-legacy-addresses").prop("checked", true);
3368 });
3369 driver.findElement(By.css('.phrase'))
3370 .sendKeys("abandon abandon ability");
3371 selectNetwork("BCH - Bitcoin Cash");
3372 driver.sleep(generateDelay).then(function() {
3373 getFirstAddress(function(address) {
3374 expect(address).toBe("1JKvb6wKtsjNoCRxpZ4DGrbniML7z5U16A");
3375 done();
3376 });
3377 });
3378 });
3379
3380 // End of tests ported from old suit, so no more comments above each test now
3381
3382 it('Can generate more addresses from a custom index', function(done) {
3383 var expectedIndexes = [
3384 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,
3385 40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59
3386 ];
3387 driver.findElement(By.css('.phrase'))
3388 .sendKeys("abandon abandon ability");
3389 driver.sleep(generateDelay).then(function() {
3390 // Set start of next lot of rows to be from index 40
3391 // which means indexes 20-39 will not be in the table.
3392 driver.findElement(By.css('.more-rows-start-index'))
3393 .sendKeys("40");
3394 driver.findElement(By.css('.more'))
3395 .click();
3396 driver.sleep(generateDelay).then(function() {
3397 // Check actual indexes in the table match the expected pattern
3398 driver.findElements(By.css(".index"))
3399 .then(function(els) {
3400 expect(els.length).toBe(expectedIndexes.length);
3401 var testRowAtIndex = function(i) {
3402 if (i >= expectedIndexes.length) {
3403 done();
3404 }
3405 else {
3406 els[i].getText()
3407 .then(function(actualPath) {
3408 var noHardened = actualPath.replace(/'/g, "");
3409 var pathBits = noHardened.split("/")
3410 var lastBit = pathBits[pathBits.length-1];
3411 var actualIndex = parseInt(lastBit);
3412 var expectedIndex = expectedIndexes[i];
3413 expect(actualIndex).toBe(expectedIndex);
3414 testRowAtIndex(i+1);
3415 });
3416 }
3417 }
3418 testRowAtIndex(0);
3419 });
3420 });
3421 });
3422 });
3423
3424 it('Can generate BIP141 addresses with P2WPKH-in-P2SH semanitcs', function(done) {
3425 // Sourced from BIP49 official test specs
3426 driver.findElement(By.css('#bip141-tab a'))
3427 .click();
3428 driver.findElement(By.css('.bip141-path'))
3429 .clear();
3430 driver.findElement(By.css('.bip141-path'))
3431 .sendKeys("m/49'/1'/0'/0");
3432 selectNetwork("BTC - Bitcoin Testnet");
3433 driver.findElement(By.css(".phrase"))
3434 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about");
3435 driver.sleep(generateDelay).then(function() {
3436 getFirstAddress(function(address) {
3437 expect(address).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2");
3438 done();
3439 });
3440 });
3441 });
3442
3443 it('Can generate BIP141 addresses with P2WPKH semanitcs', function(done) {
3444 // This result tested against bitcoinjs-lib test spec for segwit address
3445 // using the first private key of this mnemonic and default path m/0
3446 // https://github.com/bitcoinjs/bitcoinjs-lib/blob/9c8503cab0c6c30a95127042703bc18e8d28c76d/test/integration/addresses.js#L50
3447 // so whilst not directly comparable, substituting the private key produces
3448 // identical results between this tool and the bitcoinjs-lib test.
3449 // Private key generated is:
3450 // L3L8Nu9whawPBNLGtFqDhKut9DKKfG3CQoysupT7BimqVCZsLFNP
3451 driver.findElement(By.css('#bip141-tab a'))
3452 .click();
3453 // Choose P2WPKH
3454 driver.executeScript(function() {
3455 $(".bip141-semantics option[selected]").removeAttr("selected");
3456 $(".bip141-semantics option").filter(function(i,e) {
3457 return $(e).html() == "P2WPKH";
3458 }).prop("selected", true);
3459 $(".bip141-semantics").trigger("change");
3460 });
3461 driver.findElement(By.css(".phrase"))
3462 .sendKeys("abandon abandon ability");
3463 driver.sleep(generateDelay).then(function() {
3464 getFirstAddress(function(address) {
3465 expect(address).toBe("bc1qfwu6a5a3evygrk8zvdxxvz4547lmpyx5vsfxe9");
3466 done();
3467 });
3468 });
3469 });
3470
3471 it('Shows the entropy used by the PRNG when clicking generate', function(done) {
3472 driver.findElement(By.css('.generate')).click();
3473 driver.sleep(generateDelay).then(function() {
3474 driver.findElement(By.css('.entropy'))
3475 .getAttribute("value")
3476 .then(function(entropy) {
3477 expect(entropy).not.toBe("");
3478 done();
3479 });
3480 });
3481 });
3482
3483 it('Shows the index of each word in the mnemonic', function(done) {
3484 driver.findElement(By.css('.phrase'))
3485 .sendKeys("abandon abandon ability");
3486 driver.sleep(generateDelay).then(function() {
3487 driver.findElement(By.css('.use-entropy'))
3488 .click();
3489 driver.findElement(By.css('.word-indexes'))
3490 .getText()
3491 .then(function(indexes) {
3492 expect(indexes).toBe("0, 0, 1");
3493 done();
3494 });
3495 });
3496 });
3497
3498 it('Shows the derivation path for bip84 tab', function(done) {
3499 driver.findElement(By.css('#bip84-tab a'))
3500 .click()
3501 driver.findElement(By.css('.phrase'))
3502 .sendKeys('abandon abandon ability');
3503 driver.sleep(generateDelay).then(function() {
3504 driver.findElement(By.css('#bip84 .path'))
3505 .getAttribute("value")
3506 .then(function(path) {
3507 expect(path).toBe("m/84'/0'/0'/0");
3508 done();
3509 })
3510 });
3511 });
3512
3513 it('Shows the extended private key for bip84 tab', function(done) {
3514 driver.findElement(By.css('#bip84-tab a'))
3515 .click()
3516 driver.findElement(By.css('.phrase'))
3517 .sendKeys('abandon abandon ability');
3518 driver.sleep(generateDelay).then(function() {
3519 driver.findElement(By.css('.extended-priv-key'))
3520 .getAttribute("value")
3521 .then(function(path) {
3522 expect(path).toBe("zprvAev3RKrZ3QVKiUFCfdeMRen1BPDJgdNt1XpxiDy8acSs4kkAGTCvq7HeRYRNNpo8EtEjCFQBWavJwtCUR29y4TUCH4X5RXMcyq48uN8y9BP");
3523 done();
3524 })
3525 });
3526 });
3527
3528 it('Shows the extended public key for bip84 tab', function(done) {
3529 driver.findElement(By.css('#bip84-tab a'))
3530 .click()
3531 driver.findElement(By.css('.phrase'))
3532 .sendKeys('abandon abandon ability');
3533 driver.sleep(generateDelay).then(function() {
3534 driver.findElement(By.css('.extended-pub-key'))
3535 .getAttribute("value")
3536 .then(function(path) {
3537 expect(path).toBe("zpub6suPpqPSsn3cvxKfmfBMnnijjR3o666jNkkZWcNk8wyqwZ5JozXBNuc8Gs7DB3uLwTDvGVTspVEAUQcEjKF3pZHgywVbubdTqbXTUg7usyx");
3538 done();
3539 })
3540 });
3541 });
3542
3543 it('Changes the address list if bip84 account is changed', function(done) {
3544 driver.findElement(By.css('#bip84-tab a'))
3545 .click()
3546 driver.findElement(By.css('#bip84 .account'))
3547 .sendKeys('1');
3548 driver.findElement(By.css('.phrase'))
3549 .sendKeys('abandon abandon ability');
3550 driver.sleep(generateDelay).then(function() {
3551 getFirstAddress(function(address) {
3552 expect(address).toBe("bc1qp7vv669t2fy965jdzvqwrraana89ctd5ewc662");
3553 done();
3554 });
3555 });
3556 });
3557
3558 it('Changes the address list if bip84 change is changed', function(done) {
3559 driver.findElement(By.css('#bip84-tab a'))
3560 .click()
3561 driver.findElement(By.css('#bip84 .change'))
3562 .sendKeys('1');
3563 driver.findElement(By.css('.phrase'))
3564 .sendKeys('abandon abandon ability');
3565 driver.sleep(generateDelay).then(function() {
3566 getFirstAddress(function(address) {
3567 expect(address).toBe("bc1qr39vj6rh06ff05m53uxq8uazehwhccswylhrs2");
3568 done();
3569 });
3570 });
3571 });
3572
3573 it('Passes the official BIP84 test spec for rootpriv', function(done) {
3574 driver.findElement(By.css('#bip84-tab a'))
3575 .click()
3576 driver.findElement(By.css('.phrase'))
3577 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3578 driver.sleep(generateDelay).then(function() {
3579 driver.findElement(By.css(".root-key"))
3580 .getAttribute("value")
3581 .then(function(rootKey) {
3582 expect(rootKey).toBe("zprvAWgYBBk7JR8Gjrh4UJQ2uJdG1r3WNRRfURiABBE3RvMXYSrRJL62XuezvGdPvG6GFBZduosCc1YP5wixPox7zhZLfiUm8aunE96BBa4Kei5");
3583 done();
3584 })
3585 });
3586 });
3587
3588 it('Passes the official BIP84 test spec for account 0 xprv', function(done) {
3589 driver.findElement(By.css('#bip84-tab a'))
3590 .click()
3591 driver.findElement(By.css('.phrase'))
3592 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3593 driver.sleep(generateDelay).then(function() {
3594 driver.findElement(By.css("#bip84 .account-xprv"))
3595 .getAttribute("value")
3596 .then(function(rootKey) {
3597 expect(rootKey).toBe("zprvAdG4iTXWBoARxkkzNpNh8r6Qag3irQB8PzEMkAFeTRXxHpbF9z4QgEvBRmfvqWvGp42t42nvgGpNgYSJA9iefm1yYNZKEm7z6qUWCroSQnE");
3598 done();
3599 })
3600 });
3601 });
3602
3603 it('Passes the official BIP84 test spec for account 0 xpub', function(done) {
3604 driver.findElement(By.css('#bip84-tab a'))
3605 .click()
3606 driver.findElement(By.css('.phrase'))
3607 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3608 driver.sleep(generateDelay).then(function() {
3609 driver.findElement(By.css("#bip84 .account-xpub"))
3610 .getAttribute("value")
3611 .then(function(rootKey) {
3612 expect(rootKey).toBe("zpub6rFR7y4Q2AijBEqTUquhVz398htDFrtymD9xYYfG1m4wAcvPhXNfE3EfH1r1ADqtfSdVCToUG868RvUUkgDKf31mGDtKsAYz2oz2AGutZYs");
3613 done();
3614 })
3615 });
3616 });
3617
3618 it('Passes the official BIP84 test spec for account 0 first address', function(done) {
3619 driver.findElement(By.css('#bip84-tab a'))
3620 .click()
3621 driver.findElement(By.css('.phrase'))
3622 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3623 driver.sleep(generateDelay).then(function() {
3624 getFirstAddress(function(address) {
3625 expect(address).toBe("bc1qcr8te4kr609gcawutmrza0j4xv80jy8z306fyu");
3626 done();
3627 });
3628 });
3629 });
3630
3631 it('Passes the official BIP84 test spec for account 0 first change address', function(done) {
3632 driver.findElement(By.css('#bip84-tab a'))
3633 .click()
3634 driver.findElement(By.css('.phrase'))
3635 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3636 driver.findElement(By.css('#bip84 .change'))
3637 .sendKeys('1');
3638 driver.sleep(generateDelay).then(function() {
3639 getFirstAddress(function(address) {
3640 expect(address).toBe("bc1q8c6fshw2dlwun7ekn9qwf37cu2rn755upcp6el");
3641 done();
3642 });
3643 });
3644 });
3645
3646 it('Can display the table as csv', function(done) {
3647 var headings = "path,address,public key,private key";
3648 var row1 = "m/44'/0'/0'/0/0,1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug,033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3,L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE";
3649 var row20 = "m/44'/0'/0'/0/19,1KhBy28XLAciXnnRvm71PvQJaETyrxGV55,02b4b3e396434d8cdd20c03ac4aaa07387784d5d867b75987f516f5705ee68cb3a,L4GrDrjReMsCAu5DkLXn79jSb95qR7Zfx7eshybCQZ1qL32MXJab";
3650 driver.findElement(By.css('.phrase'))
3651 .sendKeys('abandon abandon ability');
3652 driver.sleep(generateDelay).then(function() {
3653 driver.findElement(By.css('.csv'))
3654 .getAttribute("value")
3655 .then(function(csv) {
3656 expect(csv).toContain(headings);
3657 expect(csv).toContain(row1);
3658 expect(csv).toContain(row20);
3659 done();
3660 });
3661 });
3662 });
3663
3664 it('LeftPads ethereum keys that are less than 32 bytes', function(done) {
3665 // see https://github.com/iancoleman/bip39/issues/155
3666 selectNetwork("ETH - Ethereum");
3667 driver.findElement(By.css('#bip32-tab a'))
3668 .click()
3669 driver.findElement(By.css('#bip32-path'))
3670 .clear();
3671 driver.findElement(By.css('#bip32-path'))
3672 .sendKeys("m/44'/60'/0'");
3673 driver.findElement(By.css('.phrase'))
3674 .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');
3675 driver.sleep(generateDelay).then(function() {
3676 getFirstAddress(function(address) {
3677 expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118");
3678 done();
3679 });
3680 });
3681 });
3682
3683 it('Can encrypt private keys using BIP38', function(done) {
3684 // see https://github.com/iancoleman/bip39/issues/140
3685 driver.executeScript(function() {
3686 $(".use-bip38").prop("checked", true);
3687 });
3688 driver.findElement(By.css('.bip38-password'))
3689 .sendKeys('bip38password');
3690 driver.findElement(By.css('.rows-to-add'))
3691 .clear();
3692 driver.findElement(By.css('.rows-to-add'))
3693 .sendKeys('1');
3694 driver.findElement(By.css('.phrase'))
3695 .sendKeys('abandon abandon ability');
3696 driver.sleep(bip38delay).then(function() {
3697 // address
3698 getFirstRowValue(function(address) {
3699 expect(address).toBe("1NCvSdumA3ngMM9c4aqU56AM6rqXddfuXB");
3700 // pubkey
3701 getFirstRowValue(function(pubkey) {
3702 expect(pubkey).toBe("043f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3884a74447ea901729b1e73a999b7520e7cb55b4120e6432c64153ccab8a848e1");
3703 // privkey
3704 getFirstRowValue(function(privkey) {
3705 expect(privkey).toBe("6PRNRiFnj1RoR3sXhymdCvoZCgnUHQpfupNdKkFbWJkwWQEKesWt1EDMDM");
3706 done();
3707 }, ".privkey");
3708 }, ".pubkey");
3709 }, ".address");
3710 });
3711 }, bip38delay + 5000);
3712
3713 it('Shows the checksum for the entropy', function(done) {
3714 driver.findElement(By.css('.use-entropy'))
3715 .click();
3716 driver.findElement(By.css('.entropy'))
3717 .sendKeys("00000000000000000000000000000000");
3718 driver.sleep(generateDelay).then(function() {
3719 driver.findElement(By.css('.checksum'))
3720 .getText()
3721 .then(function(text) {
3722 expect(text).toBe("1");
3723 done();
3724 });
3725 });
3726 });
3727
3728 it('Shows the checksum for the entropy with the correct groupings', function(done) {
3729 driver.findElement(By.css('.use-entropy'))
3730 .click();
3731 // create a checksum of 20 bits, which spans multiple words
3732 driver.findElement(By.css('.entropy'))
3733 .sendKeys("F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000");
3734 driver.sleep(generateDelay).then(function() {
3735 driver.findElement(By.css('.checksum'))
3736 .getText()
3737 .then(function(text) {
3738 // first group is 9 bits, second group is 11
3739 expect(text).toBe("011010111 01110000110");
3740 done();
3741 });
3742 });
3743 });
3744
3745 it('Uses vprv for bitcoin testnet p2wpkh', function(done) {
3746 selectNetwork("BTC - Bitcoin Testnet");
3747 driver.findElement(By.css('#bip84-tab a'))
3748 .click()
3749 driver.findElement(By.css('.phrase'))
3750 .sendKeys('abandon abandon ability');
3751 driver.sleep(generateDelay).then(function() {
3752 driver.findElement(By.css('.root-key'))
3753 .getAttribute("value")
3754 .then(function(path) {
3755 expect(path).toBe("vprv9DMUxX4ShgxML9N2YV5CvWEebWrM9aJ5ULpbRRyzyWu6vs4BzTvbfFFrH41N5hVi7MYSfiugd765L3JmAfDM5po36Y8ouCKRDeYQwByCmS7");
3756 done();
3757 })
3758 });
3759 });
3760
3761 it('Shows a warning if generating weak mnemonics', function(done) {
3762 driver.executeScript(function() {
3763 $(".strength option[selected]").removeAttr("selected");
3764 $(".strength option[value=6]").prop("selected", true);
3765 $(".strength").trigger("change");
3766 });
3767 driver.findElement(By.css(".generate-container .warning"))
3768 .getAttribute("class")
3769 .then(function(classes) {
3770 expect(classes).not.toContain("hidden");
3771 done();
3772 });
3773 });
3774
3775 it('Does not show a warning if generating strong mnemonics', function(done) {
3776 driver.executeScript(function() {
3777 $(".strength option[selected]").removeAttr("selected");
3778 $(".strength option[value=12]").prop("selected", true);
3779 });
3780 driver.findElement(By.css(".generate-container .warning"))
3781 .getAttribute("class")
3782 .then(function(classes) {
3783 expect(classes).toContain("hidden");
3784 done();
3785 });
3786 });
3787
3788 it('Shows a warning if overriding weak entropy with longer mnemonics', function(done) {
3789 driver.findElement(By.css('.use-entropy'))
3790 .click();
3791 driver.findElement(By.css('.entropy'))
3792 .sendKeys("0123456789abcdef"); // 6 words
3793 driver.executeScript(function() {
3794 $(".mnemonic-length").val("12").trigger("change");
3795 });
3796 driver.findElement(By.css(".weak-entropy-override-warning"))
3797 .getAttribute("class")
3798 .then(function(classes) {
3799 expect(classes).not.toContain("hidden");
3800 done();
3801 });
3802 });
3803
3804 it('Does not show a warning if entropy is stronger than mnemonic length', function(done) {
3805 driver.findElement(By.css('.use-entropy'))
3806 .click();
3807 driver.findElement(By.css('.entropy'))
3808 .sendKeys("0123456789abcdef0123456789abcdef0123456789abcdef"); // 18 words
3809 driver.executeScript(function() {
3810 $(".mnemonic-length").val("12").trigger("change");
3811 });
3812 driver.findElement(By.css(".weak-entropy-override-warning"))
3813 .getAttribute("class")
3814 .then(function(classes) {
3815 expect(classes).toContain("hidden");
3816 done();
3817 });
3818 });
3819
3820 it('Shows litecoin BIP49 addresses', function(done) {
3821 driver.findElement(By.css('.phrase'))
3822 .sendKeys('abandon abandon ability');
3823 selectNetwork("LTC - Litecoin");
3824 driver.findElement(By.css('#bip49-tab a'))
3825 .click()
3826 // bip49 addresses are shown
3827 driver.sleep(generateDelay).then(function() {
3828 driver.findElement(By.css('#bip49 .available'))
3829 .getAttribute("class")
3830 .then(function(classes) {
3831 expect(classes).not.toContain("hidden");
3832 // check first address
3833 getFirstAddress(function(address) {
3834 expect(address).toBe("MFwLPhsXoBuSLL8cLmW9uK6tChkzduV8qN");
3835 done();
3836 });
3837 });
3838 });
3839 });
3840
3841 it('Can use root keys to generate segwit table rows', function(done) {
3842 // segwit uses ypub / zpub instead of xpub but the root key should still
3843 // be valid regardless of the encoding used to import that key.
3844 // Maybe this breaks the reason for the different extended key prefixes, but
3845 // since the parsed root key is used behind the scenes anyhow this should be
3846 // allowed.
3847 driver.findElement(By.css('#root-key'))
3848 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
3849 driver.findElement(By.css('#bip49-tab a'))
3850 .click()
3851 // bip49 addresses are shown
3852 driver.sleep(generateDelay).then(function() {
3853 getFirstAddress(function(address) {
3854 expect(address).toBe("3QG2Y9AA4xZ846gKHZqNf7mvVKbLqMKxr2");
3855 done();
3856 });
3857 });
3858 });
3859
3860 });