import React from 'react'; import { render } from 'enzyme'; import moment from 'moment'; import ConfigProvider from '..'; import Alert from '../../alert'; import Anchor from '../../anchor'; import AutoComplete from '../../auto-complete'; import Avatar from '../../avatar'; import BackTop from '../../back-top'; import Badge from '../../badge'; import Breadcrumb from '../../breadcrumb'; import Button from '../../button'; import Calendar from '../../calendar'; import Card from '../../card'; import Carousel from '../../carousel'; import Cascader from '../../cascader'; import Checkbox from '../../checkbox'; import Collapse from '../../collapse'; import Comment from '../../comment'; import DatePicker from '../../date-picker'; import Divider from '../../divider'; import Drawer from '../../drawer'; import Dropdown from '../../dropdown'; import Form from '../../form'; import { Row, Col } from '../../grid'; import Input from '../../input'; import InputNumber from '../../input-number'; import Layout from '../../layout'; import List from '../../list'; import Mention from '../../mention'; import Menu from '../../menu'; import Modal from '../../modal'; import Pagination from '../../pagination'; import Popconfirm from '../../popconfirm'; import Popover from '../../popover'; import Progress from '../../progress'; import Radio from '../../radio'; import Rate from '../../rate'; import Select from '../../select'; import Skeleton from '../../skeleton'; import Slider from '../../slider'; import Spin from '../../spin'; import Statistic from '../../statistic'; import Steps from '../../steps'; import Switch from '../../switch'; import Table from '../../table'; import Tabs from '../../tabs'; import Tag from '../../tag'; import TimePicker from '../../time-picker'; import Timeline from '../../timeline'; import Tooltip from '../../tooltip'; import Transfer from '../../transfer'; import Tree from '../../tree'; import TreeSelect from '../../tree-select'; import Upload from '../../upload'; jest.mock('draft-js/lib/generateRandomKey', () => () => '123'); jest.mock('rc-util/lib/Portal'); describe('ConfigProvider', () => { describe('components', () => { function testPair(name, renderComponent) { describe(`${name}`, () => { // normal it('normal', () => { expect(render(renderComponent({}))).toMatchSnapshot(); }); // prefixCls it('prefixCls', () => { expect(render(renderComponent({ prefixCls: `prefix-${name}` }))).toMatchSnapshot(); }); // configProvider it('configProvider', () => { expect( render({renderComponent({})}), ).toMatchSnapshot(); }); }); } // Alert testPair('Alert', props => ( )); // Anchor testPair('Anchor', props => ( )); // AutoComplete testPair('AutoComplete', props => ); // Avatar testPair('Avatar', props => ); // BackTop testPair('BackTop', props => ); // Badge testPair('Badge', props => { const newProps = { ...props, }; // Hook for additional `scrollNumberPrefixCls` prop if (props.prefixCls) { newProps.scrollNumberPrefixCls = 'prefix-scroll-number'; } return (
); }); // Breadcrumb testPair('Breadcrumb', props => ( Bamboo Light )); // Button testPair('Button', props => (
)); // Calendar testPair('Calendar', props => (
)); // Card testPair('Card', props => ( )); // Carousel testPair('Carousel', props => (

Bamboo

Light

)); // Cascader testPair('Cascader', props => ); // Checkbox testPair('Checkbox', props => ( Bamboo )); // Collapse testPair('Collapse', props => (

Light

)); // Comment testPair('Comment', props => ( )); // DatePicker describe('DatePicker', () => { testPair('DatePicker', props => (
)); // RangePicker testPair('RangePicker', props => (
)); // MonthPicker testPair('MonthPicker', props => (
)); // WeekPicker testPair('WeekPicker', props => (
)); }); // Divider testPair('Divider', props => ); // Drawer testPair('Drawer', props => ); // Dropdown testPair('Dropdown', props => { const menu = ( Bamboo ); return ( Light ); }); // Form testPair('Form', props => (
)); // Grid testPair('Grid', props => { const rowProps = {}; const colProps = {}; if (props.prefixCls) { rowProps.prefixCls = 'prefix-row'; colProps.prefixCls = 'prefix-col'; } return ( ); }); // Input testPair('Input', props => (
)); // InputNumber testPair('InputNumber', props => ); // Layout testPair('Layout', props => { const siderProps = {}; const headerProps = {}; const contentProps = {}; const footerProps = {}; if (props.prefixCls) { siderProps.prefixCls = 'prefix-sider'; headerProps.prefixCls = 'prefix-header'; contentProps.prefixCls = 'prefix-content'; footerProps.prefixCls = 'prefix-footer'; } return ( ); }); // List testPair('List', props => ( ( } title="Ant Design" description="Ant Design, a design language for background applications, is refined by Ant UED Team" /> )} /> )); // Mention testPair('Mention', props => ); // Menu testPair('Menu', props => ( Light )); // Modal testPair('Modal', props => (
Bamboo is Little Light
)); // Pagination testPair('Pagination', props => (
)); // Popconfirm testPair('Popconfirm', props => (
Bamboo
)); // Popover testPair('Popover', props => (
Light
)); // Progress testPair('Progress', props => ); // Radio testPair('Radio', props => (
Bamboo Light
)); // Rate testPair('Rate', props => ); // Select testPair('Select', props => ( )); // Skeleton testPair('Skeleton', props => ); // Slider testPair('Slider', props => { const myProps = { ...props }; if (myProps.prefixCls) { myProps.tooltipPrefixCls = `${myProps.prefixCls}-tooltip`; } return ; }); // Spin testPair('Spin', props => ); // Statistic testPair('Statistic', props => ); // Steps testPair('Steps', props => { const myProps = { ...props }; if (props.prefixCls) { myProps.iconPrefix = 'prefixIcon'; } return ( ); }); // Switch testPair('Switch', props => ); // Table testPair('Table', props => { const columns = [ { title: 'Name', dataIndex: 'name', filters: [ { text: 'Joe', value: 'Joe', }, { text: 'Submenu', value: 'Submenu', children: [ { text: 'Green', value: 'Green', }, ], }, ], filterDropdownVisible: true, onFilter: (value, record) => record.name.indexOf(value) === 0, sorter: (a, b) => a.name.length - b.name.length, }, ]; const myProps = { ...props }; if (props.prefixCls) { myProps.dropdownPrefixCls = 'prefix-dropdown'; } return ; }); // Tabs testPair('Tabs', props => ( )); // Tags testPair('Tags', props => (
Bamboo Light
)); // TimePicker testPair('TimePicker', props => ( )); // Timeline testPair('Timeline', props => ( Bamboo )); // Tooltip testPair('Tooltip', props => ( Light )); // Transfer testPair('Transfer', props => ); // Tree testPair('Tree', props => (
)); // TreeSelect testPair('TreeSelect', props => ( )); // Upload testPair('Upload', props => ( )); }); });