You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
2.1 KiB
60 lines
2.1 KiB
3 years ago
|
import React from 'react';
|
||
|
import { fireEvent } from '@testing-library/react';
|
||
|
import configureMockStore from 'redux-mock-store';
|
||
|
import reactRouterDom from 'react-router-dom';
|
||
|
import { renderWithProvider } from '../../../../test/lib/render-helpers';
|
||
|
import { ONBOARDING_COMPLETION_ROUTE } from '../../../helpers/constants/routes';
|
||
|
import SecureYourWallet from './secure-your-wallet';
|
||
|
|
||
|
describe('Secure Your Wallet Onboarding View', () => {
|
||
|
const useHistoryOriginal = reactRouterDom.useHistory;
|
||
|
const pushMock = jest.fn();
|
||
|
beforeAll(() => {
|
||
|
jest
|
||
|
.spyOn(reactRouterDom, 'useHistory')
|
||
|
.mockImplementation()
|
||
|
.mockReturnValue({ push: pushMock });
|
||
|
});
|
||
|
|
||
|
afterAll(() => {
|
||
|
reactRouterDom.useHistory = useHistoryOriginal;
|
||
|
});
|
||
|
|
||
|
const mockStore = {
|
||
|
metamask: {
|
||
|
provider: {
|
||
|
type: 'test',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const store = configureMockStore()(mockStore);
|
||
|
it('should show a popover asking the user if they want to skip account security if they click "Remind me later"', () => {
|
||
|
const { queryAllByText, getByText } = renderWithProvider(
|
||
|
<SecureYourWallet />,
|
||
|
store,
|
||
|
);
|
||
|
const remindMeLaterButton = getByText('Remind me later (not recommended)');
|
||
|
expect(queryAllByText('Skip Account Security?')).toHaveLength(0);
|
||
|
fireEvent.click(remindMeLaterButton);
|
||
|
expect(queryAllByText('Skip Account Security?')).toHaveLength(1);
|
||
|
});
|
||
|
|
||
|
it('should not be able to click "skip" until "Skip Account Security" terms are agreed to', () => {
|
||
|
const { getByText, getByTestId } = renderWithProvider(
|
||
|
<SecureYourWallet />,
|
||
|
store,
|
||
|
);
|
||
|
const remindMeLaterButton = getByText('Remind me later (not recommended)');
|
||
|
fireEvent.click(remindMeLaterButton);
|
||
|
const skipButton = getByText('Skip');
|
||
|
fireEvent.click(skipButton);
|
||
|
expect(pushMock).toHaveBeenCalledTimes(0);
|
||
|
const checkbox = getByTestId('skip-srp-backup-popover-checkbox');
|
||
|
fireEvent.click(checkbox);
|
||
|
fireEvent.click(skipButton);
|
||
|
expect(pushMock).toHaveBeenCalledTimes(1);
|
||
|
expect(pushMock).toHaveBeenCalledWith(ONBOARDING_COMPLETION_ROUTE);
|
||
|
});
|
||
|
});
|