mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-13 15:49:10 +08:00
132 lines
4.4 KiB
TypeScript
132 lines
4.4 KiB
TypeScript
import React from 'react';
|
|
import Slider from '..';
|
|
import focusTest from '../../../tests/shared/focusTest';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
import { sleep, render, fireEvent } from '../../../tests/utils';
|
|
import ConfigProvider from '../../config-provider';
|
|
import SliderTooltip from '../SliderTooltip';
|
|
|
|
describe('Slider', () => {
|
|
mountTest(Slider);
|
|
rtlTest(Slider);
|
|
focusTest(Slider, { testLib: true });
|
|
|
|
it('should show tooltip when hovering slider handler', () => {
|
|
const { container } = render(<Slider defaultValue={30} />);
|
|
|
|
fireEvent.mouseEnter(container.querySelector('.ant-slider-handle')!);
|
|
expect(document.querySelector('.ant-tooltip')).toMatchSnapshot();
|
|
|
|
fireEvent.mouseLeave(container.querySelector('.ant-slider-handle')!);
|
|
|
|
expect(document.querySelector('.ant-tooltip')).toMatchSnapshot();
|
|
});
|
|
|
|
it('should show correct placement tooltip when set tooltipPlacement', () => {
|
|
const { container } = render(<Slider vertical defaultValue={30} tooltipPlacement="left" />);
|
|
|
|
fireEvent.mouseEnter(container.querySelector('.ant-slider-handle')!);
|
|
expect(document.querySelector('.ant-tooltip')).toMatchSnapshot();
|
|
|
|
fireEvent.mouseLeave(container.querySelector('.ant-slider-handle')!);
|
|
expect(document.querySelector('.ant-tooltip')).toMatchSnapshot();
|
|
});
|
|
|
|
it('when tooltipVisible is true, tooltip should show always, or should never show', () => {
|
|
const { container: container1 } = render(<Slider defaultValue={30} tooltipVisible />);
|
|
expect(
|
|
container1.querySelector('.ant-tooltip-content')!.className.includes('ant-tooltip-hidden'),
|
|
).toBeFalsy();
|
|
|
|
fireEvent.mouseEnter(container1.querySelector('.ant-slider-handle')!);
|
|
expect(
|
|
container1.querySelector('.ant-tooltip-content')!.className.includes('ant-tooltip-hidden'),
|
|
).toBeFalsy();
|
|
|
|
fireEvent.click(container1.querySelector('.ant-slider-handle')!);
|
|
expect(
|
|
container1.querySelector('.ant-tooltip-content')!.className.includes('ant-tooltip-hidden'),
|
|
).toBeFalsy();
|
|
|
|
const { container: container2 } = render(<Slider defaultValue={30} tooltipVisible={false} />);
|
|
expect(container2.querySelector('.ant-tooltip-content')!).toBeNull();
|
|
});
|
|
|
|
it('when step is null, thumb can only be slided to the specific mark', () => {
|
|
const intentionallyWrongValue = 40;
|
|
const marks = {
|
|
0: '0',
|
|
48: '48',
|
|
100: '100',
|
|
};
|
|
|
|
const { container } = render(
|
|
<Slider marks={marks} defaultValue={intentionallyWrongValue} step={null} tooltipVisible />,
|
|
);
|
|
expect(container.querySelector('.ant-slider-handle')!.getAttribute('aria-valuenow')).toBe('48');
|
|
});
|
|
|
|
it('when step is not null, thumb can be slided to the multiples of step', () => {
|
|
const marks = {
|
|
0: '0',
|
|
48: '48',
|
|
100: '100',
|
|
};
|
|
|
|
const { container } = render(
|
|
<Slider marks={marks} defaultValue={49} step={1} tooltipVisible />,
|
|
);
|
|
expect(container.querySelector('.ant-slider-handle')!.getAttribute('aria-valuenow')).toBe('49');
|
|
});
|
|
|
|
it('when step is undefined, thumb can be slided to the multiples of step', () => {
|
|
const marks = {
|
|
0: '0',
|
|
48: '48',
|
|
100: '100',
|
|
};
|
|
|
|
const { container } = render(
|
|
<Slider marks={marks} defaultValue={49} step={undefined} tooltipVisible />,
|
|
);
|
|
expect(container.querySelector('.ant-slider-handle')!.getAttribute('aria-valuenow')).toBe('49');
|
|
});
|
|
|
|
it('should render in RTL direction', () => {
|
|
const { container } = render(
|
|
<ConfigProvider direction="rtl">
|
|
<Slider defaultValue={30} tooltipVisible />
|
|
</ConfigProvider>,
|
|
);
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
|
|
it('should keepAlign by calling forcePopupAlign', async () => {
|
|
let ref: any;
|
|
render(
|
|
<SliderTooltip
|
|
title="30"
|
|
visible
|
|
ref={node => {
|
|
ref = node;
|
|
}}
|
|
/>,
|
|
);
|
|
ref.forcePopupAlign = jest.fn();
|
|
await sleep(20);
|
|
expect(ref.forcePopupAlign).toHaveBeenCalled();
|
|
});
|
|
|
|
it('tipFormatter should not crash with undefined value', () => {
|
|
[undefined, null].forEach(value => {
|
|
render(<Slider value={value as any} tooltipVisible />);
|
|
});
|
|
});
|
|
it('step should not crash with undefined value', () => {
|
|
[undefined, null].forEach(value => {
|
|
render(<Slider step={value} tooltipVisible />);
|
|
});
|
|
});
|
|
});
|