mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 22:39:34 +08:00
6759887c44
* chore: migrate to vitest * chore: update ci * fix: test correctly * test: support puppeteer * chore: update coverage * chore: update include/exclude * chore: update config * test: update incorrect tests * chore: update script * chore: update * fix: should close browser at the ended * chore: improve * fix: test cause tsc error * fix: eslint error * chore: exclude correctly * test: update snap and fix some tests * chore: update test config * fix: countup.js * fix: incorrect test * chore: update reference * test: update * fix: countup.js * fix: timeout * chore: update site test * fix: fixed countup version * chore: remove unsed code * test: update * test: update demo timeout * test: update timeout * chore: update image test * chore: update threads * fix: image/svg+xml test failed * chore: limits threads * test: update test coverage include * chore: remove jest files * chore: rename jest to vi * chore: update document * chore: fix missing @types/jsdom * chore: update coverage * chore: update snap * fix:watermark test cases are incorrect * feat: update ignore comment * test: fix test case * test: reset body scrollTop * test: clean up * test: use vi * test: update snapshot * test: update snapshot * test: fix dropdown test failed * fix: toHaveStyle cause test fail * test: improve test case * test: fix * fix: color failed, refer to https://github.com/jsdom/jsdom/pull/3560 * test: fix * test: fix * test: fix circular import * test: revert * ci: coverage failed * test: fix c8 ignore comment * chore: incorrect config * chore: fix ignore ci * test: revert svg+xml * test: fix realTimers * feat: rc-trigger should be remove * test: fix some failed test * chore: remove unused deps and configure eslint-plugin-vitest * test: update snap * chore: remove jest * test: fix lint error --------- Co-authored-by: 二货机器人 <smith3816@gmail.com> Co-authored-by: afc163 <afc163@gmail.com>
256 lines
6.2 KiB
TypeScript
256 lines
6.2 KiB
TypeScript
/* eslint-disable no-console */
|
|
import React, { useState } from 'react';
|
|
import Space from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
import { fireEvent, render } from '../../../tests/utils';
|
|
import ConfigProvider from '../../config-provider';
|
|
|
|
describe('Space', () => {
|
|
mountTest(Space);
|
|
rtlTest(Space);
|
|
|
|
it('should render width empty children', () => {
|
|
const { container } = render(<Space />);
|
|
|
|
expect(container.children.length).toBe(0);
|
|
});
|
|
|
|
it('should render width ConfigProvider', () => {
|
|
const { container } = render(
|
|
<ConfigProvider space={{ size: 'large' }}>
|
|
<Space>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="middle">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="large">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(container.children).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render width rtl', () => {
|
|
const { container } = render(
|
|
<ConfigProvider direction="rtl">
|
|
<Space>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="middle">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
<Space size="large">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>
|
|
</ConfigProvider>,
|
|
);
|
|
|
|
expect(container.children).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render width customize size', () => {
|
|
const { container } = render(
|
|
<Space size={10}>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.querySelector<HTMLDivElement>('div.ant-space-item')?.style.marginRight).toBe(
|
|
'10px',
|
|
);
|
|
expect(
|
|
container.querySelectorAll<HTMLDivElement>('div.ant-space-item')[1]?.style.marginRight,
|
|
).toBe('');
|
|
});
|
|
|
|
it('should render width size 0', () => {
|
|
const { container } = render(
|
|
<Space size={NaN}>
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.querySelector<HTMLDivElement>('div.ant-space-item')?.style.marginRight).toBe(
|
|
'0px',
|
|
);
|
|
});
|
|
|
|
it('should render vertical space width customize size', () => {
|
|
const { container } = render(
|
|
<Space size={10} direction="vertical">
|
|
<span>1</span>
|
|
<span>2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.querySelector<HTMLDivElement>('div.ant-space-item')?.style.marginBottom).toBe(
|
|
'10px',
|
|
);
|
|
expect(
|
|
container.querySelectorAll<HTMLDivElement>('div.ant-space-item')[1]?.style.marginBottom,
|
|
).toBe('');
|
|
});
|
|
|
|
it('should render correct with children', () => {
|
|
const { container } = render(
|
|
<Space>
|
|
text1<span>text1</span>
|
|
{/* eslint-disable-next-line react/jsx-no-useless-fragment */}
|
|
<>text3</>
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.children[0]).toMatchSnapshot();
|
|
});
|
|
|
|
it('should render with invalidElement', () => {
|
|
const { container } = render(
|
|
<Space>
|
|
text1<span>text1</span>
|
|
text1
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.querySelectorAll('div.ant-space-item').length).toBe(3);
|
|
});
|
|
|
|
it('should be keep store', () => {
|
|
function Demo() {
|
|
const [state, setState] = React.useState(1);
|
|
|
|
return (
|
|
<div
|
|
id="demo"
|
|
onClick={() => {
|
|
setState((value) => value + 1);
|
|
}}
|
|
>
|
|
{state}
|
|
</div>
|
|
);
|
|
}
|
|
function SpaceDemo() {
|
|
const [visible, setVisible] = useState(true);
|
|
function onChange() {
|
|
setVisible(!visible);
|
|
}
|
|
return (
|
|
<Space>
|
|
{visible && <div>space</div>}
|
|
<Demo />
|
|
<p onClick={onChange}>Three</p>
|
|
</Space>
|
|
);
|
|
}
|
|
const { container } = render(<SpaceDemo />);
|
|
|
|
expect(container.querySelector('#demo')).toHaveTextContent('1');
|
|
|
|
fireEvent.click(container.querySelector('#demo')!);
|
|
|
|
expect(container.querySelector('#demo')).toHaveTextContent('2');
|
|
|
|
fireEvent.click(container.querySelector('p')!);
|
|
|
|
expect(container.querySelector('#demo')).toHaveTextContent('2');
|
|
});
|
|
|
|
it('split', () => {
|
|
const { container } = render(
|
|
<Space split="-">
|
|
text1<span>text1</span>
|
|
{/* eslint-disable-next-line react/jsx-no-useless-fragment */}
|
|
<>text3</>
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.children[0]).toMatchSnapshot();
|
|
});
|
|
|
|
// https://github.com/ant-design/ant-design/issues/35305
|
|
it('should not throw duplicated key warning', () => {
|
|
const spy = vi.spyOn(console, 'error').mockImplementation(() => {});
|
|
render(
|
|
<Space>
|
|
<div key="1" />
|
|
<div />
|
|
<div key="3" />
|
|
<div />
|
|
</Space>,
|
|
);
|
|
expect(spy).not.toHaveBeenCalledWith(
|
|
expect.stringContaining('Encountered two children with the same key'),
|
|
expect.anything(),
|
|
expect.anything(),
|
|
);
|
|
spy.mockRestore();
|
|
});
|
|
|
|
it('should render the hidden empty item wrapper', () => {
|
|
const Null = () => null;
|
|
const { container } = render(
|
|
<Space>
|
|
<Null />
|
|
</Space>,
|
|
);
|
|
const item = container.querySelector('div.ant-space-item') as HTMLElement;
|
|
|
|
expect(item).toBeEmptyDOMElement();
|
|
expect(getComputedStyle(item).display).toBe('none');
|
|
});
|
|
|
|
it('should ref work', () => {
|
|
const ref = React.createRef<HTMLDivElement>();
|
|
const { container } = render(
|
|
<Space ref={ref}>
|
|
<span>Text1</span>
|
|
<span>Text2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(ref.current).toBe(container.firstChild);
|
|
});
|
|
|
|
it('should classNames work', () => {
|
|
const { container } = render(
|
|
<Space classNames={{ item: 'test-classNames' }}>
|
|
<span>Text1</span>
|
|
<span>Text2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.querySelector('.ant-space-item.test-classNames')).toBeTruthy();
|
|
});
|
|
|
|
it('should styles work', () => {
|
|
const { container } = render(
|
|
<Space
|
|
styles={{
|
|
item: {
|
|
color: 'red',
|
|
},
|
|
}}
|
|
>
|
|
<span>Text1</span>
|
|
<span>Text2</span>
|
|
</Space>,
|
|
);
|
|
|
|
expect(container.querySelector('.ant-space-item')?.getAttribute('style')).toEqual(
|
|
'margin-right: 8px; color: red;',
|
|
);
|
|
});
|
|
});
|