]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/BIP39.git/blobdiff - tests/spec/tests.js
Add tests for RSK network and testnet
[perso/Immae/Projets/Cryptomonnaies/BIP39.git] / tests / spec / tests.js
index 0e933439cdad2035415745f4b10b75d8e541feef..b2c3addd2da52dd8c049e1a19d46a1fce0a58f5b 100644 (file)
@@ -595,7 +595,6 @@ it('Allows selection of ethereum', function(done) {
         firstAddress: "0xe5815d5902Ad612d49283DEdEc02100Bd44C2772",
     };
     testNetwork(done, params);
-    // TODO test private key and public key
 });
 it('Allows selection of slimcoin', function(done) {
     var params = {
@@ -1636,6 +1635,27 @@ it('Allows selection of Thought', function(done) {
     };
     testNetwork(done, params);
 });
+it('Allows selection of EtherCore', function(done) {
+    var params = {
+        selectText: "ERE - EtherCore",
+        firstAddress: "0x119e6EAC3Ce1b473D62d9fD847fb0ea222eF1D9e",
+    };
+    testNetwork(done, params);
+});
+it('Allows selection of RBTC - RSK', function(done) {
+    var params = {
+        selectText: "RBTC - RSK",
+        firstAddress: "RGtz5TDdtviAZ9haz1YAUNQzcGVFm5bQrP",
+    };
+    testNetwork(done, params);
+});
+it('Allows selection of tRBTC - RSK Testnet', function(done) {
+    var params = {
+        selectText: "tRBTC - RSK Testnet",
+        firstAddress: "RHkrWgnSdJHxQAqEsMErhUUa4icXY6xUUC",
+    };
+    testNetwork(done, params);
+});
 
 // BIP39 seed is set from phrase
 it('Sets the bip39 seed from the prhase', function(done) {
@@ -2009,11 +2029,7 @@ it('Allows the user to set the BIP32 root key', function(done) {
 });
 
 // Setting BIP32 root key clears the existing phrase, passphrase and seed
-// TODO this doesn't work in selenium with chrome
 it('Confirms the existing phrase should be cleared', function(done) {
-    if (browser == "chrome") {
-        pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
-    }
     driver.findElement(By.css('.phrase'))
         .sendKeys('A non-blank but invalid value');
     driver.findElement(By.css('.root-key'))
@@ -2027,11 +2043,7 @@ it('Confirms the existing phrase should be cleared', function(done) {
 });
 
 // Clearing of phrase, passphrase and seed can be cancelled by user
-// TODO this doesn't work in selenium with chrome
 it('Allows the clearing of the phrase to be cancelled', function(done) {
-    if (browser == "chrome") {
-        pending("Selenium + Chrome headless bug for alert, see https://stackoverflow.com/q/45242264");
-    }
     driver.findElement(By.css('.phrase'))
         .sendKeys('abandon abandon ability');
     driver.sleep(generateDelay).then(function() {
@@ -4349,4 +4361,20 @@ it('Generates addresses when seed is set', function(done) {
     });
 });
 
+// https://github.com/iancoleman/bip39/issues/169
+it('Generates ethereum addresses from a public key', function(done) {
+    var pubkey = "xpub68UK3hrMEp2jLPxPASgXSiqiUsQsUWZHCeuu6NqcJLt259LMeWzwDyufXLN1QmjLeLRY5he4QfArDDLbsXiw3xN3kFcYtyDy74BY73RPhhW";
+    driver.findElement(By.css('.root-key'))
+      .sendKeys(pubkey);
+    driver.findElement(By.css('#bip32-tab a'))
+        .click()
+    selectNetwork('ETH - Ethereum');
+    driver.sleep(generateDelay).then(function() {
+        getFirstAddress(function(address) {
+            expect(address).toBe("0x1Bd54748903438C7E386b4a3fCbe16237A316a98");
+            done();
+        });
+    });
+});
+
 });