You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

85 lines
2.5 KiB

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();
});
});