Browse Source

test: migrate part of Mentions tests (#36998)

pull/37040/head
lijianan 2 years ago
committed by GitHub
parent
commit
37b9c7f192
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 0
      components/mentions/__tests__/__snapshots__/demo.test.ts.snap
  2. 0
      components/mentions/__tests__/__snapshots__/index.test.tsx.snap
  3. 0
      components/mentions/__tests__/demo.test.ts
  4. 97
      components/mentions/__tests__/index.test.js
  5. 87
      components/mentions/__tests__/index.test.tsx

0
components/mentions/__tests__/__snapshots__/demo.test.js.snap → components/mentions/__tests__/__snapshots__/demo.test.ts.snap

0
components/mentions/__tests__/__snapshots__/index.test.js.snap → components/mentions/__tests__/__snapshots__/index.test.tsx.snap

0
components/mentions/__tests__/demo.test.js → components/mentions/__tests__/demo.test.ts

97
components/mentions/__tests__/index.test.js

@ -1,97 +0,0 @@
import { mount } from 'enzyme';
import React from 'react';
import Mentions from '..';
import focusTest from '../../../tests/shared/focusTest';
import mountTest from '../../../tests/shared/mountTest';
import rtlTest from '../../../tests/shared/rtlTest';
import { act } from '../../../tests/utils';
const { getMentions } = Mentions;
function simulateInput(wrapper, text, keyEvent) {
const lastChar = text[text.length - 1];
const myKeyEvent = keyEvent || {
which: lastChar.charCodeAt(0),
key: lastChar,
target: {
value: text,
selectionStart: text.length,
},
};
wrapper.find('textarea').simulate('keyDown', myKeyEvent);
const textareaInstance = wrapper.find('textarea').instance();
textareaInstance.value = text;
textareaInstance.selectionStart = text.length;
textareaInstance.selectionStart = text.length;
if (!keyEvent) {
wrapper.find('textarea').simulate('change', {
target: { value: text },
});
}
wrapper.find('textarea').simulate('keyUp', myKeyEvent);
wrapper.update();
}
describe('Mentions', () => {
beforeAll(() => {
jest.useFakeTimers();
});
afterAll(() => {
jest.useRealTimers();
});
it('getMentions', () => {
const mentions = getMentions('@light #bamboo cat', { prefix: ['@', '#'] });
expect(mentions).toEqual([
{
prefix: '@',
value: 'light',
},
{
prefix: '#',
value: 'bamboo',
},
]);
});
it('focus', () => {
const onFocus = jest.fn();
const onBlur = jest.fn();
const wrapper = mount(<Mentions onFocus={onFocus} onBlur={onBlur} />);
wrapper.find('textarea').simulate('focus');
expect(wrapper.find('.ant-mentions').hasClass('ant-mentions-focused')).toBeTruthy();
expect(onFocus).toHaveBeenCalled();
wrapper.find('textarea').simulate('blur');
act(() => {
jest.runAllTimers();
});
wrapper.update();
expect(wrapper.find('.ant-mentions').hasClass('ant-mentions-focused')).toBeFalsy();
expect(onBlur).toHaveBeenCalled();
});
focusTest(Mentions, { refFocus: true });
mountTest(Mentions);
rtlTest(Mentions);
it('loading', () => {
const wrapper = mount(<Mentions loading />);
simulateInput(wrapper, '@');
expect(wrapper.find('li.ant-mentions-dropdown-menu-item').length).toBe(1);
expect(wrapper.find('.ant-spin').length).toBeTruthy();
});
it('notFoundContent', () => {
const wrapper = mount(<Mentions notFoundContent={<span className="bamboo-light" />} />);
simulateInput(wrapper, '@');
expect(wrapper.find('li.ant-mentions-dropdown-menu-item').length).toBe(1);
expect(wrapper.find('.bamboo-light').length).toBeTruthy();
});
});

87
components/mentions/__tests__/index.test.tsx

@ -0,0 +1,87 @@
import React from 'react';
import Mentions from '..';
import focusTest from '../../../tests/shared/focusTest';
import mountTest from '../../../tests/shared/mountTest';
import rtlTest from '../../../tests/shared/rtlTest';
import { act, render, fireEvent } from '../../../tests/utils';
const { getMentions } = Mentions;
function simulateInput(wrapper: ReturnType<typeof render>, text: string, keyEvent?: Event): void {
const lastChar = text[text.length - 1];
const myKeyEvent = keyEvent || {
which: lastChar.charCodeAt(0),
key: lastChar,
target: {
value: text,
selectionStart: text.length,
},
};
fireEvent.keyDown(wrapper.container.querySelector('textarea')!, myKeyEvent);
const textareaInstance = wrapper.container.querySelector('textarea');
if (textareaInstance) {
textareaInstance.value = text;
textareaInstance.selectionStart = text.length;
textareaInstance.selectionStart = text.length;
}
if (!keyEvent) {
fireEvent.change(wrapper.container.querySelector('textarea')!, { target: { value: text } });
}
fireEvent.keyUp(wrapper.container.querySelector('textarea')!, myKeyEvent);
}
describe('Mentions', () => {
beforeAll(() => {
jest.useFakeTimers();
});
afterAll(() => {
jest.useRealTimers();
});
it('getMentions', () => {
const mentions = getMentions('@light #bamboo cat', { prefix: ['@', '#'] });
expect(mentions).toEqual([
{ prefix: '@', value: 'light' },
{ prefix: '#', value: 'bamboo' },
]);
});
it('focus', () => {
const onFocus = jest.fn();
const onBlur = jest.fn();
const { container } = render(<Mentions onFocus={onFocus} onBlur={onBlur} />);
fireEvent.focus(container.querySelector('textarea')!);
expect(container.querySelector('.ant-mentions')).toHaveClass('ant-mentions-focused');
expect(onFocus).toHaveBeenCalled();
fireEvent.blur(container.querySelector('textarea')!);
act(() => {
jest.runAllTimers();
});
expect(container.querySelector('.ant-mentions')).not.toHaveClass('ant-mentions-focused');
expect(onBlur).toHaveBeenCalled();
});
focusTest(Mentions, { refFocus: true });
mountTest(Mentions);
rtlTest(Mentions);
it('loading', () => {
const wrapper = render(<Mentions loading />);
simulateInput(wrapper, '@');
expect(wrapper.container.querySelectorAll('li.ant-mentions-dropdown-menu-item').length).toBe(1);
expect(wrapper.container.querySelectorAll('.ant-spin').length).toBeTruthy();
});
it('notFoundContent', () => {
const wrapper = render(<Mentions notFoundContent={<span className="bamboo-light" />} />);
simulateInput(wrapper, '@');
expect(wrapper.container.querySelectorAll('li.ant-mentions-dropdown-menu-item').length).toBe(1);
expect(wrapper.container.querySelectorAll('.bamboo-light').length).toBeTruthy();
});
});
Loading…
Cancel
Save