2016-12-13 22:01:05 -05:00
|
|
|
/* eslint-disable comma-dangle */
|
|
|
|
/* global BoardService */
|
|
|
|
/* global ListIssue */
|
|
|
|
|
2017-01-09 18:23:54 -05:00
|
|
|
require('~/lib/utils/url_utility');
|
|
|
|
require('~/boards/models/issue');
|
|
|
|
require('~/boards/models/label');
|
|
|
|
require('~/boards/models/list');
|
|
|
|
require('~/boards/models/user');
|
|
|
|
require('~/boards/services/board_service');
|
|
|
|
require('~/boards/stores/boards_store');
|
2016-12-29 16:42:48 -05:00
|
|
|
require('./mock_data');
|
2016-08-10 08:54:04 -04:00
|
|
|
|
|
|
|
describe('Issue model', () => {
|
|
|
|
let issue;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2017-02-01 10:23:01 -05:00
|
|
|
gl.boardService = new BoardService('/test/issue-boards/board', '', '1');
|
2016-08-15 04:57:01 -04:00
|
|
|
gl.issueBoards.BoardsStore.create();
|
2016-08-10 08:54:04 -04:00
|
|
|
|
2016-08-10 13:29:55 -04:00
|
|
|
issue = new ListIssue({
|
2016-08-10 08:54:04 -04:00
|
|
|
title: 'Testing',
|
|
|
|
iid: 1,
|
|
|
|
confidential: false,
|
|
|
|
labels: [{
|
|
|
|
id: 1,
|
|
|
|
title: 'test',
|
|
|
|
color: 'red',
|
|
|
|
description: 'testing'
|
|
|
|
}]
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('has label', () => {
|
|
|
|
expect(issue.labels.length).toBe(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('add new label', () => {
|
|
|
|
issue.addLabel({
|
|
|
|
id: 2,
|
|
|
|
title: 'bug',
|
|
|
|
color: 'blue',
|
|
|
|
description: 'bugs!'
|
|
|
|
});
|
|
|
|
expect(issue.labels.length).toBe(2);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not add existing label', () => {
|
|
|
|
issue.addLabel({
|
|
|
|
id: 2,
|
|
|
|
title: 'test',
|
|
|
|
color: 'blue',
|
|
|
|
description: 'bugs!'
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(issue.labels.length).toBe(1);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('finds label', () => {
|
|
|
|
const label = issue.findLabel(issue.labels[0]);
|
|
|
|
expect(label).toBeDefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes label', () => {
|
|
|
|
const label = issue.findLabel(issue.labels[0]);
|
|
|
|
issue.removeLabel(label);
|
|
|
|
expect(issue.labels.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('removes multiple labels', () => {
|
|
|
|
issue.addLabel({
|
|
|
|
id: 2,
|
|
|
|
title: 'bug',
|
|
|
|
color: 'blue',
|
|
|
|
description: 'bugs!'
|
|
|
|
});
|
|
|
|
expect(issue.labels.length).toBe(2);
|
|
|
|
|
|
|
|
issue.removeLabels([issue.labels[0], issue.labels[1]]);
|
|
|
|
expect(issue.labels.length).toBe(0);
|
|
|
|
});
|
|
|
|
});
|