mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 00:49:39 +08:00
407a41a142
* init generate * basic style * basic panel style * update mode panel style * update style * generate More picker * default clear icon * chore: Update separator type * feat: Add ranged start & end className * update range style * Add transition effect * support size config * adjust range style * chore: Auto fill time by showTime * auto set time by format * update disabled style * update seperator style * ranges style * support extra footer style * remove useless test case part is not usable anymore part is already tested in rc-picker * init calendar * all demos * fix calendar basic test * fix time-picker test case * update snapshot * fix tooltip test case & lint * fix locale & style lint * fix compile * fix style * fix style lint * fix calendar style * update rc-picker version * adjust style * move picker placeholder into locale file * update snapshot * add hover style * update picker version * fix icon position & style * update picker version * update deps for pading * fix: align of suffix * feat: Year & Month support range effect * adjust range style to support up-down placement * update rc-picker * update range picker style * adjust extra footer line style * update snapshot * fix: Locale error * fix: style lint * fix: add missing button style deps * update test case * fix firefox additional white line style issue * rollback demo * fix ff additional blue color * docs: Remove placeholder in demo * rangepicker ranges is tag now * connect start / end background color with picker range * update deps * update deps for fixing blur text issue * hide start-end demo * range hover style update * hover range with ranged value * black magic of inner hover style * hover style of range adjust * fix css select miss hit on DatePicker * remove one eslint rule * fade range hovered color * week should alway not show the cell selection * update style of selection * update snapshot * fix style * add margin back * update rc-picker deps * update date & time picker & form style * fix disabled demo & update form style * update docs about allowEmpty * hide arrow in time range picker * add hover & focused style * fix lint * fix style & update snapshot * raise disabled selector proirity * fix disabled today border color * extra footer provides an bottom line * time picker hover support transition background * add padding style * fix Firefox not correct calculate inline-flex * fix style * fix week picker missing today border color * rm useless padding * Force padding to 0 * test coverage * dedup eslint rule * adjust logic to imporve coverage * fix render cell logic
245 lines
7.4 KiB
JavaScript
245 lines
7.4 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Tooltip from '..';
|
|
import Button from '../../button';
|
|
import Switch from '../../switch';
|
|
import Checkbox from '../../checkbox';
|
|
import DatePicker from '../../date-picker';
|
|
import Input from '../../input';
|
|
import Group from '../../input/Group';
|
|
import { sleep } from '../../../tests/utils';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
|
|
describe('Tooltip', () => {
|
|
mountTest(Tooltip);
|
|
|
|
it('check `onVisibleChange` arguments', () => {
|
|
const onVisibleChange = jest.fn();
|
|
|
|
const wrapper = mount(
|
|
<Tooltip title="" mouseEnterDelay={0} mouseLeaveDelay={0} onVisibleChange={onVisibleChange}>
|
|
<div id="hello">Hello world!</div>
|
|
</Tooltip>,
|
|
);
|
|
|
|
// `title` is empty.
|
|
const div = wrapper.find('#hello').at(0);
|
|
div.simulate('mouseenter');
|
|
expect(onVisibleChange).not.toHaveBeenCalled();
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
|
|
div.simulate('mouseleave');
|
|
expect(onVisibleChange).not.toHaveBeenCalled();
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
|
|
// update `title` value.
|
|
wrapper.setProps({ title: 'Have a nice day!' });
|
|
wrapper.find('#hello').simulate('mouseenter');
|
|
expect(onVisibleChange).toHaveBeenLastCalledWith(true);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(true);
|
|
|
|
wrapper.find('#hello').simulate('mouseleave');
|
|
expect(onVisibleChange).toHaveBeenLastCalledWith(false);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
|
|
// add `visible` props.
|
|
wrapper.setProps({ visible: false });
|
|
wrapper.find('#hello').simulate('mouseenter');
|
|
expect(onVisibleChange).toHaveBeenLastCalledWith(true);
|
|
const lastCount = onVisibleChange.mock.calls.length;
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
|
|
// always trigger onVisibleChange
|
|
wrapper.simulate('mouseleave');
|
|
expect(onVisibleChange.mock.calls.length).toBe(lastCount); // no change with lastCount
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
});
|
|
|
|
it('should hide when mouse leave native disabled button', () => {
|
|
const onVisibleChange = jest.fn();
|
|
const wrapper = mount(
|
|
<Tooltip
|
|
title="xxxxx"
|
|
mouseEnterDelay={0}
|
|
mouseLeaveDelay={0}
|
|
onVisibleChange={onVisibleChange}
|
|
>
|
|
<button type="button" disabled>
|
|
Hello world!
|
|
</button>
|
|
</Tooltip>,
|
|
);
|
|
|
|
expect(wrapper.find('span')).toHaveLength(1);
|
|
const button = wrapper.find('span').at(0);
|
|
button.simulate('mouseenter');
|
|
expect(onVisibleChange).toHaveBeenCalledWith(true);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(true);
|
|
|
|
button.simulate('mouseleave');
|
|
expect(onVisibleChange).toHaveBeenCalledWith(false);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
});
|
|
|
|
describe('should hide when mouse leave antd disabled component', () => {
|
|
function testComponent(name, Component) {
|
|
it(name, () => {
|
|
const onVisibleChange = jest.fn();
|
|
const wrapper = mount(
|
|
<Tooltip
|
|
title="xxxxx"
|
|
mouseEnterDelay={0}
|
|
mouseLeaveDelay={0}
|
|
onVisibleChange={onVisibleChange}
|
|
>
|
|
<Component disabled />
|
|
</Tooltip>,
|
|
);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
const button = wrapper.find('span').at(0);
|
|
button.simulate('mouseenter');
|
|
expect(onVisibleChange).toHaveBeenCalledWith(true);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(true);
|
|
|
|
button.simulate('mouseleave');
|
|
expect(onVisibleChange).toHaveBeenCalledWith(false);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
});
|
|
}
|
|
|
|
testComponent('Button', Button);
|
|
testComponent('Switch', Switch);
|
|
testComponent('Checkbox', Checkbox);
|
|
});
|
|
|
|
it('should render disabled Button style properly', () => {
|
|
const wrapper1 = mount(
|
|
<Tooltip title="xxxxx">
|
|
<Button disabled>Hello world!</Button>
|
|
</Tooltip>,
|
|
);
|
|
const wrapper2 = mount(
|
|
<Tooltip title="xxxxx">
|
|
<Button disabled style={{ display: 'block' }}>
|
|
Hello world!
|
|
</Button>
|
|
</Tooltip>,
|
|
);
|
|
expect(
|
|
wrapper1
|
|
.find('span')
|
|
.first()
|
|
.getDOMNode().style.display,
|
|
).toBe('inline-block');
|
|
expect(
|
|
wrapper2
|
|
.find('span')
|
|
.first()
|
|
.getDOMNode().style.display,
|
|
).toBe('block');
|
|
});
|
|
|
|
it('should works for arrowPointAtCenter', () => {
|
|
const arrowWidth = 5;
|
|
const horizontalArrowShift = 16;
|
|
const triggerWidth = 200;
|
|
|
|
const suit = () => {
|
|
const wrapper = mount(
|
|
<Tooltip
|
|
title="xxxxx"
|
|
trigger="click"
|
|
mouseEnterDelay={0}
|
|
mouseLeaveDelay={0}
|
|
placement="bottomLeft"
|
|
>
|
|
<button type="button" style={{ width: triggerWidth }}>
|
|
Hello world!
|
|
</button>
|
|
</Tooltip>,
|
|
);
|
|
wrapper
|
|
.find('button')
|
|
.at(0)
|
|
.simulate('click');
|
|
const popupLeftDefault = parseInt(wrapper.instance().getPopupDomNode().style.left, 10);
|
|
|
|
const wrapper2 = mount(
|
|
<Tooltip
|
|
title="xxxxx"
|
|
trigger="click"
|
|
mouseEnterDelay={0}
|
|
mouseLeaveDelay={0}
|
|
placement="bottomLeft"
|
|
arrowPointAtCenter
|
|
>
|
|
<button type="button" style={{ width: triggerWidth }}>
|
|
Hello world!
|
|
</button>
|
|
</Tooltip>,
|
|
);
|
|
wrapper2
|
|
.find('button')
|
|
.at(0)
|
|
.simulate('click');
|
|
const popupLeftArrowPointAtCenter = parseInt(
|
|
wrapper2.instance().getPopupDomNode().style.left,
|
|
10,
|
|
);
|
|
expect(popupLeftArrowPointAtCenter - popupLeftDefault).toBe(
|
|
triggerWidth / 2 - horizontalArrowShift - arrowWidth,
|
|
);
|
|
};
|
|
|
|
jest.dontMock('rc-trigger', suit);
|
|
});
|
|
|
|
it('should works for date picker', async () => {
|
|
const onVisibleChange = jest.fn();
|
|
|
|
const wrapper = mount(
|
|
<Tooltip title="date picker" onVisibleChange={onVisibleChange}>
|
|
<DatePicker />
|
|
</Tooltip>,
|
|
);
|
|
|
|
expect(wrapper.find('.ant-picker')).toHaveLength(1);
|
|
const picker = wrapper.find('.ant-picker').at(0);
|
|
picker.simulate('mouseenter');
|
|
await sleep(100);
|
|
expect(onVisibleChange).toHaveBeenCalledWith(true);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(true);
|
|
|
|
picker.simulate('mouseleave');
|
|
await sleep(100);
|
|
expect(onVisibleChange).toHaveBeenCalledWith(false);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
});
|
|
|
|
it('should works for input group', async () => {
|
|
const onVisibleChange = jest.fn();
|
|
|
|
const wrapper = mount(
|
|
<Tooltip title="hello" onVisibleChange={onVisibleChange}>
|
|
<Group>
|
|
<Input style={{ width: '50%' }} />
|
|
<Input style={{ width: '50%' }} />
|
|
</Group>
|
|
</Tooltip>,
|
|
);
|
|
|
|
expect(wrapper.find('Group')).toHaveLength(1);
|
|
const picker = wrapper.find('Group').at(0);
|
|
picker.simulate('mouseenter');
|
|
await sleep(100);
|
|
expect(onVisibleChange).toHaveBeenCalledWith(true);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(true);
|
|
|
|
picker.simulate('mouseleave');
|
|
await sleep(100);
|
|
expect(onVisibleChange).toHaveBeenCalledWith(false);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
});
|
|
});
|