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