import React from 'react';
import Radio, { Button, Group } from '..';
import focusTest from '../../../tests/shared/focusTest';
import mountTest from '../../../tests/shared/mountTest';
import rtlTest from '../../../tests/shared/rtlTest';
import { act, fireEvent, render } from '../../../tests/utils';
import Form from '../../form';
describe('Radio', () => {
focusTest(Radio, { refFocus: true });
mountTest(Radio);
mountTest(Group);
mountTest(Button);
rtlTest(Radio);
rtlTest(Group);
rtlTest(Button);
beforeEach(() => {
jest.useFakeTimers();
});
afterEach(() => {
jest.useRealTimers();
});
it('should render correctly', () => {
const { container } = render(Test);
expect(container.firstChild).toMatchSnapshot();
});
it('responses hover events', () => {
const onMouseEnter = jest.fn();
const onMouseLeave = jest.fn();
const { container } = render();
fireEvent.mouseEnter(container.querySelector('label')!);
expect(onMouseEnter).toHaveBeenCalled();
fireEvent.mouseLeave(container.querySelector('label')!);
expect(onMouseLeave).toHaveBeenCalled();
});
it('should use own disabled status first', () => {
const { getByRole } = render(
,
);
expect(getByRole('radio')).not.toBeDisabled();
});
it('should obtained correctly disabled status', () => {
const { getByRole } = render(
,
);
expect(getByRole('radio')).not.toBeDisabled();
});
it('have static property for type detecting', () => {
expect(Radio.__ANT_RADIO).toBeTruthy();
});
it('event bubble should not trigger twice', () => {
const onClick = jest.fn();
const onRootClick = jest.fn();
const { container } = render(
,
);
// Click on label
fireEvent.click(container.querySelector('label')!);
expect(onClick).toHaveBeenCalledTimes(1);
expect(onRootClick).toHaveBeenCalledTimes(1);
act(() => {
jest.runAllTimers();
});
// Click on input
fireEvent.click(container.querySelector('input')!);
expect(onClick).toHaveBeenCalledTimes(2);
expect(onRootClick).toHaveBeenCalledTimes(2);
act(() => {
jest.runAllTimers();
});
// Click on input again
fireEvent.click(container.querySelector('input')!);
expect(onClick).toHaveBeenCalledTimes(3);
expect(onRootClick).toHaveBeenCalledTimes(3);
});
});