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