gitlab-org--gitlab-foss/spec/javascripts/boards/mock_data.js

73 lines
1.5 KiB
JavaScript
Raw Normal View History

import BoardService from '~/boards/services/board_service';
2017-12-15 03:31:14 -05:00
export const listObj = {
id: 300,
2016-08-10 08:54:04 -04:00
position: 0,
title: 'Test',
list_type: 'label',
label: {
2017-12-15 03:31:14 -05:00
id: 5000,
2016-08-10 08:54:04 -04:00
title: 'Testing',
color: 'red',
2018-03-29 13:55:53 -04:00
description: 'testing;',
},
2016-08-10 08:54:04 -04:00
};
2017-12-15 03:31:14 -05:00
export const listObjDuplicate = {
id: listObj.id,
2016-08-10 08:54:04 -04:00
position: 1,
title: 'Test',
list_type: 'label',
label: {
id: listObj.label.id,
2016-08-10 08:54:04 -04:00
title: 'Testing',
color: 'red',
2018-03-29 13:55:53 -04:00
description: 'testing;',
},
2016-08-10 08:54:04 -04:00
};
2017-12-15 03:31:14 -05:00
export const BoardsMockData = {
2018-03-29 13:55:53 -04:00
GET: {
'/test/-/boards/1/lists/300/issues?id=300&page=1': {
2018-03-29 13:55:53 -04:00
issues: [
{
title: 'Testing',
id: 1,
iid: 1,
confidential: false,
labels: [],
assignees: [],
},
],
},
},
POST: {
'/test/-/boards/1/lists': listObj,
2016-08-10 08:54:04 -04:00
},
2018-03-29 13:55:53 -04:00
PUT: {
'/test/issue-boards/board/1/lists{/id}': {},
2016-08-10 08:54:04 -04:00
},
2018-03-29 13:55:53 -04:00
DELETE: {
'/test/issue-boards/board/1/lists{/id}': {},
2016-08-10 08:54:04 -04:00
},
};
2018-03-29 13:55:53 -04:00
export const boardsMockInterceptor = config => {
2017-12-15 03:31:14 -05:00
const body = BoardsMockData[config.method.toUpperCase()][config.url];
return [200, body];
};
2017-12-15 03:31:14 -05:00
export const mockBoardService = (opts = {}) => {
const boardsEndpoint = opts.boardsEndpoint || '/test/issue-boards/boards.json';
const listsEndpoint = opts.listsEndpoint || '/test/-/boards/1/lists';
2017-09-06 02:49:19 -04:00
const bulkUpdatePath = opts.bulkUpdatePath || '';
const boardId = opts.boardId || '1';
return new BoardService({
boardsEndpoint,
listsEndpoint,
bulkUpdatePath,
boardId,
});
};