mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
502dac12aa
* docs: fix code * feat: lint * feat: prettier * feat: test * feat: review * feat: format html * feat: format html
79 lines
2.9 KiB
TypeScript
79 lines
2.9 KiB
TypeScript
import React from 'react';
|
|
|
|
import Result from '..';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
import { render } from '../../../tests/utils';
|
|
import Button from '../../button';
|
|
|
|
describe('Result', () => {
|
|
mountTest(Result);
|
|
rtlTest(Result);
|
|
|
|
it('🙂 successPercent should decide the progress status when it exists', () => {
|
|
const { container } = render(
|
|
<Result
|
|
status="success"
|
|
title="Successfully Purchased Cloud Server ECS!"
|
|
subTitle="Order number: 2017182818828182881 Cloud server configuration takes 1-5 minutes, please wait."
|
|
extra={[
|
|
<Button type="primary" key="console">
|
|
Go Console
|
|
</Button>,
|
|
<Button key="buy">Buy Again</Button>,
|
|
]}
|
|
/>,
|
|
);
|
|
expect(container.querySelectorAll('.anticon-check-circle')).toHaveLength(1);
|
|
});
|
|
|
|
it('🙂 different status, different class', () => {
|
|
const { container, rerender } = render(<Result status="warning" />);
|
|
expect(container.querySelectorAll('.ant-result-warning')).toHaveLength(1);
|
|
|
|
rerender(<Result status="error" />);
|
|
|
|
expect(container.querySelectorAll('.ant-result-error')).toHaveLength(1);
|
|
|
|
rerender(<Result status="500" />);
|
|
|
|
expect(container.querySelectorAll('.ant-result-500')).toHaveLength(1);
|
|
});
|
|
|
|
it('🙂 When status = 404, the icon is an image', () => {
|
|
const { container } = render(<Result status="404" />);
|
|
expect(container.querySelectorAll('.ant-result-404 .ant-result-image')).toHaveLength(1);
|
|
});
|
|
|
|
it('🙂 When extra is undefined, the extra dom is undefined', () => {
|
|
const { container } = render(<Result status="404" />);
|
|
expect(container.querySelectorAll('.ant-result-extra')).toHaveLength(0);
|
|
});
|
|
|
|
it('🙂 result should support className', () => {
|
|
const { container } = render(<Result status="404" title="404" className="my-result" />);
|
|
expect(container.querySelectorAll('.ant-result.my-result')).toHaveLength(1);
|
|
});
|
|
|
|
it('should warning when pass a string as icon props', () => {
|
|
const warnSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
|
|
|
|
render(<Result title="404" icon="ab" />);
|
|
expect(warnSpy).not.toHaveBeenCalled();
|
|
|
|
render(<Result title="404" icon="smile" />);
|
|
expect(warnSpy).toHaveBeenCalledWith(
|
|
`Warning: [antd: Result] \`icon\` is using ReactNode instead of string naming in v4. Please check \`smile\` at https://ant.design/components/icon`,
|
|
);
|
|
|
|
warnSpy.mockRestore();
|
|
});
|
|
|
|
it('should hide icon by setting icon to false or null', () => {
|
|
const { container } = render(<Result title="404" icon={null} />);
|
|
expect(container.querySelectorAll('.ant-result-icon')).toHaveLength(0);
|
|
const { container: container2 } = render(<Result title="404" icon={false} />);
|
|
expect(container2.querySelectorAll('.ant-result-icon')).toHaveLength(0);
|
|
});
|
|
});
|