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