2020-04-08 14:13:33 +05:30
|
|
|
import { escape } from 'lodash';
|
2019-07-07 11:18:12 +05:30
|
|
|
import { shallowMount, createLocalVue } from '@vue/test-utils';
|
2018-11-08 19:23:39 +05:30
|
|
|
import createStore from '~/notes/stores';
|
2018-03-17 18:26:18 +05:30
|
|
|
import issueNote from '~/notes/components/noteable_note.vue';
|
2019-07-07 11:18:12 +05:30
|
|
|
import NoteHeader from '~/notes/components/note_header.vue';
|
|
|
|
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
|
|
|
|
import NoteActions from '~/notes/components/note_actions.vue';
|
|
|
|
import NoteBody from '~/notes/components/note_body.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;
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
beforeEach(() => {
|
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-01-01 13:55:28 +05:30
|
|
|
wrapper = shallowMount(localVue.extend(issueNote), {
|
2018-03-17 18:26:18 +05:30
|
|
|
store,
|
|
|
|
propsData: {
|
|
|
|
note,
|
|
|
|
},
|
2019-07-07 11:18:12 +05:30
|
|
|
localVue,
|
|
|
|
});
|
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
|
|
|
});
|
|
|
|
|
|
|
|
it('should render user information', () => {
|
2019-07-07 11:18:12 +05:30
|
|
|
const { author } = note;
|
|
|
|
const avatar = wrapper.find(UserAvatarLink);
|
|
|
|
const avatarProps = avatar.props();
|
|
|
|
|
|
|
|
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-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should render note header content', () => {
|
2019-07-07 11:18:12 +05:30
|
|
|
const noteHeader = wrapper.find(NoteHeader);
|
|
|
|
const noteHeaderProps = noteHeader.props();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
expect(noteHeaderProps.author).toEqual(note.author);
|
|
|
|
expect(noteHeaderProps.createdAt).toEqual(note.created_at);
|
|
|
|
expect(noteHeaderProps.noteId).toEqual(note.id);
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should render note actions', () => {
|
2019-07-07 11:18:12 +05:30
|
|
|
const { author } = note;
|
|
|
|
const noteActions = wrapper.find(NoteActions);
|
|
|
|
const noteActionsProps = noteActions.props();
|
|
|
|
|
|
|
|
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
|
|
|
});
|
|
|
|
|
|
|
|
it('should render issue body', () => {
|
2019-07-07 11:18:12 +05:30
|
|
|
const noteBody = wrapper.find(NoteBody);
|
|
|
|
const noteBodyProps = noteBody.props();
|
|
|
|
|
|
|
|
expect(noteBodyProps.note).toEqual(note);
|
|
|
|
expect(noteBodyProps.line).toBe(null);
|
|
|
|
expect(noteBodyProps.canEdit).toBe(note.current_user.can_edit);
|
|
|
|
expect(noteBodyProps.isEditing).toBe(false);
|
|
|
|
expect(noteBodyProps.helpPagePath).toBe('');
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it('prevents note preview xss', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const imgSrc = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';
|
|
|
|
const noteBody = `<img src="${imgSrc}" onload="alert(1)" />`;
|
2020-04-22 19:07:51 +05:30
|
|
|
const alertSpy = jest.spyOn(window, 'alert');
|
2019-07-07 11:18:12 +05:30
|
|
|
store.hotUpdate({
|
|
|
|
actions: {
|
|
|
|
updateNote() {},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
const noteBodyComponent = wrapper.find(NoteBody);
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
noteBodyComponent.vm.$emit('handleFormUpdate', noteBody, null, () => {});
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
setImmediate(() => {
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(alertSpy).not.toHaveBeenCalled();
|
2020-04-08 14:13:33 +05:30
|
|
|
expect(wrapper.vm.note.note_html).toEqual(escape(noteBody));
|
2018-03-17 18:26:18 +05:30
|
|
|
done();
|
2020-04-22 19:07:51 +05:30
|
|
|
});
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('cancel edit', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
it('restores content of updated note', done => {
|
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
|
|
|
});
|
2019-07-07 11:18:12 +05:30
|
|
|
const noteBody = wrapper.find(NoteBody);
|
|
|
|
noteBody.vm.resetAutoSave = () => {};
|
|
|
|
|
|
|
|
noteBody.vm.$emit('handleFormUpdate', updatedText, null, () => {});
|
|
|
|
|
|
|
|
wrapper.vm
|
|
|
|
.$nextTick()
|
|
|
|
.then(() => {
|
|
|
|
const noteBodyProps = noteBody.props();
|
|
|
|
|
|
|
|
expect(noteBodyProps.note.note_html).toBe(updatedText);
|
|
|
|
noteBody.vm.$emit('cancelForm');
|
|
|
|
})
|
|
|
|
.then(() => wrapper.vm.$nextTick())
|
|
|
|
.then(() => {
|
|
|
|
const noteBodyProps = noteBody.props();
|
|
|
|
|
|
|
|
expect(noteBodyProps.note.note_html).toBe(note.note_html);
|
|
|
|
})
|
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|