2022-10-14 15:34:27 +02:00
|
|
|
const { withFixtures } = require('../helpers');
|
2022-10-28 10:42:12 +02:00
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
2022-10-14 15:34:27 +02:00
|
|
|
const { TEST_SNAPS_WEBSITE_URL } = require('./enums');
|
|
|
|
|
2022-11-16 22:47:51 +01:00
|
|
|
describe('Test Snap Installed', function () {
|
|
|
|
it('can tell if a snap is installed', async function () {
|
2022-10-14 15:34:27 +02:00
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
balance: 25000000000000000000,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
await withFixtures(
|
|
|
|
{
|
2022-11-16 22:47:51 +01:00
|
|
|
fixtures: new FixtureBuilder().build(),
|
2022-10-14 15:34:27 +02:00
|
|
|
ganacheOptions,
|
2022-11-16 22:47:51 +01:00
|
|
|
failOnConsoleError: false,
|
2022-10-14 15:34:27 +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-11-16 22:47:51 +01:00
|
|
|
await driver.openNewPage(TEST_SNAPS_WEBSITE_URL);
|
|
|
|
await driver.delay(1000);
|
2023-07-21 23:32:51 +02:00
|
|
|
const confirmButton = await driver.findElement('#connectdialogs');
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.scrollToElement(confirmButton);
|
2023-04-06 16:57:11 +02:00
|
|
|
await driver.delay(500);
|
2023-07-21 23:32:51 +02:00
|
|
|
await driver.clickElement('#connectdialogs');
|
2023-04-06 16:57:11 +02:00
|
|
|
await driver.delay(500);
|
2022-10-14 15:34:27 +02:00
|
|
|
|
2022-11-16 22:47:51 +01:00
|
|
|
// switch to metamask extension and click connect
|
2022-11-21 14:38:05 +01:00
|
|
|
let windowHandles = await driver.waitUntilXWindowHandles(
|
|
|
|
3,
|
|
|
|
1000,
|
|
|
|
10000,
|
|
|
|
);
|
2022-10-14 15:34:27 +02:00
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
2023-03-08 14:17:56 +01:00
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Connect',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
2022-11-16 22:47:51 +01:00
|
|
|
|
2023-06-06 12:15:20 +02:00
|
|
|
await driver.waitForSelector({ text: 'Install' });
|
2022-11-16 22:47:51 +01:00
|
|
|
|
2022-10-14 15:34:27 +02:00
|
|
|
await driver.clickElement({
|
2023-06-06 12:15:20 +02:00
|
|
|
text: 'Install',
|
2022-10-14 15:34:27 +02:00
|
|
|
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',
|
|
|
|
});
|
|
|
|
|
2022-10-14 15:34:27 +02:00
|
|
|
// click send inputs on test snap page
|
|
|
|
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: '#connectdialogs',
|
|
|
|
text: 'Reconnect to Dialogs Snap',
|
2023-03-15 18:03:01 +01:00
|
|
|
});
|
|
|
|
|
2023-07-21 23:32:51 +02:00
|
|
|
const errorButton = await driver.findElement('#connecterrors');
|
2022-10-14 15:34:27 +02:00
|
|
|
await driver.scrollToElement(errorButton);
|
2023-04-06 16:57:11 +02:00
|
|
|
await driver.delay(500);
|
2023-07-21 23:32:51 +02:00
|
|
|
await driver.clickElement('#connecterrors');
|
2022-11-16 22:47:51 +01:00
|
|
|
|
|
|
|
// switch to metamask extension and click connect
|
2022-11-21 14:38:05 +01:00
|
|
|
windowHandles = await driver.waitUntilXWindowHandles(3, 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',
|
|
|
|
});
|
2022-11-16 22:47:51 +01:00
|
|
|
|
2023-06-06 12:15:20 +02:00
|
|
|
await driver.waitForSelector({ text: 'Install' });
|
2022-10-14 15:34:27 +02:00
|
|
|
|
|
|
|
await driver.clickElement({
|
2023-06-06 12:15:20 +02:00
|
|
|
text: 'Install',
|
2022-10-14 15:34:27 +02:00
|
|
|
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',
|
|
|
|
});
|
|
|
|
|
2022-10-14 15:34:27 +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-04-06 16:57:11 +02:00
|
|
|
css: '#installedSnapsResult',
|
2023-07-21 23:32:51 +02:00
|
|
|
text: 'npm:@metamask/dialog-example-snap, npm:@metamask/error-example-snap',
|
2023-03-15 18:03:01 +01:00
|
|
|
});
|
2022-10-14 15:34:27 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|