2023-05-18 17:34:24 +02:00
|
|
|
const { withFixtures } = require('../helpers');
|
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
|
|
const { TEST_SNAPS_WEBSITE_URL } = require('./enums');
|
|
|
|
|
|
|
|
describe('Test Snap ethereum_provider', function () {
|
|
|
|
it('can use the ethereum_provider endowment', async function () {
|
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
balance: 25000000000000000000,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
await withFixtures(
|
|
|
|
{
|
|
|
|
fixtures: new FixtureBuilder().build(),
|
|
|
|
ganacheOptions,
|
|
|
|
failOnConsoleError: false,
|
|
|
|
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
|
|
|
|
await driver.driver.get(TEST_SNAPS_WEBSITE_URL);
|
|
|
|
await driver.delay(1000);
|
2023-07-21 23:32:51 +02:00
|
|
|
const snapButton = await driver.findElement(
|
|
|
|
'#connectethereum-provider',
|
|
|
|
);
|
2023-05-18 17:34:24 +02:00
|
|
|
await driver.scrollToElement(snapButton);
|
|
|
|
await driver.delay(1000);
|
2023-07-21 23:32:51 +02:00
|
|
|
await driver.clickElement('#connectethereum-provider');
|
2023-05-18 17:34:24 +02:00
|
|
|
await driver.delay(1000);
|
|
|
|
|
|
|
|
// switch to metamask extension and click connect
|
|
|
|
const windowHandles = await driver.waitUntilXWindowHandles(
|
|
|
|
2,
|
|
|
|
1000,
|
|
|
|
10000,
|
|
|
|
);
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Connect',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
2023-06-06 12:15:20 +02:00
|
|
|
await driver.waitForSelector({ text: 'Install' });
|
2023-05-18 17:34:24 +02:00
|
|
|
|
|
|
|
await driver.clickElement({
|
2023-06-06 12:15:20 +02:00
|
|
|
text: 'Install',
|
2023-05-18 17:34:24 +02:00
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
2023-06-06 12:15:20 +02:00
|
|
|
await driver.waitForSelector({ text: 'OK' });
|
2023-05-18 17:34:24 +02:00
|
|
|
|
|
|
|
await driver.clickElement({
|
2023-06-06 12:15:20 +02:00
|
|
|
text: 'OK',
|
2023-05-18 17:34:24 +02:00
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
2023-07-21 23:32:51 +02:00
|
|
|
// switch to test snap page
|
2023-05-18 17:34:24 +02:00
|
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
|
|
|
|
// wait for npm installation success
|
|
|
|
await driver.waitForSelector({
|
2023-07-21 23:32:51 +02:00
|
|
|
css: '#connectethereum-provider',
|
|
|
|
text: 'Reconnect to Ethereum Provider Snap',
|
2023-05-18 17:34:24 +02:00
|
|
|
});
|
|
|
|
|
2023-07-21 23:32:51 +02:00
|
|
|
// find and click on send get version
|
2023-05-18 17:34:24 +02:00
|
|
|
const snapButton2 = await driver.findElement('#sendEthprovider');
|
|
|
|
await driver.scrollToElement(snapButton2);
|
|
|
|
await driver.delay(500);
|
|
|
|
await driver.clickElement('#sendEthprovider');
|
|
|
|
|
|
|
|
// check the results of the message signature using waitForSelector
|
|
|
|
await driver.waitForSelector({
|
|
|
|
css: '#ethproviderResult',
|
2023-07-21 23:32:51 +02:00
|
|
|
text: '"1337"',
|
|
|
|
});
|
|
|
|
|
|
|
|
// find and click on send get version
|
|
|
|
const snapButton3 = await driver.findElement(
|
|
|
|
'#sendEthproviderAccounts',
|
|
|
|
);
|
|
|
|
await driver.scrollToElement(snapButton3);
|
|
|
|
await driver.delay(500);
|
|
|
|
await driver.clickElement('#sendEthproviderAccounts');
|
|
|
|
|
|
|
|
// switch to metamask window and click through confirmations
|
|
|
|
const windowHandles2 = await driver.waitUntilXWindowHandles(
|
|
|
|
2,
|
|
|
|
1000,
|
|
|
|
10000,
|
|
|
|
);
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles2,
|
|
|
|
);
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Next',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
await driver.delay(500);
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Connect',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
|
|
|
// switch to test snap page
|
|
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
|
|
|
|
// check the results of the message signature using waitForSelector
|
|
|
|
await driver.waitForSelector({
|
|
|
|
css: '#ethproviderResult',
|
|
|
|
text: '"0x5cfe73b6021e818b776b421b1c4db2474086a7e1"',
|
2023-05-18 17:34:24 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|