2022-09-16 21:05:21 +02:00
|
|
|
import { fetchLocale } from '../../ui/helpers/utils/i18n-helper';
|
|
|
|
import { SUPPORT_LINK } from './ui-utils';
|
2022-06-07 22:37:15 +02:00
|
|
|
import { getErrorHtml } from './error-utils';
|
|
|
|
|
2022-09-16 21:05:21 +02:00
|
|
|
jest.mock('../../ui/helpers/utils/i18n-helper', () => ({
|
2022-06-07 22:37:15 +02:00
|
|
|
fetchLocale: jest.fn(),
|
|
|
|
loadRelativeTimeFormatLocaleData: jest.fn(),
|
|
|
|
}));
|
|
|
|
|
2022-09-16 21:05:21 +02:00
|
|
|
describe('Error utils Tests', function () {
|
|
|
|
it('should get error html', async function () {
|
2022-06-07 22:37:15 +02:00
|
|
|
const mockStore = {
|
|
|
|
localeMessages: {
|
|
|
|
current: {
|
|
|
|
troubleStarting: {
|
|
|
|
message:
|
|
|
|
'MetaMask had trouble starting. This error could be intermittent, so try restarting the extension.',
|
|
|
|
},
|
|
|
|
restartMetamask: {
|
|
|
|
message: 'Restart MetaMask',
|
|
|
|
},
|
|
|
|
stillGettingMessage: {
|
|
|
|
message: 'Still getting this message?',
|
|
|
|
},
|
|
|
|
sendBugReport: {
|
|
|
|
message: 'Send us a bug report.',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
metamask: {
|
|
|
|
currentLocale: 'en',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
fetchLocale.mockReturnValue(mockStore.localeMessages.current);
|
2022-11-03 18:25:13 +01:00
|
|
|
const errorHtml = await getErrorHtml(
|
|
|
|
'troubleStarting',
|
|
|
|
SUPPORT_LINK,
|
|
|
|
mockStore.metamask,
|
|
|
|
);
|
2022-06-07 22:37:15 +02:00
|
|
|
const currentLocale = mockStore.localeMessages.current;
|
|
|
|
const troubleStartingMessage = currentLocale.troubleStarting.message;
|
|
|
|
const restartMetamaskMessage = currentLocale.restartMetamask.message;
|
|
|
|
const stillGettingMessageMessage =
|
|
|
|
currentLocale.stillGettingMessage.message;
|
|
|
|
const sendBugReportMessage = currentLocale.sendBugReport.message;
|
|
|
|
|
|
|
|
expect(errorHtml).toContain(troubleStartingMessage);
|
|
|
|
expect(errorHtml).toContain(restartMetamaskMessage);
|
|
|
|
expect(errorHtml).toContain(stillGettingMessageMessage);
|
|
|
|
expect(errorHtml).toContain(sendBugReportMessage);
|
|
|
|
});
|
|
|
|
});
|