-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(preview): remove dependency on isSignRemoveInterstitialEnabled
- Loading branch information
1 parent
5d78c11
commit b53a798
Showing
2 changed files
with
51 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 33 additions & 38 deletions
71
src/elements/content-sidebar/__tests__/SidebarNavSign.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,80 +1,75 @@ | ||
import React from 'react'; | ||
import { render, fireEvent } from '@testing-library/react'; | ||
import { IntlProvider } from 'react-intl'; | ||
import SidebarNavSign from '../SidebarNavSign'; | ||
// @ts-ignore Module is written in Flow | ||
import FeatureProvider from '../../common/feature-checking/FeatureProvider'; | ||
// @ts-ignore Module is written in Flow | ||
import messages from '../messages'; | ||
// @ts-ignore Module is written in Flow | ||
import localize from '../../../../test/support/i18n.js'; | ||
|
||
jest.unmock('react-intl'); | ||
|
||
describe('elements/content-sidebar/SidebarNavSign', () => { | ||
const onClickRequestSignature = jest.fn(); | ||
const onClickSignMyself = jest.fn(); | ||
const signLabel = localize(messages.boxSignRequestSignature.id); | ||
const requestSignatureButtonText = localize(messages.boxSignRequestSignature.id); | ||
const signMyselfButtonText = localize(messages.boxSignSignMyself.id); | ||
|
||
const renderComponent = (props = {}, features = {}) => | ||
render( | ||
<FeatureProvider features={features}> | ||
<SidebarNavSign {...props} /> | ||
</FeatureProvider>, | ||
{ | ||
wrapper: ({ children }: { children?: React.ReactNode }) => ( | ||
<IntlProvider locale="en-US">{children}</IntlProvider> | ||
), | ||
}, | ||
); | ||
|
||
test.each([true, false])('should render sign button', isRemoveInterstitialEnabled => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: isRemoveInterstitialEnabled, | ||
}, | ||
}; | ||
test('should render sign button', () => { | ||
const wrapper = renderComponent(); | ||
|
||
const wrapper = renderComponent({}, features); | ||
expect(wrapper.getByTestId('sign-button')).toBeVisible(); | ||
expect(wrapper.getByLabelText(signLabel)).toBeVisible(); | ||
}); | ||
|
||
test('should call correct handler when sign button is clicked', () => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: false, | ||
onClick: onClickRequestSignature, | ||
}, | ||
}; | ||
const { getByTestId } = renderComponent({}, features); | ||
|
||
fireEvent.click(getByTestId('sign-button')); | ||
test('should open dropdown with 2 menu items when sign button is clicked', () => { | ||
const wrapper = renderComponent(); | ||
|
||
expect(onClickRequestSignature).toBeCalled(); | ||
}); | ||
fireEvent.click(wrapper.getByLabelText(signLabel)); | ||
|
||
test('should open dropdown with 2 menu items when sign button is clicked', () => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: true, | ||
}, | ||
}; | ||
const { getByTestId } = renderComponent({}, features); | ||
fireEvent.click(getByTestId('sign-button')); | ||
expect(getByTestId('sign-request-signature-button')).toBeVisible(); | ||
expect(getByTestId('sign-sign-myself-button')).toBeVisible(); | ||
expect(wrapper.getByText(requestSignatureButtonText)).toBeVisible(); | ||
expect(wrapper.getByText(signMyselfButtonText)).toBeVisible(); | ||
}); | ||
|
||
test('should call correct handler when request signature option is clicked', () => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: true, | ||
onClick: onClickRequestSignature, | ||
}, | ||
}; | ||
const { getByTestId } = renderComponent({}, features); | ||
fireEvent.click(getByTestId('sign-button')); | ||
fireEvent.click(getByTestId('sign-request-signature-button')); | ||
const wrapper = renderComponent({}, features); | ||
|
||
fireEvent.click(wrapper.getByLabelText(signLabel)); | ||
fireEvent.click(wrapper.getByText(requestSignatureButtonText)); | ||
|
||
expect(onClickRequestSignature).toBeCalled(); | ||
}); | ||
|
||
test('should call correct handler when sign myself option is clicked', () => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: true, | ||
onClickSignMyself, | ||
}, | ||
}; | ||
const { getByTestId } = renderComponent({}, features); | ||
fireEvent.click(getByTestId('sign-button')); | ||
fireEvent.click(getByTestId('sign-sign-myself-button')); | ||
const wrapper = renderComponent({}, features); | ||
|
||
fireEvent.click(wrapper.getByLabelText(signLabel)); | ||
fireEvent.click(wrapper.getByText(signMyselfButtonText)); | ||
|
||
expect(onClickSignMyself).toBeCalled(); | ||
}); | ||
}); |