2022-04-27 20:21:40 +02:00
|
|
|
const { withFixtures } = require('../helpers');
|
2022-10-28 10:42:12 +02:00
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
2022-05-17 10:39:55 +02:00
|
|
|
const { TEST_SNAPS_WEBSITE_URL } = require('./enums');
|
2022-04-27 20:21:40 +02:00
|
|
|
|
|
|
|
describe('Test Snap bip-44', function () {
|
|
|
|
it('can pop up bip-44 snap and get private key result', async function () {
|
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
balance: 25000000000000000000,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
await withFixtures(
|
|
|
|
{
|
2022-11-16 22:47:51 +01:00
|
|
|
fixtures: new FixtureBuilder().build(),
|
2022-04-27 20:21:40 +02:00
|
|
|
ganacheOptions,
|
2022-11-16 22:47:51 +01:00
|
|
|
failOnConsoleError: false,
|
2022-04-27 20:21:40 +02:00
|
|
|
title: this.test.title,
|
|
|
|
},
|
|
|
|
async ({ driver }) => {
|
|
|
|
await driver.navigate();
|
|
|
|
|
|
|
|
// enter pw into extension
|
|
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
|
|
|
|
// navigate to test snaps page and connect
|
2022-05-17 10:39:55 +02:00
|
|
|
await driver.driver.get(TEST_SNAPS_WEBSITE_URL);
|
2023-01-10 20:11:15 +01:00
|
|
|
await driver.delay(1000);
|
2023-04-06 16:57:11 +02:00
|
|
|
|
|
|
|
// find and scroll to the bip44 test and connect
|
2023-07-21 23:32:51 +02:00
|
|
|
const snapButton1 = await driver.findElement('#connectbip44');
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.scrollToElement(snapButton1);
|
2022-07-07 00:22:21 +02:00
|
|
|
await driver.delay(1000);
|
2023-07-21 23:32:51 +02:00
|
|
|
await driver.clickElement('#connectbip44');
|
2023-01-10 20:11:15 +01:00
|
|
|
await driver.delay(1000);
|
2022-07-07 00:22:21 +02:00
|
|
|
|
2023-04-06 16:57:11 +02:00
|
|
|
// switch to metamask extension and click connect and approve
|
2022-11-21 14:38:05 +01:00
|
|
|
let windowHandles = await driver.waitUntilXWindowHandles(
|
|
|
|
2,
|
|
|
|
1000,
|
|
|
|
10000,
|
|
|
|
);
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
2023-03-08 14:17:56 +01:00
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Connect',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
2023-06-06 12:15:20 +02:00
|
|
|
await driver.waitForSelector({ text: 'Install' });
|
2023-07-21 23:32:51 +02:00
|
|
|
|
|
|
|
await driver.clickElementSafe('[data-testid="snap-install-scroll"]');
|
|
|
|
|
2022-04-27 20:21:40 +02:00
|
|
|
await driver.clickElement({
|
2023-06-06 12:15:20 +02:00
|
|
|
text: 'Install',
|
2022-04-27 20:21:40 +02:00
|
|
|
tag: 'button',
|
|
|
|
});
|
2022-10-14 14:33:36 +02:00
|
|
|
|
2022-04-27 20:21:40 +02:00
|
|
|
// deal with permissions popover
|
2023-04-06 16:57:11 +02:00
|
|
|
await driver.delay(500);
|
2022-10-14 14:33:36 +02:00
|
|
|
await driver.clickElement('#key-access-bip44-1-0');
|
2023-07-21 23:32:51 +02:00
|
|
|
await driver.clickElement('#key-access-bip44-3-1');
|
2022-04-27 20:21:40 +02:00
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Confirm',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
2023-06-06 12:15:20 +02:00
|
|
|
await driver.waitForSelector({ text: 'OK' });
|
2023-03-17 12:00:05 +01:00
|
|
|
await driver.clickElement({
|
2023-06-06 12:15:20 +02:00
|
|
|
text: 'OK',
|
2023-03-17 12:00:05 +01:00
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
2023-04-06 16:57:11 +02:00
|
|
|
// switch back to test-snaps window
|
2022-04-27 20:21:40 +02:00
|
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
2023-03-15 18:03:01 +01:00
|
|
|
|
|
|
|
// wait for npm installation success
|
|
|
|
await driver.waitForSelector({
|
2023-07-21 23:32:51 +02:00
|
|
|
css: '#connectbip44',
|
2023-03-15 18:03:01 +01:00
|
|
|
text: 'Reconnect to BIP-44 Snap',
|
|
|
|
});
|
|
|
|
|
2023-04-06 16:57:11 +02:00
|
|
|
// find and click bip44 test
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.clickElement('#sendBip44Test');
|
2022-04-27 20:21:40 +02:00
|
|
|
|
2023-04-06 16:57:11 +02:00
|
|
|
// check the results of the public key test using waitForSelector
|
|
|
|
await driver.waitForSelector({
|
|
|
|
css: '#bip44Result',
|
|
|
|
text: '"0x86debb44fb3a984d93f326131d4c1db0bc39644f1a67b673b3ab45941a1cea6a385981755185ac4594b6521e4d1e08d1"',
|
|
|
|
});
|
2022-11-16 22:47:51 +01:00
|
|
|
|
|
|
|
// enter a message to sign
|
2023-03-15 18:03:01 +01:00
|
|
|
await driver.pasteIntoField('#bip44Message', '1234');
|
2023-04-06 16:57:11 +02:00
|
|
|
await driver.delay(500);
|
2022-11-16 22:47:51 +01:00
|
|
|
const snapButton3 = await driver.findElement('#signBip44Message');
|
|
|
|
await driver.scrollToElement(snapButton3);
|
2023-04-06 16:57:11 +02:00
|
|
|
await driver.delay(500);
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.clickElement('#signBip44Message');
|
|
|
|
|
|
|
|
// Switch to approve signature message window and approve
|
2022-11-21 14:38:05 +01:00
|
|
|
windowHandles = await driver.waitUntilXWindowHandles(2, 1000, 10000);
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Approve',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
|
|
|
// switch back to test-snaps page
|
2022-11-21 14:38:05 +01:00
|
|
|
windowHandles = await driver.waitUntilXWindowHandles(1, 1000, 10000);
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
|
2023-04-06 16:57:11 +02:00
|
|
|
// check the results of the message signature using waitForSelector
|
|
|
|
await driver.waitForSelector({
|
|
|
|
css: '#bip44SignResult',
|
|
|
|
text: '"0xa41ab87ca50606eefd47525ad90294bbe44c883f6bc53655f1b8a55aa8e1e35df216f31be62e52c7a1faa519420e20810162e07dedb0fde2a4d997ff7180a78232ecd8ce2d6f4ba42ccacad33c5e9e54a8c4d41506bdffb2bb4c368581d8b086"',
|
|
|
|
});
|
2022-04-27 20:21:40 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|