mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
6ae70059c9
* feat: Input focus support cursor * docs: clean up * test: Fix lint
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
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);
|
|
});
|
|
});
|