ant-design/components/alert/__tests__/index.test.js

67 lines
2.0 KiB
JavaScript
Raw Normal View History

2018-05-25 21:56:57 +08:00
import React from 'react';
import { mount } from 'enzyme';
import Alert from '..';
const { ErrorBoundary } = Alert;
2018-05-25 21:56:57 +08:00
describe('Alert', () => {
beforeAll(() => {
jest.useFakeTimers();
});
afterAll(() => {
jest.useRealTimers();
});
it('could be closed', () => {
const onClose = jest.fn();
const afterClose = jest.fn();
const wrapper = mount(
<Alert
message="Warning Text Warning Text Warning TextW arning Text Warning Text Warning TextWarning Text"
type="warning"
closable
onClose={onClose}
afterClose={afterClose}
2018-12-07 16:17:45 +08:00
/>,
2018-05-25 21:56:57 +08:00
);
wrapper.find('.ant-alert-close-icon').simulate('click');
expect(onClose).toHaveBeenCalled();
2018-05-25 21:56:57 +08:00
jest.runAllTimers();
expect(afterClose).toHaveBeenCalled();
2018-05-25 21:56:57 +08:00
});
describe('data and aria props', () => {
it('sets data attributes on input', () => {
2018-12-07 16:17:45 +08:00
const wrapper = mount(<Alert data-test="test-id" data-id="12345" />);
const input = wrapper.find('.ant-alert').getDOMNode();
expect(input.getAttribute('data-test')).toBe('test-id');
expect(input.getAttribute('data-id')).toBe('12345');
});
it('sets aria attributes on input', () => {
2018-12-07 16:17:45 +08:00
const wrapper = mount(<Alert aria-describedby="some-label" />);
const input = wrapper.find('.ant-alert').getDOMNode();
expect(input.getAttribute('aria-describedby')).toBe('some-label');
});
it('sets role attribute on input', () => {
2018-12-07 16:17:45 +08:00
const wrapper = mount(<Alert role="status" />);
const input = wrapper.find('.ant-alert').getDOMNode();
expect(input.getAttribute('role')).toBe('status');
});
});
const testIt = process.env.REACT === '15' ? it.skip : it;
testIt('ErrorBoundary', () => {
const ThrowError = () => <NotExisted />; // eslint-disable-line
const wrapper = mount(
<ErrorBoundary>
<ThrowError />
</ErrorBoundary>,
);
// eslint-disable-next-line jest/no-standalone-expect
expect(wrapper.render()).toMatchSnapshot();
});
2018-05-25 21:56:57 +08:00
});