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