import React from 'react';
import { mount } from 'enzyme';
import ConfigProvider from '..';
import { ConfigConsumer } from '../context';
// https://github.com/ant-design/ant-design/issues/27617
describe('ConfigProvider', () => {
const RenderCounter = ({ config }) => {
const [count, setCount] = React.useState(0);
React.useEffect(() => setCount(c => c + 1), [config]);
return
{count}
;
};
const Sibling = () => (
{config => }
);
it('should not generate new value for same config', () => {
const MemoedSibling = React.memo(Sibling);
const App = () => {
const [, forceRender] = React.useReducer(v => v + 1, 1);
return (
);
};
const wrapper = mount();
wrapper.find('button').simulate('click');
expect(wrapper.find('#counter').text()).toEqual('1');
});
it('should not generate new value for same config in nested ConfigProvider', () => {
const MemoedSibling = React.memo(Sibling);
const App = () => {
const [, forceRender] = React.useReducer(v => v + 1, 1);
return (
);
};
const wrapper = mount();
wrapper.find('button').simulate('click');
expect(wrapper.find('#counter').text()).toEqual('1');
});
it('should rerender when context value change(immutable or mutable)', () => {
const MemoedSibling = React.memo(Sibling);
const App = () => {
const [direction, setDirection] = React.useState('ltr');
const [, forceRender] = React.useReducer(v => v + 1, 1);
const pageHeader = React.useRef({ ghost: false });
return (
);
};
const wrapper = mount();
wrapper.find('.immutable').simulate('click');
expect(wrapper.find('#counter').text()).toEqual('2');
wrapper.find('.mutable').simulate('click');
expect(wrapper.find('#counter').text()).toEqual('3');
});
it('should rerender when context value change(immutable or mutable) in nested ConfigProvider', () => {
const MemoedSibling = React.memo(Sibling);
const App = () => {
const [input, setInput] = React.useState({ autoComplete: 'true' });
const [, forceRender] = React.useReducer(v => v + 1, 1);
const pageHeader = React.useRef({ ghost: false });
return (
);
};
const wrapper = mount();
wrapper.find('.immutable').simulate('click');
expect(wrapper.find('#counter').text()).toEqual('2');
wrapper.find('.mutable').simulate('click');
expect(wrapper.find('#counter').text()).toEqual('3');
});
});