ant-design/components/spin/__tests__/delay.test.tsx

57 lines
1.8 KiB
TypeScript
Raw Normal View History

2022-06-22 14:57:09 +08:00
import React from 'react';
import { render } from '@testing-library/react';
import { debounce } from 'throttle-debounce';
2019-01-05 12:23:20 +08:00
import Spin from '..';
import { waitFakeTimer } from '../../../tests/utils';
2019-01-05 12:23:20 +08:00
jest.mock('throttle-debounce');
(debounce as jest.Mock).mockImplementation((...args: any[]) =>
jest.requireActual('throttle-debounce').debounce(...args),
);
2019-01-05 12:23:20 +08:00
describe('delay spinning', () => {
2019-01-13 21:18:38 +08:00
it("should render with delay when it's mounted with spinning=true and delay", () => {
const { container } = render(<Spin spinning delay={500} />);
expect(container.querySelector('.ant-spin')?.classList.contains('ant-spin-spinning')).toEqual(
false,
);
2019-01-05 12:23:20 +08:00
});
it('should render when delay is init set', async () => {
jest.useFakeTimers();
const { container } = render(<Spin spinning delay={100} />);
2019-01-05 12:23:20 +08:00
expect(container.querySelector('.ant-spin-spinning')).toBeFalsy();
2019-01-05 12:23:20 +08:00
await waitFakeTimer();
2019-01-05 12:23:20 +08:00
expect(container.querySelector('.ant-spin-spinning')).toBeTruthy();
jest.clearAllTimers();
jest.useRealTimers();
2019-01-05 12:23:20 +08:00
});
it('should cancel debounce function when unmount', () => {
const debouncedFn = jest.fn();
const cancel = jest.fn();
(debouncedFn as any).cancel = cancel;
(debounce as jest.Mock).mockReturnValueOnce(debouncedFn);
const { unmount } = render(<Spin spinning delay={100} />);
expect(cancel).not.toHaveBeenCalled();
unmount();
expect(cancel).toHaveBeenCalled();
});
it('should close immediately', async () => {
jest.useFakeTimers();
const { container, rerender } = render(<Spin spinning delay={500} />);
await waitFakeTimer();
expect(container.querySelector('.ant-spin-spinning')).toBeTruthy();
rerender(<Spin spinning={false} delay={500} />);
expect(container.querySelector('.ant-spin-spinning')).toBeFalsy();
});
2019-01-05 12:23:20 +08:00
});