You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.9 KiB
67 lines
1.9 KiB
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import { spyElementPrototypes } from 'rc-util/lib/test/domHook';
|
|
import Input from '..';
|
|
|
|
const { TextArea } = Input;
|
|
|
|
describe('Input.Focus', () => {
|
|
let inputSpy: ReturnType<typeof spyElementPrototypes>;
|
|
let textareaSpy: ReturnType<typeof spyElementPrototypes>;
|
|
let focus: ReturnType<typeof jest.fn>;
|
|
let setSelectionRange: ReturnType<typeof jest.fn>;
|
|
|
|
beforeEach(() => {
|
|
focus = jest.fn();
|
|
setSelectionRange = jest.fn();
|
|
inputSpy = spyElementPrototypes(HTMLInputElement, {
|
|
focus,
|
|
setSelectionRange,
|
|
});
|
|
textareaSpy = spyElementPrototypes(HTMLTextAreaElement, {
|
|
focus,
|
|
setSelectionRange,
|
|
});
|
|
});
|
|
|
|
afterEach(() => {
|
|
inputSpy.mockRestore();
|
|
textareaSpy.mockRestore();
|
|
});
|
|
|
|
it('start', () => {
|
|
const ref = React.createRef<Input>();
|
|
mount(<Input ref={ref} defaultValue="light" />);
|
|
ref.current!.focus({ cursor: 'start' });
|
|
|
|
expect(focus).toHaveBeenCalled();
|
|
expect(setSelectionRange).toHaveBeenCalledWith(expect.anything(), 0, 0);
|
|
});
|
|
|
|
it('end', () => {
|
|
const ref = React.createRef<Input>();
|
|
mount(<Input ref={ref} defaultValue="light" />);
|
|
ref.current!.focus({ cursor: 'end' });
|
|
|
|
expect(focus).toHaveBeenCalled();
|
|
expect(setSelectionRange).toHaveBeenCalledWith(expect.anything(), 5, 5);
|
|
});
|
|
|
|
it('all', () => {
|
|
const ref = React.createRef<any>();
|
|
mount(<TextArea ref={ref} defaultValue="light" />);
|
|
ref.current!.focus({ cursor: 'all' });
|
|
|
|
expect(focus).toHaveBeenCalled();
|
|
expect(setSelectionRange).toHaveBeenCalledWith(expect.anything(), 0, 5);
|
|
});
|
|
|
|
it('disabled should reset focus', () => {
|
|
const wrapper = mount(<Input allowClear />);
|
|
wrapper.find('input').simulate('focus');
|
|
expect(wrapper.exists('.ant-input-affix-wrapper-focused')).toBeTruthy();
|
|
|
|
wrapper.setProps({ disabled: true });
|
|
expect(wrapper.exists('.ant-input-affix-wrapper-focused')).toBeFalsy();
|
|
});
|
|
});
|
|
|