]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blob - tests/spec/tests.js
Merge pull request #323 from ellaism/ella-support
[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 it('Allows selection of Ethersocial Network', function(done) {
1445 var params = {
1446 selectText: "ESN - Ethersocial Network",
1447 firstAddress: "0x6EE99Be2A0C7F887a71e21C8608ACF0aa0D2b767",
1448 };
1449 testNetwork(done, params);
1450 });
1451
1452 // BIP39 seed is set from phrase
1453 it('Sets the bip39 seed from the prhase', function(done) {
1454 driver.findElement(By.css('.phrase'))
1455 .sendKeys('abandon abandon ability');
1456 driver.sleep(generateDelay).then(function() {
1457 driver.findElement(By.css('.seed'))
1458 .getAttribute("value")
1459 .then(function(seed) {
1460 expect(seed).toBe("20da140d3dd1df8713cefcc4d54ce0e445b4151027a1ab567b832f6da5fcc5afc1c3a3f199ab78b8e0ab4652efd7f414ac2c9a3b81bceb879a70f377aa0a58f3");
1461 done();
1462 })
1463 });
1464 });
1465
1466 // BIP32 root key is set from phrase
1467 it('Sets the bip39 root key from the prhase', function(done) {
1468 driver.findElement(By.css('.phrase'))
1469 .sendKeys('abandon abandon ability');
1470 driver.sleep(generateDelay).then(function() {
1471 driver.findElement(By.css('.root-key'))
1472 .getAttribute("value")
1473 .then(function(seed) {
1474 expect(seed).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
1475 done();
1476 })
1477 });
1478 });
1479
1480 // Tabs show correct addresses when changed
1481 it('Shows the correct address when tab is changed', function(done) {
1482 driver.findElement(By.css('.phrase'))
1483 .sendKeys('abandon abandon ability');
1484 driver.sleep(generateDelay).then(function() {
1485 driver.findElement(By.css('#bip32-tab a'))
1486 .click();
1487 driver.sleep(generateDelay).then(function() {
1488 getFirstAddress(function(address) {
1489 expect(address).toBe("17uQ7s2izWPwBmEVFikTmZUjbBKWYdJchz");
1490 done();
1491 });
1492 });
1493 });
1494 });
1495
1496 // BIP44 derivation path is shown
1497 it('Shows the derivation path for bip44 tab', function(done) {
1498 driver.findElement(By.css('.phrase'))
1499 .sendKeys('abandon abandon ability');
1500 driver.sleep(generateDelay).then(function() {
1501 driver.findElement(By.css('#bip44 .path'))
1502 .getAttribute("value")
1503 .then(function(path) {
1504 expect(path).toBe("m/44'/0'/0'/0");
1505 done();
1506 })
1507 });
1508 });
1509
1510 // BIP44 extended private key is shown
1511 it('Shows the extended private key for bip44 tab', function(done) {
1512 driver.findElement(By.css('.phrase'))
1513 .sendKeys('abandon abandon ability');
1514 driver.sleep(generateDelay).then(function() {
1515 driver.findElement(By.css('.extended-priv-key'))
1516 .getAttribute("value")
1517 .then(function(path) {
1518 expect(path).toBe("xprvA2DxxvPZcyRvYgZMGS53nadR32mVDeCyqQYyFhrCVbJNjPoxMeVf7QT5g7mQASbTf9Kp4cryvcXnu2qurjWKcrdsr91jXymdCDNxKgLFKJG");
1519 done();
1520 })
1521 });
1522 });
1523
1524 // BIP44 extended public key is shown
1525 it('Shows the extended public key for bip44 tab', function(done) {
1526 driver.findElement(By.css('.phrase'))
1527 .sendKeys('abandon abandon ability');
1528 driver.sleep(generateDelay).then(function() {
1529 driver.findElement(By.css('.extended-pub-key'))
1530 .getAttribute("value")
1531 .then(function(path) {
1532 expect(path).toBe("xpub6FDKNRvTTLzDmAdpNTc49ia9b4byd6vqCdUa46Fp3vqMcC96uBoufCmZXQLiN5AK3iSCJMhf9gT2sxkpyaPepRuA7W3MujV5tGmF5VfbueM");
1533 done();
1534 })
1535 });
1536 });
1537
1538 // BIP44 account field changes address list
1539 it('Changes the address list if bip44 account is changed', function(done) {
1540 driver.findElement(By.css('#bip44 .account'))
1541 .sendKeys('1');
1542 driver.findElement(By.css('.phrase'))
1543 .sendKeys('abandon abandon ability');
1544 driver.sleep(generateDelay).then(function() {
1545 getFirstAddress(function(address) {
1546 expect(address).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H");
1547 done();
1548 });
1549 });
1550 });
1551
1552 // BIP44 change field changes address list
1553 it('Changes the address list if bip44 change is changed', function(done) {
1554 driver.findElement(By.css('#bip44 .change'))
1555 .sendKeys('1');
1556 driver.findElement(By.css('.phrase'))
1557 .sendKeys('abandon abandon ability');
1558 driver.sleep(generateDelay).then(function() {
1559 getFirstAddress(function(address) {
1560 expect(address).toBe("1KAGfWgqfVbSSXY56fNQ7YnhyKuoskHtYo");
1561 done();
1562 });
1563 });
1564 });
1565
1566 // BIP32 derivation path can be set
1567 it('Can use a custom bip32 derivation path', function(done) {
1568 driver.findElement(By.css('#bip32-tab a'))
1569 .click();
1570 driver.findElement(By.css('#bip32 .path'))
1571 .clear();
1572 driver.findElement(By.css('#bip32 .path'))
1573 .sendKeys('m/1');
1574 driver.findElement(By.css('.phrase'))
1575 .sendKeys('abandon abandon ability');
1576 driver.sleep(generateDelay).then(function() {
1577 getFirstAddress(function(address) {
1578 expect(address).toBe("16pYQQdLD1hH4hwTGLXBaZ9Teboi1AGL8L");
1579 done();
1580 });
1581 });
1582 });
1583
1584 // BIP32 can use hardened derivation paths
1585 it('Can use a hardened derivation paths', function(done) {
1586 driver.findElement(By.css('#bip32-tab a'))
1587 .click();
1588 driver.findElement(By.css('#bip32 .path'))
1589 .clear();
1590 driver.findElement(By.css('#bip32 .path'))
1591 .sendKeys("m/0'");
1592 driver.findElement(By.css('.phrase'))
1593 .sendKeys('abandon abandon ability');
1594 driver.sleep(generateDelay).then(function() {
1595 getFirstAddress(function(address) {
1596 expect(address).toBe("14aXZeprXAE3UUKQc4ihvwBvww2LuEoHo4");
1597 done();
1598 });
1599 });
1600 });
1601
1602 // BIP32 extended private key is shown
1603 it('Shows the BIP32 extended private key', function(done) {
1604 driver.findElement(By.css('#bip32-tab a'))
1605 .click();
1606 driver.findElement(By.css('.phrase'))
1607 .sendKeys('abandon abandon ability');
1608 driver.sleep(generateDelay).then(function() {
1609 driver.findElement(By.css('.extended-priv-key'))
1610 .getAttribute("value")
1611 .then(function(privKey) {
1612 expect(privKey).toBe("xprv9va99uTVE5aLiutUVLTyfxfe8v8aaXjSQ1XxZbK6SezYVuikA9MnjQVTA8rQHpNA5LKvyQBpLiHbBQiiccKiBDs7eRmBogsvq3THFeLHYbe");
1613 done();
1614 });
1615 });
1616 });
1617
1618 // BIP32 extended public key is shown
1619 it('Shows the BIP32 extended public key', function(done) {
1620 driver.findElement(By.css('#bip32-tab a'))
1621 .click();
1622 driver.findElement(By.css('.phrase'))
1623 .sendKeys('abandon abandon ability');
1624 driver.sleep(generateDelay).then(function() {
1625 driver.findElement(By.css('.extended-pub-key'))
1626 .getAttribute("value")
1627 .then(function(pubKey) {
1628 expect(pubKey).toBe("xpub69ZVZQzP4T8dwPxwbMzz36cNgwy4yzTHmETZMyihzzXXNi3thgg3HCow1RtY252wdw5rS8369xKnraN5Q93y3FkFfJp2XEHWUrkyXsjS93P");
1629 done();
1630 });
1631 });
1632 });
1633
1634 // Derivation path is shown in table
1635 it('Shows the derivation path in the table', function(done) {
1636 driver.findElement(By.css('.phrase'))
1637 .sendKeys('abandon abandon ability');
1638 driver.sleep(generateDelay).then(function() {
1639 getFirstPath(function(path) {
1640 expect(path).toBe("m/44'/0'/0'/0/0");
1641 done();
1642 });
1643 });
1644 });
1645
1646 // Derivation path for address can be hardened
1647 it('Can derive hardened addresses', function(done) {
1648 driver.findElement(By.css('#bip32-tab a'))
1649 .click();
1650 driver.executeScript(function() {
1651 $(".hardened-addresses").prop("checked", true);
1652 });
1653 driver.findElement(By.css('.phrase'))
1654 .sendKeys('abandon abandon ability');
1655 driver.sleep(generateDelay).then(function() {
1656 getFirstAddress(function(address) {
1657 expect(address).toBe("18exLzUv7kfpiXRzmCjFDoC9qwNLFyvwyd");
1658 done();
1659 });
1660 });
1661 });
1662
1663 // Derivation path visibility can be toggled
1664 it('Can toggle visibility of the derivation path column', function(done) {
1665 driver.findElement(By.css('.phrase'))
1666 .sendKeys('abandon abandon ability');
1667 driver.sleep(generateDelay).then(function() {
1668 driver.findElement(By.css('.index-toggle'))
1669 .click();
1670 testColumnValuesAreInvisible(done, "index");
1671 });
1672 });
1673
1674 // Address is shown
1675 it('Shows the address in the table', function(done) {
1676 driver.findElement(By.css('.phrase'))
1677 .sendKeys('abandon abandon ability');
1678 driver.sleep(generateDelay).then(function() {
1679 getFirstAddress(function(address) {
1680 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
1681 done();
1682 });
1683 });
1684 });
1685
1686 // Addresses are shown in order of derivation path
1687 it('Shows the address in order of derivation path', function(done) {
1688 driver.findElement(By.css('.phrase'))
1689 .sendKeys('abandon abandon ability');
1690 driver.sleep(generateDelay).then(function() {
1691 testRowsAreInCorrectOrder(done);
1692 });
1693 });
1694
1695 // Address visibility can be toggled
1696 it('Can toggle visibility of the address column', function(done) {
1697 driver.findElement(By.css('.phrase'))
1698 .sendKeys('abandon abandon ability');
1699 driver.sleep(generateDelay).then(function() {
1700 driver.findElement(By.css('.address-toggle'))
1701 .click();
1702 testColumnValuesAreInvisible(done, "address");
1703 });
1704 });
1705
1706 // Public key is shown in table
1707 it('Shows the public key in the table', function(done) {
1708 driver.findElement(By.css('.phrase'))
1709 .sendKeys('abandon abandon ability');
1710 driver.sleep(generateDelay).then(function() {
1711 driver.findElements(By.css('.pubkey'))
1712 .then(function(els) {
1713 els[0].getText()
1714 .then(function(pubkey) {
1715 expect(pubkey).toBe("033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3");
1716 done();
1717 });
1718 });
1719 });
1720 });
1721
1722 // Public key visibility can be toggled
1723 it('Can toggle visibility of the public key column', function(done) {
1724 driver.findElement(By.css('.phrase'))
1725 .sendKeys('abandon abandon ability');
1726 driver.sleep(generateDelay).then(function() {
1727 driver.findElement(By.css('.public-key-toggle'))
1728 .click();
1729 testColumnValuesAreInvisible(done, "pubkey");
1730 });
1731 });
1732
1733 // Private key is shown in table
1734 it('Shows the private key in the table', function(done) {
1735 driver.findElement(By.css('.phrase'))
1736 .sendKeys('abandon abandon ability');
1737 driver.sleep(generateDelay).then(function() {
1738 driver.findElements(By.css('.privkey'))
1739 .then(function(els) {
1740 els[0].getText()
1741 .then(function(pubkey) {
1742 expect(pubkey).toBe("L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE");
1743 done();
1744 });
1745 });
1746 });
1747 });
1748
1749 // Private key visibility can be toggled
1750 it('Can toggle visibility of the private key column', function(done) {
1751 driver.findElement(By.css('.phrase'))
1752 .sendKeys('abandon abandon ability');
1753 driver.sleep(generateDelay).then(function() {
1754 driver.findElement(By.css('.private-key-toggle'))
1755 .click();
1756 testColumnValuesAreInvisible(done, "privkey");
1757 });
1758 });
1759
1760 // More addresses can be generated
1761 it('Can generate more rows in the table', function(done) {
1762 driver.findElement(By.css('.phrase'))
1763 .sendKeys('abandon abandon ability');
1764 driver.sleep(generateDelay).then(function() {
1765 driver.findElement(By.css('.more'))
1766 .click();
1767 driver.sleep(generateDelay).then(function() {
1768 driver.findElements(By.css('.address'))
1769 .then(function(els) {
1770 expect(els.length).toBe(40);
1771 done();
1772 });
1773 });
1774 });
1775 });
1776
1777 // A custom number of additional addresses can be generated
1778 it('Can generate more rows in the table', function(done) {
1779 driver.findElement(By.css('.phrase'))
1780 .sendKeys('abandon abandon ability');
1781 driver.sleep(generateDelay).then(function() {
1782 driver.findElement(By.css('.rows-to-add'))
1783 .clear();
1784 driver.findElement(By.css('.rows-to-add'))
1785 .sendKeys('1');
1786 driver.findElement(By.css('.more'))
1787 .click();
1788 driver.sleep(generateDelay).then(function() {
1789 driver.findElements(By.css('.address'))
1790 .then(function(els) {
1791 expect(els.length).toBe(21);
1792 done();
1793 });
1794 });
1795 });
1796 });
1797
1798 // Additional addresses are shown in order of derivation path
1799 it('Shows additional addresses in order of derivation path', function(done) {
1800 driver.findElement(By.css('.phrase'))
1801 .sendKeys('abandon abandon ability');
1802 driver.sleep(generateDelay).then(function() {
1803 driver.findElement(By.css('.more'))
1804 .click();
1805 driver.sleep(generateDelay).then(function() {
1806 testRowsAreInCorrectOrder(done);
1807 });
1808 });
1809 });
1810
1811 // BIP32 root key can be set by the user
1812 it('Allows the user to set the BIP32 root key', function(done) {
1813 driver.findElement(By.css('.root-key'))
1814 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1815 driver.sleep(generateDelay).then(function() {
1816 getFirstAddress(function(address) {
1817 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
1818 done();
1819 });
1820 });
1821 });
1822
1823 // Setting BIP32 root key clears the existing phrase, passphrase and seed
1824 // TODO this doesn't work in selenium with chrome
1825 it('Confirms the existing phrase should be cleared', function(done) {
1826 if (browser == "chrome") {
1827 pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
1828 }
1829 driver.findElement(By.css('.phrase'))
1830 .sendKeys('A non-blank but invalid value');
1831 driver.findElement(By.css('.root-key'))
1832 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1833 driver.switchTo().alert().accept();
1834 driver.findElement(By.css('.phrase'))
1835 .getAttribute("value").then(function(value) {
1836 expect(value).toBe("");
1837 done();
1838 });
1839 });
1840
1841 // Clearing of phrase, passphrase and seed can be cancelled by user
1842 // TODO this doesn't work in selenium with chrome
1843 it('Allows the clearing of the phrase to be cancelled', function(done) {
1844 if (browser == "chrome") {
1845 pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
1846 }
1847 driver.findElement(By.css('.phrase'))
1848 .sendKeys('abandon abandon ability');
1849 driver.sleep(generateDelay).then(function() {
1850 driver.findElement(By.css('.root-key'))
1851 .clear();
1852 driver.findElement(By.css('.root-key'))
1853 .sendKeys('x');
1854 driver.switchTo().alert().dismiss();
1855 driver.findElement(By.css('.phrase'))
1856 .getAttribute("value").then(function(value) {
1857 expect(value).toBe("abandon abandon ability");
1858 done();
1859 });
1860 });
1861 });
1862
1863 // Custom BIP32 root key is used when changing the derivation path
1864 it('Can set derivation path for root key instead of phrase', function(done) {
1865 driver.findElement(By.css('#bip44 .account'))
1866 .sendKeys('1');
1867 driver.findElement(By.css('.root-key'))
1868 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
1869 driver.sleep(generateDelay).then(function() {
1870 getFirstAddress(function(address) {
1871 expect(address).toBe("1Nq2Wmu726XHCuGhctEtGmhxo3wzk5wZ1H");
1872 done();
1873 });
1874 });
1875 });
1876
1877 // Incorrect mnemonic shows error
1878 it('Shows an error for incorrect mnemonic', function(done) {
1879 driver.findElement(By.css('.phrase'))
1880 .sendKeys('abandon abandon abandon');
1881 driver.sleep(feedbackDelay).then(function() {
1882 driver.findElement(By.css('.feedback'))
1883 .getText()
1884 .then(function(feedback) {
1885 expect(feedback).toBe("Invalid mnemonic");
1886 done();
1887 });
1888 });
1889 });
1890
1891 // Incorrect word shows suggested replacement
1892 it('Shows word suggestion for incorrect word', function(done) {
1893 driver.findElement(By.css('.phrase'))
1894 .sendKeys('abandon abandon abiliti');
1895 driver.sleep(feedbackDelay).then(function() {
1896 driver.findElement(By.css('.feedback'))
1897 .getText()
1898 .then(function(feedback) {
1899 var msg = "abiliti not in wordlist, did you mean ability?";
1900 expect(feedback).toBe(msg);
1901 done();
1902 });
1903 });
1904 });
1905
1906 // Github pull request 48
1907 // First four letters of word shows that word, not closest
1908 // since first four letters gives unique word in BIP39 wordlist
1909 // eg ille should show illegal, not idle
1910 it('Shows word suggestion based on first four chars', function(done) {
1911 driver.findElement(By.css('.phrase'))
1912 .sendKeys('ille');
1913 driver.sleep(feedbackDelay).then(function() {
1914 driver.findElement(By.css('.feedback'))
1915 .getText()
1916 .then(function(feedback) {
1917 var msg = "ille not in wordlist, did you mean illegal?";
1918 expect(feedback).toBe(msg);
1919 done();
1920 });
1921 });
1922 });
1923
1924 // Incorrect BIP32 root key shows error
1925 it('Shows error for incorrect root key', function(done) {
1926 driver.findElement(By.css('.root-key'))
1927 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpj');
1928 driver.sleep(feedbackDelay).then(function() {
1929 driver.findElement(By.css('.feedback'))
1930 .getText()
1931 .then(function(feedback) {
1932 var msg = "Invalid root key";
1933 expect(feedback).toBe(msg);
1934 done();
1935 });
1936 });
1937 });
1938
1939 // Derivation path not starting with m shows error
1940 it('Shows error for derivation path not starting with m', function(done) {
1941 driver.findElement(By.css('#bip32-tab a'))
1942 .click();
1943 driver.findElement(By.css('#bip32 .path'))
1944 .clear();
1945 driver.findElement(By.css('#bip32 .path'))
1946 .sendKeys('n/0');
1947 driver.findElement(By.css('.phrase'))
1948 .sendKeys('abandon abandon ability');
1949 driver.sleep(feedbackDelay).then(function() {
1950 driver.findElement(By.css('.feedback'))
1951 .getText()
1952 .then(function(feedback) {
1953 var msg = "First character must be 'm'";
1954 expect(feedback).toBe(msg);
1955 done();
1956 });
1957 });
1958 });
1959
1960 // Derivation path containing invalid characters shows useful error
1961 it('Shows error for derivation path not starting with m', function(done) {
1962 driver.findElement(By.css('#bip32-tab a'))
1963 .click();
1964 driver.findElement(By.css('#bip32 .path'))
1965 .clear();
1966 driver.findElement(By.css('#bip32 .path'))
1967 .sendKeys('m/1/0wrong1/1');
1968 driver.findElement(By.css('.phrase'))
1969 .sendKeys('abandon abandon ability');
1970 driver.sleep(feedbackDelay).then(function() {
1971 driver.findElement(By.css('.feedback'))
1972 .getText()
1973 .then(function(feedback) {
1974 var msg = "Invalid characters 0wrong1 found at depth 2";
1975 expect(feedback).toBe(msg);
1976 done();
1977 });
1978 });
1979 });
1980
1981 // Github Issue 11: Default word length is 15
1982 // https://github.com/iancoleman/bip39/issues/11
1983 it('Sets the default word length to 15', function(done) {
1984 driver.findElement(By.css('.strength'))
1985 .getAttribute("value")
1986 .then(function(strength) {
1987 expect(strength).toBe("15");
1988 done();
1989 });
1990 });
1991
1992 // Github Issue 12: Generate more rows with private keys hidden
1993 // https://github.com/iancoleman/bip39/issues/12
1994 it('Sets the correct hidden column state on new rows', function(done) {
1995 driver.findElement(By.css('.phrase'))
1996 .sendKeys("abandon abandon ability");
1997 driver.sleep(generateDelay).then(function() {
1998 driver.findElement(By.css('.private-key-toggle'))
1999 .click();
2000 driver.findElement(By.css('.more'))
2001 .click();
2002 driver.sleep(generateDelay).then(function() {
2003 driver.findElements(By.css('.privkey'))
2004 .then(function(els) {
2005 expect(els.length).toBe(40);
2006 });
2007 testColumnValuesAreInvisible(done, "privkey");
2008 });
2009 });
2010 });
2011
2012 // Github Issue 19: Mnemonic is not sensitive to whitespace
2013 // https://github.com/iancoleman/bip39/issues/19
2014 it('Ignores excess whitespace in the mnemonic', function(done) {
2015 var doublespace = " ";
2016 var mnemonic = "urge cat" + doublespace + "bid";
2017 driver.findElement(By.css('.phrase'))
2018 .sendKeys(mnemonic);
2019 driver.sleep(generateDelay).then(function() {
2020 driver.findElement(By.css('.root-key'))
2021 .getAttribute("value")
2022 .then(function(seed) {
2023 expect(seed).toBe("xprv9s21ZrQH143K3isaZsWbKVoTtbvd34Y1ZGRugGdMeBGbM3AgBVzTH159mj1cbbtYSJtQr65w6L5xy5L9SFC7c9VJZWHxgAzpj4mun5LhrbC");
2024 done();
2025 });
2026 });
2027 });
2028
2029 // Github Issue 23: Part 1: Use correct derivation path when changing tabs
2030 // https://github.com/iancoleman/bip39/issues/23
2031 it('Uses the correct derivation path when changing tabs', function(done) {
2032 // 1) and 2) set the phrase
2033 driver.findElement(By.css('.phrase'))
2034 .sendKeys("abandon abandon ability");
2035 driver.sleep(generateDelay).then(function() {
2036 // 3) select bip32 tab
2037 driver.findElement(By.css('#bip32-tab a'))
2038 .click();
2039 driver.sleep(generateDelay).then(function() {
2040 // 4) switch from bitcoin to litecoin
2041 selectNetwork("LTC - Litecoin");
2042 driver.sleep(generateDelay).then(function() {
2043 // 5) Check address is displayed correctly
2044 getFirstAddress(function(address) {
2045 expect(address).toBe("LS8MP5LZ5AdzSZveRrjm3aYVoPgnfFh5T5");
2046 // 5) Check derivation path is displayed correctly
2047 getFirstPath(function(path) {
2048 expect(path).toBe("m/0/0");
2049 done();
2050 });
2051 });
2052 });
2053 });
2054 });
2055 });
2056
2057 // Github Issue 23 Part 2: Coin selection in derivation path
2058 // https://github.com/iancoleman/bip39/issues/23#issuecomment-238011920
2059 it('Uses the correct derivation path when changing coins', function(done) {
2060 // set the phrase
2061 driver.findElement(By.css('.phrase'))
2062 .sendKeys("abandon abandon ability");
2063 driver.sleep(generateDelay).then(function() {
2064 // switch from bitcoin to clam
2065 selectNetwork("CLAM - Clams");
2066 driver.sleep(generateDelay).then(function() {
2067 // check derivation path is displayed correctly
2068 getFirstPath(function(path) {
2069 expect(path).toBe("m/44'/23'/0'/0/0");
2070 done();
2071 });
2072 });
2073 });
2074 });
2075
2076 // Github Issue 26: When using a Root key derrived altcoins are incorrect
2077 // https://github.com/iancoleman/bip39/issues/26
2078 it('Uses the correct derivation for altcoins with root keys', function(done) {
2079 // 1) 2) and 3) set the root key
2080 driver.findElement(By.css('.root-key'))
2081 .sendKeys("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
2082 driver.sleep(generateDelay).then(function() {
2083 // 4) switch from bitcoin to viacoin
2084 selectNetwork("VIA - Viacoin");
2085 driver.sleep(generateDelay).then(function() {
2086 // 5) ensure the derived address is correct
2087 getFirstAddress(function(address) {
2088 expect(address).toBe("Vq9Eq4N5SQnjqZvxtxzo7hZPW5XnyJsmXT");
2089 done();
2090 });
2091 });
2092 });
2093 });
2094
2095 // Selecting a language with no existing phrase should generate a phrase in
2096 // that language.
2097 it('Generate a random phrase when language is selected and no current phrase', function(done) {
2098 driver.findElement(By.css("a[href='#japanese']"))
2099 .click();
2100 driver.sleep(generateDelay).then(function() {
2101 driver.findElement(By.css(".phrase"))
2102 .getAttribute("value").then(function(phrase) {
2103 expect(phrase.search(/[a-z]/)).toBe(-1);
2104 expect(phrase.length).toBeGreaterThan(0);
2105 done();
2106 });
2107 });
2108 });
2109
2110 // Selecting a language with existing phrase should update the phrase to use
2111 // that language.
2112 it('Updates existing phrases when the language is changed', function(done) {
2113 driver.findElement(By.css(".phrase"))
2114 .sendKeys("abandon abandon ability");
2115 driver.sleep(generateDelay).then(function() {
2116 driver.findElement(By.css("a[href='#italian']"))
2117 .click();
2118 driver.sleep(generateDelay).then(function() {
2119 driver.findElement(By.css(".phrase"))
2120 .getAttribute("value").then(function(phrase) {
2121 // Check only the language changes, not the phrase
2122 expect(phrase).toBe("abaco abaco abbaglio");
2123 getFirstAddress(function(address) {
2124 // Check the address is correct
2125 expect(address).toBe("1Dz5TgDhdki9spa6xbPFbBqv5sjMrx3xgV");
2126 done();
2127 });
2128 });
2129 });
2130 });
2131 });
2132
2133 // Suggested replacement for erroneous word in non-English language
2134 it('Shows word suggestion for incorrect word in non-English language', function(done) {
2135 driver.findElement(By.css('.phrase'))
2136 .sendKeys('abaco abaco zbbaglio');
2137 driver.sleep(feedbackDelay).then(function() {
2138 driver.findElement(By.css('.feedback'))
2139 .getText()
2140 .then(function(feedback) {
2141 var msg = "zbbaglio not in wordlist, did you mean abbaglio?";
2142 expect(feedback).toBe(msg);
2143 done();
2144 });
2145 });
2146 });
2147
2148 // Japanese word does not break across lines.
2149 // Point 2 from
2150 // https://github.com/bitcoin/bips/blob/master/bip-0039/bip-0039-wordlists.md#japanese
2151 it('Does not break Japanese words across lines', function(done) {
2152 driver.findElement(By.css('.phrase'))
2153 .getCssValue("word-break")
2154 .then(function(value) {
2155 expect(value).toBe("keep-all");
2156 done();
2157 });
2158 });
2159
2160 // Language can be specified at page load using hash value in url
2161 it('Can set the language from the url hash', function(done) {
2162 driver.get(url + "#japanese").then(function() {
2163 driver.findElement(By.css('.generate')).click();
2164 driver.sleep(generateDelay).then(function() {
2165 driver.findElement(By.css(".phrase"))
2166 .getAttribute("value").then(function(phrase) {
2167 expect(phrase.search(/[a-z]/)).toBe(-1);
2168 expect(phrase.length).toBeGreaterThan(0);
2169 done();
2170 });
2171 });
2172 });
2173 });
2174
2175 // Entropy can be entered by the user
2176 it('Allows entropy to be entered', function(done) {
2177 driver.findElement(By.css('.use-entropy'))
2178 .click();
2179 driver.findElement(By.css('.entropy'))
2180 .sendKeys('00000000 00000000 00000000 00000000');
2181 driver.sleep(generateDelay).then(function() {
2182 driver.findElement(By.css(".phrase"))
2183 .getAttribute("value").then(function(phrase) {
2184 expect(phrase).toBe("abandon abandon ability");
2185 getFirstAddress(function(address) {
2186 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2187 done();
2188 })
2189 });
2190 });
2191 });
2192
2193 // A warning about entropy is shown to the user, with additional information
2194 it('Shows a warning about using entropy', function(done) {
2195 driver.findElement(By.css('.use-entropy'))
2196 .click();
2197 driver.findElement(By.css('.entropy-container'))
2198 .getText()
2199 .then(function(containerText) {
2200 var warning = "mnemonic may be insecure";
2201 expect(containerText).toContain(warning);
2202 driver.findElement(By.css('#entropy-notes'))
2203 .findElement(By.xpath("parent::*"))
2204 .getText()
2205 .then(function(notesText) {
2206 var detail = "flipping a fair coin, rolling a fair dice, noise measurements etc";
2207 expect(notesText).toContain(detail);
2208 done();
2209 });
2210 });
2211 });
2212
2213 // The types of entropy available are described to the user
2214 it('Shows the types of entropy available', function(done) {
2215 driver.findElement(By.css('.entropy'))
2216 .getAttribute("placeholder")
2217 .then(function(placeholderText) {
2218 var options = [
2219 "binary",
2220 "base 6",
2221 "dice",
2222 "base 10",
2223 "hexadecimal",
2224 "cards",
2225 ];
2226 for (var i=0; i<options.length; i++) {
2227 var option = options[i];
2228 expect(placeholderText).toContain(option);
2229 }
2230 done();
2231 });
2232 });
2233
2234 // The actual entropy used is shown to the user
2235 it('Shows the actual entropy used', function(done) {
2236 driver.findElement(By.css('.use-entropy'))
2237 .click();
2238 driver.findElement(By.css('.entropy'))
2239 .sendKeys('Not A Very Good Entropy Source At All');
2240 driver.sleep(generateDelay).then(function() {
2241 driver.findElement(By.css('.entropy-container'))
2242 .getText()
2243 .then(function(text) {
2244 expect(text).toMatch(/Filtered Entropy\s+AedEceAA/);
2245 done();
2246 });
2247 });
2248 });
2249
2250 // Binary entropy can be entered
2251 it('Allows binary entropy to be entered', function(done) {
2252 testEntropyType(done, "01", "binary");
2253 });
2254
2255 // Base 6 entropy can be entered
2256 it('Allows base 6 entropy to be entered', function(done) {
2257 testEntropyType(done, "012345", "base 6");
2258 });
2259
2260 // Base 6 dice entropy can be entered
2261 it('Allows base 6 dice entropy to be entered', function(done) {
2262 testEntropyType(done, "123456", "base 6 (dice)");
2263 });
2264
2265 // Base 10 entropy can be entered
2266 it('Allows base 10 entropy to be entered', function(done) {
2267 testEntropyType(done, "789", "base 10");
2268 });
2269
2270 // Hexadecimal entropy can be entered
2271 it('Allows hexadecimal entropy to be entered', function(done) {
2272 testEntropyType(done, "abcdef", "hexadecimal");
2273 });
2274
2275 // Dice entropy value is shown as the converted base 6 value
2276 // ie 123456 is converted to 123450
2277 it('Shows dice entropy as base 6', function(done) {
2278 driver.findElement(By.css('.use-entropy'))
2279 .click();
2280 driver.findElement(By.css('.entropy'))
2281 .sendKeys("123456");
2282 driver.sleep(generateDelay).then(function() {
2283 driver.findElement(By.css('.entropy-container'))
2284 .getText()
2285 .then(function(text) {
2286 expect(text).toMatch(/Filtered Entropy\s+123450/);
2287 done();
2288 });
2289 });
2290 });
2291
2292 // The number of bits of entropy accumulated is shown
2293 it("Shows the number of bits of entropy for 20 bits of binary", function(done) {
2294 testEntropyBits(done, "0000 0000 0000 0000 0000", "20");
2295 });
2296 it("Shows the number of bits of entropy for 1 bit of binary", function(done) {
2297 testEntropyBits(done, "0", "1");
2298 });
2299 it("Shows the number of bits of entropy for 4 bits of binary", function(done) {
2300 testEntropyBits(done, "0000", "4");
2301 });
2302 it("Shows the number of bits of entropy for 1 character of base 6 (dice)", function(done) {
2303 // 6 in card is 0 in base 6, 0 in base 6 is 2.6 bits (rounded down to 2 bits)
2304 testEntropyBits(done, "6", "2");
2305 });
2306 it("Shows the number of bits of entropy for 1 character of base 10 with 3 bits", function(done) {
2307 // 7 in base 10 is 111 in base 2, no leading zeros
2308 testEntropyBits(done, "7", "3");
2309 });
2310 it("Shows the number of bits of entropy for 1 character of base 10 with 4 bis", function(done) {
2311 testEntropyBits(done, "8", "4");
2312 });
2313 it("Shows the number of bits of entropy for 1 character of hex", function(done) {
2314 testEntropyBits(done, "F", "4");
2315 });
2316 it("Shows the number of bits of entropy for 2 characters of base 10", function(done) {
2317 testEntropyBits(done, "29", "6");
2318 });
2319 it("Shows the number of bits of entropy for 2 characters of hex", function(done) {
2320 testEntropyBits(done, "0A", "8");
2321 });
2322 it("Shows the number of bits of entropy for 2 characters of hex with 3 leading zeros", function(done) {
2323 // hex is always multiple of 4 bits of entropy
2324 testEntropyBits(done, "1A", "8");
2325 });
2326 it("Shows the number of bits of entropy for 2 characters of hex with 2 leading zeros", function(done) {
2327 testEntropyBits(done, "2A", "8");
2328 });
2329 it("Shows the number of bits of entropy for 2 characters of hex with 1 leading zero", function(done) {
2330 testEntropyBits(done, "4A", "8");
2331 });
2332 it("Shows the number of bits of entropy for 2 characters of hex with no leading zeros", function(done) {
2333 testEntropyBits(done, "8A", "8");
2334 });
2335 it("Shows the number of bits of entropy for 2 characters of hex starting with F", function(done) {
2336 testEntropyBits(done, "FA", "8");
2337 });
2338 it("Shows the number of bits of entropy for 4 characters of hex with leading zeros", function(done) {
2339 testEntropyBits(done, "000A", "16");
2340 });
2341 it("Shows the number of bits of entropy for 4 characters of base 6", function(done) {
2342 testEntropyBits(done, "5555", "11");
2343 });
2344 it("Shows the number of bits of entropy for 4 characters of base 6 dice", function(done) {
2345 // uses dice, so entropy is actually 0000 in base 6, which is 4 lots of
2346 // 2.58 bits, which is 10.32 bits (rounded down to 10 bits)
2347 testEntropyBits(done, "6666", "10");
2348 });
2349 it("Shows the number of bits of entropy for 4 charactes of base 10", function(done) {
2350 // Uses base 10, which is 4 lots of 3.32 bits, which is 13.3 bits (rounded
2351 // down to 13)
2352 testEntropyBits(done, "2227", "13");
2353 });
2354 it("Shows the number of bits of entropy for 4 characters of hex with 2 leading zeros", function(done) {
2355 testEntropyBits(done, "222F", "16");
2356 });
2357 it("Shows the number of bits of entropy for 4 characters of hex starting with F", function(done) {
2358 testEntropyBits(done, "FFFF", "16");
2359 });
2360 it("Shows the number of bits of entropy for 10 characters of base 10", function(done) {
2361 // 10 events at 3.32 bits per event
2362 testEntropyBits(done, "0000101017", "33");
2363 });
2364 it("Shows the number of bits of entropy for a full deck of cards", function(done) {
2365 // cards are not replaced, so a full deck is not 52^52 entropy which is 296
2366 // bits, it's 52!, which is 225 bits
2367 testEntropyBits(done, "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks", "225");
2368 });
2369
2370 it("Shows details about the entered entropy", function(done) {
2371 testEntropyFeedback(done,
2372 {
2373 entropy: "A",
2374 filtered: "A",
2375 type: "hexadecimal",
2376 events: "1",
2377 bits: "4",
2378 words: 0,
2379 strength: "less than a second",
2380 }
2381 );
2382 });
2383 it("Shows details about the entered entropy", function(done) {
2384 testEntropyFeedback(done,
2385 {
2386 entropy: "AAAAAAAA",
2387 filtered: "AAAAAAAA",
2388 type: "hexadecimal",
2389 events: "8",
2390 bits: "32",
2391 words: 3,
2392 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2393 }
2394 );
2395 });
2396 it("Shows details about the entered entropy", function(done) {
2397 testEntropyFeedback(done,
2398 {
2399 entropy: "AAAAAAAA B",
2400 filtered: "AAAAAAAAB",
2401 type: "hexadecimal",
2402 events: "9",
2403 bits: "36",
2404 words: 3,
2405 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2406 }
2407 );
2408 });
2409 it("Shows details about the entered entropy", function(done) {
2410 testEntropyFeedback(done,
2411 {
2412 entropy: "AAAAAAAA BBBBBBBB",
2413 filtered: "AAAAAAAABBBBBBBB",
2414 type: "hexadecimal",
2415 events: "16",
2416 bits: "64",
2417 words: 6,
2418 strength: "less than a second - Repeats like \"aaa\" are easy to guess",
2419 }
2420 );
2421 });
2422 it("Shows details about the entered entropy", function(done) {
2423 testEntropyFeedback(done,
2424 {
2425 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC",
2426 filtered: "AAAAAAAABBBBBBBBCCCCCCCC",
2427 type: "hexadecimal",
2428 events: "24",
2429 bits: "96",
2430 words: 9,
2431 strength: "less than a second",
2432 }
2433 );
2434 });
2435 it("Shows details about the entered entropy", function(done) {
2436 testEntropyFeedback(done,
2437 {
2438 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDD",
2439 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDD",
2440 type: "hexadecimal",
2441 events: "32",
2442 bits: "128",
2443 words: 12,
2444 strength: "2 minutes",
2445 }
2446 );
2447 });
2448 it("Shows details about the entered entropy", function(done) {
2449 testEntropyFeedback(done,
2450 {
2451 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA",
2452 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDA",
2453 type: "hexadecimal",
2454 events: "32",
2455 bits: "128",
2456 words: 12,
2457 strength: "2 days",
2458 }
2459 );
2460 });
2461 it("Shows details about the entered entropy", function(done) {
2462 testEntropyFeedback(done,
2463 {
2464 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE",
2465 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEE",
2466 type: "hexadecimal",
2467 events: "40",
2468 bits: "160",
2469 words: 15,
2470 strength: "3 years",
2471 }
2472 );
2473 });
2474 it("Shows details about the entered entropy", function(done) {
2475 testEntropyFeedback(done,
2476 {
2477 entropy: "AAAAAAAA BBBBBBBB CCCCCCCC DDDDDDDA EEEEEEEE FFFFFFFF",
2478 filtered: "AAAAAAAABBBBBBBBCCCCCCCCDDDDDDDAEEEEEEEEFFFFFFFF",
2479 type: "hexadecimal",
2480 events: "48",
2481 bits: "192",
2482 words: 18,
2483 strength: "centuries",
2484 }
2485 );
2486 });
2487 it("Shows details about the entered entropy", function(done) {
2488 testEntropyFeedback(done,
2489 {
2490 entropy: "7d",
2491 type: "card",
2492 events: "1",
2493 bits: "4",
2494 words: 0,
2495 strength: "less than a second",
2496 }
2497 );
2498 });
2499 it("Shows details about the entered entropy", function(done) {
2500 testEntropyFeedback(done,
2501 {
2502 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2503 type: "card (full deck)",
2504 events: "52",
2505 bits: "225",
2506 words: 21,
2507 strength: "centuries",
2508 }
2509 );
2510 });
2511 it("Shows details about the entered entropy", function(done) {
2512 testEntropyFeedback(done,
2513 {
2514 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks3d",
2515 type: "card (full deck, 1 duplicate: 3d)",
2516 events: "53",
2517 bits: "254",
2518 words: 21,
2519 strength: "centuries",
2520 }
2521 );
2522 });
2523 it("Shows details about the entered entropy", function(done) {
2524 testEntropyFeedback(done,
2525 {
2526 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d",
2527 type: "card (2 duplicates: 3d 4d, 1 missing: KS)",
2528 events: "53",
2529 bits: "254",
2530 words: 21,
2531 strength: "centuries",
2532 }
2533 );
2534 });
2535 it("Shows details about the entered entropy", function(done) {
2536 testEntropyFeedback(done,
2537 {
2538 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqs3d4d5d6d",
2539 type: "card (4 duplicates: 3d 4d 5d..., 1 missing: KS)",
2540 events: "55",
2541 bits: "264",
2542 words: 24,
2543 strength: "centuries",
2544 }
2545 );
2546 });
2547 it("Shows details about the entered entropy", function(done) {
2548 testEntropyFeedback(done,
2549 // Next test was throwing uncaught error in zxcvbn
2550 // Also tests 451 bits, ie Math.log2(52!)*2 = 225.58 * 2
2551 {
2552 entropy: "ac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsksac2c3c4c5c6c7c8c9ctcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2553 type: "card (full deck, 52 duplicates: ac 2c 3c...)",
2554 events: "104",
2555 bits: "499",
2556 words: 45,
2557 strength: "centuries",
2558 }
2559 );
2560 });
2561 it("Shows details about the entered entropy", function(done) {
2562 testEntropyFeedback(done,
2563 // Case insensitivity to duplicate cards
2564 {
2565 entropy: "asAS",
2566 type: "card (1 duplicate: AS)",
2567 events: "2",
2568 bits: "9",
2569 words: 0,
2570 strength: "less than a second",
2571 }
2572 );
2573 });
2574 it("Shows details about the entered entropy", function(done) {
2575 testEntropyFeedback(done,
2576 {
2577 entropy: "ASas",
2578 type: "card (1 duplicate: as)",
2579 events: "2",
2580 bits: "9",
2581 words: 0,
2582 strength: "less than a second",
2583 }
2584 );
2585 });
2586 it("Shows details about the entered entropy", function(done) {
2587 testEntropyFeedback(done,
2588 // Missing cards are detected
2589 {
2590 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d5d6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2591 type: "card (1 missing: 9C)",
2592 events: "51",
2593 bits: "221",
2594 words: 18,
2595 strength: "centuries",
2596 }
2597 );
2598 });
2599 it("Shows details about the entered entropy", function(done) {
2600 testEntropyFeedback(done,
2601 {
2602 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjdqdkdah2h3h4h5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2603 type: "card (2 missing: 9C 5D)",
2604 events: "50",
2605 bits: "216",
2606 words: 18,
2607 strength: "centuries",
2608 }
2609 );
2610 });
2611 it("Shows details about the entered entropy", function(done) {
2612 testEntropyFeedback(done,
2613 {
2614 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d7d8d9dtdjd kdah2h3h 5h6h7h8h9hthjhqhkhas2s3s4s5s6s7s8s9stsjsqsks",
2615 type: "card (4 missing: 9C 5D QD...)",
2616 events: "48",
2617 bits: "208",
2618 words: 18,
2619 strength: "centuries",
2620 }
2621 );
2622 });
2623 it("Shows details about the entered entropy", function(done) {
2624 testEntropyFeedback(done,
2625 // More than six missing cards does not show message
2626 {
2627 entropy: "ac2c3c4c5c6c7c8c tcjcqckcad2d3d4d 6d 8d9d jd kdah2h3h 5h6h7h8h9hthjhqhkh 2s3s4s5s6s7s8s9stsjsqsks",
2628 type: "card",
2629 events: "45",
2630 bits: "195",
2631 words: 18,
2632 strength: "centuries",
2633 }
2634 );
2635 });
2636 it("Shows details about the entered entropy", function(done) {
2637 testEntropyFeedback(done,
2638 // Multiple decks of cards increases bits per event
2639 {
2640 entropy: "3d",
2641 events: "1",
2642 bits: "4",
2643 bitsPerEvent: "4.34",
2644 }
2645 );
2646 });
2647 it("Shows details about the entered entropy", function(done) {
2648 testEntropyFeedback(done,
2649 {
2650 entropy: "3d3d",
2651 events: "2",
2652 bits: "9",
2653 bitsPerEvent: "4.80",
2654 }
2655 );
2656 });
2657 it("Shows details about the entered entropy", function(done) {
2658 testEntropyFeedback(done,
2659 {
2660 entropy: "3d3d3d",
2661 events: "3",
2662 bits: "15",
2663 bitsPerEvent: "5.01",
2664 }
2665 );
2666 });
2667 it("Shows details about the entered entropy", function(done) {
2668 testEntropyFeedback(done,
2669 {
2670 entropy: "3d3d3d3d",
2671 events: "4",
2672 bits: "20",
2673 bitsPerEvent: "5.14",
2674 }
2675 );
2676 });
2677 it("Shows details about the entered entropy", function(done) {
2678 testEntropyFeedback(done,
2679 {
2680 entropy: "3d3d3d3d3d",
2681 events: "5",
2682 bits: "26",
2683 bitsPerEvent: "5.22",
2684 }
2685 );
2686 });
2687 it("Shows details about the entered entropy", function(done) {
2688 testEntropyFeedback(done,
2689 {
2690 entropy: "3d3d3d3d3d3d",
2691 events: "6",
2692 bits: "31",
2693 bitsPerEvent: "5.28",
2694 }
2695 );
2696 });
2697 it("Shows details about the entered entropy", function(done) {
2698 testEntropyFeedback(done,
2699 {
2700 entropy: "3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d3d",
2701 events: "33",
2702 bits: "184",
2703 bitsPerEvent: "5.59",
2704 strength: 'less than a second - Repeats like "abcabcabc" are only slightly harder to guess than "abc"',
2705 }
2706 );
2707 });
2708
2709 // Entropy is truncated from the left
2710 it('Truncates entropy from the left', function(done) {
2711 // Truncate from left means 0000 is removed from the start
2712 // which gives mnemonic 'avocado zoo zone'
2713 // not 1111 removed from the end
2714 // which gives the mnemonic 'abstract zoo zoo'
2715 var entropy = "00000000 00000000 00000000 00000000";
2716 entropy += "11111111 11111111 11111111 1111"; // Missing last byte
2717 driver.findElement(By.css('.use-entropy'))
2718 .click();
2719 driver.findElement(By.css('.entropy'))
2720 .sendKeys(entropy);
2721 driver.sleep(generateDelay).then(function() {
2722 driver.findElement(By.css(".phrase"))
2723 .getAttribute("value").then(function(phrase) {
2724 expect(phrase).toBe("avocado zoo zone");
2725 done();
2726 });
2727 });
2728 });
2729
2730 // Very large entropy results in very long mnemonics
2731 it('Converts very long entropy to very long mnemonics', function(done) {
2732 var entropy = "";
2733 for (var i=0; i<33; i++) {
2734 entropy += "AAAAAAAA"; // 3 words * 33 iterations = 99 words
2735 }
2736 driver.findElement(By.css('.use-entropy'))
2737 .click();
2738 driver.findElement(By.css('.entropy'))
2739 .sendKeys(entropy);
2740 driver.sleep(generateDelay).then(function() {
2741 driver.findElement(By.css(".phrase"))
2742 .getAttribute("value").then(function(phrase) {
2743 var wordCount = phrase.split(/\s+/g).length;
2744 expect(wordCount).toBe(99);
2745 done();
2746 });
2747 });
2748 });
2749
2750 // Is compatible with bip32jp entropy
2751 // https://bip32jp.github.io/english/index.html
2752 // NOTES:
2753 // Is incompatible with:
2754 // base 20
2755 it('Is compatible with bip32jp.github.io', function(done) {
2756 var entropy = "543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543210543";
2757 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";
2758 driver.findElement(By.css('.use-entropy'))
2759 .click();
2760 driver.findElement(By.css('.entropy'))
2761 .sendKeys(entropy);
2762 driver.sleep(generateDelay).then(function() {
2763 driver.findElement(By.css(".phrase"))
2764 .getAttribute("value").then(function(phrase) {
2765 expect(phrase).toBe(expectedPhrase);
2766 done();
2767 });
2768 });
2769 });
2770
2771 // Blank entropy does not generate mnemonic or addresses
2772 it('Does not generate mnemonic for blank entropy', function(done) {
2773 driver.findElement(By.css('.use-entropy'))
2774 .click();
2775 driver.findElement(By.css('.entropy'))
2776 .clear();
2777 // check there is no mnemonic
2778 driver.sleep(generateDelay).then(function() {
2779 driver.findElement(By.css(".phrase"))
2780 .getAttribute("value").then(function(phrase) {
2781 expect(phrase).toBe("");
2782 // check there is no mnemonic
2783 driver.findElements(By.css(".address"))
2784 .then(function(addresses) {
2785 expect(addresses.length).toBe(0);
2786 // Check the feedback says 'blank entropy'
2787 driver.findElement(By.css(".feedback"))
2788 .getText()
2789 .then(function(feedbackText) {
2790 expect(feedbackText).toBe("Blank entropy");
2791 done();
2792 });
2793 })
2794 });
2795 });
2796 });
2797
2798 // Mnemonic length can be selected even for weak entropy
2799 it('Allows selection of mnemonic length even for weak entropy', function(done) {
2800 driver.findElement(By.css('.use-entropy'))
2801 .click();
2802 driver.executeScript(function() {
2803 $(".mnemonic-length").val("18").trigger("change");
2804 });
2805 driver.findElement(By.css('.entropy'))
2806 .sendKeys("012345");
2807 driver.sleep(generateDelay).then(function() {
2808 driver.findElement(By.css(".phrase"))
2809 .getAttribute("value").then(function(phrase) {
2810 var wordCount = phrase.split(/\s+/g).length;
2811 expect(wordCount).toBe(18);
2812 done();
2813 });
2814 });
2815 });
2816
2817 // Github issue 33
2818 // https://github.com/iancoleman/bip39/issues/33
2819 // Final cards should contribute entropy
2820 it('Uses as much entropy as possible for the mnemonic', function(done) {
2821 driver.findElement(By.css('.use-entropy'))
2822 .click();
2823 driver.findElement(By.css('.entropy'))
2824 .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");
2825 driver.sleep(generateDelay).then(function() {
2826 // Get mnemonic
2827 driver.findElement(By.css(".phrase"))
2828 .getAttribute("value").then(function(originalPhrase) {
2829 // Set the last 12 cards to be AS
2830 driver.findElement(By.css('.entropy'))
2831 .clear();
2832 driver.findElement(By.css('.entropy'))
2833 .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");
2834 driver.sleep(generateDelay).then(function() {
2835 // Get new mnemonic
2836 driver.findElement(By.css(".phrase"))
2837 .getAttribute("value").then(function(newPhrase) {
2838 expect(originalPhrase).not.toEqual(newPhrase);
2839 done();
2840 });
2841 });
2842 });
2843 });
2844 });
2845
2846 // Github issue 35
2847 // https://github.com/iancoleman/bip39/issues/35
2848 // QR Code support
2849 // TODO this doesn't work in selenium with firefox
2850 // see https://stackoverflow.com/q/40360223
2851 it('Shows a qr code on hover for the phrase', function(done) {
2852 if (browser == "firefox") {
2853 pending("Selenium + Firefox bug for mouseMove, see https://stackoverflow.com/q/40360223");
2854 }
2855 // generate a random mnemonic
2856 var generateEl = driver.findElement(By.css('.generate'));
2857 generateEl.click();
2858 // toggle qr to show (hidden by default)
2859 var phraseEl = driver.findElement(By.css(".phrase"));
2860 phraseEl.click();
2861 var rootKeyEl = driver.findElement(By.css(".root-key"));
2862 driver.sleep(generateDelay).then(function() {
2863 // hover over the root key
2864 driver.actions().mouseMove(rootKeyEl).perform().then(function() {
2865 // check the qr code shows
2866 driver.executeScript(function() {
2867 return $(".qr-container").find("canvas").length > 0;
2868 })
2869 .then(function(qrShowing) {
2870 expect(qrShowing).toBe(true);
2871 // hover away from the phrase
2872 driver.actions().mouseMove(generateEl).perform().then(function() {;
2873 // check the qr code hides
2874 driver.executeScript(function() {
2875 return $(".qr-container").find("canvas").length == 0;
2876 })
2877 .then(function(qrHidden) {
2878 expect(qrHidden).toBe(true);
2879 done();
2880 });
2881 });
2882 });
2883 });
2884 });
2885 });
2886
2887 // BIP44 account extendend private key is shown
2888 // github issue 37 - compatibility with electrum
2889 it('Shows the bip44 account extended private key', function(done) {
2890 driver.findElement(By.css(".phrase"))
2891 .sendKeys("abandon abandon ability");
2892 driver.sleep(generateDelay).then(function() {
2893 driver.findElement(By.css("#bip44 .account-xprv"))
2894 .getAttribute("value")
2895 .then(function(xprv) {
2896 expect(xprv).toBe("xprv9yzrnt4zWVJUr1k2VxSPy9ettKz5PpeDMgaVG7UKedhqnw1tDkxP2UyYNhuNSumk2sLE5ctwKZs9vwjsq3e1vo9egCK6CzP87H2cVYXpfwQ");
2897 done();
2898 });
2899 });
2900 });
2901
2902 // BIP44 account extendend public key is shown
2903 // github issue 37 - compatibility with electrum
2904 it('Shows the bip44 account extended public key', function(done) {
2905 driver.findElement(By.css(".phrase"))
2906 .sendKeys("abandon abandon ability");
2907 driver.sleep(generateDelay).then(function() {
2908 driver.findElement(By.css("#bip44 .account-xpub"))
2909 .getAttribute("value")
2910 .then(function(xprv) {
2911 expect(xprv).toBe("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2912 done();
2913 });
2914 });
2915 });
2916
2917 // github issue 40
2918 // BIP32 root key can be set as an xpub
2919 it('Generates addresses from xpub as bip32 root key', function(done) {
2920 driver.findElement(By.css('#bip32-tab a'))
2921 .click();
2922 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2923 driver.findElement(By.css("#root-key"))
2924 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2925 driver.sleep(generateDelay).then(function() {
2926 // check the addresses are generated
2927 getFirstAddress(function(address) {
2928 expect(address).toBe("1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug");
2929 // check the xprv key is not set
2930 driver.findElement(By.css(".extended-priv-key"))
2931 .getAttribute("value")
2932 .then(function(xprv) {
2933 expect(xprv).toBe("NA");
2934 // check the private key is not set
2935 driver.findElements(By.css(".privkey"))
2936 .then(function(els) {
2937 els[0]
2938 .getText()
2939 .then(function(privkey) {
2940 expect(xprv).toBe("NA");
2941 done();
2942 });
2943 });
2944 });
2945 });
2946 });
2947 });
2948
2949 // github issue 40
2950 // xpub for bip32 root key will not work with hardened derivation paths
2951 it('Shows error for hardened derivation paths with xpub root key', function(done) {
2952 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2953 driver.findElement(By.css("#root-key"))
2954 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
2955 driver.sleep(feedbackDelay).then(function() {
2956 // Check feedback is correct
2957 driver.findElement(By.css('.feedback'))
2958 .getText()
2959 .then(function(feedback) {
2960 var msg = "Hardened derivation path is invalid with xpub key";
2961 expect(feedback).toBe(msg);
2962 // Check no addresses are shown
2963 driver.findElements(By.css('.addresses tr'))
2964 .then(function(rows) {
2965 expect(rows.length).toBe(0);
2966 done();
2967 });
2968 });
2969 });
2970 });
2971
2972 // github issue 39
2973 // no root key shows feedback
2974 it('Shows feedback for no root key', function(done) {
2975 // set xpub for account 0 of bip44 for 'abandon abandon ability'
2976 driver.findElement(By.css('#bip32-tab a'))
2977 .click();
2978 driver.sleep(feedbackDelay).then(function() {
2979 // Check feedback is correct
2980 driver.findElement(By.css('.feedback'))
2981 .getText()
2982 .then(function(feedback) {
2983 expect(feedback).toBe("Invalid root key");
2984 done();
2985 });
2986 });
2987 });
2988
2989 // Github issue 44
2990 // display error switching tabs while addresses are generating
2991 it('Can change details while old addresses are still being generated', function(done) {
2992 // Set to generate 199 more addresses.
2993 // This will take a long time allowing a new set of addresses to be
2994 // generated midway through this lot.
2995 // The newly generated addresses should not include any from the old set.
2996 // Any more than 199 will show an alert which needs to be accepted.
2997 driver.findElement(By.css('.rows-to-add'))
2998 .clear();
2999 driver.findElement(By.css('.rows-to-add'))
3000 .sendKeys('199');
3001 // set the prhase
3002 driver.findElement(By.css('.phrase'))
3003 .sendKeys("abandon abandon ability");
3004 driver.sleep(generateDelay).then(function() {
3005 // change tabs which should cancel the previous generating
3006 driver.findElement(By.css('.rows-to-add'))
3007 .clear();
3008 driver.findElement(By.css('.rows-to-add'))
3009 .sendKeys('20');
3010 driver.findElement(By.css('#bip32-tab a'))
3011 .click()
3012 driver.sleep(generateDelay).then(function() {
3013 driver.findElements(By.css('.index'))
3014 .then(function(els) {
3015 // check the derivation paths have the right quantity
3016 expect(els.length).toBe(20);
3017 // check the derivation paths are in order
3018 testRowsAreInCorrectOrder(done);
3019 });
3020 });
3021 });
3022 }, generateDelay + 10000);
3023
3024 // Github issue 49
3025 // padding for binary should give length with multiple of 256
3026 // hashed entropy 1111 is length 252, so requires 4 leading zeros
3027 // prior to issue 49 it would only generate 2 leading zeros, ie missing 2
3028 it('Pads hashed entropy with leading zeros', function(done) {
3029 driver.findElement(By.css('.use-entropy'))
3030 .click();
3031 driver.executeScript(function() {
3032 $(".mnemonic-length").val("15").trigger("change");
3033 });
3034 driver.findElement(By.css('.entropy'))
3035 .sendKeys("1111");
3036 driver.sleep(generateDelay).then(function() {
3037 driver.findElement(By.css('.phrase'))
3038 .getAttribute("value")
3039 .then(function(phrase) {
3040 expect(phrase).toBe("avocado valid quantum cross link predict excuse edit street able flame large galaxy ginger nuclear");
3041 done();
3042 });
3043 });
3044 });
3045
3046 // Github pull request 55
3047 // https://github.com/iancoleman/bip39/pull/55
3048 // Client select
3049 it('Can set the derivation path on bip32 tab for bitcoincore', function(done) {
3050 testClientSelect(done, {
3051 selectValue: "0",
3052 bip32path: "m/0'/0'",
3053 useHardenedAddresses: "true",
3054 });
3055 });
3056 it('Can set the derivation path on bip32 tab for multibit', function(done) {
3057 testClientSelect(done, {
3058 selectValue: "2",
3059 bip32path: "m/0'/0",
3060 useHardenedAddresses: null,
3061 });
3062 });
3063 it('Can set the derivation path on bip32 tab for coinomi/ledger', function(done) {
3064 testClientSelect(done, {
3065 selectValue: "3",
3066 bip32path: "m/44'/0'/0'",
3067 useHardenedAddresses: null,
3068 });
3069 });
3070
3071 // github issue 58
3072 // https://github.com/iancoleman/bip39/issues/58
3073 // bip32 derivation is correct, does not drop leading zeros
3074 // see also
3075 // https://medium.com/@alexberegszaszi/why-do-my-bip32-wallets-disagree-6f3254cc5846
3076 it('Retains leading zeros for bip32 derivation', function(done) {
3077 driver.findElement(By.css(".phrase"))
3078 .sendKeys("fruit wave dwarf banana earth journey tattoo true farm silk olive fence");
3079 driver.findElement(By.css(".passphrase"))
3080 .sendKeys("banana");
3081 driver.sleep(generateDelay).then(function() {
3082 getFirstAddress(function(address) {
3083 // Note that bitcore generates an incorrect address
3084 // 13EuKhffWkBE2KUwcbkbELZb1MpzbimJ3Y
3085 // see the medium.com link above for more details
3086 expect(address).toBe("17rxURoF96VhmkcEGCj5LNQkmN9HVhWb7F");
3087 done();
3088 });
3089 });
3090 });
3091
3092 // github issue 60
3093 // Japanese mnemonics generate incorrect bip32 seed
3094 // BIP39 seed is set from phrase
3095 it('Generates correct seed for Japanese mnemonics', function(done) {
3096 driver.findElement(By.css(".phrase"))
3097 .sendKeys("あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あいこくしん あおぞら");
3098 driver.findElement(By.css(".passphrase"))
3099 .sendKeys("メートルガバヴァぱばぐゞちぢ十人十色");
3100 driver.sleep(generateDelay).then(function() {
3101 driver.findElement(By.css(".seed"))
3102 .getAttribute("value")
3103 .then(function(seed) {
3104 expect(seed).toBe("a262d6fb6122ecf45be09c50492b31f92e9beb7d9a845987a02cefda57a15f9c467a17872029a9e92299b5cbdf306e3a0ee620245cbd508959b6cb7ca637bd55");
3105 done();
3106 });
3107 });
3108 });
3109
3110 // BIP49 official test vectors
3111 // https://github.com/bitcoin/bips/blob/master/bip-0049.mediawiki#test-vectors
3112 it('Generates BIP49 addresses matching the official test vectors', function(done) {
3113 driver.findElement(By.css('#bip49-tab a'))
3114 .click();
3115 selectNetwork("BTC - Bitcoin Testnet");
3116 driver.findElement(By.css(".phrase"))
3117 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about");
3118 driver.sleep(generateDelay).then(function() {
3119 getFirstAddress(function(address) {
3120 expect(address).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2");
3121 done();
3122 });
3123 });
3124 });
3125
3126 // BIP49 derivation path is shown
3127 it('Shows the bip49 derivation path', function(done) {
3128 driver.findElement(By.css('#bip49-tab a'))
3129 .click();
3130 driver.findElement(By.css(".phrase"))
3131 .sendKeys("abandon abandon ability");
3132 driver.sleep(generateDelay).then(function() {
3133 driver.findElement(By.css('#bip49 .path'))
3134 .getAttribute("value")
3135 .then(function(path) {
3136 expect(path).toBe("m/49'/0'/0'/0");
3137 done();
3138 });
3139 });
3140 });
3141
3142 // BIP49 extended private key is shown
3143 it('Shows the bip49 extended private key', function(done) {
3144 driver.findElement(By.css('#bip49-tab a'))
3145 .click();
3146 driver.findElement(By.css(".phrase"))
3147 .sendKeys("abandon abandon ability");
3148 driver.sleep(generateDelay).then(function() {
3149 driver.findElement(By.css('.extended-priv-key'))
3150 .getAttribute("value")
3151 .then(function(xprv) {
3152 expect(xprv).toBe("yprvALYB4DYRG6CzzVgzQZwwqjAA2wjBGC3iEd7KYYScpoDdmf75qMRWZWxoFcRXBJjgEXdFqJ9vDRGRLJQsrL22Su5jMbNFeM9vetaGVqy9Qy2");
3153 done();
3154 });
3155 });
3156 });
3157
3158 // BIP49 extended public key is shown
3159 it('Shows the bip49 extended public key', function(done) {
3160 driver.findElement(By.css('#bip49-tab a'))
3161 .click();
3162 driver.findElement(By.css(".phrase"))
3163 .sendKeys("abandon abandon ability");
3164 driver.sleep(generateDelay).then(function() {
3165 driver.findElement(By.css('.extended-pub-key'))
3166 .getAttribute("value")
3167 .then(function(xprv) {
3168 expect(xprv).toBe("ypub6ZXXTj5K6TmJCymTWbUxCs6tayZffemZbr2vLvrEP8kceTSENtjm7KHH6thvAKxVar9fGe8rgsPEX369zURLZ68b4f7Vexz7RuXsjQ69YDt");
3169 done();
3170 });
3171 });
3172 });
3173
3174 // BIP49 account field changes address list
3175 it('Can set the bip49 account field', function(done) {
3176 driver.findElement(By.css('#bip49-tab a'))
3177 .click();
3178 driver.findElement(By.css('#bip49 .account'))
3179 .clear();
3180 driver.findElement(By.css('#bip49 .account'))
3181 .sendKeys("1");
3182 driver.findElement(By.css(".phrase"))
3183 .sendKeys("abandon abandon ability");
3184 driver.sleep(generateDelay).then(function() {
3185 getFirstAddress(function(address) {
3186 expect(address).toBe("381wg1GGN4rP88rNC9v7QWsiww63yLVPsn");
3187 done();
3188 });
3189 });
3190 });
3191
3192 // BIP49 change field changes address list
3193 it('Can set the bip49 change field', function(done) {
3194 driver.findElement(By.css('#bip49-tab a'))
3195 .click();
3196 driver.findElement(By.css('#bip49 .change'))
3197 .clear();
3198 driver.findElement(By.css('#bip49 .change'))
3199 .sendKeys("1");
3200 driver.findElement(By.css(".phrase"))
3201 .sendKeys("abandon abandon ability");
3202 driver.sleep(generateDelay).then(function() {
3203 getFirstAddress(function(address) {
3204 expect(address).toBe("3PEM7MiKed5konBoN66PQhK8r3hjGhy9dT");
3205 done();
3206 });
3207 });
3208 });
3209
3210 // BIP49 account extendend private key is shown
3211 it('Shows the bip49 account extended private key', function(done) {
3212 driver.findElement(By.css('#bip49-tab a'))
3213 .click();
3214 driver.findElement(By.css(".phrase"))
3215 .sendKeys("abandon abandon ability");
3216 driver.sleep(generateDelay).then(function() {
3217 driver.findElement(By.css('#bip49 .account-xprv'))
3218 .getAttribute("value")
3219 .then(function(xprv) {
3220 expect(xprv).toBe("yprvAHtB1M5Wp675aLzFy9TJYK2mSsLkg6mcBRh5DZTR7L4EnYSmYPaL63KFA4ycg1PngW5LfkmejxzosCs17TKZMpRFKc3z5SJar6QAKaFcaZL");
3221 done();
3222 });
3223 });
3224 });
3225
3226 // BIP49 account extendend public key is shown
3227 it('Shows the bip49 account extended public key', function(done) {
3228 driver.findElement(By.css('#bip49-tab a'))
3229 .click();
3230 driver.findElement(By.css(".phrase"))
3231 .sendKeys("abandon abandon ability");
3232 driver.sleep(generateDelay).then(function() {
3233 driver.findElement(By.css('#bip49 .account-xpub'))
3234 .getAttribute("value")
3235 .then(function(xprv) {
3236 expect(xprv).toBe("ypub6WsXQrcQeTfNnq4j5AzJuSyVzuBF5ZVTYecg1ws2ffbDfLmv5vtadqdj1NgR6C6gufMpMfJpHxvb6JEQKvETVNWCRanNedfJtnTchZiJtsL");
3237 done();
3238 });
3239 });
3240 });
3241
3242 // Test selecting coin where bip49 is unavailable (eg CLAM)
3243 it('Shows an error on bip49 tab for coins without bip49', function(done) {
3244 driver.findElement(By.css('#bip49-tab a'))
3245 .click();
3246 driver.findElement(By.css(".phrase"))
3247 .sendKeys("abandon abandon ability");
3248 driver.sleep(generateDelay).then(function() {
3249 selectNetwork("CLAM - Clams");
3250 // bip49 available is hidden
3251 driver.findElement(By.css('#bip49 .available'))
3252 .getAttribute("class")
3253 .then(function(classes) {
3254 expect(classes).toContain("hidden");
3255 // bip49 unavailable is shown
3256 driver.findElement(By.css('#bip49 .unavailable'))
3257 .getAttribute("class")
3258 .then(function(classes) {
3259 expect(classes).not.toContain("hidden");
3260 // check there are no addresses shown
3261 driver.findElements(By.css('.addresses tr'))
3262 .then(function(rows) {
3263 expect(rows.length).toBe(0);
3264 // check the derived private key is blank
3265 driver.findElement(By.css('.extended-priv-key'))
3266 .getAttribute("value")
3267 .then(function(xprv) {
3268 expect(xprv).toBe('');
3269 // check the derived public key is blank
3270 driver.findElement(By.css('.extended-pub-key'))
3271 .getAttribute("value")
3272 .then(function(xpub) {
3273 expect(xpub).toBe('');
3274 done();
3275 });
3276 });
3277 })
3278 });
3279 });
3280 });
3281 });
3282
3283 // github issue 43
3284 // Cleared mnemonic and root key still allows addresses to be generated
3285 // https://github.com/iancoleman/bip39/issues/43
3286 it('Clears old root keys from memory when mnemonic is cleared', function(done) {
3287 // set the phrase
3288 driver.findElement(By.css(".phrase"))
3289 .sendKeys("abandon abandon ability");
3290 driver.sleep(generateDelay).then(function() {
3291 // clear the mnemonic and root key
3292 // using selenium .clear() doesn't seem to trigger the 'input' event
3293 // so clear it using keys instead
3294 driver.findElement(By.css('.phrase'))
3295 .sendKeys(Key.CONTROL,"a");
3296 driver.findElement(By.css('.phrase'))
3297 .sendKeys(Key.DELETE);
3298 driver.findElement(By.css('.root-key'))
3299 .sendKeys(Key.CONTROL,"a");
3300 driver.findElement(By.css('.root-key'))
3301 .sendKeys(Key.DELETE);
3302 driver.sleep(generateDelay).then(function() {
3303 // try to generate more addresses
3304 driver.findElement(By.css('.more'))
3305 .click();
3306 driver.sleep(generateDelay).then(function() {
3307 driver.findElements(By.css(".addresses tr"))
3308 .then(function(els) {
3309 // check there are no addresses shown
3310 expect(els.length).toBe(0);
3311 done();
3312 });
3313 });
3314 });
3315 });
3316 });
3317
3318 // Github issue 95
3319 // error trying to generate addresses from xpub with hardened derivation
3320 it('Shows error for hardened addresses with xpub root key', function(done) {
3321 driver.findElement(By.css('#bip32-tab a'))
3322 .click()
3323 driver.executeScript(function() {
3324 $(".hardened-addresses").prop("checked", true);
3325 });
3326 // set xpub for account 0 of bip44 for 'abandon abandon ability'
3327 driver.findElement(By.css("#root-key"))
3328 .sendKeys("xpub6CzDCPbtLrrn4VpVbyyQLHbdSMpZoHN4iuW64VswCyEpfjM2mJGdaHJ2DyuZwtst96E16VvcERb8BBeJdHSCVmAq9RhtRQg6eAZFrTKCNqf");
3329 driver.sleep(feedbackDelay).then(function() {
3330 // Check feedback is correct
3331 driver.findElement(By.css('.feedback'))
3332 .getText()
3333 .then(function(feedback) {
3334 var msg = "Hardened derivation path is invalid with xpub key";
3335 expect(feedback).toBe(msg);
3336 done();
3337 });
3338 });
3339 });
3340
3341 // Litecoin uses ltub by default, and can optionally be set to xprv
3342 // github issue 96
3343 // https://github.com/iancoleman/bip39/issues/96
3344 // Issue with extended keys on Litecoin
3345 it('Uses ltub by default for litecoin, but can be set to xprv', function(done) {
3346 driver.findElement(By.css('.phrase'))
3347 .sendKeys("abandon abandon ability");
3348 selectNetwork("LTC - Litecoin");
3349 driver.sleep(generateDelay).then(function() {
3350 // check the extended key is generated correctly
3351 driver.findElement(By.css('.root-key'))
3352 .getAttribute("value")
3353 .then(function(rootKey) {
3354 expect(rootKey).toBe("Ltpv71G8qDifUiNesiPqf6h5V6eQ8ic77oxQiYtawiACjBEx3sTXNR2HGDGnHETYxESjqkMLFBkKhWVq67ey1B2MKQXannUqNy1RZVHbmrEjnEU");
3355 // set litecoin to use ltub
3356 driver.executeScript(function() {
3357 $(".litecoin-use-ltub").prop("checked", false);
3358 $(".litecoin-use-ltub").trigger("change");
3359 });
3360 driver.sleep(generateDelay).then(function() {
3361 driver.findElement(By.css('.root-key'))
3362 .getAttribute("value")
3363 .then(function(rootKey) {
3364 expect(rootKey).toBe("xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi");
3365 done();
3366 });
3367 })
3368 });
3369 });
3370 });
3371
3372 // github issue 99
3373 // https://github.com/iancoleman/bip39/issues/99#issuecomment-327094159
3374 // "warn me emphatically when they have detected invalid input" to the entropy field
3375 // A warning is shown when entropy is filtered and discarded
3376 it('Warns when entropy is filtered and discarded', function(done) {
3377 driver.findElement(By.css('.use-entropy'))
3378 .click();
3379 // set entropy to have no filtered content
3380 driver.findElement(By.css('.entropy'))
3381 .sendKeys("00000000 00000000 00000000 00000000");
3382 driver.sleep(generateDelay).then(function() {
3383 // check the filter warning does not show
3384 driver.findElement(By.css('.entropy-container .filter-warning'))
3385 .getAttribute("class")
3386 .then(function(classes) {
3387 expect(classes).toContain("hidden");
3388 // set entropy to have some filtered content
3389 driver.findElement(By.css('.entropy'))
3390 .sendKeys("10000000 zxcvbn 00000000 00000000 00000000");
3391 driver.sleep(entropyFeedbackDelay).then(function() {
3392 // check the filter warning shows
3393 driver.findElement(By.css('.entropy-container .filter-warning'))
3394 .getAttribute("class")
3395 .then(function(classes) {
3396 expect(classes).not.toContain("hidden");
3397 done();
3398 });
3399 });
3400 });
3401 });
3402 });
3403
3404 // Bitcoin Cash address can be set to use cashaddr format
3405 it('Can use cashaddr format for bitcoin cash addresses', function(done) {
3406 driver.executeScript(function() {
3407 $(".use-bch-cashaddr-addresses").prop("checked", true);
3408 });
3409 driver.findElement(By.css('.phrase'))
3410 .sendKeys("abandon abandon ability");
3411 selectNetwork("BCH - Bitcoin Cash");
3412 driver.sleep(generateDelay).then(function() {
3413 getFirstAddress(function(address) {
3414 expect(address).toBe("bitcoincash:qzlquk7w4hkudxypl4fgv8x279r754dkvur7jpcsps");
3415 done();
3416 });
3417 });
3418 });
3419
3420 // Bitcoin Cash address can be set to use bitpay format
3421 it('Can use bitpay format for bitcoin cash addresses', function(done) {
3422 driver.executeScript(function() {
3423 $(".use-bch-bitpay-addresses").prop("checked", true);
3424 });
3425 driver.findElement(By.css('.phrase'))
3426 .sendKeys("abandon abandon ability");
3427 selectNetwork("BCH - Bitcoin Cash");
3428 driver.sleep(generateDelay).then(function() {
3429 getFirstAddress(function(address) {
3430 expect(address).toBe("CZnpA9HPmvhuhLLPWJP8rNDpLUYXy1LXFk");
3431 done();
3432 });
3433 });
3434 });
3435
3436 // Bitcoin Cash address can be set to use legacy format
3437 it('Can use legacy format for bitcoin cash addresses', function(done) {
3438 driver.executeScript(function() {
3439 $(".use-bch-legacy-addresses").prop("checked", true);
3440 });
3441 driver.findElement(By.css('.phrase'))
3442 .sendKeys("abandon abandon ability");
3443 selectNetwork("BCH - Bitcoin Cash");
3444 driver.sleep(generateDelay).then(function() {
3445 getFirstAddress(function(address) {
3446 expect(address).toBe("1JKvb6wKtsjNoCRxpZ4DGrbniML7z5U16A");
3447 done();
3448 });
3449 });
3450 });
3451
3452 // End of tests ported from old suit, so no more comments above each test now
3453
3454 it('Can generate more addresses from a custom index', function(done) {
3455 var expectedIndexes = [
3456 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,
3457 40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59
3458 ];
3459 driver.findElement(By.css('.phrase'))
3460 .sendKeys("abandon abandon ability");
3461 driver.sleep(generateDelay).then(function() {
3462 // Set start of next lot of rows to be from index 40
3463 // which means indexes 20-39 will not be in the table.
3464 driver.findElement(By.css('.more-rows-start-index'))
3465 .sendKeys("40");
3466 driver.findElement(By.css('.more'))
3467 .click();
3468 driver.sleep(generateDelay).then(function() {
3469 // Check actual indexes in the table match the expected pattern
3470 driver.findElements(By.css(".index"))
3471 .then(function(els) {
3472 expect(els.length).toBe(expectedIndexes.length);
3473 var testRowAtIndex = function(i) {
3474 if (i >= expectedIndexes.length) {
3475 done();
3476 }
3477 else {
3478 els[i].getText()
3479 .then(function(actualPath) {
3480 var noHardened = actualPath.replace(/'/g, "");
3481 var pathBits = noHardened.split("/")
3482 var lastBit = pathBits[pathBits.length-1];
3483 var actualIndex = parseInt(lastBit);
3484 var expectedIndex = expectedIndexes[i];
3485 expect(actualIndex).toBe(expectedIndex);
3486 testRowAtIndex(i+1);
3487 });
3488 }
3489 }
3490 testRowAtIndex(0);
3491 });
3492 });
3493 });
3494 });
3495
3496 it('Can generate BIP141 addresses with P2WPKH-in-P2SH semanitcs', function(done) {
3497 // Sourced from BIP49 official test specs
3498 driver.findElement(By.css('#bip141-tab a'))
3499 .click();
3500 driver.findElement(By.css('.bip141-path'))
3501 .clear();
3502 driver.findElement(By.css('.bip141-path'))
3503 .sendKeys("m/49'/1'/0'/0");
3504 selectNetwork("BTC - Bitcoin Testnet");
3505 driver.findElement(By.css(".phrase"))
3506 .sendKeys("abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about");
3507 driver.sleep(generateDelay).then(function() {
3508 getFirstAddress(function(address) {
3509 expect(address).toBe("2Mww8dCYPUpKHofjgcXcBCEGmniw9CoaiD2");
3510 done();
3511 });
3512 });
3513 });
3514
3515 it('Can generate BIP141 addresses with P2WPKH semanitcs', function(done) {
3516 // This result tested against bitcoinjs-lib test spec for segwit address
3517 // using the first private key of this mnemonic and default path m/0
3518 // https://github.com/bitcoinjs/bitcoinjs-lib/blob/9c8503cab0c6c30a95127042703bc18e8d28c76d/test/integration/addresses.js#L50
3519 // so whilst not directly comparable, substituting the private key produces
3520 // identical results between this tool and the bitcoinjs-lib test.
3521 // Private key generated is:
3522 // L3L8Nu9whawPBNLGtFqDhKut9DKKfG3CQoysupT7BimqVCZsLFNP
3523 driver.findElement(By.css('#bip141-tab a'))
3524 .click();
3525 // Choose P2WPKH
3526 driver.executeScript(function() {
3527 $(".bip141-semantics option[selected]").removeAttr("selected");
3528 $(".bip141-semantics option").filter(function(i,e) {
3529 return $(e).html() == "P2WPKH";
3530 }).prop("selected", true);
3531 $(".bip141-semantics").trigger("change");
3532 });
3533 driver.findElement(By.css(".phrase"))
3534 .sendKeys("abandon abandon ability");
3535 driver.sleep(generateDelay).then(function() {
3536 getFirstAddress(function(address) {
3537 expect(address).toBe("bc1qfwu6a5a3evygrk8zvdxxvz4547lmpyx5vsfxe9");
3538 done();
3539 });
3540 });
3541 });
3542
3543 it('Shows the entropy used by the PRNG when clicking generate', function(done) {
3544 driver.findElement(By.css('.generate')).click();
3545 driver.sleep(generateDelay).then(function() {
3546 driver.findElement(By.css('.entropy'))
3547 .getAttribute("value")
3548 .then(function(entropy) {
3549 expect(entropy).not.toBe("");
3550 done();
3551 });
3552 });
3553 });
3554
3555 it('Shows the index of each word in the mnemonic', function(done) {
3556 driver.findElement(By.css('.phrase'))
3557 .sendKeys("abandon abandon ability");
3558 driver.sleep(generateDelay).then(function() {
3559 driver.findElement(By.css('.use-entropy'))
3560 .click();
3561 driver.findElement(By.css('.word-indexes'))
3562 .getText()
3563 .then(function(indexes) {
3564 expect(indexes).toBe("0, 0, 1");
3565 done();
3566 });
3567 });
3568 });
3569
3570 it('Shows the derivation path for bip84 tab', function(done) {
3571 driver.findElement(By.css('#bip84-tab a'))
3572 .click()
3573 driver.findElement(By.css('.phrase'))
3574 .sendKeys('abandon abandon ability');
3575 driver.sleep(generateDelay).then(function() {
3576 driver.findElement(By.css('#bip84 .path'))
3577 .getAttribute("value")
3578 .then(function(path) {
3579 expect(path).toBe("m/84'/0'/0'/0");
3580 done();
3581 })
3582 });
3583 });
3584
3585 it('Shows the extended private key for bip84 tab', function(done) {
3586 driver.findElement(By.css('#bip84-tab a'))
3587 .click()
3588 driver.findElement(By.css('.phrase'))
3589 .sendKeys('abandon abandon ability');
3590 driver.sleep(generateDelay).then(function() {
3591 driver.findElement(By.css('.extended-priv-key'))
3592 .getAttribute("value")
3593 .then(function(path) {
3594 expect(path).toBe("zprvAev3RKrZ3QVKiUFCfdeMRen1BPDJgdNt1XpxiDy8acSs4kkAGTCvq7HeRYRNNpo8EtEjCFQBWavJwtCUR29y4TUCH4X5RXMcyq48uN8y9BP");
3595 done();
3596 })
3597 });
3598 });
3599
3600 it('Shows the extended public key for bip84 tab', function(done) {
3601 driver.findElement(By.css('#bip84-tab a'))
3602 .click()
3603 driver.findElement(By.css('.phrase'))
3604 .sendKeys('abandon abandon ability');
3605 driver.sleep(generateDelay).then(function() {
3606 driver.findElement(By.css('.extended-pub-key'))
3607 .getAttribute("value")
3608 .then(function(path) {
3609 expect(path).toBe("zpub6suPpqPSsn3cvxKfmfBMnnijjR3o666jNkkZWcNk8wyqwZ5JozXBNuc8Gs7DB3uLwTDvGVTspVEAUQcEjKF3pZHgywVbubdTqbXTUg7usyx");
3610 done();
3611 })
3612 });
3613 });
3614
3615 it('Changes the address list if bip84 account is changed', function(done) {
3616 driver.findElement(By.css('#bip84-tab a'))
3617 .click()
3618 driver.findElement(By.css('#bip84 .account'))
3619 .sendKeys('1');
3620 driver.findElement(By.css('.phrase'))
3621 .sendKeys('abandon abandon ability');
3622 driver.sleep(generateDelay).then(function() {
3623 getFirstAddress(function(address) {
3624 expect(address).toBe("bc1qp7vv669t2fy965jdzvqwrraana89ctd5ewc662");
3625 done();
3626 });
3627 });
3628 });
3629
3630 it('Changes the address list if bip84 change is changed', function(done) {
3631 driver.findElement(By.css('#bip84-tab a'))
3632 .click()
3633 driver.findElement(By.css('#bip84 .change'))
3634 .sendKeys('1');
3635 driver.findElement(By.css('.phrase'))
3636 .sendKeys('abandon abandon ability');
3637 driver.sleep(generateDelay).then(function() {
3638 getFirstAddress(function(address) {
3639 expect(address).toBe("bc1qr39vj6rh06ff05m53uxq8uazehwhccswylhrs2");
3640 done();
3641 });
3642 });
3643 });
3644
3645 it('Passes the official BIP84 test spec for rootpriv', function(done) {
3646 driver.findElement(By.css('#bip84-tab a'))
3647 .click()
3648 driver.findElement(By.css('.phrase'))
3649 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3650 driver.sleep(generateDelay).then(function() {
3651 driver.findElement(By.css(".root-key"))
3652 .getAttribute("value")
3653 .then(function(rootKey) {
3654 expect(rootKey).toBe("zprvAWgYBBk7JR8Gjrh4UJQ2uJdG1r3WNRRfURiABBE3RvMXYSrRJL62XuezvGdPvG6GFBZduosCc1YP5wixPox7zhZLfiUm8aunE96BBa4Kei5");
3655 done();
3656 })
3657 });
3658 });
3659
3660 it('Passes the official BIP84 test spec for account 0 xprv', function(done) {
3661 driver.findElement(By.css('#bip84-tab a'))
3662 .click()
3663 driver.findElement(By.css('.phrase'))
3664 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3665 driver.sleep(generateDelay).then(function() {
3666 driver.findElement(By.css("#bip84 .account-xprv"))
3667 .getAttribute("value")
3668 .then(function(rootKey) {
3669 expect(rootKey).toBe("zprvAdG4iTXWBoARxkkzNpNh8r6Qag3irQB8PzEMkAFeTRXxHpbF9z4QgEvBRmfvqWvGp42t42nvgGpNgYSJA9iefm1yYNZKEm7z6qUWCroSQnE");
3670 done();
3671 })
3672 });
3673 });
3674
3675 it('Passes the official BIP84 test spec for account 0 xpub', function(done) {
3676 driver.findElement(By.css('#bip84-tab a'))
3677 .click()
3678 driver.findElement(By.css('.phrase'))
3679 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3680 driver.sleep(generateDelay).then(function() {
3681 driver.findElement(By.css("#bip84 .account-xpub"))
3682 .getAttribute("value")
3683 .then(function(rootKey) {
3684 expect(rootKey).toBe("zpub6rFR7y4Q2AijBEqTUquhVz398htDFrtymD9xYYfG1m4wAcvPhXNfE3EfH1r1ADqtfSdVCToUG868RvUUkgDKf31mGDtKsAYz2oz2AGutZYs");
3685 done();
3686 })
3687 });
3688 });
3689
3690 it('Passes the official BIP84 test spec for account 0 first address', function(done) {
3691 driver.findElement(By.css('#bip84-tab a'))
3692 .click()
3693 driver.findElement(By.css('.phrase'))
3694 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3695 driver.sleep(generateDelay).then(function() {
3696 getFirstAddress(function(address) {
3697 expect(address).toBe("bc1qcr8te4kr609gcawutmrza0j4xv80jy8z306fyu");
3698 done();
3699 });
3700 });
3701 });
3702
3703 it('Passes the official BIP84 test spec for account 0 first change address', function(done) {
3704 driver.findElement(By.css('#bip84-tab a'))
3705 .click()
3706 driver.findElement(By.css('.phrase'))
3707 .sendKeys('abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon abandon about');
3708 driver.findElement(By.css('#bip84 .change'))
3709 .sendKeys('1');
3710 driver.sleep(generateDelay).then(function() {
3711 getFirstAddress(function(address) {
3712 expect(address).toBe("bc1q8c6fshw2dlwun7ekn9qwf37cu2rn755upcp6el");
3713 done();
3714 });
3715 });
3716 });
3717
3718 it('Can display the table as csv', function(done) {
3719 var headings = "path,address,public key,private key";
3720 var row1 = "m/44'/0'/0'/0/0,1Di3Vp7tBWtyQaDABLAjfWtF6V7hYKJtug,033f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3,L26cVSpWFkJ6aQkPkKmTzLqTdLJ923e6CzrVh9cmx21QHsoUmrEE";
3721 var row20 = "m/44'/0'/0'/0/19,1KhBy28XLAciXnnRvm71PvQJaETyrxGV55,02b4b3e396434d8cdd20c03ac4aaa07387784d5d867b75987f516f5705ee68cb3a,L4GrDrjReMsCAu5DkLXn79jSb95qR7Zfx7eshybCQZ1qL32MXJab";
3722 driver.findElement(By.css('.phrase'))
3723 .sendKeys('abandon abandon ability');
3724 driver.sleep(generateDelay).then(function() {
3725 driver.findElement(By.css('.csv'))
3726 .getAttribute("value")
3727 .then(function(csv) {
3728 expect(csv).toContain(headings);
3729 expect(csv).toContain(row1);
3730 expect(csv).toContain(row20);
3731 done();
3732 });
3733 });
3734 });
3735
3736 it('LeftPads ethereum keys that are less than 32 bytes', function(done) {
3737 // see https://github.com/iancoleman/bip39/issues/155
3738 selectNetwork("ETH - Ethereum");
3739 driver.findElement(By.css('#bip32-tab a'))
3740 .click()
3741 driver.findElement(By.css('#bip32-path'))
3742 .clear();
3743 driver.findElement(By.css('#bip32-path'))
3744 .sendKeys("m/44'/60'/0'");
3745 driver.findElement(By.css('.phrase'))
3746 .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');
3747 driver.sleep(generateDelay).then(function() {
3748 getFirstAddress(function(address) {
3749 expect(address).toBe("0x8943E785B4a5714FC87a3aFAad1eB1FeB602B118");
3750 done();
3751 });
3752 });
3753 });
3754
3755 it('Can encrypt private keys using BIP38', function(done) {
3756 // see https://github.com/iancoleman/bip39/issues/140
3757 driver.executeScript(function() {
3758 $(".use-bip38").prop("checked", true);
3759 });
3760 driver.findElement(By.css('.bip38-password'))
3761 .sendKeys('bip38password');
3762 driver.findElement(By.css('.rows-to-add'))
3763 .clear();
3764 driver.findElement(By.css('.rows-to-add'))
3765 .sendKeys('1');
3766 driver.findElement(By.css('.phrase'))
3767 .sendKeys('abandon abandon ability');
3768 driver.sleep(bip38delay).then(function() {
3769 // address
3770 getFirstRowValue(function(address) {
3771 expect(address).toBe("1NCvSdumA3ngMM9c4aqU56AM6rqXddfuXB");
3772 // pubkey
3773 getFirstRowValue(function(pubkey) {
3774 expect(pubkey).toBe("043f5aed5f6cfbafaf223188095b5980814897295f723815fea5d3f4b648d0d0b3884a74447ea901729b1e73a999b7520e7cb55b4120e6432c64153ccab8a848e1");
3775 // privkey
3776 getFirstRowValue(function(privkey) {
3777 expect(privkey).toBe("6PRNRiFnj1RoR3sXhymdCvoZCgnUHQpfupNdKkFbWJkwWQEKesWt1EDMDM");
3778 done();
3779 }, ".privkey");
3780 }, ".pubkey");
3781 }, ".address");
3782 });
3783 }, bip38delay + 5000);
3784
3785 it('Shows the checksum for the entropy', function(done) {
3786 driver.findElement(By.css('.use-entropy'))
3787 .click();
3788 driver.findElement(By.css('.entropy'))
3789 .sendKeys("00000000000000000000000000000000");
3790 driver.sleep(generateDelay).then(function() {
3791 driver.findElement(By.css('.checksum'))
3792 .getText()
3793 .then(function(text) {
3794 expect(text).toBe("1");
3795 done();
3796 });
3797 });
3798 });
3799
3800 it('Shows the checksum for the entropy with the correct groupings', function(done) {
3801 driver.findElement(By.css('.use-entropy'))
3802 .click();
3803 // create a checksum of 20 bits, which spans multiple words
3804 driver.findElement(By.css('.entropy'))
3805 .sendKeys("F000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000");
3806 driver.sleep(generateDelay).then(function() {
3807 driver.findElement(By.css('.checksum'))
3808 .getText()
3809 .then(function(text) {
3810 // first group is 9 bits, second group is 11
3811 expect(text).toBe("011010111 01110000110");
3812 done();
3813 });
3814 });
3815 });
3816
3817 it('Uses vprv for bitcoin testnet p2wpkh', function(done) {
3818 selectNetwork("BTC - Bitcoin Testnet");
3819 driver.findElement(By.css('#bip84-tab a'))
3820 .click()
3821 driver.findElement(By.css('.phrase'))
3822 .sendKeys('abandon abandon ability');
3823 driver.sleep(generateDelay).then(function() {
3824 driver.findElement(By.css('.root-key'))
3825 .getAttribute("value")
3826 .then(function(path) {
3827 expect(path).toBe("vprv9DMUxX4ShgxML9N2YV5CvWEebWrM9aJ5ULpbRRyzyWu6vs4BzTvbfFFrH41N5hVi7MYSfiugd765L3JmAfDM5po36Y8ouCKRDeYQwByCmS7");
3828 done();
3829 })
3830 });
3831 });
3832
3833 it('Shows a warning if generating weak mnemonics', function(done) {
3834 driver.executeScript(function() {
3835 $(".strength option[selected]").removeAttr("selected");
3836 $(".strength option[value=6]").prop("selected", true);
3837 $(".strength").trigger("change");
3838 });
3839 driver.findElement(By.css(".generate-container .warning"))
3840 .getAttribute("class")
3841 .then(function(classes) {
3842 expect(classes).not.toContain("hidden");
3843 done();
3844 });
3845 });
3846
3847 it('Does not show a warning if generating strong mnemonics', function(done) {
3848 driver.executeScript(function() {
3849 $(".strength option[selected]").removeAttr("selected");
3850 $(".strength option[value=12]").prop("selected", true);
3851 });
3852 driver.findElement(By.css(".generate-container .warning"))
3853 .getAttribute("class")
3854 .then(function(classes) {
3855 expect(classes).toContain("hidden");
3856 done();
3857 });
3858 });
3859
3860 it('Shows a warning if overriding weak entropy with longer mnemonics', function(done) {
3861 driver.findElement(By.css('.use-entropy'))
3862 .click();
3863 driver.findElement(By.css('.entropy'))
3864 .sendKeys("0123456789abcdef"); // 6 words
3865 driver.executeScript(function() {
3866 $(".mnemonic-length").val("12").trigger("change");
3867 });
3868 driver.findElement(By.css(".weak-entropy-override-warning"))
3869 .getAttribute("class")
3870 .then(function(classes) {
3871 expect(classes).not.toContain("hidden");
3872 done();
3873 });
3874 });
3875
3876 it('Does not show a warning if entropy is stronger than mnemonic length', function(done) {
3877 driver.findElement(By.css('.use-entropy'))
3878 .click();
3879 driver.findElement(By.css('.entropy'))
3880 .sendKeys("0123456789abcdef0123456789abcdef0123456789abcdef"); // 18 words
3881 driver.executeScript(function() {
3882 $(".mnemonic-length").val("12").trigger("change");
3883 });
3884 driver.findElement(By.css(".weak-entropy-override-warning"))
3885 .getAttribute("class")
3886 .then(function(classes) {
3887 expect(classes).toContain("hidden");
3888 done();
3889 });
3890 });
3891
3892 it('Shows litecoin BIP49 addresses', function(done) {
3893 driver.findElement(By.css('.phrase'))
3894 .sendKeys('abandon abandon ability');
3895 selectNetwork("LTC - Litecoin");
3896 driver.findElement(By.css('#bip49-tab a'))
3897 .click()
3898 // bip49 addresses are shown
3899 driver.sleep(generateDelay).then(function() {
3900 driver.findElement(By.css('#bip49 .available'))
3901 .getAttribute("class")
3902 .then(function(classes) {
3903 expect(classes).not.toContain("hidden");
3904 // check first address
3905 getFirstAddress(function(address) {
3906 expect(address).toBe("MFwLPhsXoBuSLL8cLmW9uK6tChkzduV8qN");
3907 done();
3908 });
3909 });
3910 });
3911 });
3912
3913 it('Can use root keys to generate segwit table rows', function(done) {
3914 // segwit uses ypub / zpub instead of xpub but the root key should still
3915 // be valid regardless of the encoding used to import that key.
3916 // Maybe this breaks the reason for the different extended key prefixes, but
3917 // since the parsed root key is used behind the scenes anyhow this should be
3918 // allowed.
3919 driver.findElement(By.css('#root-key'))
3920 .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi');
3921 driver.findElement(By.css('#bip49-tab a'))
3922 .click()
3923 // bip49 addresses are shown
3924 driver.sleep(generateDelay).then(function() {
3925 getFirstAddress(function(address) {
3926 expect(address).toBe("3QG2Y9AA4xZ846gKHZqNf7mvVKbLqMKxr2");
3927 done();
3928 });
3929 });
3930 });
3931
3932 });