import { SearchOutlined } from '@ant-design/icons';
import { resetWarned } from 'rc-util/lib/warning';
import React, { useState } from 'react';
import { act } from 'react-dom/test-utils';
import Button from '..';
import mountTest from '../../../tests/shared/mountTest';
import rtlTest from '../../../tests/shared/rtlTest';
import { fireEvent, render, waitFakeTimer } from '../../../tests/utils';
import ConfigProvider from '../../config-provider';
import type { BaseButtonProps } from '../button';
describe('Button', () => {
mountTest(Button);
mountTest(() => );
mountTest(() => );
mountTest(Button.Group);
mountTest(() => );
mountTest(() => );
mountTest(() => );
rtlTest(Button);
rtlTest(() => );
rtlTest(() => );
rtlTest(Button.Group);
rtlTest(() => );
rtlTest(() => );
rtlTest(() => );
it('renders correctly', () => {
const { container } = render();
expect(container.firstChild).toMatchSnapshot();
});
it('mount correctly', () => {
expect(() => render()).not.toThrow();
});
it('warns if size is wrong', () => {
resetWarned();
const mockWarn = jest.spyOn(console, 'error').mockImplementation(() => {});
const size = 'who am I';
// @ts-expect-error: Type '"who am I"' is not assignable to type 'SizeType'.ts(2322)
render();
expect(mockWarn).toHaveBeenCalledWith('Warning: [antd: Button.Group] Invalid prop `size`.');
mockWarn.mockRestore();
});
it('renders Chinese characters correctly', () => {
expect(render().container.firstChild).toMatchSnapshot();
// should not insert space when there is icon
expect(
render(}>按钮).container.firstChild,
).toMatchSnapshot();
// should not insert space when there is icon
expect(
render(
,
).container.firstChild,
).toMatchSnapshot();
// should not insert space when there is icon
expect(
render(}>按钮).container.firstChild,
).toMatchSnapshot();
// should not insert space when there is icon while loading
expect(
render(
} loading>
按钮
,
).container.firstChild,
).toMatchSnapshot();
// should insert space while loading
expect(render().container.firstChild).toMatchSnapshot();
// should insert space while only one nested element
expect(
render(
,
).container.firstChild,
).toMatchSnapshot();
});
it('renders Chinese characters correctly in HOC', () => {
const Text = ({ children }: { children: React.ReactNode }) => {children};
const { container, rerender } = render(
,
);
expect(container.querySelector('.ant-btn')).toHaveClass('ant-btn-two-chinese-chars');
rerender(
,
);
expect(container.querySelector('.ant-btn')).not.toHaveClass('ant-btn-two-chinese-chars');
rerender(
,
);
expect(container.querySelector('.ant-btn')).toHaveClass('ant-btn-two-chinese-chars');
});
// https://github.com/ant-design/ant-design/issues/18118
it('should not insert space to link or text button', () => {
const wrapper1 = render();
expect(wrapper1.getByRole('button')).toHaveTextContent('按钮');
wrapper1.unmount();
const wrapper2 = render();
expect(wrapper2.getByRole('button')).toHaveTextContent('按钮');
});
it('should render empty button without errors', () => {
const wrapper = render(
,
);
expect(wrapper.container.firstChild).toMatchSnapshot();
});
it('have static property for type detecting', () => {
expect(Button.__ANT_BUTTON).toBe(true);
});
it('should change loading state instantly by default', () => {
const DefaultButton: React.FC = () => {
const [loading, setLoading] = useState(false);
return (
);
};
const wrapper = render();
fireEvent.click(wrapper.container.firstChild!);
expect(wrapper.container.querySelectorAll('.ant-btn-loading').length).toBe(1);
});
it('should change loading state with delay', () => {
const DefaultButton: React.FC = () => {
const [loading, setLoading] = useState(false);
return (
);
};
const wrapper = render();
fireEvent.click(wrapper.container.firstChild!);
expect(wrapper.container.firstChild).not.toHaveClass('ant-btn-loading');
});
it('reset when loading back of delay', () => {
jest.useFakeTimers();
const { rerender, container } = render();
rerender();
rerender();
act(() => {
jest.runAllTimers();
});
expect(container.querySelectorAll('.ant-btn-loading')).toHaveLength(0);
jest.useRealTimers();
});
it('should not clickable when button is loading', () => {
const onClick = jest.fn();
const { container } = render(
,
);
fireEvent.click(container.firstChild!);
expect(onClick).not.toHaveBeenCalledWith();
});
it('should support link button', () => {
const wrapper = render(
,
);
expect(wrapper.container.firstChild).toMatchSnapshot();
});
it('fixbug renders {0} , 0 and {false}', () => {
expect(render().container.firstChild).toMatchSnapshot();
expect(render().container.firstChild).toMatchSnapshot();
expect(render().container.firstChild).toMatchSnapshot();
});
it('should not render as link button when href is undefined', async () => {
const wrapper = render(
,
);
expect(wrapper.container.firstChild).toMatchSnapshot();
});
// // https://github.com/ant-design/ant-design/issues/15342
it('should merge text if children using variable', () => {
const wrapper = render(
,
);
expect(wrapper.container.firstChild).toMatchSnapshot();
});
it('should support to change loading', async () => {
jest.useFakeTimers();
const { container, rerender, unmount } = render();
rerender();
expect(container.querySelectorAll('.ant-btn-loading').length).toBe(1);
rerender();
expect(container.querySelectorAll('.ant-btn-loading').length).toBe(0);
rerender();
expect(container.querySelectorAll('.ant-btn-loading').length).toBe(0);
await waitFakeTimer();
expect(container.querySelectorAll('.ant-btn-loading').length).toBe(1);
rerender();
await waitFakeTimer();
expect(container.querySelectorAll('.ant-btn-loading').length).toBe(0);
expect(unmount).not.toThrow();
jest.useRealTimers();
});
it('should warning when pass a string as icon props', () => {
resetWarned();
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
render();
expect(warnSpy).not.toHaveBeenCalled();
render();
expect(warnSpy).toHaveBeenCalledWith(
`Warning: [antd: Button] \`icon\` is using ReactNode instead of string naming in v4. Please check \`search\` at https://ant.design/components/icon`,
);
warnSpy.mockRestore();
});
it('should warning when pass type=link and ghost=true', () => {
resetWarned();
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
render();
expect(warnSpy).toHaveBeenCalledWith(
"Warning: [antd: Button] `link` or `text` button can't be a `ghost` button.",
);
warnSpy.mockRestore();
});
it('should warning when pass type=text and ghost=true', () => {
resetWarned();
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
render();
expect(warnSpy).toHaveBeenCalledWith(
"Warning: [antd: Button] `link` or `text` button can't be a `ghost` button.",
);
warnSpy.mockRestore();
});
it('skip check 2 words when ConfigProvider disable this', () => {
const buttonInstance = React.createRef();
render(
,
);
Object.defineProperty(buttonInstance.current, 'textContent', {
get() {
throw new Error('Should not called!!!');
},
});
});
it('should not redirect when button is disabled', () => {
const onClick = jest.fn();
const { container } = render(
,
);
fireEvent.click(container.firstChild!);
expect(onClick).not.toHaveBeenCalled();
});
it('should match class .ant-btn-disabled when button is disabled and href is not undefined', () => {
const wrapper = render(
,
);
expect(wrapper.container.querySelector('.ant-btn')).toHaveClass('ant-btn-disabled');
});
// https://github.com/ant-design/ant-design/issues/30953
it('should handle fragment as children', () => {
const wrapper = render(
,
);
expect(wrapper.container.firstChild).toMatchSnapshot();
});
});