-
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
f6a9496
commit f4855fe
Showing
2 changed files
with
46 additions
and
81 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
78 changes: 28 additions & 50 deletions
78
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,58 @@ | ||
import * as React from 'react'; | ||
import { render, fireEvent } from '@testing-library/react'; | ||
|
||
import { userEvent } from '@testing-library/user-event'; | ||
import { render, screen } from '../../../test-utils/testing-library'; | ||
import SidebarNavSign from '../SidebarNavSign'; | ||
// @ts-ignore Module is written in Flow | ||
import FeatureProvider from '../../common/feature-checking/FeatureProvider'; | ||
|
||
describe('elements/content-sidebar/SidebarNavSign', () => { | ||
const onClickRequestSignature = jest.fn(); | ||
const onClickSignMyself = jest.fn(); | ||
|
||
const renderComponent = (props = {}, features = {}) => | ||
render( | ||
<FeatureProvider features={features}> | ||
<SidebarNavSign {...props} /> | ||
</FeatureProvider>, | ||
); | ||
render(<SidebarNavSign {...props} />, { | ||
wrapperProps: { features }, | ||
}); | ||
|
||
test.each([true, false])('should render sign button', isRemoveInterstitialEnabled => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: isRemoveInterstitialEnabled, | ||
}, | ||
}; | ||
test('should render sign button', async () => { | ||
renderComponent(); | ||
|
||
const wrapper = renderComponent({}, features); | ||
expect(wrapper.getByTestId('sign-button')).toBeVisible(); | ||
expect(screen.getByRole('button', { name: 'Request Signature' })).toBeInTheDocument(); | ||
}); | ||
|
||
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', async () => { | ||
renderComponent(); | ||
|
||
expect(onClickRequestSignature).toBeCalled(); | ||
}); | ||
await userEvent.click(screen.getByRole('button', { name: 'Request Signature' })); | ||
|
||
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(screen.getByText('Request Signature')).toBeVisible(); | ||
expect(screen.getByText('Sign Myself')).toBeVisible(); | ||
}); | ||
|
||
test('should call correct handler when request signature option is clicked', () => { | ||
test('should call correct handler when request signature option is clicked', async () => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: true, | ||
onClick: onClickRequestSignature, | ||
}, | ||
}; | ||
const { getByTestId } = renderComponent({}, features); | ||
fireEvent.click(getByTestId('sign-button')); | ||
fireEvent.click(getByTestId('sign-request-signature-button')); | ||
expect(onClickRequestSignature).toBeCalled(); | ||
renderComponent({}, features); | ||
|
||
await userEvent.click(screen.getByRole('button', { name: 'Request Signature' })); | ||
await userEvent.click(screen.getByRole('menuitem', { name: 'Request Signature' })); | ||
|
||
expect(onClickRequestSignature).toHaveBeenCalled(); | ||
}); | ||
|
||
test('should call correct handler when sign myself option is clicked', () => { | ||
test('should call correct handler when sign myself option is clicked', async () => { | ||
const features = { | ||
boxSign: { | ||
isSignRemoveInterstitialEnabled: true, | ||
onClickSignMyself, | ||
}, | ||
}; | ||
const { getByTestId } = renderComponent({}, features); | ||
fireEvent.click(getByTestId('sign-button')); | ||
fireEvent.click(getByTestId('sign-sign-myself-button')); | ||
expect(onClickSignMyself).toBeCalled(); | ||
renderComponent({}, features); | ||
|
||
await userEvent.click(screen.getByRole('button', { name: 'Request Signature' })); | ||
await userEvent.click(screen.getByRole('menuitem', { name: 'Sign Myself' })); | ||
|
||
expect(onClickSignMyself).toHaveBeenCalled(); | ||
}); | ||
}); |