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