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