Convert noteable_note_spec.js to Vue test utils
(cherry picked from commit 861f93e6fc
)
This commit is contained in:
parent
d663c9269e
commit
7430149d4d
2 changed files with 98 additions and 38 deletions
|
@ -1,86 +1,138 @@
|
||||||
import $ from 'jquery';
|
|
||||||
import _ from 'underscore';
|
import _ from 'underscore';
|
||||||
import Vue from 'vue';
|
import { shallowMount, createLocalVue } from '@vue/test-utils';
|
||||||
import createStore from '~/notes/stores';
|
import createStore from '~/notes/stores';
|
||||||
import issueNote from '~/notes/components/noteable_note.vue';
|
import issueNote from '~/notes/components/noteable_note.vue';
|
||||||
|
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';
|
||||||
import { noteableDataMock, notesDataMock, note } from '../mock_data';
|
import { noteableDataMock, notesDataMock, note } from '../mock_data';
|
||||||
|
|
||||||
describe('issue_note', () => {
|
describe('issue_note', () => {
|
||||||
let store;
|
let store;
|
||||||
let vm;
|
let wrapper;
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
const Component = Vue.extend(issueNote);
|
|
||||||
|
|
||||||
store = createStore();
|
store = createStore();
|
||||||
store.dispatch('setNoteableData', noteableDataMock);
|
store.dispatch('setNoteableData', noteableDataMock);
|
||||||
store.dispatch('setNotesData', notesDataMock);
|
store.dispatch('setNotesData', notesDataMock);
|
||||||
|
|
||||||
vm = new Component({
|
const localVue = createLocalVue();
|
||||||
|
wrapper = shallowMount(issueNote, {
|
||||||
store,
|
store,
|
||||||
propsData: {
|
propsData: {
|
||||||
note,
|
note,
|
||||||
},
|
},
|
||||||
}).$mount();
|
sync: false,
|
||||||
|
localVue,
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
vm.$destroy();
|
wrapper.destroy();
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render user information', () => {
|
it('should render user information', () => {
|
||||||
expect(vm.$el.querySelector('.user-avatar-link img').getAttribute('src')).toEqual(
|
const { author } = note;
|
||||||
note.author.avatar_url,
|
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);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render note header content', () => {
|
it('should render note header content', () => {
|
||||||
const el = vm.$el.querySelector('.note-header .note-header-author-name');
|
const noteHeader = wrapper.find(NoteHeader);
|
||||||
|
const noteHeaderProps = noteHeader.props();
|
||||||
|
|
||||||
expect(el.textContent.trim()).toEqual(note.author.name);
|
expect(noteHeaderProps.author).toEqual(note.author);
|
||||||
|
expect(noteHeaderProps.createdAt).toEqual(note.created_at);
|
||||||
|
expect(noteHeaderProps.noteId).toEqual(note.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render note actions', () => {
|
it('should render note actions', () => {
|
||||||
expect(vm.$el.querySelector('.note-actions')).toBeDefined();
|
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({});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render issue body', () => {
|
it('should render issue body', () => {
|
||||||
expect(vm.$el.querySelector('.note-text').innerHTML).toEqual(note.note_html);
|
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('');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('prevents note preview xss', done => {
|
it('prevents note preview xss', done => {
|
||||||
const imgSrc = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';
|
const imgSrc = 'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7';
|
||||||
const noteBody = `<img src="${imgSrc}" onload="alert(1)" />`;
|
const noteBody = `<img src="${imgSrc}" onload="alert(1)" />`;
|
||||||
const alertSpy = spyOn(window, 'alert');
|
const alertSpy = spyOn(window, 'alert');
|
||||||
vm.updateNote = () => new Promise($.noop);
|
store.hotUpdate({
|
||||||
|
actions: {
|
||||||
|
updateNote() {},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const noteBodyComponent = wrapper.find(NoteBody);
|
||||||
|
|
||||||
vm.formUpdateHandler(noteBody, null, $.noop);
|
noteBodyComponent.vm.$emit('handleFormUpdate', noteBody, null, () => {});
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
expect(alertSpy).not.toHaveBeenCalled();
|
expect(alertSpy).not.toHaveBeenCalled();
|
||||||
expect(vm.note.note_html).toEqual(_.escape(noteBody));
|
expect(wrapper.vm.note.note_html).toEqual(_.escape(noteBody));
|
||||||
done();
|
done();
|
||||||
}, 0);
|
}, 0);
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('cancel edit', () => {
|
describe('cancel edit', () => {
|
||||||
it('restores content of updated note', done => {
|
it('restores content of updated note', done => {
|
||||||
const noteBody = 'updated note text';
|
const updatedText = 'updated note text';
|
||||||
vm.updateNote = () => Promise.resolve();
|
store.hotUpdate({
|
||||||
|
actions: {
|
||||||
|
updateNote() {},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const noteBody = wrapper.find(NoteBody);
|
||||||
|
noteBody.vm.resetAutoSave = () => {};
|
||||||
|
|
||||||
vm.formUpdateHandler(noteBody, null, $.noop);
|
noteBody.vm.$emit('handleFormUpdate', updatedText, null, () => {});
|
||||||
|
|
||||||
setTimeout(() => {
|
wrapper.vm
|
||||||
expect(vm.note.note_html).toEqual(noteBody);
|
.$nextTick()
|
||||||
|
.then(() => {
|
||||||
|
const noteBodyProps = noteBody.props();
|
||||||
|
|
||||||
vm.formCancelHandler();
|
expect(noteBodyProps.note.note_html).toBe(updatedText);
|
||||||
|
noteBody.vm.$emit('cancelForm');
|
||||||
|
})
|
||||||
|
.then(() => wrapper.vm.$nextTick())
|
||||||
|
.then(() => {
|
||||||
|
const noteBodyProps = noteBody.props();
|
||||||
|
|
||||||
setTimeout(() => {
|
expect(noteBodyProps.note.note_html).toBe(note.note_html);
|
||||||
expect(vm.note.note_html).toEqual(noteBody);
|
})
|
||||||
|
.then(done)
|
||||||
done();
|
.catch(done.fail);
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
import _ from 'underscore';
|
import _ from 'underscore';
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
|
import UserAvatarLink from '~/vue_shared/components/user_avatar/user_avatar_link.vue';
|
||||||
|
import { TEST_HOST } from 'spec/test_constants';
|
||||||
|
|
||||||
describe('User Avatar Link Component', function() {
|
describe('User Avatar Link Component', function() {
|
||||||
beforeEach(function() {
|
beforeEach(function() {
|
||||||
this.propsData = {
|
this.propsData = {
|
||||||
linkHref: 'myavatarurl.com',
|
linkHref: `${TEST_HOST}/myavatarurl.com`,
|
||||||
imgSize: 99,
|
imgSize: 99,
|
||||||
imgSrc: 'myavatarurl.com',
|
imgSrc: `${TEST_HOST}/myavatarurl.com`,
|
||||||
imgAlt: 'mydisplayname',
|
imgAlt: 'mydisplayname',
|
||||||
imgCssClasses: 'myextraavatarclass',
|
imgCssClasses: 'myextraavatarclass',
|
||||||
tooltipText: 'tooltip text',
|
tooltipText: 'tooltip text',
|
||||||
|
@ -37,11 +38,18 @@ describe('User Avatar Link Component', function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should render <a> as a child element', function() {
|
it('should render <a> as a child element', function() {
|
||||||
expect(this.userAvatarLink.$el.tagName).toBe('A');
|
const link = this.userAvatarLink.$el;
|
||||||
|
|
||||||
|
expect(link.tagName).toBe('A');
|
||||||
|
expect(link.href).toBe(this.propsData.linkHref);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should have <img> as a child element', function() {
|
it('renders imgSrc with imgSize as image', function() {
|
||||||
expect(this.userAvatarLink.$el.querySelector('img')).not.toBeNull();
|
const { imgSrc, imgSize } = this.propsData;
|
||||||
|
const image = this.userAvatarLink.$el.querySelector('img');
|
||||||
|
|
||||||
|
expect(image).not.toBeNull();
|
||||||
|
expect(image.src).toBe(`${imgSrc}?width=${imgSize}`);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should return necessary props as defined', function() {
|
it('should return necessary props as defined', function() {
|
||||||
|
|
Loading…
Reference in a new issue