X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git;a=blobdiff_plain;f=tests%2Fspec%2Ftests.js;h=b09be058ecd347d595d17314d30eae47652a89a1;hp=09013111294e66fdc4e28c47f9fb8bb4f7f79c5c;hb=36523e0d9714a8ff9996ec3e062a8e16e28c3415;hpb=c6c86591a9c87cc85e12c8ee6591099b0f502070 diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 0901311..b09be05 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js @@ -854,7 +854,7 @@ it('Allows selection of Compcoin', function(done) { it('Allows selection of CPUchain', function(done) { var params = { selectText: "CPU - CPUchain", - firstAddress: "CWWkTPkNRdpTDSfPw7gxUt9cEaC5PSsP3Y", + firstAddress: "CWSpLpW7jS4mBHJnkz3mmL5s3yQMg93zK8", }; testNetwork(done, params); }); @@ -1594,6 +1594,27 @@ it('Allows selection of Wagerr', function(done) { }; testNetwork(done, params); }); +it('Allows selection of Groestlcoin', function(done) { + var params = { + selectText: "GRS - Groestlcoin", + firstAddress: "FZycsFvZ1eH1hbtyjBpAgJSukVw1bN6PBN", + }; + testNetwork(done, params); +}); +it('Allows selection of Groestlcoin Testnet', function(done) { + var params = { + selectText: "GRS - Groestlcoin Testnet", + firstAddress: "mucaU5iiDaJDb69BHLeDv8JFfGiygRPne9", + }; + testNetwork(done, params); +}); +it('Allows selection of Elastos', function(done) { + var params = { + selectText: "ELA - Elastos", + firstAddress: "EYmqntM99tr4NJJs2G5Nr93pqsh9cdTCkS", + }; + testNetwork(done, params); +}); // BIP39 seed is set from phrase it('Sets the bip39 seed from the prhase', function(done) { @@ -2174,6 +2195,7 @@ it('Ignores excess whitespace in the mnemonic', function(done) { // Github Issue 23: Part 1: Use correct derivation path when changing tabs // https://github.com/iancoleman/bip39/issues/23 +// This test was failing for default timeout of 5000ms so changed it to +10s it('Uses the correct derivation path when changing tabs', function(done) { // 1) and 2) set the phrase driver.findElement(By.css('.phrase')) @@ -2198,7 +2220,7 @@ it('Uses the correct derivation path when changing tabs', function(done) { }); }); }); -}); +}, generateDelay + 10000); // Github Issue 23 Part 2: Coin selection in derivation path // https://github.com/iancoleman/bip39/issues/23#issuecomment-238011920 @@ -4056,6 +4078,27 @@ it('Shows litecoin BIP49 addresses', function(done) { }); }); +it('Shows Groestlcoin BIP49 addresses', function(done) { + driver.findElement(By.css('.phrase')) + .sendKeys('abandon abandon ability'); + selectNetwork("GRS - Groestlcoin"); + driver.findElement(By.css('#bip49-tab a')) + .click() + // bip49 addresses are shown + driver.sleep(generateDelay).then(function() { + driver.findElement(By.css('#bip49 .available')) + .getAttribute("class") + .then(function(classes) { + expect(classes).not.toContain("hidden"); + // check first address + getFirstAddress(function(address) { + expect(address).toBe("3HXSCZwCypLyixMsF4Z1sN49noJtrm8gnX"); + done(); + }); + }); + }); +}); + it('Can use root keys to generate segwit table rows', function(done) { // segwit uses ypub / zpub instead of xpub but the root key should still // be valid regardless of the encoding used to import that key.