2016-12-14 14:48:09 +08:00
|
|
|
import React from 'react';
|
2018-12-05 19:12:18 +08:00
|
|
|
import { mount, render } from 'enzyme';
|
2019-08-26 22:53:20 +08:00
|
|
|
import Radio, { Group, Button } from '..';
|
2017-11-19 01:41:40 +08:00
|
|
|
import focusTest from '../../../tests/shared/focusTest';
|
2019-08-26 22:53:20 +08:00
|
|
|
import mountTest from '../../../tests/shared/mountTest';
|
2020-01-02 19:10:16 +08:00
|
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
2016-12-14 14:48:09 +08:00
|
|
|
|
|
|
|
describe('Radio', () => {
|
2020-05-27 10:21:17 +08:00
|
|
|
focusTest(Radio, { refFocus: true });
|
2019-08-26 22:53:20 +08:00
|
|
|
mountTest(Radio);
|
|
|
|
mountTest(Group);
|
|
|
|
mountTest(Button);
|
2017-11-19 01:41:40 +08:00
|
|
|
|
2020-01-02 19:10:16 +08:00
|
|
|
rtlTest(Radio);
|
|
|
|
rtlTest(Group);
|
|
|
|
rtlTest(Button);
|
|
|
|
|
2017-03-15 14:25:43 +08:00
|
|
|
it('should render correctly', () => {
|
|
|
|
const wrapper = render(<Radio className="customized">Test</Radio>);
|
2017-04-02 18:09:23 +08:00
|
|
|
expect(wrapper).toMatchSnapshot();
|
2017-03-15 14:25:43 +08:00
|
|
|
});
|
|
|
|
|
2016-12-14 14:48:09 +08:00
|
|
|
it('responses hover events', () => {
|
|
|
|
const onMouseEnter = jest.fn();
|
|
|
|
const onMouseLeave = jest.fn();
|
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
const wrapper = mount(<Radio onMouseEnter={onMouseEnter} onMouseLeave={onMouseLeave} />);
|
2016-12-14 14:48:09 +08:00
|
|
|
|
2018-12-05 19:12:18 +08:00
|
|
|
wrapper.find('label').simulate('mouseenter');
|
2016-12-14 14:48:09 +08:00
|
|
|
expect(onMouseEnter).toHaveBeenCalled();
|
|
|
|
|
2018-12-05 19:12:18 +08:00
|
|
|
wrapper.find('label').simulate('mouseleave');
|
2016-12-14 14:48:09 +08:00
|
|
|
expect(onMouseLeave).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|