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