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