mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
55c85f77a1
* deps: upgrade rc-menu, and close: #2837 * test: update snapshots * Update rc-calendar * Update rc-cascader * Update rc-dialog * Update dropdown * Update rc-select@7.1.0 * Update rc-slider * Update rc-time-picker * Update rc-tooltip * Update rc-tree-select * Mock rc-trigger and Portal * Fix animation warning when inlineCollapsed changes * fix: should use SubMenu[popupClassName] * Fix typescript error * Fix lint * fix: style for menu * Mock rc-trigger for React 15 * Remvoe allow_failures
176 lines
5.4 KiB
JavaScript
176 lines
5.4 KiB
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Tooltip from '..';
|
|
import Button from '../../button';
|
|
|
|
describe('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 disabled>Hello world!</button>
|
|
</Tooltip>
|
|
);
|
|
|
|
expect(wrapper.find('span')).toHaveLength(1);
|
|
const button = wrapper.find('span').at(0);
|
|
button.simulate('mouseenter');
|
|
expect(onVisibleChange).toBeCalledWith(true);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(true);
|
|
|
|
button.simulate('mouseleave');
|
|
expect(onVisibleChange).toBeCalledWith(false);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
});
|
|
|
|
it('should hide when mouse leave antd disabled Button', () => {
|
|
const onVisibleChange = jest.fn();
|
|
const wrapper = mount(
|
|
<Tooltip
|
|
title="xxxxx"
|
|
mouseEnterDelay={0}
|
|
mouseLeaveDelay={0}
|
|
onVisibleChange={onVisibleChange}
|
|
>
|
|
<Button disabled>Hello world!</Button>
|
|
</Tooltip>
|
|
);
|
|
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
const button = wrapper.find('span').at(0);
|
|
button.simulate('mouseenter');
|
|
expect(onVisibleChange).toBeCalledWith(true);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(true);
|
|
|
|
button.simulate('mouseleave');
|
|
expect(onVisibleChange).toBeCalledWith(false);
|
|
expect(wrapper.instance().tooltip.props.visible).toBe(false);
|
|
});
|
|
|
|
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 not wrap span when trigger is not hover', () => {
|
|
const wrapper = mount(
|
|
<Tooltip
|
|
title="xxxxx"
|
|
trigger="click"
|
|
mouseEnterDelay={0}
|
|
mouseLeaveDelay={0}
|
|
>
|
|
<button disabled>Hello world!</button>
|
|
</Tooltip>
|
|
);
|
|
|
|
expect(wrapper.find('span')).toHaveLength(0);
|
|
});
|
|
|
|
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 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 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);
|
|
});
|
|
});
|