mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
e2e test erc20 fixtures (#18154)
* add fixture * update test * update test * wait for ETH balance
This commit is contained in:
parent
3c622cd395
commit
e1ce248364
@ -701,6 +701,43 @@ class FixtureBuilder {
|
|||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
withTokensControllerERC20() {
|
||||||
|
merge(this.fixture.data.TokensController, {
|
||||||
|
tokens: [
|
||||||
|
{
|
||||||
|
address: `__FIXTURE_SUBSTITUTION__CONTRACT${SMART_CONTRACTS.HST}`,
|
||||||
|
symbol: 'TST',
|
||||||
|
decimals: 4,
|
||||||
|
image:
|
||||||
|
'https://static.metafi.codefi.network/api/v1/tokenIcons/1337/0x581c3c1a2a4ebde2a0df29b5cf4c116e42945947.png',
|
||||||
|
isERC721: false,
|
||||||
|
aggregators: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
ignoredTokens: [],
|
||||||
|
detectedTokens: [],
|
||||||
|
allTokens: {
|
||||||
|
'0x539': {
|
||||||
|
'0x5cfe73b6021e818b776b421b1c4db2474086a7e1': [
|
||||||
|
{
|
||||||
|
address: `__FIXTURE_SUBSTITUTION__CONTRACT${SMART_CONTRACTS.HST}`,
|
||||||
|
symbol: 'TST',
|
||||||
|
decimals: 4,
|
||||||
|
image:
|
||||||
|
'https://static.metafi.codefi.network/api/v1/tokenIcons/1337/0x581c3c1a2a4ebde2a0df29b5cf4c116e42945947.png',
|
||||||
|
isERC721: false,
|
||||||
|
aggregators: [],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
allIgnoredTokens: {},
|
||||||
|
allDetectedTokens: {},
|
||||||
|
suggestedAssets: [],
|
||||||
|
});
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
withTransactionController(data) {
|
withTransactionController(data) {
|
||||||
merge(
|
merge(
|
||||||
this.fixture.data.TransactionController
|
this.fixture.data.TransactionController
|
||||||
|
@ -123,43 +123,20 @@ describe('Send ERC20 to a 40 character hexadecimal address', function () {
|
|||||||
await withFixtures(
|
await withFixtures(
|
||||||
{
|
{
|
||||||
dapp: true,
|
dapp: true,
|
||||||
fixtures: new FixtureBuilder()
|
fixtures: new FixtureBuilder().withTokensControllerERC20().build(),
|
||||||
.withPermissionControllerConnectedToTestDapp()
|
|
||||||
.build(),
|
|
||||||
ganacheOptions,
|
ganacheOptions,
|
||||||
smartContract,
|
smartContract,
|
||||||
title: this.test.title,
|
title: this.test.title,
|
||||||
failOnConsoleError: false,
|
failOnConsoleError: false,
|
||||||
},
|
},
|
||||||
async ({ driver, contractRegistry }) => {
|
async ({ driver }) => {
|
||||||
const contractAddress = await contractRegistry.getContractAddress(
|
|
||||||
smartContract,
|
|
||||||
);
|
|
||||||
await driver.navigate();
|
await driver.navigate();
|
||||||
await driver.fill('#password', 'correct horse battery staple');
|
await driver.fill('#password', 'correct horse battery staple');
|
||||||
await driver.press('#password', driver.Key.ENTER);
|
await driver.press('#password', driver.Key.ENTER);
|
||||||
|
await driver.waitForSelector({
|
||||||
await driver.openNewPage(
|
css: '[data-testid="eth-overview__primary-currency"]',
|
||||||
`http://127.0.0.1:8080/?contract=${contractAddress}`,
|
text: '24.9977 ETH',
|
||||||
);
|
});
|
||||||
let windowHandles = await driver.getAllWindowHandles();
|
|
||||||
const extension = windowHandles[0];
|
|
||||||
|
|
||||||
// Using the line below to make wait time deterministic and avoid using a delay
|
|
||||||
// See more here https://github.com/MetaMask/metamask-extension/pull/15604/files#r949300551
|
|
||||||
await driver.findClickableElement('#deployButton');
|
|
||||||
|
|
||||||
// Add token
|
|
||||||
await driver.clickElement('#watchAsset');
|
|
||||||
await driver.waitUntilXWindowHandles(3);
|
|
||||||
windowHandles = await driver.getAllWindowHandles();
|
|
||||||
await driver.switchToWindowWithTitle(
|
|
||||||
'MetaMask Notification',
|
|
||||||
windowHandles,
|
|
||||||
);
|
|
||||||
await driver.clickElement({ text: 'Add token', tag: 'button' });
|
|
||||||
await driver.waitUntilXWindowHandles(2);
|
|
||||||
await driver.switchToWindow(extension);
|
|
||||||
|
|
||||||
// Send TST
|
// Send TST
|
||||||
await driver.clickElement('[data-testid="home__asset-tab"]');
|
await driver.clickElement('[data-testid="home__asset-tab"]');
|
||||||
@ -175,7 +152,10 @@ describe('Send ERC20 to a 40 character hexadecimal address', function () {
|
|||||||
css: '.ens-input__selected-input__title',
|
css: '.ens-input__selected-input__title',
|
||||||
text: hexPrefixedAddress,
|
text: hexPrefixedAddress,
|
||||||
});
|
});
|
||||||
await driver.delay(2000);
|
await driver.waitForSelector({
|
||||||
|
css: '.transaction-detail-item',
|
||||||
|
text: '0.00008346 ETH',
|
||||||
|
});
|
||||||
await driver.clickElement({ text: 'Next', tag: 'button' });
|
await driver.clickElement({ text: 'Next', tag: 'button' });
|
||||||
|
|
||||||
// Confirm transaction
|
// Confirm transaction
|
||||||
@ -208,42 +188,20 @@ describe('Send ERC20 to a 40 character hexadecimal address', function () {
|
|||||||
await withFixtures(
|
await withFixtures(
|
||||||
{
|
{
|
||||||
dapp: true,
|
dapp: true,
|
||||||
fixtures: new FixtureBuilder()
|
fixtures: new FixtureBuilder().withTokensControllerERC20().build(),
|
||||||
.withPermissionControllerConnectedToTestDapp()
|
|
||||||
.build(),
|
|
||||||
ganacheOptions,
|
ganacheOptions,
|
||||||
smartContract,
|
smartContract,
|
||||||
title: this.test.title,
|
title: this.test.title,
|
||||||
failOnConsoleError: false,
|
failOnConsoleError: false,
|
||||||
},
|
},
|
||||||
async ({ driver, contractRegistry }) => {
|
async ({ driver }) => {
|
||||||
const contractAddress = await contractRegistry.getContractAddress(
|
|
||||||
smartContract,
|
|
||||||
);
|
|
||||||
await driver.navigate();
|
await driver.navigate();
|
||||||
await driver.fill('#password', 'correct horse battery staple');
|
await driver.fill('#password', 'correct horse battery staple');
|
||||||
await driver.press('#password', driver.Key.ENTER);
|
await driver.press('#password', driver.Key.ENTER);
|
||||||
|
await driver.waitForSelector({
|
||||||
// Create TST
|
css: '[data-testid="eth-overview__primary-currency"]',
|
||||||
await driver.openNewPage(
|
text: '24.9977 ETH',
|
||||||
`http://127.0.0.1:8080/?contract=${contractAddress}`,
|
});
|
||||||
);
|
|
||||||
|
|
||||||
let windowHandles = await driver.getAllWindowHandles();
|
|
||||||
const extension = windowHandles[0];
|
|
||||||
|
|
||||||
// Add token
|
|
||||||
await driver.findClickableElement('#deployButton');
|
|
||||||
await driver.clickElement('#watchAsset');
|
|
||||||
await driver.waitUntilXWindowHandles(3);
|
|
||||||
windowHandles = await driver.getAllWindowHandles();
|
|
||||||
await driver.switchToWindowWithTitle(
|
|
||||||
'MetaMask Notification',
|
|
||||||
windowHandles,
|
|
||||||
);
|
|
||||||
await driver.clickElement({ text: 'Add token', tag: 'button' });
|
|
||||||
await driver.waitUntilXWindowHandles(2);
|
|
||||||
await driver.switchToWindow(extension);
|
|
||||||
|
|
||||||
// Send TST
|
// Send TST
|
||||||
await driver.clickElement('[data-testid="home__asset-tab"]');
|
await driver.clickElement('[data-testid="home__asset-tab"]');
|
||||||
@ -259,7 +217,10 @@ describe('Send ERC20 to a 40 character hexadecimal address', function () {
|
|||||||
css: '.ens-input__selected-input__title',
|
css: '.ens-input__selected-input__title',
|
||||||
text: hexPrefixedAddress,
|
text: hexPrefixedAddress,
|
||||||
});
|
});
|
||||||
await driver.delay(2000);
|
await driver.waitForSelector({
|
||||||
|
css: '.transaction-detail-item',
|
||||||
|
text: '0.00008346 ETH',
|
||||||
|
});
|
||||||
await driver.clickElement({ text: 'Next', tag: 'button' });
|
await driver.clickElement({ text: 'Next', tag: 'button' });
|
||||||
|
|
||||||
// Confirm transaction
|
// Confirm transaction
|
||||||
|
@ -18,9 +18,7 @@ describe('Send ERC20 token to contract address', function () {
|
|||||||
await withFixtures(
|
await withFixtures(
|
||||||
{
|
{
|
||||||
dapp: true,
|
dapp: true,
|
||||||
fixtures: new FixtureBuilder()
|
fixtures: new FixtureBuilder().withTokensControllerERC20().build(),
|
||||||
.withPermissionControllerConnectedToTestDapp()
|
|
||||||
.build(),
|
|
||||||
ganacheOptions,
|
ganacheOptions,
|
||||||
smartContract,
|
smartContract,
|
||||||
title: this.test.title,
|
title: this.test.title,
|
||||||
@ -34,26 +32,6 @@ describe('Send ERC20 token to contract address', function () {
|
|||||||
await driver.fill('#password', 'correct horse battery staple');
|
await driver.fill('#password', 'correct horse battery staple');
|
||||||
await driver.press('#password', driver.Key.ENTER);
|
await driver.press('#password', driver.Key.ENTER);
|
||||||
|
|
||||||
// Create TST
|
|
||||||
await driver.openNewPage(
|
|
||||||
`http://127.0.0.1:8080/?contract=${contractAddress}`,
|
|
||||||
);
|
|
||||||
let windowHandles = await driver.getAllWindowHandles();
|
|
||||||
const extension = windowHandles[0];
|
|
||||||
|
|
||||||
// Add token
|
|
||||||
await driver.findClickableElement('#deployButton');
|
|
||||||
await driver.clickElement('#watchAsset');
|
|
||||||
await driver.waitUntilXWindowHandles(3);
|
|
||||||
windowHandles = await driver.getAllWindowHandles();
|
|
||||||
await driver.switchToWindowWithTitle(
|
|
||||||
'MetaMask Notification',
|
|
||||||
windowHandles,
|
|
||||||
);
|
|
||||||
await driver.clickElement({ text: 'Add token', tag: 'button' });
|
|
||||||
await driver.waitUntilXWindowHandles(2);
|
|
||||||
await driver.switchToWindow(extension);
|
|
||||||
|
|
||||||
// Send TST
|
// Send TST
|
||||||
await driver.clickElement('[data-testid="home__asset-tab"]');
|
await driver.clickElement('[data-testid="home__asset-tab"]');
|
||||||
await driver.clickElement('.token-cell');
|
await driver.clickElement('.token-cell');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user