mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
775d1800bb
* chore(deps-dev): bump eslint-config-prettier from 6.15.0 to 7.0.0 Bumps [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) from 6.15.0 to 7.0.0. - [Release notes](https://github.com/prettier/eslint-config-prettier/releases) - [Changelog](https://github.com/prettier/eslint-config-prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-config-prettier/compare/v6.15.0...v7.0.0) Signed-off-by: dependabot[bot] <support@github.com> * chore: fix eslint style * chore: prettier code style Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: afc163 <afc163@gmail.com>
185 lines
4.9 KiB
JavaScript
185 lines
4.9 KiB
JavaScript
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { UserOutlined } from '@ant-design/icons';
|
|
import notification, { getInstance } from '..';
|
|
|
|
describe('notification', () => {
|
|
beforeEach(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
afterEach(() => {
|
|
jest.useRealTimers();
|
|
notification.destroy();
|
|
});
|
|
|
|
it('not duplicate create holder', () => {
|
|
const originRender = ReactDOM.render;
|
|
const argsList = [];
|
|
const spyRender = jest.spyOn(ReactDOM, 'render').mockImplementation((...args) => {
|
|
argsList.push(args);
|
|
});
|
|
for (let i = 0; i < 5; i += 1) {
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
prefixCls: 'additional-holder',
|
|
});
|
|
}
|
|
|
|
argsList.forEach(args => {
|
|
originRender(...args);
|
|
});
|
|
|
|
const count = document.querySelectorAll('.additional-holder').length;
|
|
expect(count).toEqual(1);
|
|
|
|
spyRender.mockRestore();
|
|
});
|
|
|
|
it('should be able to hide manually', async () => {
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
key: '1',
|
|
});
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
key: '2',
|
|
});
|
|
|
|
await Promise.resolve();
|
|
expect(document.querySelectorAll('.ant-notification-notice').length).toBe(2);
|
|
|
|
notification.close('1');
|
|
jest.runAllTimers();
|
|
expect((await getInstance('ant-notification-topRight')).component.state.notices).toHaveLength(
|
|
1,
|
|
);
|
|
|
|
notification.close('2');
|
|
jest.runAllTimers();
|
|
expect((await getInstance('ant-notification-topRight')).component.state.notices).toHaveLength(
|
|
0,
|
|
);
|
|
});
|
|
|
|
it('should be able to destroy globally', async () => {
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
});
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
});
|
|
await Promise.resolve();
|
|
expect(document.querySelectorAll('.ant-notification').length).toBe(1);
|
|
expect(document.querySelectorAll('.ant-notification-notice').length).toBe(2);
|
|
notification.destroy();
|
|
await Promise.resolve();
|
|
expect(document.querySelectorAll('.ant-notification').length).toBe(0);
|
|
expect(document.querySelectorAll('.ant-notification-notice').length).toBe(0);
|
|
});
|
|
|
|
it('should be able to destroy after config', () => {
|
|
notification.config({
|
|
bottom: 100,
|
|
});
|
|
notification.destroy();
|
|
});
|
|
|
|
it('should be able to config rtl', () => {
|
|
notification.config({
|
|
rtl: true,
|
|
});
|
|
notification.open({
|
|
message: 'whatever',
|
|
});
|
|
expect(document.querySelectorAll('.ant-notification-rtl').length).toBe(1);
|
|
});
|
|
|
|
it('should be able to config prefixCls', () => {
|
|
notification.config({
|
|
prefixCls: 'prefix-test',
|
|
});
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
});
|
|
expect(document.querySelectorAll('.ant-notification-notice').length).toBe(0);
|
|
expect(document.querySelectorAll('.prefix-test-notice').length).toBe(1);
|
|
notification.config({
|
|
prefixCls: 'ant-notification',
|
|
});
|
|
});
|
|
|
|
it('should be able to open with icon', async () => {
|
|
const openNotificationWithIcon = async type => {
|
|
const iconPrefix = '.ant-notification-notice-icon';
|
|
notification[type]({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
description: 'This is the content of the notification.',
|
|
});
|
|
await Promise.resolve();
|
|
expect(document.querySelectorAll(`${iconPrefix}-${type}`).length).toBe(1);
|
|
};
|
|
|
|
const promises = ['success', 'info', 'warning', 'error'].map(type =>
|
|
openNotificationWithIcon(type),
|
|
);
|
|
|
|
await Promise.all(promises);
|
|
});
|
|
|
|
it('trigger onClick', () => {
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
});
|
|
expect(document.querySelectorAll('.ant-notification').length).toBe(1);
|
|
});
|
|
|
|
it('support closeIcon', () => {
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
closeIcon: <span className="test-customize-icon" />,
|
|
});
|
|
expect(document.querySelectorAll('.test-customize-icon').length).toBe(1);
|
|
});
|
|
|
|
it('support config closeIcon', () => {
|
|
notification.config({
|
|
closeIcon: <span className="test-customize-icon" />,
|
|
});
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
closeIcon: <span className="test-customize-icon" />,
|
|
});
|
|
expect(document.querySelectorAll('.test-customize-icon').length).toBe(1);
|
|
});
|
|
|
|
it('support config duration', () => {
|
|
notification.config({
|
|
duration: 0,
|
|
});
|
|
notification.open({
|
|
message: 'whatever',
|
|
});
|
|
expect(document.querySelectorAll('.ant-notification').length).toBe(1);
|
|
});
|
|
|
|
it('support icon', () => {
|
|
notification.open({
|
|
message: 'Notification Title',
|
|
duration: 0,
|
|
icon: <UserOutlined />,
|
|
});
|
|
expect(document.querySelectorAll('.anticon-user').length).toBe(1);
|
|
});
|
|
});
|