Commit 05e61c36 authored by Eric Eastwood's avatar Eric Eastwood

Use shared interceptor in note specs

parent 9469979a
...@@ -8,28 +8,6 @@ describe('issue_note_app', () => { ...@@ -8,28 +8,6 @@ describe('issue_note_app', () => {
let mountComponent; let mountComponent;
let vm; let vm;
const individualNoteInterceptor = (request, next) => {
next(request.respondWith(JSON.stringify(mockData.individualNoteServerResponse), {
status: 200,
}));
};
const noteInterceptor = (request, next) => {
if (request.url === '/gitlab-org/gitlab-ce/issues/26/discussions.json') {
next(request.respondWith(JSON.stringify(mockData.discussionNoteServerResponse), {
status: 200,
}));
} else if (request.url === '/gitlab-org/gitlab-ce/noteable/issue/98/notes') {
next(request.respondWith(JSON.stringify(mockData.notesPollingResponse), {
status: 200,
}));
} else if (request.method === 'PUT' && request.url === '/gitlab-org/gitlab-ce/notes/1471') {
next(request.respondWith(JSON.stringify(mockData.updatedNoteResponse), {
status: 200,
}));
}
};
beforeEach(() => { beforeEach(() => {
const IssueNotesApp = Vue.extend(issueNotesApp); const IssueNotesApp = Vue.extend(issueNotesApp);
...@@ -85,16 +63,16 @@ describe('issue_note_app', () => { ...@@ -85,16 +63,16 @@ describe('issue_note_app', () => {
describe('render', () => { describe('render', () => {
beforeEach(() => { beforeEach(() => {
Vue.http.interceptors.push(individualNoteInterceptor); Vue.http.interceptors.push(mockData.individualNoteInterceptor);
vm = mountComponent(); vm = mountComponent();
}); });
afterEach(() => { afterEach(() => {
Vue.http.interceptors = _.without(Vue.http.interceptors, individualNoteInterceptor); Vue.http.interceptors = _.without(Vue.http.interceptors, mockData.individualNoteInterceptor);
}); });
it('should render list of notes', (done) => { it('should render list of notes', (done) => {
const note = mockData.individualNoteServerResponse[0].notes[0]; const note = mockData.INDIVIDUAL_NOTE_RESPONSE_MAP.GET['/gitlab-org/gitlab-ce/issues/26/discussions.json'][0].notes[0];
setTimeout(() => { setTimeout(() => {
expect( expect(
...@@ -140,13 +118,16 @@ describe('issue_note_app', () => { ...@@ -140,13 +118,16 @@ describe('issue_note_app', () => {
describe('update note', () => { describe('update note', () => {
describe('individual note', () => { describe('individual note', () => {
beforeEach(() => { beforeEach(() => {
Vue.http.interceptors.push(noteInterceptor); Vue.http.interceptors.push(mockData.individualNoteInterceptor);
spyOn(service, 'updateNote').and.callThrough(); spyOn(service, 'updateNote').and.callThrough();
vm = mountComponent(); vm = mountComponent();
}); });
afterEach(() => { afterEach(() => {
Vue.http.interceptors = _.without(Vue.http.interceptors, noteInterceptor); Vue.http.interceptors = _.without(
Vue.http.interceptors,
mockData.individualNoteInterceptor,
);
}); });
it('renders edit form', (done) => { it('renders edit form', (done) => {
...@@ -180,13 +161,16 @@ describe('issue_note_app', () => { ...@@ -180,13 +161,16 @@ describe('issue_note_app', () => {
describe('dicussion note', () => { describe('dicussion note', () => {
beforeEach(() => { beforeEach(() => {
Vue.http.interceptors.push(noteInterceptor); Vue.http.interceptors.push(mockData.discussionNoteInterceptor);
spyOn(service, 'updateNote').and.callThrough(); spyOn(service, 'updateNote').and.callThrough();
vm = mountComponent(); vm = mountComponent();
}); });
afterEach(() => { afterEach(() => {
Vue.http.interceptors = _.without(Vue.http.interceptors, noteInterceptor); Vue.http.interceptors = _.without(
Vue.http.interceptors,
mockData.discussionNoteInterceptor,
);
}); });
it('renders edit form', (done) => { it('renders edit form', (done) => {
...@@ -237,12 +221,12 @@ describe('issue_note_app', () => { ...@@ -237,12 +221,12 @@ describe('issue_note_app', () => {
describe('edit form', () => { describe('edit form', () => {
beforeEach(() => { beforeEach(() => {
Vue.http.interceptors.push(individualNoteInterceptor); Vue.http.interceptors.push(mockData.individualNoteInterceptor);
vm = mountComponent(); vm = mountComponent();
}); });
afterEach(() => { afterEach(() => {
Vue.http.interceptors = _.without(Vue.http.interceptors, individualNoteInterceptor); Vue.http.interceptors = _.without(Vue.http.interceptors, mockData.individualNoteInterceptor);
}); });
it('should render markdown docs url', (done) => { it('should render markdown docs url', (done) => {
......
...@@ -312,7 +312,9 @@ export const loggedOutnoteableData = { ...@@ -312,7 +312,9 @@ export const loggedOutnoteableData = {
"preview_note_path": "/gitlab-org/gitlab-ce/preview_markdown?quick_actions_target_id=98&quick_actions_target_type=Issue" "preview_note_path": "/gitlab-org/gitlab-ce/preview_markdown?quick_actions_target_id=98&quick_actions_target_type=Issue"
} }
export const individualNoteServerResponse = [{ export const INDIVIDUAL_NOTE_RESPONSE_MAP = {
'GET': {
'/gitlab-org/gitlab-ce/issues/26/discussions.json': [{
"id": "0fb4e0e3f9276e55ff32eb4195add694aece4edd", "id": "0fb4e0e3f9276e55ff32eb4195add694aece4edd",
"reply_id": "0fb4e0e3f9276e55ff32eb4195add694aece4edd", "reply_id": "0fb4e0e3f9276e55ff32eb4195add694aece4edd",
"expanded": true, "expanded": true,
...@@ -404,19 +406,18 @@ export const individualNoteServerResponse = [{ ...@@ -404,19 +406,18 @@ export const individualNoteServerResponse = [{
"path": "/gitlab-org/gitlab-ce/notes/1391" "path": "/gitlab-org/gitlab-ce/notes/1391"
}], }],
"individual_note": true "individual_note": true
}]; }],
'/gitlab-org/gitlab-ce/noteable/issue/98/notes': {
export const discussionNoteServerResponse = [{ last_fetched_at: 1512900838,
"id": "a3ed36e29b1957efb3b68c53e2d7a2b24b1df052", notes: [],
"reply_id": "a3ed36e29b1957efb3b68c53e2d7a2b24b1df052", },
"expanded": true,
"notes": [{
"id": 1471,
"attachment": {
"url": null,
"filename": null,
"image": false
}, },
'PUT': {
'/gitlab-org/gitlab-ce/notes/1471': {
"commands_changes": null,
"valid": true,
"id": 1471,
"attachment": null,
"author": { "author": {
"id": 1, "id": 1,
"name": "Root", "name": "Root",
...@@ -426,7 +427,7 @@ export const discussionNoteServerResponse = [{ ...@@ -426,7 +427,7 @@ export const discussionNoteServerResponse = [{
"path": "/root" "path": "/root"
}, },
"created_at": "2017-08-08T16:53:00.666Z", "created_at": "2017-08-08T16:53:00.666Z",
"updated_at": "2017-08-08T16:53:00.666Z", "updated_at": "2017-12-10T11:03:21.876Z",
"system": false, "system": false,
"noteable_id": 124, "noteable_id": 124,
"noteable_type": "Issue", "noteable_type": "Issue",
...@@ -435,6 +436,15 @@ export const discussionNoteServerResponse = [{ ...@@ -435,6 +436,15 @@ export const discussionNoteServerResponse = [{
"human_access": "Owner", "human_access": "Owner",
"note": "Adding a comment", "note": "Adding a comment",
"note_html": "\u003cp dir=\"auto\"\u003eAdding a comment\u003c/p\u003e", "note_html": "\u003cp dir=\"auto\"\u003eAdding a comment\u003c/p\u003e",
"last_edited_at": "2017-12-10T11:03:21.876Z",
"last_edited_by": {
"id": 1,
"name": 'Root',
"username": 'root',
"state": 'active',
"avatar_url": null,
"path": '/root',
},
"current_user": { "current_user": {
"can_edit": true "can_edit": true
}, },
...@@ -444,20 +454,25 @@ export const discussionNoteServerResponse = [{ ...@@ -444,20 +454,25 @@ export const discussionNoteServerResponse = [{
"toggle_award_path": "/gitlab-org/gitlab-ce/notes/1471/toggle_award_emoji", "toggle_award_path": "/gitlab-org/gitlab-ce/notes/1471/toggle_award_emoji",
"report_abuse_path": "/abuse_reports/new?ref_url=http%3A%2F%2Flocalhost%3A3000%2Fgitlab-org%2Fgitlab-ce%2Fissues%2F29%23note_1471\u0026user_id=1", "report_abuse_path": "/abuse_reports/new?ref_url=http%3A%2F%2Flocalhost%3A3000%2Fgitlab-org%2Fgitlab-ce%2Fissues%2F29%23note_1471\u0026user_id=1",
"path": "/gitlab-org/gitlab-ce/notes/1471" "path": "/gitlab-org/gitlab-ce/notes/1471"
}], },
"individual_note": false }
}];
export const notesPollingResponse = {
last_fetched_at: 1512900838,
notes: [],
}; };
export const updatedNoteResponse = { export const DISCUSSION_NOTE_RESPONSE_MAP = {
"commands_changes": null, ...INDIVIDUAL_NOTE_RESPONSE_MAP,
"valid": true, 'GET': {
...INDIVIDUAL_NOTE_RESPONSE_MAP.GET,
'/gitlab-org/gitlab-ce/issues/26/discussions.json': [{
"id": "a3ed36e29b1957efb3b68c53e2d7a2b24b1df052",
"reply_id": "a3ed36e29b1957efb3b68c53e2d7a2b24b1df052",
"expanded": true,
"notes": [{
"id": 1471, "id": 1471,
"attachment": null, "attachment": {
"url": null,
"filename": null,
"image": false
},
"author": { "author": {
"id": 1, "id": 1,
"name": "Root", "name": "Root",
...@@ -467,7 +482,7 @@ export const updatedNoteResponse = { ...@@ -467,7 +482,7 @@ export const updatedNoteResponse = {
"path": "/root" "path": "/root"
}, },
"created_at": "2017-08-08T16:53:00.666Z", "created_at": "2017-08-08T16:53:00.666Z",
"updated_at": "2017-12-10T11:03:21.876Z", "updated_at": "2017-08-08T16:53:00.666Z",
"system": false, "system": false,
"noteable_id": 124, "noteable_id": 124,
"noteable_type": "Issue", "noteable_type": "Issue",
...@@ -476,15 +491,6 @@ export const updatedNoteResponse = { ...@@ -476,15 +491,6 @@ export const updatedNoteResponse = {
"human_access": "Owner", "human_access": "Owner",
"note": "Adding a comment", "note": "Adding a comment",
"note_html": "\u003cp dir=\"auto\"\u003eAdding a comment\u003c/p\u003e", "note_html": "\u003cp dir=\"auto\"\u003eAdding a comment\u003c/p\u003e",
"last_edited_at": "2017-12-10T11:03:21.876Z",
"last_edited_by": {
"id": 1,
"name": 'Root',
"username": 'root',
"state": 'active',
"avatar_url": null,
"path": '/root',
},
"current_user": { "current_user": {
"can_edit": true "can_edit": true
}, },
...@@ -494,4 +500,24 @@ export const updatedNoteResponse = { ...@@ -494,4 +500,24 @@ export const updatedNoteResponse = {
"toggle_award_path": "/gitlab-org/gitlab-ce/notes/1471/toggle_award_emoji", "toggle_award_path": "/gitlab-org/gitlab-ce/notes/1471/toggle_award_emoji",
"report_abuse_path": "/abuse_reports/new?ref_url=http%3A%2F%2Flocalhost%3A3000%2Fgitlab-org%2Fgitlab-ce%2Fissues%2F29%23note_1471\u0026user_id=1", "report_abuse_path": "/abuse_reports/new?ref_url=http%3A%2F%2Flocalhost%3A3000%2Fgitlab-org%2Fgitlab-ce%2Fissues%2F29%23note_1471\u0026user_id=1",
"path": "/gitlab-org/gitlab-ce/notes/1471" "path": "/gitlab-org/gitlab-ce/notes/1471"
}],
"individual_note": false
}],
},
}; };
export function individualNoteInterceptor(request, next) {
const body = INDIVIDUAL_NOTE_RESPONSE_MAP[request.method.toUpperCase()][request.url];
next(request.respondWith(JSON.stringify(body), {
status: 200,
}));
}
export function discussionNoteInterceptor(request, next) {
const body = DISCUSSION_NOTE_RESPONSE_MAP[request.method.toUpperCase()][request.url];
next(request.respondWith(JSON.stringify(body), {
status: 200,
}));
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment