2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
2017-12-19 05:12:32 -05:00
|
|
|
import _ from 'underscore';
|
2017-08-07 13:23:56 -04:00
|
|
|
import Vue from 'vue';
|
2017-12-08 15:24:52 -05:00
|
|
|
import notesApp from '~/notes/components/notes_app.vue';
|
2017-11-30 17:44:41 -05:00
|
|
|
import service from '~/notes/services/notes_service';
|
2018-06-21 08:22:40 -04:00
|
|
|
import createStore from '~/notes/stores';
|
2018-03-20 00:01:17 -04:00
|
|
|
import '~/behaviors/markdown/render_gfm';
|
2018-06-21 08:22:40 -04:00
|
|
|
import { mountComponentWithStore } from 'spec/helpers';
|
2017-08-07 13:23:56 -04:00
|
|
|
import * as mockData from '../mock_data';
|
2018-02-07 16:45:53 -05:00
|
|
|
|
|
|
|
const vueMatchers = {
|
|
|
|
toIncludeElement() {
|
|
|
|
return {
|
|
|
|
compare(vm, selector) {
|
|
|
|
const result = {
|
|
|
|
pass: vm.$el.querySelector(selector) !== null,
|
|
|
|
};
|
|
|
|
return result;
|
|
|
|
},
|
|
|
|
};
|
|
|
|
},
|
|
|
|
};
|
2017-08-04 11:51:35 -04:00
|
|
|
|
2017-12-08 15:24:52 -05:00
|
|
|
describe('note_app', () => {
|
2017-08-07 13:23:56 -04:00
|
|
|
let mountComponent;
|
2017-08-08 19:24:49 -04:00
|
|
|
let vm;
|
2018-06-21 08:22:40 -04:00
|
|
|
let store;
|
2017-08-08 19:24:49 -04:00
|
|
|
|
2017-08-07 13:23:56 -04:00
|
|
|
beforeEach(() => {
|
2018-02-07 16:45:53 -05:00
|
|
|
jasmine.addMatchers(vueMatchers);
|
2018-02-27 19:10:43 -05:00
|
|
|
$('body').attr('data-page', 'projects:merge_requests:show');
|
2018-02-07 16:45:53 -05:00
|
|
|
|
2018-12-11 04:14:59 -05:00
|
|
|
setFixtures('<div class="js-vue-notes-event"><div id="app"></div></div>');
|
|
|
|
|
2017-12-08 15:24:52 -05:00
|
|
|
const IssueNotesApp = Vue.extend(notesApp);
|
2017-08-07 13:23:56 -04:00
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
store = createStore();
|
|
|
|
mountComponent = data => {
|
2017-08-08 19:24:49 -04:00
|
|
|
const props = data || {
|
2017-11-30 17:44:41 -05:00
|
|
|
noteableData: mockData.noteableDataMock,
|
2017-08-08 19:24:49 -04:00
|
|
|
notesData: mockData.notesDataMock,
|
|
|
|
userData: mockData.userDataMock,
|
|
|
|
};
|
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
return mountComponentWithStore(IssueNotesApp, {
|
|
|
|
props,
|
|
|
|
store,
|
2018-12-11 04:14:59 -05:00
|
|
|
el: document.getElementById('app'),
|
2018-06-21 08:22:40 -04:00
|
|
|
});
|
2017-08-08 19:24:49 -04:00
|
|
|
};
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
2017-08-07 13:23:56 -04:00
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
describe('set data', () => {
|
2017-08-07 13:23:56 -04:00
|
|
|
const responseInterceptor = (request, next) => {
|
2018-06-21 08:22:40 -04:00
|
|
|
next(
|
|
|
|
request.respondWith(JSON.stringify([]), {
|
|
|
|
status: 200,
|
|
|
|
}),
|
|
|
|
);
|
2017-08-07 13:23:56 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
Vue.http.interceptors.push(responseInterceptor);
|
2017-08-08 19:24:49 -04:00
|
|
|
vm = mountComponent();
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
Vue.http.interceptors = _.without(Vue.http.interceptors, responseInterceptor);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set notes data', () => {
|
|
|
|
expect(vm.$store.state.notesData).toEqual(mockData.notesDataMock);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set issue data', () => {
|
2017-11-30 17:44:41 -05:00
|
|
|
expect(vm.$store.state.noteableData).toEqual(mockData.noteableDataMock);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should set user data', () => {
|
|
|
|
expect(vm.$store.state.userData).toEqual(mockData.userDataMock);
|
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
it('should fetch discussions', () => {
|
|
|
|
expect(vm.$store.state.discussions).toEqual([]);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
|
2017-08-08 09:54:43 -04:00
|
|
|
describe('render', () => {
|
2017-08-07 13:23:56 -04:00
|
|
|
beforeEach(() => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors.push(mockData.individualNoteInterceptor);
|
2017-08-08 19:24:49 -04:00
|
|
|
vm = mountComponent();
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors = _.without(Vue.http.interceptors, mockData.individualNoteInterceptor);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-08 09:54:43 -04:00
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
it('should render list of notes', done => {
|
2018-10-30 16:28:31 -04:00
|
|
|
const note =
|
|
|
|
mockData.INDIVIDUAL_NOTE_RESPONSE_MAP.GET[
|
2018-06-21 08:22:40 -04:00
|
|
|
'/gitlab-org/gitlab-ce/issues/26/discussions.json'
|
|
|
|
][0].notes[0];
|
2017-08-08 09:54:43 -04:00
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(
|
|
|
|
vm.$el.querySelector('.main-notes-list .note-header-author-name').textContent.trim(),
|
|
|
|
).toEqual(note.author.name);
|
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
expect(vm.$el.querySelector('.main-notes-list .note-text').innerHTML).toEqual(
|
|
|
|
note.note_html,
|
|
|
|
);
|
2017-08-08 09:54:43 -04:00
|
|
|
done();
|
|
|
|
}, 0);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
|
2017-08-07 13:23:56 -04:00
|
|
|
it('should render form', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-main-target-form').tagName).toEqual('FORM');
|
|
|
|
expect(
|
|
|
|
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
2018-06-11 03:21:04 -04:00
|
|
|
).toEqual('Write a comment or drag your files here…');
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-08 19:24:49 -04:00
|
|
|
|
2018-11-05 07:30:14 -05:00
|
|
|
it('should not render form when commenting is disabled', () => {
|
|
|
|
store.state.commentsDisabled = true;
|
|
|
|
vm = mountComponent();
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-main-target-form')).toEqual(null);
|
|
|
|
});
|
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
it('should render form comment button as disabled', () => {
|
2018-06-21 08:22:40 -04:00
|
|
|
expect(vm.$el.querySelector('.js-note-new-discussion').getAttribute('disabled')).toEqual(
|
|
|
|
'disabled',
|
|
|
|
);
|
2017-08-08 19:24:49 -04:00
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
|
2017-08-07 13:23:56 -04:00
|
|
|
describe('while fetching data', () => {
|
|
|
|
beforeEach(() => {
|
2017-08-08 19:24:49 -04:00
|
|
|
vm = mountComponent();
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
2018-02-27 19:10:43 -05:00
|
|
|
it('renders skeleton notes', () => {
|
|
|
|
expect(vm).toIncludeElement('.animation-container');
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
|
2017-08-07 13:23:56 -04:00
|
|
|
it('should render form', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-main-target-form').tagName).toEqual('FORM');
|
|
|
|
expect(
|
|
|
|
vm.$el.querySelector('.js-main-target-form textarea').getAttribute('placeholder'),
|
2018-06-11 03:21:04 -04:00
|
|
|
).toEqual('Write a comment or drag your files here…');
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
|
2017-08-07 13:23:56 -04:00
|
|
|
describe('update note', () => {
|
|
|
|
describe('individual note', () => {
|
2018-06-21 08:22:40 -04:00
|
|
|
beforeEach(done => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors.push(mockData.individualNoteInterceptor);
|
2017-12-10 05:44:53 -05:00
|
|
|
spyOn(service, 'updateNote').and.callThrough();
|
2017-08-08 19:24:49 -04:00
|
|
|
vm = mountComponent();
|
2018-02-07 16:45:53 -05:00
|
|
|
setTimeout(() => {
|
|
|
|
vm.$el.querySelector('.js-note-edit').click();
|
|
|
|
Vue.nextTick(done);
|
|
|
|
}, 0);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
2017-08-08 09:54:43 -04:00
|
|
|
afterEach(() => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors = _.without(
|
|
|
|
Vue.http.interceptors,
|
|
|
|
mockData.individualNoteInterceptor,
|
|
|
|
);
|
2017-08-08 09:54:43 -04:00
|
|
|
});
|
|
|
|
|
2018-02-07 16:45:53 -05:00
|
|
|
it('renders edit form', () => {
|
|
|
|
expect(vm).toIncludeElement('.js-vue-issue-note-form');
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
it('calls the service to update the note', done => {
|
2018-02-07 16:45:53 -05:00
|
|
|
vm.$el.querySelector('.js-vue-issue-note-form').value = 'this is a note';
|
|
|
|
vm.$el.querySelector('.js-vue-issue-save').click();
|
|
|
|
|
|
|
|
expect(service.updateNote).toHaveBeenCalled();
|
|
|
|
// Wait for the requests to finish before destroying
|
|
|
|
Vue.nextTick()
|
2017-12-10 05:44:53 -05:00
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-02-07 16:45:53 -05:00
|
|
|
describe('discussion note', () => {
|
2018-06-21 08:22:40 -04:00
|
|
|
beforeEach(done => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors.push(mockData.discussionNoteInterceptor);
|
2017-12-10 05:44:53 -05:00
|
|
|
spyOn(service, 'updateNote').and.callThrough();
|
2017-08-08 19:24:49 -04:00
|
|
|
vm = mountComponent();
|
2018-02-07 16:45:53 -05:00
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
vm.$el.querySelector('.js-note-edit').click();
|
|
|
|
Vue.nextTick(done);
|
|
|
|
}, 0);
|
2017-08-08 19:24:49 -04:00
|
|
|
});
|
2017-08-07 13:23:56 -04:00
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
afterEach(() => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors = _.without(
|
|
|
|
Vue.http.interceptors,
|
|
|
|
mockData.discussionNoteInterceptor,
|
|
|
|
);
|
2017-08-08 19:24:49 -04:00
|
|
|
});
|
2017-08-07 13:23:56 -04:00
|
|
|
|
2018-02-07 16:45:53 -05:00
|
|
|
it('renders edit form', () => {
|
|
|
|
expect(vm).toIncludeElement('.js-vue-issue-note-form');
|
2017-08-08 19:24:49 -04:00
|
|
|
});
|
2017-08-07 13:23:56 -04:00
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
it('updates the note and resets the edit form', done => {
|
2018-02-07 16:45:53 -05:00
|
|
|
vm.$el.querySelector('.js-vue-issue-note-form').value = 'this is a note';
|
|
|
|
vm.$el.querySelector('.js-vue-issue-save').click();
|
|
|
|
|
|
|
|
expect(service.updateNote).toHaveBeenCalled();
|
|
|
|
// Wait for the requests to finish before destroying
|
|
|
|
Vue.nextTick()
|
2017-12-10 05:44:53 -05:00
|
|
|
.then(done)
|
|
|
|
.catch(done.fail);
|
2017-08-08 19:24:49 -04:00
|
|
|
});
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
describe('new note form', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
vm = mountComponent();
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
it('should render markdown docs url', () => {
|
2017-08-17 13:25:56 -04:00
|
|
|
const { markdownDocsPath } = mockData.notesDataMock;
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
expect(vm.$el.querySelector(`a[href="${markdownDocsPath}"]`).textContent.trim()).toEqual(
|
|
|
|
'Markdown',
|
|
|
|
);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
2017-08-04 11:51:35 -04:00
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
it('should render quick action docs url', () => {
|
2017-08-17 13:25:56 -04:00
|
|
|
const { quickActionsDocsPath } = mockData.notesDataMock;
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
expect(vm.$el.querySelector(`a[href="${quickActionsDocsPath}"]`).textContent.trim()).toEqual(
|
|
|
|
'quick actions',
|
|
|
|
);
|
2017-08-04 11:51:35 -04:00
|
|
|
});
|
|
|
|
});
|
2017-08-07 13:23:56 -04:00
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
describe('edit form', () => {
|
|
|
|
beforeEach(() => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors.push(mockData.individualNoteInterceptor);
|
2017-08-08 19:24:49 -04:00
|
|
|
vm = mountComponent();
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
2017-08-08 19:24:49 -04:00
|
|
|
afterEach(() => {
|
2017-12-11 16:39:30 -05:00
|
|
|
Vue.http.interceptors = _.without(Vue.http.interceptors, mockData.individualNoteInterceptor);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
it('should render markdown docs url', done => {
|
2017-08-08 19:24:49 -04:00
|
|
|
setTimeout(() => {
|
|
|
|
vm.$el.querySelector('.js-note-edit').click();
|
2017-08-17 13:25:56 -04:00
|
|
|
const { markdownDocsPath } = mockData.notesDataMock;
|
2017-08-08 19:24:49 -04:00
|
|
|
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
expect(
|
2017-08-17 13:25:56 -04:00
|
|
|
vm.$el.querySelector(`.edit-note a[href="${markdownDocsPath}"]`).textContent.trim(),
|
2017-08-08 19:24:49 -04:00
|
|
|
).toEqual('Markdown is supported');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
|
2018-06-21 08:22:40 -04:00
|
|
|
it('should not render quick actions docs url', done => {
|
2017-08-08 19:24:49 -04:00
|
|
|
setTimeout(() => {
|
|
|
|
vm.$el.querySelector('.js-note-edit').click();
|
2017-08-17 13:25:56 -04:00
|
|
|
const { quickActionsDocsPath } = mockData.notesDataMock;
|
2017-08-08 19:24:49 -04:00
|
|
|
|
|
|
|
Vue.nextTick(() => {
|
2018-06-21 08:22:40 -04:00
|
|
|
expect(vm.$el.querySelector(`.edit-note a[href="${quickActionsDocsPath}"]`)).toEqual(
|
|
|
|
null,
|
|
|
|
);
|
2017-08-08 19:24:49 -04:00
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0);
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|
|
|
|
});
|
2018-12-11 04:14:59 -05:00
|
|
|
|
|
|
|
describe('emoji awards', () => {
|
|
|
|
it('dispatches toggleAward after toggleAward event', () => {
|
|
|
|
const toggleAwardEvent = new CustomEvent('toggleAward', {
|
|
|
|
detail: {
|
|
|
|
awardName: 'test',
|
|
|
|
noteId: 1,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
spyOn(vm.$store, 'dispatch');
|
|
|
|
|
|
|
|
vm.$el.parentElement.dispatchEvent(toggleAwardEvent);
|
|
|
|
|
|
|
|
expect(vm.$store.dispatch).toHaveBeenCalledWith('toggleAward', {
|
|
|
|
awardName: 'test',
|
|
|
|
noteId: 1,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2017-08-07 13:23:56 -04:00
|
|
|
});
|