mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
0c203d0518
* refactoring signature-request and adding test coverage * adding storybook and removing the reduntant files: * adding new components from * replacing <SiteOrigin/> with <TagUrl/> * updating review comments from Jyoti and George * adding the hook * refactoring in the changes from #18770 MMI PR * adding new hook for the MMISign changes * updating lavamoat * updating lavamoat * removing a commeted line * updating the sign check with accountType conditional * fixing build issues * updating the review comments on the hooks * updating signatureRequestHeader * lint fix * fixing test failure * lint fix * updating review comments * adding the renamed hook * updating the origin url * fixing test failure * migrating changes from #19184 * updating snapshot * fixing e2e failure * fixing e2e failure * addressing review comments from Joao * migrating chnages from #19892 * moving shallowEqual inside of mmi build * migrating changes from #19881 * fixing build failure * migrating changes from #19949 * migrating changes from #19468 * updating snapshot * updating snapshot * updating QA review comments * fixing full screen height issue from develop * migrating changes from #20083 * fixing snapshot
144 lines
4.6 KiB
JavaScript
144 lines
4.6 KiB
JavaScript
const { strict: assert } = require('assert');
|
|
const {
|
|
convertToHexValue,
|
|
withFixtures,
|
|
openDapp,
|
|
regularDelayMs,
|
|
} = require('../helpers');
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
|
|
describe('Personal sign', function () {
|
|
it('can initiate and confirm a personal sign', async function () {
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
balance: convertToHexValue(25000000000000000000),
|
|
},
|
|
],
|
|
};
|
|
await withFixtures(
|
|
{
|
|
dapp: true,
|
|
fixtures: new FixtureBuilder()
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
.build(),
|
|
ganacheOptions,
|
|
title: this.test.title,
|
|
},
|
|
async ({ driver, ganacheServer }) => {
|
|
const addresses = await ganacheServer.getAccounts();
|
|
const publicAddress = addresses[0];
|
|
await driver.navigate();
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
await openDapp(driver);
|
|
await driver.clickElement('#personalSign');
|
|
|
|
await driver.waitUntilXWindowHandles(3);
|
|
const windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle(
|
|
'MetaMask Notification',
|
|
windowHandles,
|
|
);
|
|
|
|
const personalMessageRow = await driver.findElement(
|
|
'.request-signature__row-value',
|
|
);
|
|
const personalMessage = await personalMessageRow.getText();
|
|
assert.equal(personalMessage, 'Example `personal_sign` message');
|
|
|
|
await driver.clickElement('[data-testid="page-container-footer-next"]');
|
|
|
|
await verifyAndAssertPersonalMessage(driver, publicAddress);
|
|
},
|
|
);
|
|
});
|
|
it('can queue multiple personal signs and confirm', async function () {
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
balance: convertToHexValue(25000000000000000000),
|
|
},
|
|
],
|
|
};
|
|
await withFixtures(
|
|
{
|
|
dapp: true,
|
|
fixtures: new FixtureBuilder()
|
|
.withPermissionControllerConnectedToTestDapp()
|
|
.build(),
|
|
ganacheOptions,
|
|
title: this.test.title,
|
|
},
|
|
async ({ driver, ganacheServer }) => {
|
|
const addresses = await ganacheServer.getAccounts();
|
|
const publicAddress = addresses[0];
|
|
await driver.navigate();
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
await openDapp(driver);
|
|
// Create personal sign
|
|
await driver.clickElement('#personalSign');
|
|
|
|
await driver.waitUntilXWindowHandles(3);
|
|
const windowHandles = await driver.getAllWindowHandles();
|
|
|
|
// Switch to Dapp
|
|
await driver.switchToWindowWithTitle('E2E Test Dapp', windowHandles);
|
|
|
|
// Create second personal sign
|
|
await driver.clickElement('#personalSign');
|
|
|
|
await driver.switchToWindowWithTitle(
|
|
'MetaMask Notification',
|
|
windowHandles,
|
|
);
|
|
|
|
await driver.waitForSelector({
|
|
text: 'Reject 2 requests',
|
|
tag: 'button',
|
|
});
|
|
|
|
const personalMessageRow = await driver.findElement(
|
|
'.request-signature__row-value',
|
|
);
|
|
const personalMessage = await personalMessageRow.getText();
|
|
assert.equal(personalMessage, 'Example `personal_sign` message');
|
|
|
|
// Confirm first personal sign
|
|
await driver.clickElement('[data-testid="page-container-footer-next"]');
|
|
await driver.delay(regularDelayMs);
|
|
// Confirm second personal sign
|
|
await driver.clickElement('[data-testid="page-container-footer-next"]');
|
|
|
|
await verifyAndAssertPersonalMessage(driver, publicAddress);
|
|
},
|
|
);
|
|
});
|
|
});
|
|
|
|
async function verifyAndAssertPersonalMessage(driver, publicAddress) {
|
|
// Switch to the Dapp
|
|
await driver.waitUntilXWindowHandles(2);
|
|
const windowHandles = await driver.getAllWindowHandles();
|
|
await driver.switchToWindowWithTitle('E2E Test Dapp', windowHandles);
|
|
|
|
// Verify last confirmed personal sign
|
|
await driver.clickElement('#personalSignVerify');
|
|
const verifySigUtil = await driver.findElement(
|
|
'#personalSignVerifySigUtilResult',
|
|
);
|
|
const verifyECRecover = await driver.waitForSelector({
|
|
css: '#personalSignVerifyECRecoverResult',
|
|
text: publicAddress,
|
|
});
|
|
assert.equal(await verifySigUtil.getText(), publicAddress);
|
|
assert.equal(await verifyECRecover.getText(), publicAddress);
|
|
}
|