1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/test/e2e/metrics/unlock-wallet.spec.js

59 lines
1.8 KiB
JavaScript
Raw Normal View History

const { strict: assert } = require('assert');
const {
withFixtures,
unlockWallet,
defaultGanacheOptions,
} = require('../helpers');
const FixtureBuilder = require('../fixture-builder');
describe('Unlock wallet', function () {
async function mockSegment(mockServer) {
return await mockServer
.forPost('https://api.segment.io/v1/batch')
.withJsonBodyIncluding({ batch: [{ type: 'page' }] })
.times(3)
.thenCallback(() => {
return {
statusCode: 200,
};
});
}
it('should send first three Page metric events upon fullscreen page load', async function () {
await withFixtures(
{
fixtures: new FixtureBuilder()
.withMetaMetricsController({
metaMetricsId: 'fake-metrics-id',
participateInMetaMetrics: true,
})
.build(),
ganacheOptions: defaultGanacheOptions,
title: this.test.title,
testSpecificMock: mockSegment,
},
async ({ driver, mockedEndpoint }) => {
await driver.navigate();
await unlockWallet(driver);
await driver.wait(async () => {
const isPending = await mockedEndpoint.isPending();
return isPending === false;
}, 10000);
const mockedRequests = await mockedEndpoint.getSeenRequests();
assert.equal(mockedRequests.length, 3);
const [firstMock, secondMock, thirdMock] = mockedRequests;
assertBatchValue(firstMock, 'Home', '/');
assertBatchValue(secondMock, 'Unlock Page', '/unlock');
assertBatchValue(thirdMock, 'Home', '/');
},
);
});
});
function assertBatchValue(mockRequest, assertedTitle, assertedPath) {
const [mockJson] = mockRequest.body.json.batch;
const { title, path } = mockJson.context.page;
assert.equal(title, assertedTitle);
assert.equal(path, assertedPath);
}