mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-03 22:54:29 +01:00
0306422bbf
Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: Brad Decker <bhdecker84@gmail.com> Co-authored-by: David Walsh <davidwalsh83@gmail.com> Co-authored-by: Howard Braham <howrad@gmail.com> * change js to tsx * update to typescript * add labels to circle animation * add willHide prop to hold to reveal modal * add test * convert to design system * fix lint * fix type * bump coverage * rename * remove comments * remove ts comment and add fix exhuastive dep check * update coverage * add hide modal test * use banneralert * update label * remove unused * fix text * update aria label messages * change exportAccountAndGetPrivateKey to be async * fix lint * update coverage target * update coverage * update input component * update coverage * update coverage * fix blank line * use && * move plainKey to under !privateKeyInput * update hold modal to display srp and private key message * fix styling * fix lint and test * fix unused locales * remove redundent check * update storybook * fix text alignment * fix lint * update snapshot * fix test * update coverage * fix merge conflict * refactor * fix variant * update snapshot * fix test after merge * fix test after merge conflict * fix label text * update to use label component
182 lines
5.5 KiB
JavaScript
182 lines
5.5 KiB
JavaScript
import React from 'react';
|
|
import configureMockState from 'redux-mock-store';
|
|
import { fireEvent, waitFor } from '@testing-library/react';
|
|
import thunk from 'redux-thunk';
|
|
import { renderWithProvider } from '../../../../../test/lib/render-helpers';
|
|
import mockState from '../../../../../test/data/mock-state.json';
|
|
import {
|
|
holdToRevealContent1,
|
|
holdToRevealContent2,
|
|
holdToRevealContent3,
|
|
holdToRevealContent4,
|
|
holdToRevealContent5,
|
|
holdToRevealSRPTitle,
|
|
} from '../../../../../app/_locales/en/messages.json';
|
|
import {
|
|
MetaMetricsEventCategory,
|
|
MetaMetricsEventKeyType,
|
|
MetaMetricsEventName,
|
|
} from '../../../../../shared/constants/metametrics';
|
|
import { MetaMetricsContext } from '../../../../contexts/metametrics';
|
|
import HoldToRevealModal from '.';
|
|
|
|
describe('Hold to Reveal Modal', () => {
|
|
const mockStore = configureMockState([thunk])(mockState);
|
|
const onLongPressStub = jest.fn();
|
|
const hideModalStub = jest.fn();
|
|
|
|
afterEach(() => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
it('should render the srp warning text and button', () => {
|
|
const { getByText } = renderWithProvider(
|
|
<HoldToRevealModal
|
|
onLongPressed={onLongPressStub}
|
|
hideModal={hideModalStub}
|
|
holdToRevealType="SRP"
|
|
/>,
|
|
mockStore,
|
|
);
|
|
|
|
const holdButton = getByText('Hold to reveal SRP');
|
|
expect(holdButton).toBeInTheDocument();
|
|
|
|
const warningTitle = getByText(holdToRevealSRPTitle.message);
|
|
expect(warningTitle).toBeInTheDocument();
|
|
const warningText1 = getByText(
|
|
holdToRevealContent1.message.replace(' $1', ''),
|
|
);
|
|
expect(warningText1).toBeInTheDocument();
|
|
|
|
const warningText2 = getByText(holdToRevealContent2.message);
|
|
expect(warningText2).toBeInTheDocument();
|
|
|
|
const warningText3 = getByText(
|
|
holdToRevealContent3.message.replace(' $1 $2', ''),
|
|
);
|
|
expect(warningText3).toBeInTheDocument();
|
|
|
|
const warningText4 = getByText(holdToRevealContent4.message);
|
|
expect(warningText4).toBeInTheDocument();
|
|
|
|
const warningText5 = getByText(holdToRevealContent5.message);
|
|
expect(warningText5).toBeInTheDocument();
|
|
|
|
fireEvent.click(holdButton);
|
|
|
|
expect(holdButton).toBeDefined();
|
|
|
|
fireEvent.mouseUp(holdButton);
|
|
|
|
expect(holdButton).toBeDefined();
|
|
});
|
|
|
|
it('should should execute onLongPressed after long press', async () => {
|
|
const { getByText, queryByLabelText } = renderWithProvider(
|
|
<HoldToRevealModal
|
|
onLongPressed={onLongPressStub}
|
|
hideModal={hideModalStub}
|
|
/>,
|
|
mockStore,
|
|
);
|
|
|
|
const holdButton = getByText('Hold to reveal SRP');
|
|
const circleLocked = queryByLabelText('hold to reveal circle locked');
|
|
|
|
fireEvent.mouseDown(holdButton);
|
|
fireEvent.transitionEnd(circleLocked);
|
|
|
|
const circleUnlocked = queryByLabelText('hold to reveal circle unlocked');
|
|
fireEvent.animationEnd(circleUnlocked);
|
|
|
|
await waitFor(() => {
|
|
expect(holdButton.firstChild).toHaveClass(
|
|
'box hold-to-reveal-button__icon-container box--flex-direction-row',
|
|
);
|
|
expect(onLongPressStub).toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
it('should remain open if long pressed was not complete', async () => {
|
|
const { getByText, queryByLabelText } = renderWithProvider(
|
|
<HoldToRevealModal
|
|
onLongPressed={onLongPressStub}
|
|
hideModal={hideModalStub}
|
|
/>,
|
|
mockStore,
|
|
);
|
|
|
|
const holdButton = getByText('Hold to reveal SRP');
|
|
|
|
fireEvent.click(holdButton);
|
|
|
|
const circleLocked = queryByLabelText('hold to reveal circle locked');
|
|
const circleUnlocked = queryByLabelText('hold to reveal circle unlocked');
|
|
|
|
await waitFor(() => {
|
|
expect(circleLocked).toBeInTheDocument();
|
|
expect(circleUnlocked).not.toBeInTheDocument();
|
|
expect(onLongPressStub).not.toHaveBeenCalled();
|
|
expect(hideModalStub).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
|
|
it('should fire event when closing', async () => {
|
|
const mockTrackEvent = jest.fn();
|
|
|
|
const { queryByLabelText } = renderWithProvider(
|
|
<MetaMetricsContext.Provider value={mockTrackEvent}>
|
|
<HoldToRevealModal
|
|
onLongPressed={onLongPressStub}
|
|
hideModal={hideModalStub}
|
|
/>
|
|
,
|
|
</MetaMetricsContext.Provider>,
|
|
mockStore,
|
|
);
|
|
|
|
const closeButton = queryByLabelText('Close');
|
|
|
|
fireEvent.click(closeButton);
|
|
|
|
await waitFor(() => {
|
|
expect(mockTrackEvent).toHaveBeenCalledWith({
|
|
category: MetaMetricsEventCategory.Keys,
|
|
event: MetaMetricsEventName.SrpHoldToRevealCloseClicked,
|
|
properties: {
|
|
key_type: MetaMetricsEventKeyType.Srp,
|
|
},
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should not hide modal after completing long press if set to false', async () => {
|
|
const { getByText, queryByLabelText } = renderWithProvider(
|
|
<HoldToRevealModal
|
|
onLongPressed={onLongPressStub}
|
|
hideModal={hideModalStub}
|
|
willHide={false}
|
|
/>,
|
|
mockStore,
|
|
);
|
|
|
|
const holdButton = getByText('Hold to reveal SRP');
|
|
const circleLocked = queryByLabelText('hold to reveal circle locked');
|
|
|
|
fireEvent.mouseDown(holdButton);
|
|
fireEvent.transitionEnd(circleLocked);
|
|
|
|
const circleUnlocked = queryByLabelText('hold to reveal circle unlocked');
|
|
fireEvent.animationEnd(circleUnlocked);
|
|
|
|
await waitFor(() => {
|
|
expect(holdButton.firstChild).toHaveClass(
|
|
'box hold-to-reveal-button__icon-container box--flex-direction-row',
|
|
);
|
|
expect(onLongPressStub).toHaveBeenCalled();
|
|
expect(hideModalStub).not.toHaveBeenCalled();
|
|
});
|
|
});
|
|
});
|