You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
184 lines
4.9 KiB
184 lines
4.9 KiB
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 => {
|
|
return 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);
|
|
});
|
|
});
|
|
|