2022-03-29 16:55:55 +02:00
|
|
|
const { strict: assert } = require('assert');
|
2023-05-05 15:56:08 +02:00
|
|
|
const { convertToHexValue, withFixtures, openDapp } = require('../helpers');
|
2022-08-17 17:02:06 +02:00
|
|
|
const { SMART_CONTRACTS } = require('../seeder/smart-contracts');
|
2022-10-28 10:42:12 +02:00
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
2022-03-29 16:55:55 +02:00
|
|
|
|
|
|
|
describe('Failing contract interaction ', function () {
|
2022-08-17 17:02:06 +02:00
|
|
|
const smartContract = SMART_CONTRACTS.FAILING;
|
2022-03-29 16:55:55 +02:00
|
|
|
const ganacheOptions = {
|
|
|
|
hardfork: 'london',
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
balance: convertToHexValue(25000000000000000000),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
it('should display a warning when the contract interaction is expected to fail', async function () {
|
|
|
|
await withFixtures(
|
|
|
|
{
|
|
|
|
dapp: true,
|
2022-10-28 10:42:12 +02:00
|
|
|
fixtures: new FixtureBuilder()
|
|
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
|
|
.build(),
|
2022-03-29 16:55:55 +02:00
|
|
|
ganacheOptions,
|
2022-08-17 17:02:06 +02:00
|
|
|
smartContract,
|
2022-03-29 16:55:55 +02:00
|
|
|
title: this.test.title,
|
|
|
|
},
|
2022-08-17 17:02:06 +02:00
|
|
|
async ({ driver, contractRegistry }) => {
|
|
|
|
const contractAddress = await contractRegistry.getContractAddress(
|
|
|
|
smartContract,
|
|
|
|
);
|
2022-03-29 16:55:55 +02:00
|
|
|
await driver.navigate();
|
|
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
|
2023-05-05 15:56:08 +02:00
|
|
|
await openDapp(driver, contractAddress);
|
2022-03-29 16:55:55 +02:00
|
|
|
let windowHandles = await driver.getAllWindowHandles();
|
|
|
|
const extension = windowHandles[0];
|
|
|
|
|
2022-08-17 17:02:06 +02:00
|
|
|
// waits for deployed contract and calls failing contract method
|
|
|
|
await driver.findClickableElement('#deployButton');
|
2022-03-29 16:55:55 +02:00
|
|
|
await driver.clickElement('#sendFailingButton');
|
|
|
|
await driver.waitUntilXWindowHandles(3);
|
|
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
|
|
|
|
2023-02-10 16:15:54 +01:00
|
|
|
// display warning when transaction is expected to fail
|
|
|
|
const warningText =
|
|
|
|
'We were not able to estimate gas. There might be an error in the contract and this transaction may fail.';
|
2023-03-13 20:29:10 +01:00
|
|
|
const warning = await driver.findElement('.mm-banner-alert .mm-text');
|
2023-02-10 16:15:54 +01:00
|
|
|
const confirmButton = await driver.findElement(
|
|
|
|
'[data-testid="page-container-footer-next"]',
|
|
|
|
);
|
|
|
|
assert.equal(await warning.getText(), warningText);
|
|
|
|
assert.equal(await confirmButton.isEnabled(), false);
|
|
|
|
|
|
|
|
// dismiss warning and confirm the transaction
|
|
|
|
await driver.clickElement({
|
|
|
|
text: 'I want to proceed anyway',
|
2023-03-22 03:19:49 +01:00
|
|
|
tag: 'button',
|
2023-02-10 16:15:54 +01:00
|
|
|
});
|
|
|
|
await driver.clickElement({ text: 'Confirm', tag: 'button' });
|
|
|
|
await driver.waitUntilXWindowHandles(2);
|
|
|
|
await driver.switchToWindow(extension);
|
|
|
|
await driver.clickElement({ text: 'Activity', tag: 'button' });
|
|
|
|
await driver.waitForSelector(
|
2023-07-17 19:48:15 +02:00
|
|
|
'.transaction-list__completed-transactions .activity-list-item:nth-of-type(1)',
|
2023-02-10 16:15:54 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
// display the transaction status
|
|
|
|
const transactionStatus = await driver.findElement(
|
2023-07-17 19:48:15 +02:00
|
|
|
'.activity-list-item:nth-of-type(1) .transaction-status-label',
|
2023-02-10 16:15:54 +01:00
|
|
|
);
|
|
|
|
assert.equal(await transactionStatus.getText(), 'Failed');
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('Failing contract interaction on non-EIP1559 network', function () {
|
|
|
|
const smartContract = SMART_CONTRACTS.FAILING;
|
|
|
|
const ganacheOptions = {
|
|
|
|
hardfork: 'berlin',
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
|
|
balance: convertToHexValue(25000000000000000000),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
it('should display a warning when the contract interaction is expected to fail', async function () {
|
|
|
|
await withFixtures(
|
|
|
|
{
|
|
|
|
dapp: true,
|
|
|
|
fixtures: new FixtureBuilder()
|
|
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
|
|
.build(),
|
|
|
|
ganacheOptions,
|
|
|
|
smartContract,
|
|
|
|
title: this.test.title,
|
|
|
|
},
|
|
|
|
async ({ driver, contractRegistry }) => {
|
|
|
|
const contractAddress = await contractRegistry.getContractAddress(
|
|
|
|
smartContract,
|
|
|
|
);
|
|
|
|
await driver.navigate();
|
|
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
|
2023-05-05 15:56:08 +02:00
|
|
|
await openDapp(driver, contractAddress);
|
2023-02-10 16:15:54 +01:00
|
|
|
let windowHandles = await driver.getAllWindowHandles();
|
|
|
|
const extension = windowHandles[0];
|
|
|
|
// waits for deployed contract and calls failing contract method
|
|
|
|
await driver.findClickableElement('#deployButton');
|
|
|
|
|
|
|
|
await driver.fill('#toInput', contractAddress);
|
|
|
|
await driver.fill('#amountInput', '0');
|
|
|
|
await driver.fill('#gasInput', '100');
|
|
|
|
|
|
|
|
await driver.clickElement('#submitForm');
|
|
|
|
|
|
|
|
await driver.waitUntilXWindowHandles(3);
|
|
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
|
|
|
);
|
|
|
|
|
2022-03-29 16:55:55 +02:00
|
|
|
// display warning when transaction is expected to fail
|
|
|
|
const warningText =
|
2022-04-13 17:00:10 +02:00
|
|
|
'We were not able to estimate gas. There might be an error in the contract and this transaction may fail.';
|
2023-03-13 20:29:10 +01:00
|
|
|
const warning = await driver.findElement('.mm-banner-alert .mm-text');
|
2022-03-29 16:55:55 +02:00
|
|
|
const confirmButton = await driver.findElement(
|
|
|
|
'[data-testid="page-container-footer-next"]',
|
|
|
|
);
|
|
|
|
assert.equal(await warning.getText(), warningText);
|
|
|
|
assert.equal(await confirmButton.isEnabled(), false);
|
|
|
|
|
|
|
|
// dismiss warning and confirm the transaction
|
2022-04-13 17:00:10 +02:00
|
|
|
await driver.clickElement({
|
|
|
|
text: 'I want to proceed anyway',
|
2023-03-22 03:19:49 +01:00
|
|
|
tag: 'button',
|
2022-04-13 17:00:10 +02:00
|
|
|
});
|
2022-03-29 16:55:55 +02:00
|
|
|
await driver.clickElement({ text: 'Confirm', tag: 'button' });
|
|
|
|
await driver.waitUntilXWindowHandles(2);
|
|
|
|
await driver.switchToWindow(extension);
|
2022-08-17 17:02:06 +02:00
|
|
|
await driver.clickElement({ text: 'Activity', tag: 'button' });
|
2022-03-29 16:55:55 +02:00
|
|
|
await driver.waitForSelector(
|
2023-07-17 19:48:15 +02:00
|
|
|
'.transaction-list__completed-transactions .activity-list-item:nth-of-type(1)',
|
2022-03-29 16:55:55 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
// display the transaction status
|
|
|
|
const transactionStatus = await driver.findElement(
|
2023-07-17 19:48:15 +02:00
|
|
|
'.activity-list-item:nth-of-type(1) .transaction-status-label',
|
2022-03-29 16:55:55 +02:00
|
|
|
);
|
|
|
|
assert.equal(await transactionStatus.getText(), 'Failed');
|
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|