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