mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
90827c54a1
* Add improved downloading logic when exporting state logs * Make test for state logs download only apply to firefox * Remove eslint override * Add file extension to test * Move make jest global.Blob accessible to window
81 lines
2.3 KiB
JavaScript
81 lines
2.3 KiB
JavaScript
const { strict: assert } = require('assert');
|
|
const { promises: fs } = require('fs');
|
|
const {
|
|
convertToHexValue,
|
|
withFixtures,
|
|
createDownloadFolder,
|
|
} = require('../helpers');
|
|
const FixtureBuilder = require('../fixture-builder');
|
|
|
|
const downloadsFolder = `${process.cwd()}/test-artifacts/downloads`;
|
|
|
|
const getStateLogsJson = async () => {
|
|
try {
|
|
const stateLogs = `${downloadsFolder}/MetaMask state logs.json`;
|
|
await fs.access(stateLogs);
|
|
const contents = await fs.readFile(stateLogs);
|
|
return JSON.parse(contents.toString());
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
};
|
|
|
|
describe('State logs', function () {
|
|
const ganacheOptions = {
|
|
accounts: [
|
|
{
|
|
secretKey:
|
|
'0x7C9529A67102755B7E6102D6D950AC5D5863C98713805CEC576B945B15B71EAC',
|
|
balance: convertToHexValue(25000000000000000000),
|
|
},
|
|
],
|
|
};
|
|
|
|
it('should download state logs for the account', async function () {
|
|
if (process.env.SELENIUM_BROWSER === 'chrome') {
|
|
// Chrome shows OS level download prompt which can't be dismissed by Selenium
|
|
this.skip();
|
|
}
|
|
await withFixtures(
|
|
{
|
|
fixtures: new FixtureBuilder().build(),
|
|
ganacheOptions,
|
|
title: this.test.title,
|
|
failOnConsoleError: false,
|
|
},
|
|
async ({ driver }) => {
|
|
await createDownloadFolder(downloadsFolder);
|
|
await driver.navigate();
|
|
await driver.fill('#password', 'correct horse battery staple');
|
|
await driver.press('#password', driver.Key.ENTER);
|
|
|
|
// Download state logs
|
|
await driver.clickElement(
|
|
'[data-testid="account-options-menu-button"]',
|
|
);
|
|
await driver.clickElement({ text: 'Settings', tag: 'div' });
|
|
await driver.clickElement({ text: 'Advanced', tag: 'div' });
|
|
await driver.clickElement({
|
|
text: 'Download state logs',
|
|
tag: 'button',
|
|
});
|
|
|
|
// Verify download
|
|
let info;
|
|
await driver.wait(async () => {
|
|
info = await getStateLogsJson();
|
|
return info !== null;
|
|
}, 10000);
|
|
assert.notEqual(info, null);
|
|
// Verify Json
|
|
assert.equal(
|
|
info?.metamask?.identities[
|
|
'0x5cfe73b6021e818b776b421b1c4db2474086a7e1'
|
|
].address,
|
|
'0x5cfe73b6021e818b776b421b1c4db2474086a7e1',
|
|
);
|
|
},
|
|
);
|
|
});
|
|
});
|