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

303 lines
8.8 KiB
JavaScript
Raw Normal View History

2020-06-23 00:09:42 +05:30
import { mount, createLocalVue } from '@vue/test-utils';
2021-03-11 19:13:27 +05:30
import { escape } from 'lodash';
2021-04-17 20:07:23 +05:30
import waitForPromises from 'helpers/wait_for_promises';
2019-07-07 11:18:12 +05:30
import NoteActions from '~/notes/components/note_actions.vue';
import NoteBody from '~/notes/components/note_body.vue';
2021-03-11 19:13:27 +05:30
import NoteHeader from '~/notes/components/note_header.vue';
import issueNote from '~/notes/components/noteable_note.vue';
import createStore from '~/notes/stores';
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
2018-03-17 18:26:18 +05:30
import { noteableDataMock, notesDataMock, note } from '../mock_data';
describe('issue_note', () => {
2018-11-08 19:23:39 +05:30
let store;
2019-07-07 11:18:12 +05:30
let wrapper;
2020-06-23 00:09:42 +05:30
const findMultilineComment = () => wrapper.find('[data-testid="multiline-comment"]');
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
const createWrapper = (props = {}) => {
2018-11-08 19:23:39 +05:30
store = createStore();
2018-03-17 18:26:18 +05:30
store.dispatch('setNoteableData', noteableDataMock);
store.dispatch('setNotesData', notesDataMock);
2019-07-07 11:18:12 +05:30
const localVue = createLocalVue();
2020-06-23 00:09:42 +05:30
wrapper = mount(localVue.extend(issueNote), {
2018-03-17 18:26:18 +05:30
store,
propsData: {
note,
2021-04-17 20:07:23 +05:30
...props,
2018-03-17 18:26:18 +05:30
},
2019-07-07 11:18:12 +05:30
localVue,
2020-07-28 23:09:34 +05:30
stubs: [
'note-header',
'user-avatar-link',
'note-actions',
'note-body',
'multiline-comment-form',
],
2019-07-07 11:18:12 +05:30
});
2021-04-17 20:07:23 +05:30
};
2018-03-17 18:26:18 +05:30
afterEach(() => {
2019-07-07 11:18:12 +05:30
wrapper.destroy();
2018-03-17 18:26:18 +05:30
});
2020-06-23 00:09:42 +05:30
describe('mutiline comments', () => {
2021-04-17 20:07:23 +05:30
beforeEach(() => {
createWrapper();
});
it('should render if has multiline comment', async () => {
2020-06-23 00:09:42 +05:30
const position = {
line_range: {
2020-07-28 23:09:34 +05:30
start: {
line_code: 'abc_1_1',
type: null,
old_line: '1',
new_line: '1',
},
end: {
line_code: 'abc_2_2',
type: null,
old_line: '2',
new_line: '2',
},
2020-06-23 00:09:42 +05:30
},
};
2020-07-28 23:09:34 +05:30
const line = {
line_code: 'abc_1_1',
type: null,
old_line: '1',
new_line: '1',
};
2020-06-23 00:09:42 +05:30
wrapper.setProps({
note: { ...note, position },
2020-07-28 23:09:34 +05:30
discussionRoot: true,
line,
2020-06-23 00:09:42 +05:30
});
2021-04-17 20:07:23 +05:30
await wrapper.vm.$nextTick();
expect(findMultilineComment().text()).toBe('Comment on lines 1 to 2');
2020-06-23 00:09:42 +05:30
});
2020-10-24 23:57:45 +05:30
it('should only render if it has everything it needs', () => {
const position = {
line_range: {
start: {
line_code: 'abc_1_1',
type: null,
old_line: '',
new_line: '',
},
end: {
line_code: 'abc_2_2',
type: null,
old_line: '2',
new_line: '2',
},
},
};
const line = {
line_code: 'abc_1_1',
type: null,
old_line: '1',
new_line: '1',
};
wrapper.setProps({
note: { ...note, position },
discussionRoot: true,
line,
2020-07-28 23:09:34 +05:30
});
return wrapper.vm.$nextTick().then(() => {
expect(findMultilineComment().exists()).toBe(false);
});
});
2020-06-23 00:09:42 +05:30
it('should not render if has single line comment', () => {
const position = {
line_range: {
2020-07-28 23:09:34 +05:30
start: {
line_code: 'abc_1_1',
type: null,
old_line: '1',
new_line: '1',
},
end: {
line_code: 'abc_1_1',
type: null,
old_line: '1',
new_line: '1',
},
2020-06-23 00:09:42 +05:30
},
};
2020-07-28 23:09:34 +05:30
const line = {
line_code: 'abc_1_1',
type: null,
old_line: '1',
new_line: '1',
};
2020-06-23 00:09:42 +05:30
wrapper.setProps({
note: { ...note, position },
2020-07-28 23:09:34 +05:30
discussionRoot: true,
line,
2020-06-23 00:09:42 +05:30
});
return wrapper.vm.$nextTick().then(() => {
expect(findMultilineComment().exists()).toBe(false);
});
});
it('should not render if `line_range` is unavailable', () => {
expect(findMultilineComment().exists()).toBe(false);
});
});
2021-04-17 20:07:23 +05:30
describe('rendering', () => {
beforeEach(() => {
createWrapper();
});
2019-07-07 11:18:12 +05:30
2021-04-17 20:07:23 +05:30
it('should render user information', () => {
const { author } = note;
const avatar = wrapper.findComponent(UserAvatarLink);
const avatarProps = avatar.props();
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
expect(avatarProps.linkHref).toBe(author.path);
expect(avatarProps.imgSrc).toBe(author.avatar_url);
expect(avatarProps.imgAlt).toBe(author.name);
expect(avatarProps.imgSize).toBe(40);
});
2018-12-13 13:39:08 +05:30
2021-04-17 20:07:23 +05:30
it('should render note header content', () => {
const noteHeader = wrapper.findComponent(NoteHeader);
const noteHeaderProps = noteHeader.props();
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
expect(noteHeaderProps.author).toBe(note.author);
expect(noteHeaderProps.createdAt).toBe(note.created_at);
expect(noteHeaderProps.noteId).toBe(note.id);
});
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it('should render note actions', () => {
const { author } = note;
const noteActions = wrapper.findComponent(NoteActions);
const noteActionsProps = noteActions.props();
2019-07-07 11:18:12 +05:30
2021-04-17 20:07:23 +05:30
expect(noteActionsProps.authorId).toBe(author.id);
expect(noteActionsProps.noteId).toBe(note.id);
expect(noteActionsProps.noteUrl).toBe(note.noteable_note_url);
expect(noteActionsProps.accessLevel).toBe(note.human_access);
expect(noteActionsProps.canEdit).toBe(note.current_user.can_edit);
expect(noteActionsProps.canAwardEmoji).toBe(note.current_user.can_award_emoji);
expect(noteActionsProps.canDelete).toBe(note.current_user.can_edit);
expect(noteActionsProps.canReportAsAbuse).toBe(true);
expect(noteActionsProps.canResolve).toBe(false);
expect(noteActionsProps.reportAbusePath).toBe(note.report_abuse_path);
expect(noteActionsProps.resolvable).toBe(false);
expect(noteActionsProps.isResolved).toBe(false);
expect(noteActionsProps.isResolving).toBe(false);
expect(noteActionsProps.resolvedBy).toEqual({});
});
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it('should render issue body', () => {
const noteBody = wrapper.findComponent(NoteBody);
const noteBodyProps = noteBody.props();
expect(noteBodyProps.note).toBe(note);
expect(noteBodyProps.line).toBe(null);
expect(noteBodyProps.canEdit).toBe(note.current_user.can_edit);
expect(noteBodyProps.isEditing).toBe(false);
expect(noteBodyProps.helpPagePath).toBe('');
2019-07-07 11:18:12 +05:30
});
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
it('prevents note preview xss', async () => {
const noteBody =
'<img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" onload="alert(1)" />';
const alertSpy = jest.spyOn(window, 'alert').mockImplementation(() => {});
const noteBodyComponent = wrapper.findComponent(NoteBody);
store.hotUpdate({
actions: {
updateNote() {},
setSelectedCommentPositionHover() {},
},
});
noteBodyComponent.vm.$emit('handleFormUpdate', noteBody, null, () => {});
2018-03-17 18:26:18 +05:30
2021-04-17 20:07:23 +05:30
await waitForPromises();
2018-03-17 18:26:18 +05:30
expect(alertSpy).not.toHaveBeenCalled();
2021-04-17 20:07:23 +05:30
expect(wrapper.vm.note.note_html).toBe(escape(noteBody));
2020-04-22 19:07:51 +05:30
});
2018-03-17 18:26:18 +05:30
});
describe('cancel edit', () => {
2021-04-17 20:07:23 +05:30
beforeEach(() => {
createWrapper();
});
it('restores content of updated note', async () => {
2019-07-07 11:18:12 +05:30
const updatedText = 'updated note text';
store.hotUpdate({
actions: {
updateNote() {},
},
2018-03-17 18:26:18 +05:30
});
2021-04-17 20:07:23 +05:30
const noteBody = wrapper.findComponent(NoteBody);
2019-07-07 11:18:12 +05:30
noteBody.vm.resetAutoSave = () => {};
noteBody.vm.$emit('handleFormUpdate', updatedText, null, () => {});
2021-04-17 20:07:23 +05:30
await wrapper.vm.$nextTick();
let noteBodyProps = noteBody.props();
expect(noteBodyProps.note.note_html).toBe(updatedText);
noteBody.vm.$emit('cancelForm');
await wrapper.vm.$nextTick();
noteBodyProps = noteBody.props();
expect(noteBodyProps.note.note_html).toBe(note.note_html);
});
});
describe('formUpdateHandler', () => {
const updateNote = jest.fn();
const params = ['', null, jest.fn(), ''];
const updateActions = () => {
store.hotUpdate({
actions: {
updateNote,
setSelectedCommentPositionHover() {},
},
});
};
afterEach(() => updateNote.mockReset());
it('responds to handleFormUpdate', () => {
createWrapper();
updateActions();
wrapper.findComponent(NoteBody).vm.$emit('handleFormUpdate', ...params);
expect(wrapper.emitted('handleUpdateNote')).toBeTruthy();
});
it('does not stringify empty position', () => {
createWrapper();
updateActions();
wrapper.findComponent(NoteBody).vm.$emit('handleFormUpdate', ...params);
expect(updateNote.mock.calls[0][1].note.note.position).toBeUndefined();
});
it('stringifies populated position', () => {
const position = { test: true };
const expectation = JSON.stringify(position);
createWrapper({ note: { ...note, position } });
updateActions();
wrapper.findComponent(NoteBody).vm.$emit('handleFormUpdate', ...params);
expect(updateNote.mock.calls[0][1].note.note.position).toBe(expectation);
2018-03-17 18:26:18 +05:30
});
});
});