X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=tests%2Fspec%2Ftests.js;h=10575efb9f97da948facae8246c9d55ffe7df71d;hb=90422a41afbd0de30dfa98f1091d6ca2af426cec;hp=f0b50e7cfde4752280ed5795824a0ea3f12dea79;hpb=38626a2d1fd10cac1dd3da971ef5057a2a1dc06b;p=perso%2FImmae%2FProjets%2FCryptomonnaies%2FBIP39.git diff --git a/tests/spec/tests.js b/tests/spec/tests.js index f0b50e7..10575ef 100644 --- a/tests/spec/tests.js +++ b/tests/spec/tests.js @@ -168,6 +168,17 @@ function selectNetwork(name) { }, name); } +function selectBip85Language(language) { + driver.executeScript(function() { + var selectText = arguments[0]; + $(".bip85-mnemonic-language option[selected]").removeAttr("selected"); + $(".bip85-mnemonic-language option").filter(function(i,e) { + return $(e).html() == selectText; + }).prop("selected", true); + $(".bip85-mnemonic-language").trigger("change"); + }, language); +} + function testEntropyType(done, entropyText, entropyTypeUnsafe) { // entropy type is compiled into regexp so needs escaping // see https://stackoverflow.com/a/2593661 @@ -640,7 +651,7 @@ it('Allows selection of namecoin', function(done) { phrase: "abandon abandon ability", firstAddress: "Mw2vK2Bvex1yYtYF6sfbEg2YGoUc98YUD2", firstPubKey: "0398066486fe87cbcb9da8e29d180b44937b6c43ad1ec4d3bddd77b7905765937e", - firstPrivKey: "L4A8sSkrGndiXyZdj6Fnju8Wu76s96cdHHmPxV3C5M2R2w4GVNco", + firstPrivKey: "TkJvbqVdNnGsCtFaV2nE8x3qqhYnYriRkGAB4747cEDRg9VUKKiz", }; testNetwork(done, params); }); @@ -906,6 +917,16 @@ it('Allows selection of Aryacoin', function(done) { }; testNetwork(done, params); }); +it('Allows selection of Cosmos Hub', function(done) { + var params = { + selectText: "ATOM - Cosmos Hub", + phrase: "abandon abandon ability", + firstAddress: "cosmos17mkch9syem8gtf6wh7p38thdgav6dwezpkylny", + firstPubKey: "cosmospub1addwnpepq0sgn66ty4suk5vx3hsmxxqd5z3amegqwlu59funrzyz5u8r9758qhl84ys", + firstPrivKey: "zUnETPxmE2vkHzLHTAlO9wg8PL/GEEBc1I4yVwvSV8M=", + }; + testNetwork(done, params); +}); it('Allows selection of Auroracoin', function(done) { var params = { selectText: "AUR - Auroracoin", @@ -1624,6 +1645,16 @@ it('Allows selection of RevolutionVR', function(done) { }; testNetwork(done, params); }); +it('Allows selection of Ritocoin', function(done) { + var params = { + selectText: "RITO - Ritocoin", + phrase: "abandon abandon ability", + firstAddress: "BMbHdwDiuaZh4ATp8Xapf4srv3swzAGgkf", + firstPubKey: "036f5f55dc37fa97294a2a5ae4d92735d4392d4405cbbebebf2d70d5d6781be622", + firstPrivKey: "Mdaumz3494kxCeiEBame4ZBzjtTQ5mYzD8notv2EBW8FcNy3PiYd", + }; + testNetwork(done, params); +}); it('Allows selection of Rubycoin', function(done) { var params = { selectText: "RBY - Rubycoin", @@ -2317,6 +2348,17 @@ it('Allows selection of TRX on Tron', function(done) { testNetwork(done, params); }); +it('Allows selection of ZooBlockchain', function(done) { + var params = { + selectText: "ZBC - ZooBlockchain", + phrase: "shy invest oxygen real lunar moral merge corn program air affair amazing dove imitate combine solve library fresh case alcohol pole question act thing", + firstAddress: "ZBC_MGEZVH3U_SXPCBHTU_KSWDPQ4X_K6MSI3VR_CQAYMTLC_RXUMM3DJ_LFABCAXA", + firstPubKey: "61899a9f7495de209e7454ac37c3975799246eb11401864d628de8c66c695940", + firstPrivKey: "adb11e79068fa7366ec4f5963ad57115d666b1ad2b369b92d962563adf7dd48b", + }; + testNetwork(done, params); +}); + // BIP39 seed is set from phrase it('Sets the bip39 seed from the prhase', function(done) { driver.findElement(By.css('.phrase')) @@ -4988,6 +5030,25 @@ it('Show BIP85', function(done) { }); }); +it('Show BIP85 in non-English languages', function(done) { + pending("BIP85 library update"); + var originalPhrase = "install scatter logic circle pencil average fall shoe quantum disease suspect usage"; + driver.findElement(By.css('.phrase')) + .sendKeys(originalPhrase); + driver.sleep(generateDelay).then(function() { + driver.findElement(By.css('.showBip85')).click(); + selectBip85Language("3"); + driver.findElement(By.css('.showBip85')).isSelected().then(function(isSelected) { + expect(isSelected).toBe(true) + driver.findElement(By.css('#bip85Field')).getAttribute("value").then(function(childMnemonic) { + expect(childMnemonic).not.toBe('girl mad pet galaxy egg matter matrix prison refuse sense ordinary nose') + //expect(childMnemonic).toBe('Not sure yet, something Spanish') + done(); + }) + }); + }); +}); + // It allows manually specifying the entropy type it('Allows entropy type to be manually selected', function(done) { driver.findElement(By.css('.use-entropy'))