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