debian-mirror-gitlab/spec/frontend/notes/components/comment_form_spec.js

410 lines
13 KiB
JavaScript
Raw Normal View History

2021-02-22 17:27:13 +05:30
import { nextTick } from 'vue';
import { mount, shallowMount } from '@vue/test-utils';
2019-12-26 22:10:19 +05:30
import MockAdapter from 'axios-mock-adapter';
import Autosize from 'autosize';
2021-02-22 17:27:13 +05:30
import { deprecatedCreateFlash as flash } from '~/flash';
2019-12-26 22:10:19 +05:30
import axios from '~/lib/utils/axios_utils';
import createStore from '~/notes/stores';
import CommentForm from '~/notes/components/comment_form.vue';
import * as constants from '~/notes/constants';
2021-02-22 17:27:13 +05:30
import eventHub from '~/notes/event_hub';
2019-12-26 22:10:19 +05:30
import { refreshUserMergeRequestCounts } from '~/commons/nav/user_merge_requests';
2021-02-22 17:27:13 +05:30
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
2020-05-24 23:13:21 +05:30
import { loggedOutnoteableData, notesDataMock, userDataMock, noteableDataMock } from '../mock_data';
2019-12-26 22:10:19 +05:30
jest.mock('autosize');
jest.mock('~/commons/nav/user_merge_requests');
2021-02-22 17:27:13 +05:30
jest.mock('~/flash');
2019-12-26 22:10:19 +05:30
jest.mock('~/gl_form');
describe('issue_comment_form component', () => {
let store;
let wrapper;
let axiosMock;
2021-02-22 17:27:13 +05:30
const findCloseReopenButton = () => wrapper.find('[data-testid="close-reopen-button"]');
const findCommentButton = () => wrapper.find('[data-testid="comment-button"]');
const findTextArea = () => wrapper.find('[data-testid="comment-field"]');
const mountComponent = ({
initialData = {},
noteableType = 'Issue',
noteableData = noteableDataMock,
notesData = notesDataMock,
userData = userDataMock,
mountFunction = shallowMount,
} = {}) => {
2019-12-26 22:10:19 +05:30
store.dispatch('setNoteableData', noteableData);
2021-02-22 17:27:13 +05:30
store.dispatch('setNotesData', notesData);
store.dispatch('setUserData', userData);
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
wrapper = mountFunction(CommentForm, {
2019-12-26 22:10:19 +05:30
propsData: {
noteableType,
},
2021-02-22 17:27:13 +05:30
data() {
return {
...initialData,
};
},
2019-12-26 22:10:19 +05:30
store,
});
};
beforeEach(() => {
axiosMock = new MockAdapter(axios);
store = createStore();
});
afterEach(() => {
axiosMock.restore();
wrapper.destroy();
});
describe('user is logged in', () => {
2021-02-22 17:27:13 +05:30
describe('avatar', () => {
it('should render user avatar with link', () => {
mountComponent({ mountFunction: mount });
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(wrapper.find(UserAvatarLink).attributes('href')).toBe(userDataMock.path);
});
2019-12-26 22:10:19 +05:30
});
describe('handleSave', () => {
it('should request to save note when note is entered', () => {
2021-02-22 17:27:13 +05:30
mountComponent({ mountFunction: mount, initialData: { note: 'hello world' } });
jest.spyOn(wrapper.vm, 'saveNote').mockResolvedValue();
2019-12-26 22:10:19 +05:30
jest.spyOn(wrapper.vm, 'resizeTextarea');
jest.spyOn(wrapper.vm, 'stopPolling');
2021-02-22 17:27:13 +05:30
findCloseReopenButton().trigger('click');
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(wrapper.vm.isSubmitting).toBe(true);
expect(wrapper.vm.note).toBe('');
2019-12-26 22:10:19 +05:30
expect(wrapper.vm.saveNote).toHaveBeenCalled();
expect(wrapper.vm.stopPolling).toHaveBeenCalled();
expect(wrapper.vm.resizeTextarea).toHaveBeenCalled();
});
it('should toggle issue state when no note', () => {
2021-02-22 17:27:13 +05:30
mountComponent({ mountFunction: mount });
2019-12-26 22:10:19 +05:30
jest.spyOn(wrapper.vm, 'toggleIssueState');
2021-02-22 17:27:13 +05:30
findCloseReopenButton().trigger('click');
2019-12-26 22:10:19 +05:30
expect(wrapper.vm.toggleIssueState).toHaveBeenCalled();
});
2021-02-22 17:27:13 +05:30
it('should disable action button while submitting', async () => {
mountComponent({ mountFunction: mount, initialData: { note: 'hello world' } });
2019-12-26 22:10:19 +05:30
const saveNotePromise = Promise.resolve();
2021-02-22 17:27:13 +05:30
2019-12-26 22:10:19 +05:30
jest.spyOn(wrapper.vm, 'saveNote').mockReturnValue(saveNotePromise);
jest.spyOn(wrapper.vm, 'stopPolling');
2021-02-22 17:27:13 +05:30
const actionButton = findCloseReopenButton();
await actionButton.trigger('click');
expect(actionButton.props('disabled')).toBe(true);
await saveNotePromise;
await nextTick();
expect(actionButton.props('disabled')).toBe(false);
2019-12-26 22:10:19 +05:30
});
});
describe('textarea', () => {
2021-02-22 17:27:13 +05:30
describe('general', () => {
it('should render textarea with placeholder', () => {
mountComponent({ mountFunction: mount });
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(findTextArea().attributes('placeholder')).toBe(
'Write a comment or drag your files here…',
);
});
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
it('should make textarea disabled while requesting', async () => {
mountComponent({ mountFunction: mount });
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
jest.spyOn(wrapper.vm, 'stopPolling');
jest.spyOn(wrapper.vm, 'saveNote').mockResolvedValue();
await wrapper.setData({ note: 'hello world' });
await findCommentButton().trigger('click');
expect(findTextArea().attributes('disabled')).toBe('disabled');
2019-12-26 22:10:19 +05:30
});
2021-02-22 17:27:13 +05:30
it('should support quick actions', () => {
mountComponent({ mountFunction: mount });
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(findTextArea().attributes('data-supports-quick-actions')).toBe('true');
});
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
it('should link to markdown docs', () => {
mountComponent({ mountFunction: mount });
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
const { markdownDocsPath } = notesDataMock;
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(wrapper.find(`a[href="${markdownDocsPath}"]`).text()).toBe('Markdown');
});
it('should link to quick actions docs', () => {
mountComponent({ mountFunction: mount });
const { quickActionsDocsPath } = notesDataMock;
expect(wrapper.find(`a[href="${quickActionsDocsPath}"]`).text()).toBe('quick actions');
});
it('should resize textarea after note discarded', async () => {
mountComponent({ mountFunction: mount, initialData: { note: 'foo' } });
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
jest.spyOn(wrapper.vm, 'discard');
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
wrapper.vm.discard();
await nextTick();
2019-12-26 22:10:19 +05:30
expect(Autosize.update).toHaveBeenCalled();
});
});
describe('edit mode', () => {
2021-02-22 17:27:13 +05:30
beforeEach(() => {
mountComponent();
});
2019-12-26 22:10:19 +05:30
it('should enter edit mode when arrow up is pressed', () => {
jest.spyOn(wrapper.vm, 'editCurrentUserLastNote');
2021-02-22 17:27:13 +05:30
findTextArea().trigger('keydown.up');
2019-12-26 22:10:19 +05:30
expect(wrapper.vm.editCurrentUserLastNote).toHaveBeenCalled();
});
it('inits autosave', () => {
expect(wrapper.vm.autosave).toBeDefined();
2021-02-22 17:27:13 +05:30
expect(wrapper.vm.autosave.key).toBe(`autosave/Note/Issue/${noteableDataMock.id}`);
2019-12-26 22:10:19 +05:30
});
});
describe('event enter', () => {
2021-02-22 17:27:13 +05:30
beforeEach(() => {
mountComponent();
});
2019-12-26 22:10:19 +05:30
it('should save note when cmd+enter is pressed', () => {
jest.spyOn(wrapper.vm, 'handleSave');
2021-02-22 17:27:13 +05:30
findTextArea().trigger('keydown.enter', { metaKey: true });
2019-12-26 22:10:19 +05:30
expect(wrapper.vm.handleSave).toHaveBeenCalled();
});
it('should save note when ctrl+enter is pressed', () => {
jest.spyOn(wrapper.vm, 'handleSave');
2021-02-22 17:27:13 +05:30
findTextArea().trigger('keydown.enter', { ctrlKey: true });
2019-12-26 22:10:19 +05:30
expect(wrapper.vm.handleSave).toHaveBeenCalled();
});
});
});
describe('actions', () => {
it('should be possible to close the issue', () => {
2021-02-22 17:27:13 +05:30
mountComponent();
expect(findCloseReopenButton().text()).toBe('Close issue');
2019-12-26 22:10:19 +05:30
});
it('should render comment button as disabled', () => {
2021-02-22 17:27:13 +05:30
mountComponent();
expect(findCommentButton().props('disabled')).toBe(true);
2019-12-26 22:10:19 +05:30
});
2021-02-22 17:27:13 +05:30
it('should enable comment button if it has note', async () => {
mountComponent();
await wrapper.setData({ note: 'Foo' });
expect(findCommentButton().props('disabled')).toBe(false);
2019-12-26 22:10:19 +05:30
});
2021-02-22 17:27:13 +05:30
it('should update buttons texts when it has note', () => {
mountComponent({ initialData: { note: 'Foo' } });
expect(findCloseReopenButton().text()).toBe('Comment & close issue');
2019-12-26 22:10:19 +05:30
});
2021-02-22 17:27:13 +05:30
it('updates button text with noteable type', () => {
mountComponent({ noteableType: constants.MERGE_REQUEST_NOTEABLE_TYPE });
expect(findCloseReopenButton().text()).toBe('Close merge request');
2019-12-26 22:10:19 +05:30
});
describe('when clicking close/reopen button', () => {
2021-02-22 17:27:13 +05:30
it('should show a loading spinner', async () => {
mountComponent({
noteableType: constants.MERGE_REQUEST_NOTEABLE_TYPE,
mountFunction: mount,
});
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
await findCloseReopenButton().trigger('click');
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(findCloseReopenButton().props('loading')).toBe(true);
2019-12-26 22:10:19 +05:30
});
});
describe('when toggling state', () => {
2021-02-22 17:27:13 +05:30
describe('when issue', () => {
it('emits event to toggle state', () => {
mountComponent({ mountFunction: mount });
jest.spyOn(eventHub, '$emit');
findCloseReopenButton().trigger('click');
expect(eventHub.$emit).toHaveBeenCalledWith('toggle.issuable.state');
});
});
describe.each`
type | noteableType
${'merge request'} | ${'MergeRequest'}
${'epic'} | ${'Epic'}
`('when $type', ({ type, noteableType }) => {
describe('when open', () => {
it(`makes an API call to open it`, () => {
mountComponent({
noteableType,
noteableData: { ...noteableDataMock, state: constants.OPENED },
mountFunction: mount,
});
jest.spyOn(wrapper.vm, 'closeIssuable').mockResolvedValue();
findCloseReopenButton().trigger('click');
expect(wrapper.vm.closeIssuable).toHaveBeenCalled();
});
it(`shows an error when the API call fails`, async () => {
mountComponent({
noteableType,
noteableData: { ...noteableDataMock, state: constants.OPENED },
mountFunction: mount,
});
jest.spyOn(wrapper.vm, 'closeIssuable').mockRejectedValue();
await findCloseReopenButton().trigger('click');
await wrapper.vm.$nextTick;
expect(flash).toHaveBeenCalledWith(
`Something went wrong while closing the ${type}. Please try again later.`,
);
});
});
describe('when closed', () => {
it('makes an API call to close it', () => {
mountComponent({
noteableType,
noteableData: { ...noteableDataMock, state: constants.CLOSED },
mountFunction: mount,
});
jest.spyOn(wrapper.vm, 'reopenIssuable').mockResolvedValue();
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
findCloseReopenButton().trigger('click');
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
expect(wrapper.vm.reopenIssuable).toHaveBeenCalled();
});
});
it(`shows an error when the API call fails`, async () => {
mountComponent({
noteableType,
noteableData: { ...noteableDataMock, state: constants.CLOSED },
mountFunction: mount,
});
jest.spyOn(wrapper.vm, 'reopenIssuable').mockRejectedValue();
await findCloseReopenButton().trigger('click');
2019-12-26 22:10:19 +05:30
2021-02-22 17:27:13 +05:30
await wrapper.vm.$nextTick;
expect(flash).toHaveBeenCalledWith(
`Something went wrong while reopening the ${type}. Please try again later.`,
);
2019-12-26 22:10:19 +05:30
});
});
2021-02-22 17:27:13 +05:30
it('when merge request, should update MR count', async () => {
mountComponent({
noteableType: constants.MERGE_REQUEST_NOTEABLE_TYPE,
mountFunction: mount,
});
jest.spyOn(wrapper.vm, 'closeIssuable').mockResolvedValue();
await findCloseReopenButton().trigger('click');
expect(refreshUserMergeRequestCounts).toHaveBeenCalled();
});
2019-12-26 22:10:19 +05:30
});
});
describe('issue is confidential', () => {
2021-02-22 17:27:13 +05:30
it('shows information warning', () => {
mountComponent({
noteableData: { ...noteableDataMock, confidential: true },
mountFunction: mount,
2019-12-26 22:10:19 +05:30
});
2021-02-22 17:27:13 +05:30
expect(wrapper.find('[data-testid="confidential-warning"]').exists()).toBe(true);
2019-12-26 22:10:19 +05:30
});
});
});
describe('user is not logged in', () => {
beforeEach(() => {
2021-02-22 17:27:13 +05:30
mountComponent({ userData: null, noteableData: loggedOutnoteableData, mountFunction: mount });
2019-12-26 22:10:19 +05:30
});
it('should render signed out widget', () => {
2021-02-22 17:27:13 +05:30
expect(wrapper.text()).toBe('Please register or sign in to reply');
2019-12-26 22:10:19 +05:30
});
it('should not render submission form', () => {
2021-02-22 17:27:13 +05:30
expect(findTextArea().exists()).toBe(false);
2019-12-26 22:10:19 +05:30
});
});
2020-11-24 15:15:51 +05:30
2021-02-22 17:27:13 +05:30
describe('close/reopen button variants', () => {
it.each([
[constants.OPENED, 'warning'],
[constants.REOPENED, 'warning'],
[constants.CLOSED, 'default'],
])('when %s, the variant of the btn is %s', (state, expected) => {
mountComponent({ noteableData: { ...noteableDataMock, state } });
2020-11-24 15:15:51 +05:30
2021-02-22 17:27:13 +05:30
expect(findCloseReopenButton().props('variant')).toBe(expected);
2020-11-24 15:15:51 +05:30
});
});
2019-12-26 22:10:19 +05:30
});