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.
82 lines
1.9 KiB
82 lines
1.9 KiB
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import ConfigProvider, { ConfigContext } from '..';
|
|
import Button from '../../button';
|
|
import Table from '../../table';
|
|
import Input from '../../input';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
|
|
describe('ConfigProvider', () => {
|
|
mountTest(() => (
|
|
<ConfigProvider>
|
|
<div />
|
|
</ConfigProvider>
|
|
));
|
|
|
|
it('Content Security Policy', () => {
|
|
const csp = { nonce: 'test-antd' };
|
|
const wrapper = mount(
|
|
<ConfigProvider csp={csp}>
|
|
<Button />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.find('Wave').instance().csp).toBe(csp);
|
|
});
|
|
|
|
it('autoInsertSpaceInButton', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider autoInsertSpaceInButton={false}>
|
|
<Button>确定</Button>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.find('Button').text()).toBe('确定');
|
|
});
|
|
|
|
it('renderEmpty', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider renderEmpty={() => <div>empty placeholder</div>}>
|
|
<Table />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.text()).toContain('empty placeholder');
|
|
});
|
|
|
|
it('nest prefixCls', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider prefixCls="bamboo">
|
|
<ConfigProvider>
|
|
<Button />
|
|
</ConfigProvider>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.find('button').props().className).toEqual('bamboo-btn');
|
|
});
|
|
|
|
it('input autoComplete', () => {
|
|
const wrapper = mount(
|
|
<ConfigProvider input={{ autoComplete: 'off' }}>
|
|
<Input />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper.find('input').props().autoComplete).toEqual('off');
|
|
});
|
|
|
|
it('render empty', () => {
|
|
const App = () => {
|
|
const { renderEmpty } = React.useContext(ConfigContext);
|
|
return renderEmpty();
|
|
};
|
|
const wrapper = mount(
|
|
<ConfigProvider>
|
|
<App />
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(wrapper).toMatchRenderedSnapshot();
|
|
});
|
|
});
|
|
|