mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
55 lines
2.4 KiB
TypeScript
55 lines
2.4 KiB
TypeScript
|
import React from 'react';
|
||
|
import FloatButton from '..';
|
||
|
import mountTest from '../../../tests/shared/mountTest';
|
||
|
import rtlTest from '../../../tests/shared/rtlTest';
|
||
|
import { fireEvent, render } from '../../../tests/utils';
|
||
|
|
||
|
describe('FloatButton', () => {
|
||
|
mountTest(FloatButton);
|
||
|
rtlTest(FloatButton);
|
||
|
it('should correct render', () => {
|
||
|
const { container } = render(<FloatButton />);
|
||
|
expect(container.firstChild).toMatchSnapshot();
|
||
|
});
|
||
|
it('should render <button> when harf not exist', () => {
|
||
|
const { container } = render(<FloatButton href={undefined} />);
|
||
|
expect(container.querySelector('button')).toBeTruthy();
|
||
|
});
|
||
|
it('should render <a> when harf exist', () => {
|
||
|
const url = 'https://ant.design/index-cn';
|
||
|
const target = '_blank';
|
||
|
const { container } = render(<FloatButton href={url} target={target} />);
|
||
|
expect(container.querySelector('a')).toBeTruthy();
|
||
|
expect(container.querySelector('a')?.href).toBe(url);
|
||
|
expect(container.querySelector('a')?.target).toBe(target);
|
||
|
});
|
||
|
it('support type', () => {
|
||
|
const [defaultType, primaryType] = ['default', 'primary'] as const;
|
||
|
const { container, rerender } = render(<FloatButton type={defaultType} />);
|
||
|
expect(container.querySelector(`.ant-float-btn-${defaultType}`)).toBeTruthy();
|
||
|
rerender(<FloatButton type={primaryType} />);
|
||
|
expect(container.querySelector(`.ant-float-btn-${primaryType}`)).toBeTruthy();
|
||
|
});
|
||
|
it('support shape', () => {
|
||
|
const [defaultShape, squareShape] = ['circle', 'square'] as const;
|
||
|
const { container, rerender } = render(<FloatButton shape={defaultShape} />);
|
||
|
expect(container.querySelector(`.ant-float-btn-${defaultShape}`)).toBeTruthy();
|
||
|
rerender(<FloatButton shape={squareShape} />);
|
||
|
expect(container.querySelector(`.ant-float-btn-${squareShape}`)).toBeTruthy();
|
||
|
});
|
||
|
it('support onClick', () => {
|
||
|
const onClick = jest.fn();
|
||
|
const { container } = render(<FloatButton onClick={onClick} />);
|
||
|
fireEvent.click(container.querySelector('.ant-float-btn')!);
|
||
|
expect(onClick).toHaveBeenCalled();
|
||
|
});
|
||
|
it('should console Error', () => {
|
||
|
const errSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
||
|
render(<FloatButton description="test" shape="circle" />);
|
||
|
expect(errSpy).toHaveBeenCalledWith(
|
||
|
'Warning: [antd: FloatButton] supported only when `shape` is `square`. Due to narrow space for text, short sentence is recommended.',
|
||
|
);
|
||
|
errSpy.mockRestore();
|
||
|
});
|
||
|
});
|