Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactoring signature-request.spec.js to use fixtures #10820

Merged
merged 4 commits into from
Apr 7, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions test/e2e/run-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,6 @@ retry concurrently --kill-others \
'yarn dapp' \
'mocha test/e2e/metamask-responsive-ui.spec'

retry concurrently --kill-others \
--names 'dapp,e2e' \
--prefix '[{time}][{name}]' \
--success first \
'yarn dapp' \
'mocha test/e2e/signature-request.spec'

retry concurrently --kill-others \
--names 'e2e' \
--prefix '[{time}][{name}]' \
Expand Down
172 changes: 0 additions & 172 deletions test/e2e/signature-request.spec.js

This file was deleted.

79 changes: 79 additions & 0 deletions test/e2e/tests/signature-request.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
const { strict: assert } = require('assert');
const { By, Key } = require('selenium-webdriver');
const { withFixtures } = require('../helpers');

describe('Signature Request', function () {
it('can initiate and confirm a Signature Request', async function () {
const ganacheOptions = {
accounts: [
{
secretKey:
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
balance: 25000000000000000000,
},
],
};
const publicAddress = '0x5cfe73b6021e818b776b421b1c4db2474086a7e1';
await withFixtures(
{
dapp: true,
fixtures: 'connected-state',
ganacheOptions,
title: this.test.title,
},
async ({ driver }) => {
await driver.navigate();
const passwordField = await driver.findElement(By.css('#password'));
await passwordField.sendKeys('correct horse battery staple');
await passwordField.sendKeys(Key.ENTER);

await driver.openNewPage('http://127.0.0.1:8080/');

// creates a sign typed data signature request
await driver.clickElement(By.id('signTypedDataV4'), 10000);

await driver.waitUntilXWindowHandles(3);
const windowHandles = await driver.getAllWindowHandles();
await driver.switchToWindowWithTitle(
'MetaMask Notification',
windowHandles,
);

const title = await driver.findElement(
By.css('.signature-request-content__title'),
);
const name = await driver.findElement(
By.css('.signature-request-content__info--bolded'),
);
const content = await driver.findElements(
By.css('.signature-request-content__info'),
);
const origin = content[0];
const address = content[1];
assert.equal(await title.getText(), 'Signature Request');
assert.equal(await name.getText(), 'Ether Mail');
assert.equal(await origin.getText(), 'http://127.0.0.1:8080');
assert.equal(
await address.getText(),
`${publicAddress.slice(0, 8)}...${publicAddress.slice(
publicAddress.length - 8,
)}`,
);

// Approve signing typed data
await driver.clickElement(
By.xpath(`//button[contains(text(), 'Sign')]`),
10000,
);

// switch to the Dapp and verify the signed addressed
await driver.switchToWindowWithTitle('E2E Test Dapp', windowHandles);
await driver.clickElement(By.id('signTypedDataV4Verify'), 10000);
const recoveredAddress = await driver.findElement(
By.id('signTypedDataV4VerifyResult'),
);
assert.equal(await recoveredAddress.getText(), publicAddress);
},
);
});
});