mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
78 lines
1.8 KiB
JavaScript
78 lines
1.8 KiB
JavaScript
import React from 'react';
|
|
import { act } from 'react-dom/test-utils';
|
|
import AutoComplete from '..';
|
|
import { render } from '../../../tests/utils';
|
|
|
|
describe('AutoComplete children could be focus', () => {
|
|
beforeAll(() => {
|
|
jest.useFakeTimers();
|
|
});
|
|
|
|
let container;
|
|
beforeEach(() => {
|
|
container = document.createElement('div');
|
|
document.body.appendChild(container);
|
|
});
|
|
|
|
afterAll(() => {
|
|
jest.useRealTimers();
|
|
});
|
|
|
|
afterEach(() => {
|
|
document.body.removeChild(container);
|
|
});
|
|
|
|
it('focus() and onFocus', () => {
|
|
const handleFocus = jest.fn();
|
|
const { container: wrapper } = render(<AutoComplete onFocus={handleFocus} />, {
|
|
attachTo: container,
|
|
});
|
|
wrapper.querySelector('input').focus();
|
|
act(() => {
|
|
jest.runAllTimers();
|
|
});
|
|
expect(handleFocus).toHaveBeenCalled();
|
|
});
|
|
|
|
it('blur() and onBlur', () => {
|
|
const handleBlur = jest.fn();
|
|
const { container: wrapper } = render(<AutoComplete onBlur={handleBlur} />, {
|
|
attachTo: container,
|
|
});
|
|
wrapper.querySelector('input').focus();
|
|
act(() => {
|
|
jest.runAllTimers();
|
|
});
|
|
wrapper.querySelector('input').blur();
|
|
act(() => {
|
|
jest.runAllTimers();
|
|
});
|
|
expect(handleBlur).toHaveBeenCalled();
|
|
});
|
|
|
|
it('child.ref should work', () => {
|
|
const mockRef = jest.fn();
|
|
render(
|
|
<AutoComplete dataSource={[]}>
|
|
<input ref={mockRef} />
|
|
</AutoComplete>,
|
|
);
|
|
expect(mockRef).toHaveBeenCalled();
|
|
});
|
|
|
|
it('child.ref instance should support be focused and blured', () => {
|
|
let inputRef;
|
|
render(
|
|
<AutoComplete dataSource={[]}>
|
|
<input
|
|
ref={node => {
|
|
inputRef = node;
|
|
}}
|
|
/>
|
|
</AutoComplete>,
|
|
);
|
|
expect(typeof inputRef.focus).toBe('function');
|
|
expect(typeof inputRef.blur).toBe('function');
|
|
});
|
|
});
|