2022-03-10 23:01:55 +01:00
|
|
|
const { strict: assert } = require('assert');
|
|
|
|
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-03-10 23:01:55 +01:00
|
|
|
|
|
|
|
describe('Test Snap Error', function () {
|
|
|
|
it('can pop up a snap error and see the error', async function () {
|
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
balance: 25000000000000000000,
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
await withFixtures(
|
|
|
|
{
|
2022-11-16 22:47:51 +01:00
|
|
|
fixtures: new FixtureBuilder().build(),
|
2022-03-10 23:01:55 +01:00
|
|
|
ganacheOptions,
|
2022-11-16 22:47:51 +01:00
|
|
|
failOnConsoleError: false,
|
2022-03-10 23:01:55 +01: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);
|
2023-01-10 20:11:15 +01:00
|
|
|
await driver.delay(1000);
|
2022-11-16 22:47:51 +01:00
|
|
|
const snapButton = await driver.findElement('#connectErrorSnap');
|
2022-10-14 14:33:36 +02:00
|
|
|
await driver.scrollToElement(snapButton);
|
2022-11-16 22:47:51 +01:00
|
|
|
await driver.delay(1000);
|
|
|
|
await driver.clickElement('#connectErrorSnap');
|
2023-01-10 20:11:15 +01:00
|
|
|
await driver.delay(1000);
|
2022-11-16 22:47:51 +01:00
|
|
|
|
|
|
|
// switch to metamask extension and click connect
|
2023-03-17 12:00:05 +01:00
|
|
|
const windowHandles = await driver.waitUntilXWindowHandles(
|
2022-11-21 14:38:05 +01:00
|
|
|
3,
|
|
|
|
1000,
|
|
|
|
10000,
|
|
|
|
);
|
2022-11-16 22:47:51 +01:00
|
|
|
const extensionPage = windowHandles[0];
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
2023-03-08 14:17:56 +01:00
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Connect',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
2022-10-14 14:33:36 +02:00
|
|
|
|
2023-03-17 12:00:05 +01:00
|
|
|
await driver.waitForSelector({ text: 'Approve & install' });
|
2022-03-10 23:01:55 +01:00
|
|
|
|
|
|
|
await driver.clickElement({
|
2022-08-03 18:02:44 +02:00
|
|
|
text: 'Approve & install',
|
2022-03-10 23:01:55 +01:00
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
2023-03-17 12:00:05 +01:00
|
|
|
await driver.waitForSelector({ text: 'Ok' });
|
|
|
|
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Ok',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
2022-03-10 23:01:55 +01: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({
|
|
|
|
css: '#connectErrorSnap',
|
|
|
|
text: 'Reconnect to Error Snap',
|
|
|
|
});
|
2022-11-16 22:47:51 +01:00
|
|
|
|
|
|
|
// find and click on send error
|
2022-07-07 00:22:21 +02:00
|
|
|
await driver.clickElement('#sendError');
|
2022-03-10 23:01:55 +01:00
|
|
|
|
2022-11-16 22:47:51 +01:00
|
|
|
// switch back to the extension page
|
|
|
|
await driver.switchToWindow(extensionPage);
|
|
|
|
await driver.delay(1000);
|
2022-03-10 23:01:55 +01:00
|
|
|
|
2022-11-16 22:47:51 +01:00
|
|
|
// look for the actual error and check if it is correct
|
2022-03-10 23:01:55 +01:00
|
|
|
const error = await driver.findElement(
|
|
|
|
'.home-notification__content-container',
|
|
|
|
);
|
|
|
|
const text = await error.getText();
|
|
|
|
assert.equal(
|
|
|
|
text.includes(
|
|
|
|
"Snap Error: 'random error inside'. Error Code: '-32603'",
|
|
|
|
),
|
|
|
|
true,
|
|
|
|
);
|
2022-11-16 22:47:51 +01:00
|
|
|
|
|
|
|
// try to click on the dismiss button and pass test if it works
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Dismiss',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
2022-03-10 23:01:55 +01:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|