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