Files
react/components/shared/__tests__/backdrop.test.tsx
witt 43efed8e79 fix(modal): fix typography and alignment on mobile (#382)
* fix(modal): fix layout of modal actions on safari mobile

* fix(modal): fix vertical alignment on safari mobile

* test(modal): update snapshots

* docs: hide menu when modal active

* docs(modal): add overlong case
2020-09-03 09:52:42 +08:00

88 lines
2.6 KiB
TypeScript

import React from 'react'
import { mount } from 'enzyme'
import Backdrop from '../backdrop'
import { nativeEvent, updateWrapper } from 'tests/utils'
describe('Backdrop', () => {
it('should render correctly', () => {
const wrapper = mount(
<Backdrop visible>
<span>test-value</span>
</Backdrop>,
)
expect(wrapper.html()).toMatchSnapshot()
expect(() => wrapper.unmount()).not.toThrow()
})
it('should be shown or hidden by prop', async () => {
const wrapper = mount(
<Backdrop>
<span>test-value</span>
</Backdrop>,
)
expect(wrapper.find('.backdrop').length).toBe(0)
wrapper.setProps({ visible: true })
await updateWrapper(wrapper, 350)
expect(wrapper.find('.backdrop').length).not.toBe(0)
})
it('background click events should be captured', () => {
const handler = jest.fn()
const wrapper = mount(
<Backdrop onClick={handler} visible>
<span>test-value</span>
</Backdrop>,
)
wrapper.find('.backdrop').simulate('click', nativeEvent)
expect(handler).toHaveBeenCalled()
handler.mockRestore()
})
it('should be no error when handler missing', () => {
const wrapper = mount(
<Backdrop visible>
<span>test-value</span>
</Backdrop>,
)
wrapper.find('.backdrop').simulate('click', nativeEvent)
expect(() => wrapper.unmount()).not.toThrow()
})
it('should be prevent event from the container', () => {
const handler = jest.fn()
const wrapper = mount(
<Backdrop onClick={handler} visible>
<span>test-value</span>
</Backdrop>,
)
wrapper.find('.content').simulate('click', nativeEvent)
expect(handler).not.toHaveBeenCalled()
handler.mockRestore()
})
it('backdrop handler should ignore click events from content', async () => {
const handler = jest.fn()
const wrapper = mount(
<Backdrop visible onClick={handler}>
<span>test-value</span>
</Backdrop>,
)
/**
* In simulation,`mousedown` and `mouseup`not directly triiger `click` event,
* the click event below is just for simulation.
*/
wrapper.find('.content').simulate('mousedown')
wrapper.find('.backdrop').simulate('click', nativeEvent)
wrapper.find('.backdrop').simulate('mouseup')
await updateWrapper(wrapper)
expect(handler).not.toHaveBeenCalled()
wrapper.find('.backdrop').simulate('mousedown')
wrapper.find('.backdrop').simulate('click', nativeEvent)
wrapper.find('.backdrop').simulate('mouseup')
await updateWrapper(wrapper)
expect(handler).toHaveBeenCalled()
})
})