mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 01:47:00 +01:00
e2e tests for permissions metrics (#19789)
This commit is contained in:
parent
fd20f48e2c
commit
de14b1ddb2
121
test/e2e/metrics/permissions-approved.spec.js
Normal file
121
test/e2e/metrics/permissions-approved.spec.js
Normal file
@ -0,0 +1,121 @@
|
||||
const { strict: assert } = require('assert');
|
||||
const {
|
||||
defaultGanacheOptions,
|
||||
switchToNotificationWindow,
|
||||
withFixtures,
|
||||
openDapp,
|
||||
unlockWallet,
|
||||
} = require('../helpers');
|
||||
const FixtureBuilder = require('../fixture-builder');
|
||||
|
||||
/**
|
||||
* mocks the segment api multiple times for specific payloads that we expect to
|
||||
* see when these tests are run. In this case we are looking for
|
||||
* 'Permissions Requested' and 'Permissions Received'. Do not use the constants
|
||||
* from the metrics constants files, because if these change we want a strong
|
||||
* indicator to our data team that the shape of data will change.
|
||||
*
|
||||
* @param {import('mockttp').Mockttp} mockServer
|
||||
* @returns {Promise<import('mockttp/dist/pluggable-admin').MockttpClientResponse>[]}
|
||||
*/
|
||||
async function mockSegment(mockServer) {
|
||||
return [
|
||||
await mockServer
|
||||
.forPost('https://api.segment.io/v1/batch')
|
||||
.withJsonBodyIncluding({
|
||||
batch: [{ type: 'track', event: 'Permissions Requested' }],
|
||||
})
|
||||
.thenCallback(() => {
|
||||
return {
|
||||
statusCode: 200,
|
||||
};
|
||||
}),
|
||||
await mockServer
|
||||
.forPost('https://api.segment.io/v1/batch')
|
||||
.withJsonBodyIncluding({
|
||||
batch: [{ type: 'track', event: 'Permissions Approved' }],
|
||||
})
|
||||
.thenCallback(() => {
|
||||
return {
|
||||
statusCode: 200,
|
||||
};
|
||||
}),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* This method handles getting the mocked requests to the segment server
|
||||
*
|
||||
* @param {WebDriver} driver
|
||||
* @param {import('mockttp').Mockttp} mockedEndpoints
|
||||
* @returns {import('mockttp/dist/pluggable-admin').MockttpClientResponse[]}
|
||||
*/
|
||||
async function getEventPayloads(driver, mockedEndpoints) {
|
||||
await driver.wait(async () => {
|
||||
let isPending = true;
|
||||
for (const mockedEndpoint of mockedEndpoints) {
|
||||
isPending = await mockedEndpoint.isPending();
|
||||
}
|
||||
return isPending === false;
|
||||
}, 10000);
|
||||
const mockedRequests = [];
|
||||
for (const mockedEndpoint of mockedEndpoints) {
|
||||
mockedRequests.push(...(await mockedEndpoint.getSeenRequests()));
|
||||
}
|
||||
return mockedRequests.map((req) => req.body.json.batch).flat();
|
||||
}
|
||||
|
||||
describe('Permissions Approved Event', function () {
|
||||
it('Successfully tracked when connecting to dapp', async function () {
|
||||
await withFixtures(
|
||||
{
|
||||
dapp: true,
|
||||
fixtures: new FixtureBuilder()
|
||||
.withMetaMetricsController({
|
||||
metaMetricsId: 'fake-metrics-id',
|
||||
participateInMetaMetrics: true,
|
||||
})
|
||||
.build(),
|
||||
defaultGanacheOptions,
|
||||
title: this.test.title,
|
||||
testSpecificMock: mockSegment,
|
||||
},
|
||||
async ({ driver, mockedEndpoint: mockedEndpoints }) => {
|
||||
await driver.navigate();
|
||||
await unlockWallet(driver);
|
||||
await openDapp(driver);
|
||||
|
||||
await driver.clickElement({
|
||||
text: 'Connect',
|
||||
tag: 'button',
|
||||
});
|
||||
|
||||
await switchToNotificationWindow(driver);
|
||||
await driver.clickElement({
|
||||
text: 'Next',
|
||||
tag: 'button',
|
||||
});
|
||||
await driver.clickElement({
|
||||
text: 'Connect',
|
||||
tag: 'button',
|
||||
});
|
||||
|
||||
const events = await getEventPayloads(driver, mockedEndpoints);
|
||||
assert.deepStrictEqual(events[0].properties, {
|
||||
method: 'eth_requestAccounts',
|
||||
category: 'inpage_provider',
|
||||
locale: 'en',
|
||||
chain_id: '0x539',
|
||||
environment_type: 'background',
|
||||
});
|
||||
assert.deepStrictEqual(events[1].properties, {
|
||||
method: 'eth_requestAccounts',
|
||||
category: 'inpage_provider',
|
||||
locale: 'en',
|
||||
chain_id: '0x539',
|
||||
environment_type: 'background',
|
||||
});
|
||||
},
|
||||
);
|
||||
});
|
||||
});
|
Loading…
Reference in New Issue
Block a user