2022-12-08 21:15:59 +01:00
|
|
|
const { strict: assert } = require('assert');
|
|
|
|
const { withFixtures } = require('../helpers');
|
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
|
|
const { TEST_SNAPS_WEBSITE_URL } = require('./enums');
|
|
|
|
|
|
|
|
describe('Test Snap TxInsights', function () {
|
|
|
|
it('tests tx insights functionality', async function () {
|
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
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);
|
|
|
|
|
|
|
|
// find and scroll to the bip32 test and connect
|
2023-07-21 23:32:51 +02:00
|
|
|
const snapButton1 = await driver.findElement(
|
|
|
|
'#connecttransaction-insights',
|
|
|
|
);
|
2022-12-08 21:15:59 +01:00
|
|
|
await driver.scrollToElement(snapButton1);
|
|
|
|
await driver.delay(1000);
|
2023-07-21 23:32:51 +02:00
|
|
|
await driver.clickElement('#connecttransaction-insights');
|
2023-01-10 20:11:15 +01:00
|
|
|
await driver.delay(1000);
|
2022-12-08 21:15:59 +01:00
|
|
|
|
|
|
|
// switch to metamask extension and click connect
|
|
|
|
let windowHandles = await driver.waitUntilXWindowHandles(
|
|
|
|
2,
|
|
|
|
1000,
|
|
|
|
10000,
|
|
|
|
);
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
2023-03-08 14:17:56 +01:00
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Connect',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
2022-12-08 21:15:59 +01:00
|
|
|
|
2023-06-06 12:15:20 +02:00
|
|
|
await driver.waitForSelector({ text: 'Install' });
|
2022-12-08 21:15:59 +01:00
|
|
|
|
|
|
|
await driver.clickElement({
|
2023-06-06 12:15:20 +02:00
|
|
|
text: 'Install',
|
2022-12-08 21:15:59 +01: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-12-08 21:15:59 +01:00
|
|
|
|
|
|
|
// switch to test-snaps page and get accounts
|
|
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
await driver.clickElement('#getAccounts');
|
|
|
|
await driver.delay(1000);
|
|
|
|
|
|
|
|
// switch back to MetaMask window and deal with dialogs
|
|
|
|
windowHandles = await driver.waitUntilXWindowHandles(2, 1000, 10000);
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Next',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
await driver.delay(1000);
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'Connect',
|
|
|
|
tag: 'button',
|
|
|
|
});
|
|
|
|
|
|
|
|
// switch to test-snaps page and send tx
|
|
|
|
windowHandles = await driver.waitUntilXWindowHandles(1, 1000, 10000);
|
|
|
|
await driver.switchToWindowWithTitle('Test Snaps', windowHandles);
|
|
|
|
await driver.clickElement('#sendInsights');
|
|
|
|
await driver.delay(1000);
|
|
|
|
|
|
|
|
// switch back to MetaMask window and switch to tx insights pane
|
|
|
|
windowHandles = await driver.waitUntilXWindowHandles(2, 1000, 10000);
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
|
|
|
|
|
|
|
// check that txinsightstest tab contains the right info
|
|
|
|
await driver.delay(1000);
|
|
|
|
const txInsightsResult = await driver.findElement(
|
2022-12-20 11:44:49 +01:00
|
|
|
'.snap-ui-renderer__content',
|
2022-12-08 21:15:59 +01:00
|
|
|
);
|
2023-07-21 23:32:51 +02:00
|
|
|
assert.equal(
|
|
|
|
await txInsightsResult.getText(),
|
|
|
|
'Transaction type:\nERC-20',
|
|
|
|
);
|
2022-12-08 21:15:59 +01:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|