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