mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
c592714c88
* bump rc-select version
* bump rc-dropdown version
* bump rc-mentions version
* bump rc-picker version
* bump rc-cascader & rc-menu version
* bump rc-slider version
* update rc-motion
* update rc-select version
* rm sleep in test case
* 📦 reduce bundlesize limit to 280kb
Co-authored-by: 偏右 <afc163@gmail.com>
86 lines
2.5 KiB
JavaScript
86 lines
2.5 KiB
JavaScript
import React from 'react';
|
|
import { render, mount } from 'enzyme';
|
|
import Popover from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import ConfigProvider from '../../config-provider';
|
|
|
|
describe('Popover', () => {
|
|
mountTest(Popover);
|
|
|
|
it('should show overlay when trigger is clicked', () => {
|
|
const ref = React.createRef();
|
|
|
|
const popover = mount(
|
|
<Popover ref={ref} content="console.log('hello world')" title="code" trigger="click">
|
|
<span>show me your code</span>
|
|
</Popover>,
|
|
);
|
|
|
|
expect(ref.current.getPopupDomNode()).toBe(null);
|
|
|
|
popover.find('span').simulate('click');
|
|
expect(popover.find('Trigger PopupInner').props().visible).toBeTruthy();
|
|
});
|
|
|
|
it('shows content for render functions', () => {
|
|
const renderTitle = () => 'some-title';
|
|
const renderContent = () => 'some-content';
|
|
const ref = React.createRef();
|
|
|
|
const popover = mount(
|
|
<Popover ref={ref} content={renderContent} title={renderTitle} trigger="click">
|
|
<span>show me your code</span>
|
|
</Popover>,
|
|
);
|
|
|
|
popover.find('span').simulate('click');
|
|
|
|
const popup = ref.current.getPopupDomNode();
|
|
expect(popup).not.toBe(null);
|
|
expect(popup.innerHTML).toContain('some-title');
|
|
expect(popup.innerHTML).toContain('some-content');
|
|
expect(popup.innerHTML).toMatchSnapshot();
|
|
});
|
|
|
|
it('handles empty title/content props safely', () => {
|
|
const ref = React.createRef();
|
|
|
|
const popover = mount(
|
|
<Popover trigger="click" ref={ref}>
|
|
<span>show me your code</span>
|
|
</Popover>,
|
|
);
|
|
|
|
popover.find('span').simulate('click');
|
|
|
|
const popup = ref.current.getPopupDomNode();
|
|
expect(popup).not.toBe(null);
|
|
expect(popup.innerHTML).toMatchSnapshot();
|
|
});
|
|
|
|
it('props#overlay do not warn anymore', () => {
|
|
const errorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
const overlay = jest.fn();
|
|
mount(
|
|
<Popover content="console.log('hello world')" title="code" trigger="click">
|
|
<span>show me your code</span>
|
|
</Popover>,
|
|
);
|
|
|
|
expect(errorSpy.mock.calls.length).toBe(0);
|
|
expect(overlay).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it(`should be rendered correctly in RTL direction`, () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider direction="rtl">
|
|
<Popover title="RTL" visible>
|
|
<span>show me your Rtl demo</span>
|
|
</Popover>
|
|
</ConfigProvider>,
|
|
);
|
|
expect(render(wrapper)).toMatchSnapshot();
|
|
});
|
|
});
|