2021-02-04 19:15:23 +01:00
|
|
|
const { strict: assert } = require('assert');
|
2022-02-04 18:00:43 +01:00
|
|
|
const { convertToHexValue, withFixtures } = require('../helpers');
|
2020-07-10 16:35:52 +02:00
|
|
|
|
|
|
|
describe('Personal sign', function () {
|
|
|
|
it('can initiate and confirm a personal sign', async function () {
|
|
|
|
const ganacheOptions = {
|
|
|
|
accounts: [
|
|
|
|
{
|
2020-11-03 00:41:28 +01:00
|
|
|
secretKey:
|
|
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
2022-01-19 00:08:41 +01:00
|
|
|
balance: convertToHexValue(25000000000000000000),
|
2020-07-10 16:35:52 +02:00
|
|
|
},
|
|
|
|
],
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2022-02-04 16:39:48 +01:00
|
|
|
const publicAddress = '0x5cfe73b6021e818b776b421b1c4db2474086a7e1';
|
2020-07-10 16:35:52 +02:00
|
|
|
await withFixtures(
|
2020-11-03 00:41:28 +01:00
|
|
|
{
|
|
|
|
dapp: true,
|
2021-03-31 19:06:44 +02:00
|
|
|
fixtures: 'connected-state',
|
2020-11-03 00:41:28 +01:00
|
|
|
ganacheOptions,
|
|
|
|
title: this.test.title,
|
|
|
|
},
|
2020-07-10 16:35:52 +02:00
|
|
|
async ({ driver }) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
await driver.navigate();
|
2021-04-12 17:32:38 +02:00
|
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
|
|
await driver.press('#password', driver.Key.ENTER);
|
2020-07-10 16:35:52 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await driver.openNewPage('http://127.0.0.1:8080/');
|
2021-04-07 16:57:40 +02:00
|
|
|
await driver.clickElement('#personalSign');
|
2020-07-10 16:35:52 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
await driver.waitUntilXWindowHandles(3);
|
2022-02-04 16:39:48 +01:00
|
|
|
let windowHandles = await driver.getAllWindowHandles();
|
2020-11-03 00:41:28 +01:00
|
|
|
await driver.switchToWindowWithTitle(
|
|
|
|
'MetaMask Notification',
|
|
|
|
windowHandles,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
2020-07-10 16:35:52 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
const personalMessageRow = await driver.findElement(
|
2021-04-07 16:57:40 +02:00
|
|
|
'.request-signature__row-value',
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
const personalMessage = await personalMessageRow.getText();
|
|
|
|
assert.equal(personalMessage, 'Example `personal_sign` message');
|
2020-07-10 16:35:52 +02:00
|
|
|
|
2021-04-07 16:57:40 +02:00
|
|
|
await driver.clickElement('[data-testid="request-signature__sign"]');
|
2020-07-10 16:35:52 +02:00
|
|
|
|
2022-02-04 16:39:48 +01:00
|
|
|
// Switch to the Dapp
|
2021-02-04 19:15:23 +01:00
|
|
|
await driver.waitUntilXWindowHandles(2);
|
2022-02-04 16:39:48 +01:00
|
|
|
windowHandles = await driver.getAllWindowHandles();
|
|
|
|
await driver.switchToWindowWithTitle('E2E Test Dapp', windowHandles);
|
|
|
|
|
|
|
|
// Verify
|
|
|
|
await driver.clickElement('#personalSignVerify');
|
|
|
|
const verifySigUtil = await driver.findElement(
|
|
|
|
'#personalSignVerifySigUtilResult',
|
|
|
|
);
|
2022-02-04 18:00:43 +01:00
|
|
|
const verifyECRecover = await driver.waitForSelector(
|
|
|
|
{
|
|
|
|
css: '#personalSignVerifyECRecoverResult',
|
|
|
|
text: publicAddress,
|
|
|
|
},
|
|
|
|
{ timeout: 10000 },
|
2022-02-04 16:39:48 +01:00
|
|
|
);
|
|
|
|
assert.equal(await verifySigUtil.getText(), publicAddress);
|
|
|
|
assert.equal(await verifyECRecover.getText(), publicAddress);
|
2020-07-14 17:20:41 +02:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|