1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00

Send to contract e2e (#15276)

* fix leave running flag

* reuse mock

* add send to contract waring test
This commit is contained in:
PeterYinusa 2022-07-19 16:22:38 +01:00 committed by GitHub
parent 7a3ff7e436
commit 12da4303be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 97 additions and 15 deletions

View File

@ -154,6 +154,15 @@ async function setupMocking(server, testSpecificMock) {
}; };
}); });
await server
.forGet('https://token-api.metaswap.codefi.network/token/0x539')
.thenCallback(() => {
return {
statusCode: 200,
json: {},
};
});
await server await server
.forGet( .forGet(
'https://static.metaswap.codefi.network/api/v1/tokenIcons/1337/0x0d8775f648430679a709e98d2b0cb6250d2887ef.png', 'https://static.metaswap.codefi.network/api/v1/tokenIcons/1337/0x0d8775f648430679a709e98d2b0cb6250d2887ef.png',

View File

@ -70,10 +70,12 @@ async function main() {
} }
let testTimeoutInMilliseconds = 60 * 1000; let testTimeoutInMilliseconds = 60 * 1000;
let exit = '--exit';
if (leaveRunning) { if (leaveRunning) {
process.env.E2E_LEAVE_RUNNING = 'true'; process.env.E2E_LEAVE_RUNNING = 'true';
testTimeoutInMilliseconds = 0; testTimeoutInMilliseconds = 0;
exit = '--no-exit';
} }
await retry({ retries }, async () => { await retry({ retries }, async () => {
@ -83,7 +85,7 @@ async function main() {
'--timeout', '--timeout',
testTimeoutInMilliseconds, testTimeoutInMilliseconds,
e2eTestPath, e2eTestPath,
'--exit', exit,
]); ]);
}); });
} }

View File

@ -119,16 +119,6 @@ describe('Send ETH to a 40 character hexadecimal address', function () {
}); });
describe('Send ERC20 to a 40 character hexadecimal address', function () { describe('Send ERC20 to a 40 character hexadecimal address', function () {
async function mockTstToken(server) {
await server
.forGet('https://token-api.metaswap.codefi.network/token/0x539')
.thenCallback(() => {
return {
statusCode: 200,
json: {},
};
});
}
const ganacheOptions = { const ganacheOptions = {
accounts: [ accounts: [
{ {
@ -147,8 +137,7 @@ describe('Send ERC20 to a 40 character hexadecimal address', function () {
title: this.test.title, title: this.test.title,
failOnConsoleError: false, failOnConsoleError: false,
}, },
async ({ driver, mockServer }) => { async ({ driver }) => {
await mockTstToken(mockServer);
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);
@ -247,8 +236,7 @@ describe('Send ERC20 to a 40 character hexadecimal address', function () {
title: this.test.title, title: this.test.title,
failOnConsoleError: false, failOnConsoleError: false,
}, },
async ({ driver, mockServer }) => { async ({ driver }) => {
await mockTstToken(mockServer);
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);

View File

@ -0,0 +1,83 @@
const { strict: assert } = require('assert');
const { convertToHexValue, withFixtures } = require('../helpers');
describe('Send ERC20 token to contract address', function () {
const ganacheOptions = {
accounts: [
{
secretKey:
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
balance: convertToHexValue(25000000000000000000),
},
],
};
it('should display the token contract warning to the user', async function () {
await withFixtures(
{
dapp: true,
fixtures: 'connected-state',
ganacheOptions,
title: this.test.title,
failOnConsoleError: false,
},
async ({ driver }) => {
await driver.navigate();
await driver.fill('#password', 'correct horse battery staple');
await driver.press('#password', driver.Key.ENTER);
// Create TST
await driver.openNewPage('http://127.0.0.1:8080/');
await driver.clickElement('#createToken');
await driver.waitUntilXWindowHandles(3);
let windowHandles = await driver.getAllWindowHandles();
const extension = windowHandles[0];
const dapp = await driver.switchToWindowWithTitle(
'E2E Test Dapp',
windowHandles,
);
await driver.switchToWindowWithTitle(
'MetaMask Notification',
windowHandles,
);
await driver.clickElement({ text: 'Confirm', tag: 'button' });
await driver.waitUntilXWindowHandles(2);
await driver.switchToWindow(dapp);
const tokenAddress = await driver.waitForSelector({
css: '#tokenAddress',
text: '0x',
});
const tokenAddressText = await tokenAddress.getText();
// Add token
await driver.switchToWindow(dapp);
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
await driver.clickElement('[data-testid="home__asset-tab"]');
await driver.clickElement('.token-cell');
await driver.clickElement('[data-testid="eth-overview-send"]');
// Type contract address
await driver.fill(
'input[placeholder="Search, public address (0x), or ENS"]',
tokenAddressText,
);
// Verify warning
const warningText =
'Warning: you are about to send to a token contract which could result in a loss of funds. Learn more\nI understand';
const warning = await driver.findElement('.send__warning-container');
assert.equal(await warning.getText(), warningText);
},
);
});
});