X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2Fspec%2Ftests.js;h=19d6b32961fcbe750814d305fa10a6c30520f8f9;hb=0afecfc73c8b700e99f91d8fe7ec063e7b0daf86;hp=5ddd686e0a7a69bac910d0885a98cd4b6b4923f3;hpb=530648c174dc295b47c22db7df4ea6753273efa6;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/tests/spec/tests.js b/tests/spec/tests.js index 5ddd686..19d6b32 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js @@ -616,7 +616,7 @@ it('Allows selection of monacoin', function(done) { it('Allows selection of AXE', function(done) { var params = { selectText: "AXE - Axe", - firstAddress: "XQ4HLxUVS3egk5ff1o9e2vJFJKSSsUH3B7", + firstAddress: "PScwtLUyPiGrqtKXrHF37DGETLXLZdw4up", }; testNetwork(done, params); }); @@ -1057,7 +1057,7 @@ it('Allows selection of Putincoin', function(done) { it('Allows selection of Reddcoin', function(done) { var params = { selectText: "RDD - Reddcoin", - firstAddress: "1M4druAcUfkXBaAcQ4cCgCLPHChiaib6kL", + firstAddress: "RtgRvXMBng1y51ftteveFqwNfyRG18HpxQ", }; testNetwork(done, params); }); @@ -1096,6 +1096,13 @@ it('Allows selection of Stratis', function(done) { }; testNetwork(done, params); }); +it('Allows selection of Stratis Test', function(done) { + var params = { + selectText: "TSTRAT - Stratis Testnet", + firstAddress: "TRLWm3dye4FRrDWouwYUSUZP96xb76mBE3", + }; + testNetwork(done, params); +}); it('Allows selection of Syscoin', function(done) { var params = { selectText: "SYS - Syscoin", @@ -1208,6 +1215,62 @@ it('Allows selection of Energi', function(done) { }; testNetwork(done, params); }); +it('Allows selection of Ethereum Classic', function(done) { + var params = { + selectText: "ETC - Ethereum Classic", + firstAddress: "0x3c05e5556693808367afB62eF3b63e35d6eD249A", + }; + testNetwork(done, params); +}); +it('Allows selection of Pirl', function(done) { + var params = { + selectText: "PIRL - Pirl", + firstAddress: "0xe77FC0723dA122B5025CA79193c28563eB47e776", + }; + testNetwork(done, params); +}); +it('Allows selection of MIX', function(done) { + var params = { + selectText: "MIX - MIX", + firstAddress: "0x98BC5e63aeb6A4e82d72850d20710F07E29A29F1", + }; + testNetwork(done, params); +}); +it('Allows selection of Musicoin', function(done) { + var params = { + selectText: "MUSIC - Musicoin", + firstAddress: "0xDc060e4A0b0313ea83Cf6B3A39B9db2D29004897", + }; + testNetwork(done, params); +}); +it('Allows selection of Poa', function(done) { + var params = { + selectText: "POA - Poa", + firstAddress: "0x53aF28d754e106210C3d0467Dd581eaf7e3C5e60", + }; + testNetwork(done, params); +}); +it('Allows selection of Expanse', function(done) { + var params = { + selectText: "EXP - Expanse", + firstAddress: "0xf57FeAbf26582b6E3E666559d3B1Cc6fB2b2c5F6", + }; + testNetwork(done, params); +}); +it('Allows selection of Callisto', function(done) { + var params = { + selectText: "CLO - Callisto", + firstAddress: "0x4f9364F7420B317266C51Dc8eB979717D4dE3f4E", + }; + testNetwork(done, params); +}); +it('Allows selection of HUSH', function(done) { + var params = { + selectText: "HUSH - Hush", + firstAddress: "t1g6rLXUnJaiJuu4q4zmJjoa9Gk4fwKpiuA", + }; + testNetwork(done, params); +}); // BIP39 seed is set from phrase @@ -2821,6 +2884,13 @@ it('Can set the derivation path on bip32 tab for multibit', function(done) { useHardenedAddresses: null, }); }); +it('Can set the derivation path on bip32 tab for coinomi/ledger', function(done) { + testClientSelect(done, { + selectValue: "3", + bip32path: "m/44'/0'/0'", + useHardenedAddresses: null, + }); +}); // github issue 58 // https://github.com/iancoleman/bip39/issues/58 @@ -3681,4 +3751,23 @@ it('Shows litecoin BIP49 addresses', function(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. + // Maybe this breaks the reason for the different extended key prefixes, but + // since the parsed root key is used behind the scenes anyhow this should be + // allowed. + driver.findElement(By.css('#root-key')) + .sendKeys('xprv9s21ZrQH143K2jkGDCeTLgRewT9F2pH5JZs2zDmmjXes34geVnFiuNa8KTvY5WoYvdn4Ag6oYRoB6cXtc43NgJAEqDXf51xPm6fhiMCKwpi'); + driver.findElement(By.css('#bip49-tab a')) + .click() + // bip49 addresses are shown + driver.sleep(generateDelay).then(function() { + getFirstAddress(function(address) { + expect(address).toBe("3QG2Y9AA4xZ846gKHZqNf7mvVKbLqMKxr2"); + done(); + }); + }); +}); + });