mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
101 lines
2.9 KiB
JavaScript
101 lines
2.9 KiB
JavaScript
const { strict: assert } = require('assert');
|
|
const {
|
|
defaultGanacheOptions,
|
|
switchToNotificationWindow,
|
|
withFixtures,
|
|
openDapp,
|
|
unlockWallet,
|
|
getEventPayloads,
|
|
} = 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,
|
|
};
|
|
}),
|
|
];
|
|
}
|
|
|
|
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',
|
|
});
|
|
},
|
|
);
|
|
});
|
|
});
|