2023-05-30 14:44:56 +02:00
|
|
|
const {
|
|
|
|
convertToHexValue,
|
|
|
|
withFixtures,
|
|
|
|
openDapp,
|
|
|
|
locateAccountBalanceDOM,
|
2023-07-11 21:17:27 +02:00
|
|
|
unlockWallet,
|
|
|
|
largeDelayMs,
|
|
|
|
WINDOW_TITLES,
|
2023-05-30 14:44:56 +02:00
|
|
|
} = require('../helpers');
|
2022-08-16 17:25:51 +02:00
|
|
|
const { SMART_CONTRACTS } = require('../seeder/smart-contracts');
|
2022-10-28 10:42:12 +02:00
|
|
|
const FixtureBuilder = require('../fixture-builder');
|
2021-07-05 13:56:37 +02:00
|
|
|
|
|
|
|
describe('Deploy contract and call contract methods', function () {
|
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
2022-01-19 00:08:41 +01:00
|
|
|
balance: convertToHexValue(25000000000000000000),
|
2021-07-05 13:56:37 +02:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
2022-08-16 17:25:51 +02:00
|
|
|
const smartContract = SMART_CONTRACTS.PIGGYBANK;
|
2021-07-05 13:56:37 +02:00
|
|
|
it('should display the correct account balance after contract interactions', async function () {
|
|
|
|
await withFixtures(
|
|
|
|
{
|
|
|
|
dapp: true,
|
2022-10-28 10:42:12 +02:00
|
|
|
fixtures: new FixtureBuilder()
|
|
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
|
|
.build(),
|
2021-07-05 13:56:37 +02:00
|
|
|
ganacheOptions,
|
2022-08-16 17:25:51 +02:00
|
|
|
smartContract,
|
2021-07-05 13:56:37 +02:00
|
|
|
title: this.test.title,
|
|
|
|
},
|
2023-03-20 10:29:18 +01:00
|
|
|
async ({ driver, contractRegistry, ganacheServer }) => {
|
2022-08-16 17:25:51 +02:00
|
|
|
const contractAddress = await contractRegistry.getContractAddress(
|
|
|
|
smartContract,
|
|
|
|
);
|
2021-07-05 13:56:37 +02:00
|
|
|
await driver.navigate();
|
2023-07-11 21:17:27 +02:00
|
|
|
await unlockWallet(driver);
|
2021-07-05 13:56:37 +02:00
|
|
|
|
2022-04-20 10:37:34 +02:00
|
|
|
// deploy contract
|
2023-05-05 15:56:08 +02:00
|
|
|
await openDapp(driver, contractAddress);
|
2022-08-16 17:25:51 +02:00
|
|
|
|
|
|
|
// wait for deployed contract, calls and confirms a contract method where ETH is sent
|
2023-07-11 21:17:27 +02:00
|
|
|
await driver.delay(largeDelayMs);
|
2022-08-16 17:25:51 +02:00
|
|
|
await driver.clickElement('#depositButton');
|
2021-07-05 13:56:37 +02:00
|
|
|
|
2023-07-11 21:17:27 +02:00
|
|
|
await driver.waitForSelector({
|
|
|
|
css: 'span',
|
|
|
|
text: 'Deposit initiated',
|
|
|
|
});
|
|
|
|
|
|
|
|
await driver.waitUntilXWindowHandles(3);
|
|
|
|
await driver.switchToWindowWithTitle(WINDOW_TITLES.Notification);
|
2022-04-20 10:37:34 +02:00
|
|
|
await driver.waitForSelector({
|
|
|
|
css: '.confirm-page-container-summary__action__name',
|
|
|
|
text: 'Deposit',
|
|
|
|
});
|
2023-07-11 21:17:27 +02:00
|
|
|
|
2021-07-05 13:56:37 +02:00
|
|
|
await driver.clickElement({ text: 'Confirm', tag: 'button' });
|
2021-09-17 20:27:09 +02:00
|
|
|
await driver.waitUntilXWindowHandles(2);
|
2023-07-11 21:17:27 +02:00
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
WINDOW_TITLES.ExtensionInFullScreenView,
|
|
|
|
);
|
2022-08-16 17:25:51 +02:00
|
|
|
await driver.clickElement({ text: 'Activity', tag: 'button' });
|
2021-07-05 13:56:37 +02:00
|
|
|
await driver.waitForSelector(
|
2023-07-17 19:48:15 +02:00
|
|
|
'.transaction-list__completed-transactions .activity-list-item:nth-of-type(1)',
|
2021-07-05 13:56:37 +02:00
|
|
|
);
|
2023-03-28 14:59:41 +02:00
|
|
|
await driver.waitForSelector({
|
2023-07-17 19:48:15 +02:00
|
|
|
css: '[data-testid="transaction-list-item-primary-currency"]',
|
2023-03-28 14:59:41 +02:00
|
|
|
text: '-4 ETH',
|
|
|
|
});
|
2021-07-05 13:56:37 +02:00
|
|
|
|
|
|
|
// calls and confirms a contract method where ETH is received
|
2023-07-11 21:17:27 +02:00
|
|
|
await driver.switchToWindowWithTitle(WINDOW_TITLES.TestDApp);
|
2021-07-05 13:56:37 +02:00
|
|
|
await driver.clickElement('#withdrawButton');
|
|
|
|
await driver.waitUntilXWindowHandles(3);
|
2023-07-11 21:17:27 +02:00
|
|
|
|
|
|
|
await driver.switchToWindowWithTitle(WINDOW_TITLES.Notification);
|
2021-07-05 13:56:37 +02:00
|
|
|
await driver.clickElement({ text: 'Confirm', tag: 'button' });
|
2021-09-17 20:27:09 +02:00
|
|
|
await driver.waitUntilXWindowHandles(2);
|
2023-07-11 21:17:27 +02:00
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
WINDOW_TITLES.ExtensionInFullScreenView,
|
|
|
|
);
|
2021-07-05 13:56:37 +02:00
|
|
|
await driver.waitForSelector(
|
2023-07-17 19:48:15 +02:00
|
|
|
'.transaction-list__completed-transactions .activity-list-item:nth-of-type(2)',
|
2021-07-05 13:56:37 +02:00
|
|
|
);
|
2023-03-28 14:59:41 +02:00
|
|
|
await driver.waitForSelector({
|
2023-07-17 19:48:15 +02:00
|
|
|
css: '[data-testid="transaction-list-item-primary-currency"]',
|
2023-03-28 14:59:41 +02:00
|
|
|
text: '-0 ETH',
|
|
|
|
});
|
2021-07-05 13:56:37 +02:00
|
|
|
|
|
|
|
// renders the correct ETH balance
|
2023-07-11 21:17:27 +02:00
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
WINDOW_TITLES.ExtensionInFullScreenView,
|
|
|
|
);
|
2023-05-30 14:44:56 +02:00
|
|
|
await locateAccountBalanceDOM(driver, ganacheServer);
|
2021-07-05 13:56:37 +02:00
|
|
|
},
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|