2017-01-11 22:49:57 -05:00
|
|
|
/* eslint-disable comma-dangle, one-var, no-unused-vars */
|
2016-12-13 22:01:05 -05:00
|
|
|
/* global BoardService */
|
|
|
|
/* global boardsMockInterceptor */
|
|
|
|
/* global listObj */
|
|
|
|
/* global listObjDuplicate */
|
2017-03-01 08:26:07 -05:00
|
|
|
/* global ListIssue */
|
2017-09-06 02:49:19 -04:00
|
|
|
/* global mockBoardService */
|
2016-12-13 22:01:05 -05:00
|
|
|
|
2017-03-17 13:21:25 -04:00
|
|
|
import Vue from 'vue';
|
2017-03-11 01:45:34 -05:00
|
|
|
import Cookies from 'js-cookie';
|
2017-03-17 13:21:25 -04:00
|
|
|
|
2017-05-04 08:11:15 -04:00
|
|
|
import '~/lib/utils/url_utility';
|
|
|
|
import '~/boards/models/issue';
|
|
|
|
import '~/boards/models/label';
|
|
|
|
import '~/boards/models/list';
|
|
|
|
import '~/boards/models/assignee';
|
|
|
|
import '~/boards/services/board_service';
|
|
|
|
import '~/boards/stores/boards_store';
|
|
|
|
import './mock_data';
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
describe('Store', () => {
|
2016-08-10 08:54:04 -04:00
|
|
|
beforeEach(() => {
|
2016-11-05 06:53:23 -04:00
|
|
|
Vue.http.interceptors.push(boardsMockInterceptor);
|
2017-09-06 02:49:19 -04:00
|
|
|
gl.boardService = mockBoardService();
|
2016-08-15 04:57:01 -04:00
|
|
|
gl.issueBoards.BoardsStore.create();
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2017-03-01 08:26:07 -05:00
|
|
|
spyOn(gl.boardService, 'moveIssue').and.callFake(() => new Promise((resolve) => {
|
|
|
|
resolve();
|
|
|
|
}));
|
2017-02-14 07:25:45 -05:00
|
|
|
|
2016-10-28 08:07:08 -04:00
|
|
|
Cookies.set('issue_board_welcome_hidden', 'false', {
|
|
|
|
expires: 365 * 10,
|
|
|
|
path: ''
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
});
|
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
afterEach(() => {
|
|
|
|
Vue.http.interceptors = _.without(Vue.http.interceptors, boardsMockInterceptor);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('starts with a blank state', () => {
|
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(0);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
describe('lists', () => {
|
|
|
|
it('creates new list without persisting to DB', () => {
|
|
|
|
gl.issueBoards.BoardsStore.addList(listObj);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(1);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('finds list by ID', () => {
|
|
|
|
gl.issueBoards.BoardsStore.addList(listObj);
|
2017-03-24 09:13:44 -04:00
|
|
|
const list = gl.issueBoards.BoardsStore.findList('id', listObj.id);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2017-03-24 09:13:44 -04:00
|
|
|
expect(list.id).toBe(listObj.id);
|
2016-11-05 06:53:23 -04:00
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('finds list by type', () => {
|
|
|
|
gl.issueBoards.BoardsStore.addList(listObj);
|
|
|
|
const list = gl.issueBoards.BoardsStore.findList('type', 'label');
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(list).toBeDefined();
|
|
|
|
});
|
2016-08-12 11:58:34 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('gets issue when new list added', (done) => {
|
|
|
|
gl.issueBoards.BoardsStore.addList(listObj);
|
2017-03-24 09:13:44 -04:00
|
|
|
const list = gl.issueBoards.BoardsStore.findList('id', listObj.id);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(1);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
setTimeout(() => {
|
|
|
|
expect(list.issues.length).toBe(1);
|
|
|
|
expect(list.issues[0].id).toBe(1);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('persists new list', (done) => {
|
|
|
|
gl.issueBoards.BoardsStore.new({
|
|
|
|
title: 'Test',
|
2017-09-06 02:49:19 -04:00
|
|
|
list_type: 'label',
|
2016-11-05 06:53:23 -04:00
|
|
|
label: {
|
|
|
|
id: 1,
|
|
|
|
title: 'Testing',
|
|
|
|
color: 'red',
|
|
|
|
description: 'testing;'
|
|
|
|
}
|
2016-08-10 08:54:04 -04:00
|
|
|
});
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(1);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
setTimeout(() => {
|
2017-03-24 09:13:44 -04:00
|
|
|
const list = gl.issueBoards.BoardsStore.findList('id', listObj.id);
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(list).toBeDefined();
|
2017-03-24 09:13:44 -04:00
|
|
|
expect(list.id).toBe(listObj.id);
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(list.position).toBe(0);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('check for blank state adding', () => {
|
|
|
|
expect(gl.issueBoards.BoardsStore.shouldAddBlankState()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('check for blank state not adding', () => {
|
|
|
|
gl.issueBoards.BoardsStore.addList(listObj);
|
|
|
|
expect(gl.issueBoards.BoardsStore.shouldAddBlankState()).toBe(false);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it('check for blank state adding when closed list exist', () => {
|
2016-11-05 06:53:23 -04:00
|
|
|
gl.issueBoards.BoardsStore.addList({
|
2017-03-24 08:40:35 -04:00
|
|
|
list_type: 'closed'
|
2016-11-05 06:53:23 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
expect(gl.issueBoards.BoardsStore.shouldAddBlankState()).toBe(true);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('adds the blank state', () => {
|
|
|
|
gl.issueBoards.BoardsStore.addBlankState();
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
const list = gl.issueBoards.BoardsStore.findList('type', 'blank', 'blank');
|
|
|
|
expect(list).toBeDefined();
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('removes list from state', () => {
|
|
|
|
gl.issueBoards.BoardsStore.addList(listObj);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(1);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2017-03-24 09:13:44 -04:00
|
|
|
gl.issueBoards.BoardsStore.removeList(listObj.id, 'label');
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(0);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('moves the position of lists', () => {
|
2017-01-11 22:49:57 -05:00
|
|
|
const listOne = gl.issueBoards.BoardsStore.addList(listObj);
|
|
|
|
const listTwo = gl.issueBoards.BoardsStore.addList(listObjDuplicate);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(2);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2017-03-24 09:13:44 -04:00
|
|
|
gl.issueBoards.BoardsStore.moveList(listOne, [listObjDuplicate.id, listObj.id]);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(listOne.position).toBe(1);
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
it('moves an issue from one list to another', (done) => {
|
2017-01-11 22:49:57 -05:00
|
|
|
const listOne = gl.issueBoards.BoardsStore.addList(listObj);
|
|
|
|
const listTwo = gl.issueBoards.BoardsStore.addList(listObjDuplicate);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(2);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
setTimeout(() => {
|
|
|
|
expect(listOne.issues.length).toBe(1);
|
|
|
|
expect(listTwo.issues.length).toBe(1);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
gl.issueBoards.BoardsStore.moveIssueToList(listOne, listTwo, listOne.findIssue(1));
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
expect(listOne.issues.length).toBe(0);
|
|
|
|
expect(listTwo.issues.length).toBe(1);
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-11-05 06:53:23 -04:00
|
|
|
done();
|
|
|
|
}, 0);
|
2016-08-10 08:54:04 -04:00
|
|
|
});
|
2017-02-14 07:25:45 -05:00
|
|
|
|
|
|
|
it('moves issue to top of another list', (done) => {
|
|
|
|
const listOne = gl.issueBoards.BoardsStore.addList(listObj);
|
|
|
|
const listTwo = gl.issueBoards.BoardsStore.addList(listObjDuplicate);
|
|
|
|
|
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(2);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
listOne.issues[0].id = 2;
|
|
|
|
|
|
|
|
expect(listOne.issues.length).toBe(1);
|
|
|
|
expect(listTwo.issues.length).toBe(1);
|
|
|
|
|
|
|
|
gl.issueBoards.BoardsStore.moveIssueToList(listOne, listTwo, listOne.findIssue(2), 0);
|
|
|
|
|
|
|
|
expect(listOne.issues.length).toBe(0);
|
|
|
|
expect(listTwo.issues.length).toBe(2);
|
|
|
|
expect(listTwo.issues[0].id).toBe(2);
|
|
|
|
expect(gl.boardService.moveIssue).toHaveBeenCalledWith(2, listOne.id, listTwo.id, null, 1);
|
|
|
|
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('moves issue to bottom of another list', (done) => {
|
|
|
|
const listOne = gl.issueBoards.BoardsStore.addList(listObj);
|
|
|
|
const listTwo = gl.issueBoards.BoardsStore.addList(listObjDuplicate);
|
|
|
|
|
|
|
|
expect(gl.issueBoards.BoardsStore.state.lists.length).toBe(2);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
listOne.issues[0].id = 2;
|
|
|
|
|
|
|
|
expect(listOne.issues.length).toBe(1);
|
|
|
|
expect(listTwo.issues.length).toBe(1);
|
|
|
|
|
|
|
|
gl.issueBoards.BoardsStore.moveIssueToList(listOne, listTwo, listOne.findIssue(2), 1);
|
|
|
|
|
|
|
|
expect(listOne.issues.length).toBe(0);
|
|
|
|
expect(listTwo.issues.length).toBe(2);
|
|
|
|
expect(listTwo.issues[1].id).toBe(2);
|
|
|
|
expect(gl.boardService.moveIssue).toHaveBeenCalledWith(2, listOne.id, listTwo.id, 1, null);
|
|
|
|
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('moves issue in list', (done) => {
|
|
|
|
const issue = new ListIssue({
|
|
|
|
title: 'Testing',
|
2017-09-06 02:49:19 -04:00
|
|
|
id: 2,
|
2017-02-14 07:25:45 -05:00
|
|
|
iid: 2,
|
|
|
|
confidential: false,
|
2017-05-04 08:11:15 -04:00
|
|
|
labels: [],
|
|
|
|
assignees: [],
|
2017-02-14 07:25:45 -05:00
|
|
|
});
|
|
|
|
const list = gl.issueBoards.BoardsStore.addList(listObj);
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
list.addIssue(issue);
|
|
|
|
|
|
|
|
expect(list.issues.length).toBe(2);
|
|
|
|
|
|
|
|
gl.issueBoards.BoardsStore.moveIssueInList(list, issue, 0, 1, [1, 2]);
|
|
|
|
|
|
|
|
expect(list.issues[0].id).toBe(2);
|
|
|
|
expect(gl.boardService.moveIssue).toHaveBeenCalledWith(2, null, null, 1, null);
|
|
|
|
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2016-08-10 08:54:04 -04:00
|
|
|
});
|
2016-11-05 06:53:23 -04:00
|
|
|
});
|