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.
 
 

118 lines
3.2 KiB

import React from 'react';
import { mount } from 'enzyme';
import { sleep } from '../utils';
// eslint-disable-next-line jest/no-export
export default function focusTest(Component, { refFocus = false } = {}) {
describe('focus and blur', () => {
let focused = false;
let blurred = false;
const mockFocus = jest.spyOn(HTMLElement.prototype, 'focus');
const mockBlur = jest.spyOn(HTMLElement.prototype, 'blur');
beforeAll(() => {
if (refFocus) {
mockFocus.mockImplementation(() => {
focused = true;
});
mockBlur.mockImplementation(() => {
blurred = true;
});
}
});
let container;
beforeEach(() => {
container = document.createElement('div');
document.body.appendChild(container);
focused = false;
blurred = false;
});
afterAll(() => {
mockFocus.mockRestore();
mockBlur.mockRestore();
});
afterEach(() => {
document.body.removeChild(container);
});
const getElement = wrapper => {
let ele = wrapper.find('input').first();
if (ele.length === 0) {
ele = wrapper.find('button').first();
}
if (ele.length === 0) {
ele = wrapper.find('div[tabIndex]').first();
}
return ele;
};
if (refFocus) {
it('Ref: focus() and onFocus', () => {
const onFocus = jest.fn();
const ref = React.createRef();
const wrapper = mount(
<div>
<Component onFocus={onFocus} ref={ref} />
</div>,
);
ref.current.focus();
expect(focused).toBeTruthy();
getElement(wrapper).simulate('focus');
expect(onFocus).toHaveBeenCalled();
});
it('Ref: blur() and onBlur', () => {
const onBlur = jest.fn();
const ref = React.createRef();
const wrapper = mount(
<div>
<Component onBlur={onBlur} ref={ref} />
</div>,
);
ref.current.blur();
expect(blurred).toBeTruthy();
getElement(wrapper).simulate('blur');
expect(onBlur).toHaveBeenCalled();
});
it('Ref: autoFocus', () => {
const onFocus = jest.fn();
const wrapper = mount(<Component autoFocus onFocus={onFocus} />);
expect(focused).toBeTruthy();
getElement(wrapper).simulate('focus');
expect(onFocus).toHaveBeenCalled();
});
} else {
it('focus() and onFocus', () => {
const handleFocus = jest.fn();
const wrapper = mount(<Component onFocus={handleFocus} />, { attachTo: container });
wrapper.instance().focus();
expect(handleFocus).toHaveBeenCalled();
});
it('blur() and onBlur', async () => {
jest.useRealTimers();
const handleBlur = jest.fn();
const wrapper = mount(<Component onBlur={handleBlur} />, { attachTo: container });
wrapper.instance().focus();
await sleep(0);
wrapper.instance().blur();
await sleep(0);
expect(handleBlur).toHaveBeenCalled();
});
it('autoFocus', () => {
const handleFocus = jest.fn();
mount(<Component autoFocus onFocus={handleFocus} />, { attachTo: container });
expect(handleFocus).toHaveBeenCalled();
});
}
});
}