Skip to content

Commit f9f0c73

Browse files
test: e2e metrics test and refactor (#25632)
<!-- Please submit this PR as a draft initially. Do not mark it as "Ready for review" until the template has been completely filled out, and PR status checks have passed at least once. --> ## **Description** <!-- Write a short description of the changes included in this pull request, also include relevant motivation and context. Have in mind the following questions: 1. What is the reason for the change? 2. What is the improvement/solution? --> [![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/MetaMask/metamask-extension/pull/25632?quickstart=1) ## **Related issues** Fixes: [#23979](#23979) ## **Manual testing steps** 1. Go to this page... 2. 3. ## **Screenshots/Recordings** <!-- If applicable, add screenshots and/or recordings to visualize the before and after of your change. --> ### **Before** <!-- [screenshots/recordings] --> ### **After** <!-- [screenshots/recordings] --> ## **Pre-merge author checklist** - [ ] I've followed [MetaMask Contributor Docs](https://github.com/MetaMask/contributor-docs) and [MetaMask Extension Coding Standards](https://github.com/MetaMask/metamask-extension/blob/develop/.github/guidelines/CODING_GUIDELINES.md). - [ ] I've completed the PR template to the best of my ability - [ ] I’ve included tests if applicable - [ ] I’ve documented my code using [JSDoc](https://jsdoc.app/) format if applicable - [ ] I’ve applied the right labels on the PR (see [labeling guidelines](https://github.com/MetaMask/metamask-extension/blob/develop/.github/guidelines/LABELING_GUIDELINES.md)). Not required for external contributors. ## **Pre-merge reviewer checklist** - [ ] I've manually tested the PR (e.g. pull and build branch, run the app, test code being changed). - [ ] I confirm that this PR addresses all acceptance criteria described in the ticket it closes and includes the necessary testing evidence such as recordings and or screenshots.
1 parent 6c2cadd commit f9f0c73

File tree

9 files changed

+372
-129
lines changed

9 files changed

+372
-129
lines changed

test/e2e/tests/confirmations/header.spec.js

-112
This file was deleted.

test/e2e/tests/confirmations/helpers.ts

+51
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import FixtureBuilder from '../../fixture-builder';
22
import { defaultGanacheOptions, withFixtures } from '../../helpers';
3+
import { Mockttp } from '../../mock-e2e';
34
import { Driver } from '../../webdriver/driver';
45

56
export async function scrollAndConfirmAndAssertConfirm(driver: Driver) {
@@ -23,6 +24,10 @@ export function withRedesignConfirmationFixtures(
2324
},
2425
fixtures: new FixtureBuilder()
2526
.withPermissionControllerConnectedToTestDapp()
27+
.withMetaMetricsController({
28+
metaMetricsId: 'fake-metrics-id',
29+
participateInMetaMetrics: true,
30+
})
2631
.withPreferencesController({
2732
preferences: {
2833
redesignedConfirmationsEnabled: true,
@@ -31,7 +36,53 @@ export function withRedesignConfirmationFixtures(
3136
.build(),
3237
ganacheOptions: defaultGanacheOptions,
3338
title,
39+
testSpecificMock: mockSegment,
3440
},
3541
testFunction,
3642
);
3743
}
44+
45+
async function mockSegment(mockServer: Mockttp) {
46+
return [
47+
await mockServer
48+
.forPost('https://api.segment.io/v1/batch')
49+
.withJsonBodyIncluding({
50+
batch: [{ type: 'track', event: 'Signature Requested' }],
51+
})
52+
.thenCallback(() => {
53+
return {
54+
statusCode: 200,
55+
};
56+
}),
57+
await mockServer
58+
.forPost('https://api.segment.io/v1/batch')
59+
.withJsonBodyIncluding({
60+
batch: [{ type: 'track', event: 'Signature Approved' }],
61+
})
62+
.thenCallback(() => {
63+
return {
64+
statusCode: 200,
65+
};
66+
}),
67+
await mockServer
68+
.forPost('https://api.segment.io/v1/batch')
69+
.withJsonBodyIncluding({
70+
batch: [{ type: 'track', event: 'Signature Rejected' }],
71+
})
72+
.thenCallback(() => {
73+
return {
74+
statusCode: 200,
75+
};
76+
}),
77+
await mockServer
78+
.forPost('https://api.segment.io/v1/batch')
79+
.withJsonBodyIncluding({
80+
batch: [{ type: 'track', event: 'Account Details Opened' }],
81+
})
82+
.thenCallback(() => {
83+
return {
84+
statusCode: 200,
85+
};
86+
}),
87+
];
88+
}

test/e2e/tests/confirmations/signatures/permit.spec.ts

+50-3
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,31 @@ import {
1313
} from '../../../helpers';
1414
import { Ganache } from '../../../seeder/ganache';
1515
import { Driver } from '../../../webdriver/driver';
16+
import {
17+
assertAccountDetailsMetrics,
18+
assertHeaderInfoBalance,
19+
assertPastedAddress,
20+
assertSignatureMetrics,
21+
clickHeaderInfoBtn,
22+
copyAddressAndPasteWalletAddress,
23+
} from './signature-helpers';
1624

1725
describe('Confirmation Signature - Permit', function (this: Suite) {
1826
if (!process.env.ENABLE_CONFIRMATION_REDESIGN) {
1927
return;
2028
}
2129

22-
it('initiates and confirms', async function () {
30+
it('initiates and confirms and emits the correct events', async function () {
2331
await withRedesignConfirmationFixtures(
2432
this.test?.fullTitle(),
2533
async ({
2634
driver,
2735
ganacheServer,
36+
mockedEndpoint: mockedEndpoints,
2837
}: {
2938
driver: Driver;
3039
ganacheServer: Ganache;
40+
mockedEndpoint: unknown;
3141
}) => {
3242
const addresses = await ganacheServer.getAccounts();
3343
const publicAddress = addresses?.[0] as string;
@@ -37,17 +47,45 @@ describe('Confirmation Signature - Permit', function (this: Suite) {
3747
await driver.clickElement('#signPermit');
3848
await switchToNotificationWindow(driver);
3949

50+
await clickHeaderInfoBtn(driver);
51+
await assertHeaderInfoBalance(driver);
52+
await assertAccountDetailsMetrics(
53+
driver,
54+
mockedEndpoints,
55+
'eth_signTypedData_v4',
56+
);
57+
58+
await copyAddressAndPasteWalletAddress(driver);
59+
await assertPastedAddress(driver);
60+
await switchToNotificationWindow(driver);
61+
4062
await assertInfoValues(driver);
4163
await scrollAndConfirmAndAssertConfirm(driver);
64+
await driver.delay(1000);
65+
66+
await assertSignatureMetrics(
67+
driver,
68+
mockedEndpoints,
69+
'eth_signTypedData_v4',
70+
'Permit',
71+
['redesigned_confirmation', 'permit'],
72+
);
73+
4274
await assertVerifiedResults(driver, publicAddress);
4375
},
4476
);
4577
});
4678

47-
it('initiates and rejects', async function () {
79+
it('initiates and rejects and emits the correct events', async function () {
4880
await withRedesignConfirmationFixtures(
4981
this.test?.fullTitle(),
50-
async ({ driver }: { driver: Driver }) => {
82+
async ({
83+
driver,
84+
mockedEndpoint: mockedEndpoints,
85+
}: {
86+
driver: Driver;
87+
mockedEndpoint: unknown;
88+
}) => {
5189
await unlockWallet(driver);
5290
await openDapp(driver);
5391
await driver.clickElement('#signPermit');
@@ -56,6 +94,7 @@ describe('Confirmation Signature - Permit', function (this: Suite) {
5694
await driver.clickElement(
5795
'[data-testid="confirm-footer-cancel-button"]',
5896
);
97+
await driver.delay(1000);
5998

6099
await driver.waitUntilXWindowHandles(2);
61100
await driver.switchToWindowWithTitle(WINDOW_TITLES.TestDApp);
@@ -65,6 +104,14 @@ describe('Confirmation Signature - Permit', function (this: Suite) {
65104
text: 'Error: User rejected the request.',
66105
});
67106
assert.ok(rejectionResult);
107+
108+
await assertSignatureMetrics(
109+
driver,
110+
mockedEndpoints,
111+
'eth_signTypedData_v4',
112+
'Permit',
113+
['redesigned_confirmation', 'permit'],
114+
);
68115
},
69116
);
70117
});

test/e2e/tests/confirmations/signatures/personal-sign.spec.ts

+30-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ import {
1010
} from '../../../helpers';
1111
import { Ganache } from '../../../seeder/ganache';
1212
import { Driver } from '../../../webdriver/driver';
13+
import {
14+
assertHeaderInfoBalance,
15+
assertPastedAddress,
16+
clickHeaderInfoBtn,
17+
copyAddressAndPasteWalletAddress,
18+
assertSignatureMetrics,
19+
assertAccountDetailsMetrics,
20+
} from './signature-helpers';
1321

1422
describe('Confirmation Signature - Personal Sign', function (this: Suite) {
1523
if (!process.env.ENABLE_CONFIRMATION_REDESIGN) {
@@ -22,9 +30,11 @@ describe('Confirmation Signature - Personal Sign', function (this: Suite) {
2230
async ({
2331
driver,
2432
ganacheServer,
33+
mockedEndpoint: mockedEndpoints,
2534
}: {
2635
driver: Driver;
2736
ganacheServer: Ganache;
37+
mockedEndpoint: unknown;
2838
}) => {
2939
const addresses = await ganacheServer.getAccounts();
3040
const publicAddress = addresses?.[0] as string;
@@ -34,19 +44,37 @@ describe('Confirmation Signature - Personal Sign', function (this: Suite) {
3444
await driver.clickElement('#personalSign');
3545
await switchToNotificationWindow(driver);
3646

47+
await clickHeaderInfoBtn(driver);
48+
await assertHeaderInfoBalance(driver);
49+
50+
await copyAddressAndPasteWalletAddress(driver);
51+
await assertPastedAddress(driver);
52+
await assertAccountDetailsMetrics(
53+
driver,
54+
mockedEndpoints,
55+
'personal_sign',
56+
);
57+
await switchToNotificationWindow(driver);
3758
await assertInfoValues(driver);
3859

3960
await driver.clickElement('[data-testid="confirm-footer-button"]');
4061

4162
await assertVerifiedPersonalMessage(driver, publicAddress);
63+
await assertSignatureMetrics(driver, mockedEndpoints, 'personal_sign');
4264
},
4365
);
4466
});
4567

4668
it('initiates and rejects', async function () {
4769
await withRedesignConfirmationFixtures(
4870
this.test?.fullTitle(),
49-
async ({ driver }: { driver: Driver }) => {
71+
async ({
72+
driver,
73+
mockedEndpoint: mockedEndpoints,
74+
}: {
75+
driver: Driver;
76+
mockedEndpoint: unknown;
77+
}) => {
5078
await unlockWallet(driver);
5179
await openDapp(driver);
5280
await driver.clickElement('#personalSign');
@@ -64,6 +92,7 @@ describe('Confirmation Signature - Personal Sign', function (this: Suite) {
6492
text: 'Error: User rejected the request.',
6593
});
6694
assert.ok(rejectionResult);
95+
await assertSignatureMetrics(driver, mockedEndpoints, 'personal_sign');
6796
},
6897
);
6998
});

0 commit comments

Comments
 (0)