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