mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
f9f628690c
* Metametrics onboarding unit test, snapshot * Test route navigation in metametrics
96 lines
2.5 KiB
JavaScript
96 lines
2.5 KiB
JavaScript
import React from 'react';
|
|
import configureMockStore from 'redux-mock-store';
|
|
import { fireEvent, waitFor } from '@testing-library/react';
|
|
import thunk from 'redux-thunk';
|
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
|
import { ONBOARDING_CREATE_PASSWORD_ROUTE } from '../../../helpers/constants/routes';
|
|
import {
|
|
onboardingMetametricsAgree,
|
|
onboardingMetametricsDisagree,
|
|
} from '../../../../app/_locales/en/messages.json';
|
|
import { setParticipateInMetaMetrics } from '../../../store/actions';
|
|
import OnboardingMetametrics from './metametrics';
|
|
|
|
const mockPushHistory = jest.fn();
|
|
|
|
jest.mock('react-router-dom', () => {
|
|
const original = jest.requireActual('react-router-dom');
|
|
return {
|
|
...original,
|
|
useLocation: jest.fn(() => ({ search: '' })),
|
|
useHistory: () => ({
|
|
push: mockPushHistory,
|
|
}),
|
|
};
|
|
});
|
|
|
|
jest.mock('../../../store/actions.ts', () => ({
|
|
setParticipateInMetaMetrics: jest
|
|
.fn()
|
|
.mockReturnValue(jest.fn((val) => Promise.resolve([val]))),
|
|
}));
|
|
|
|
describe('Onboarding Metametrics Component', () => {
|
|
let mockStore;
|
|
|
|
const mockState = {
|
|
metamask: {
|
|
firstTimeFlowType: 'create',
|
|
participateInMetaMetrics: '',
|
|
},
|
|
};
|
|
|
|
beforeEach(() => {
|
|
mockStore = configureMockStore([thunk])(mockState);
|
|
});
|
|
|
|
afterEach(() => {
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('should match snapshot', () => {
|
|
const { container } = renderWithProvider(
|
|
<OnboardingMetametrics />,
|
|
mockStore,
|
|
);
|
|
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should set setParticipateInMetaMetrics to true when clicking agree', async () => {
|
|
const { queryByText } = renderWithProvider(
|
|
<OnboardingMetametrics />,
|
|
mockStore,
|
|
);
|
|
|
|
const confirmAgree = queryByText(onboardingMetametricsAgree.message);
|
|
|
|
fireEvent.click(confirmAgree);
|
|
|
|
await waitFor(() => {
|
|
expect(setParticipateInMetaMetrics).toHaveBeenCalledWith(true);
|
|
expect(mockPushHistory).toHaveBeenCalledWith(
|
|
ONBOARDING_CREATE_PASSWORD_ROUTE,
|
|
);
|
|
});
|
|
});
|
|
|
|
it('should set setParticipateInMetaMetrics to false when clicking cancel', async () => {
|
|
const { queryByText } = renderWithProvider(
|
|
<OnboardingMetametrics />,
|
|
mockStore,
|
|
);
|
|
|
|
const confirmCancel = queryByText(onboardingMetametricsDisagree.message);
|
|
|
|
fireEvent.click(confirmCancel);
|
|
|
|
await waitFor(() => {
|
|
expect(setParticipateInMetaMetrics).toHaveBeenCalledWith(false);
|
|
expect(mockPushHistory).toHaveBeenCalledWith(
|
|
ONBOARDING_CREATE_PASSWORD_ROUTE,
|
|
);
|
|
});
|
|
});
|
|
});
|