ant-design/components/slider/__tests__/tooltip.test.tsx
Wanpan c150885f5c
fix: Slider show empty tooltip when tooltip.formatter is falsy (#48673)
* fix: slider tooltip is cant hide

* fix: update case description
2024-04-29 10:37:11 +08:00

79 lines
2.1 KiB
TypeScript

import React from 'react';
import Slider from '..';
import { fireEvent, render, waitFakeTimer } from '../../../tests/utils';
import type { TooltipProps, TooltipRef } from '../../tooltip';
function tooltipProps(): TooltipProps {
return (global as any).tooltipProps;
}
jest.mock('../../tooltip', () => {
const ReactReal: typeof React = jest.requireActual('react');
const Tooltip = jest.requireActual('../../tooltip');
const TooltipComponent = Tooltip.default;
return ReactReal.forwardRef<TooltipRef, TooltipProps>((props, ref) => {
(global as any).tooltipProps = props;
return <TooltipComponent {...props} ref={ref} />;
});
});
describe('Slider.Tooltip', () => {
beforeEach(() => {
jest.useFakeTimers();
});
afterEach(() => {
jest.clearAllTimers();
jest.useRealTimers();
});
it('Correct show the tooltip', async () => {
const { container } = render(<Slider defaultValue={30} />);
const handleEle = container.querySelector('.ant-slider-handle')!;
// Enter
fireEvent.mouseEnter(handleEle);
await waitFakeTimer();
expect(tooltipProps().open).toBeTruthy();
// Down
fireEvent.mouseDown(handleEle);
await waitFakeTimer();
expect(tooltipProps().open).toBeTruthy();
// Move(Leave)
fireEvent.mouseLeave(handleEle);
await waitFakeTimer();
expect(tooltipProps().open).toBeTruthy();
// Up
fireEvent.mouseUp(handleEle);
await waitFakeTimer();
expect(tooltipProps().open).toBeFalsy();
});
it('When format equals null, tooltip does not display', async () => {
// https://github.com/ant-design/ant-design/issues/48668
const { container } = render(<Slider defaultValue={30} tooltip={{ formatter: null }} />);
const handleEle = container.querySelector('.ant-slider-handle')!;
// Enter
fireEvent.mouseEnter(handleEle);
await waitFakeTimer();
expect(tooltipProps().open).toBeFalsy();
// Down
fireEvent.mouseDown(handleEle);
await waitFakeTimer();
expect(tooltipProps().open).toBeFalsy();
// Move(Leave)
fireEvent.mouseLeave(handleEle);
await waitFakeTimer();
expect(tooltipProps().open).toBeFalsy();
});
});