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