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