debian-mirror-gitlab/spec/frontend/boards/board_new_issue_spec.js

197 lines
4.8 KiB
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
/* global List */
import Vue from 'vue';
2018-03-17 18:26:18 +05:30
import MockAdapter from 'axios-mock-adapter';
import axios from '~/lib/utils/axios_utils';
2018-03-27 19:54:05 +05:30
import boardNewIssue from '~/boards/components/board_new_issue.vue';
2018-12-13 13:39:08 +05:30
import boardsStore from '~/boards/stores/boards_store';
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
import '~/boards/models/list';
2020-01-01 13:55:28 +05:30
import { listObj, boardsMockInterceptor } from './mock_data';
2017-08-17 22:00:37 +05:30
describe('Issue boards new issue form', () => {
let vm;
let list;
2018-03-17 18:26:18 +05:30
let mock;
2017-09-10 17:25:29 +05:30
let newIssueMock;
2017-08-17 22:00:37 +05:30
const promiseReturn = {
2018-03-17 18:26:18 +05:30
data: {
iid: 100,
2017-08-17 22:00:37 +05:30
},
};
2017-09-10 17:25:29 +05:30
2017-08-17 22:00:37 +05:30
const submitIssue = () => {
2017-09-10 17:25:29 +05:30
const dummySubmitEvent = {
preventDefault() {},
};
vm.$refs.submitButton = vm.$el.querySelector('.btn-success');
return vm.submit(dummySubmitEvent);
2017-08-17 22:00:37 +05:30
};
2020-04-22 19:07:51 +05:30
beforeEach(() => {
2018-03-17 18:26:18 +05:30
setFixtures('<div class="test-container"></div>');
2017-08-17 22:00:37 +05:30
const BoardNewIssueComp = Vue.extend(boardNewIssue);
2018-03-17 18:26:18 +05:30
mock = new MockAdapter(axios);
mock.onAny().reply(boardsMockInterceptor);
2018-12-13 13:39:08 +05:30
boardsStore.create();
2017-08-17 22:00:37 +05:30
2017-09-10 17:25:29 +05:30
list = new List(listObj);
newIssueMock = Promise.resolve(promiseReturn);
2020-04-22 19:07:51 +05:30
jest.spyOn(list, 'newIssue').mockImplementation(() => newIssueMock);
2017-09-10 17:25:29 +05:30
vm = new BoardNewIssueComp({
propsData: {
list,
},
2018-03-17 18:26:18 +05:30
}).$mount(document.querySelector('.test-container'));
2017-09-10 17:25:29 +05:30
2020-04-22 19:07:51 +05:30
return Vue.nextTick();
2017-08-17 22:00:37 +05:30
});
2018-03-17 18:26:18 +05:30
afterEach(() => {
vm.$destroy();
mock.restore();
});
2020-04-22 19:07:51 +05:30
it('calls submit if submit button is clicked', () => {
jest.spyOn(vm, 'submit').mockImplementation(e => e.preventDefault());
2017-09-10 17:25:29 +05:30
vm.title = 'Testing Title';
2020-04-22 19:07:51 +05:30
return Vue.nextTick().then(() => {
vm.$el.querySelector('.btn-success').click();
2017-09-10 17:25:29 +05:30
2020-04-22 19:07:51 +05:30
expect(vm.submit.mock.calls.length).toBe(1);
});
2017-08-17 22:00:37 +05:30
});
it('disables submit button if title is empty', () => {
expect(vm.$el.querySelector('.btn-success').disabled).toBe(true);
});
2020-04-22 19:07:51 +05:30
it('enables submit button if title is not empty', () => {
2017-08-17 22:00:37 +05:30
vm.title = 'Testing Title';
2020-04-22 19:07:51 +05:30
return Vue.nextTick().then(() => {
expect(vm.$el.querySelector('.form-control').value).toBe('Testing Title');
expect(vm.$el.querySelector('.btn-success').disabled).not.toBe(true);
});
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
it('clears title after clicking cancel', () => {
2017-08-17 22:00:37 +05:30
vm.$el.querySelector('.btn-default').click();
2020-04-22 19:07:51 +05:30
return Vue.nextTick().then(() => {
expect(vm.title).toBe('');
});
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
it('does not create new issue if title is empty', () => {
return submitIssue().then(() => {
expect(list.newIssue).not.toHaveBeenCalled();
});
2017-08-17 22:00:37 +05:30
});
describe('submit success', () => {
2020-04-22 19:07:51 +05:30
it('creates new issue', () => {
2017-08-17 22:00:37 +05:30
vm.title = 'submit title';
2020-04-22 19:07:51 +05:30
return Vue.nextTick()
2017-09-10 17:25:29 +05:30
.then(submitIssue)
.then(() => {
expect(list.newIssue).toHaveBeenCalled();
2020-04-22 19:07:51 +05:30
});
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
it('enables button after submit', () => {
2017-08-17 22:00:37 +05:30
vm.title = 'submit issue';
2020-04-22 19:07:51 +05:30
return Vue.nextTick()
2017-09-10 17:25:29 +05:30
.then(submitIssue)
.then(() => {
expect(vm.$el.querySelector('.btn-success').disabled).toBe(false);
2020-04-22 19:07:51 +05:30
});
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
it('clears title after submit', () => {
2017-08-17 22:00:37 +05:30
vm.title = 'submit issue';
2020-04-22 19:07:51 +05:30
return Vue.nextTick()
2017-09-10 17:25:29 +05:30
.then(submitIssue)
.then(() => {
expect(vm.title).toBe('');
2020-04-22 19:07:51 +05:30
});
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
it('sets detail issue after submit', () => {
2018-12-13 13:39:08 +05:30
expect(boardsStore.detail.issue.title).toBe(undefined);
2017-08-17 22:00:37 +05:30
vm.title = 'submit issue';
2020-04-22 19:07:51 +05:30
return Vue.nextTick()
2017-09-10 17:25:29 +05:30
.then(submitIssue)
.then(() => {
2018-12-13 13:39:08 +05:30
expect(boardsStore.detail.issue.title).toBe('submit issue');
2020-04-22 19:07:51 +05:30
});
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
it('sets detail list after submit', () => {
2017-08-17 22:00:37 +05:30
vm.title = 'submit issue';
2020-04-22 19:07:51 +05:30
return Vue.nextTick()
2017-09-10 17:25:29 +05:30
.then(submitIssue)
.then(() => {
2018-12-13 13:39:08 +05:30
expect(boardsStore.detail.list.id).toBe(list.id);
2020-04-22 19:07:51 +05:30
});
2017-08-17 22:00:37 +05:30
});
2019-12-04 20:38:33 +05:30
2020-04-22 19:07:51 +05:30
it('sets detail weight after submit', () => {
2019-12-04 20:38:33 +05:30
boardsStore.weightFeatureAvailable = true;
vm.title = 'submit issue';
2020-04-22 19:07:51 +05:30
return Vue.nextTick()
2019-12-04 20:38:33 +05:30
.then(submitIssue)
.then(() => {
expect(boardsStore.detail.list.weight).toBe(list.weight);
2020-04-22 19:07:51 +05:30
});
2019-12-04 20:38:33 +05:30
});
2020-04-22 19:07:51 +05:30
it('does not set detail weight after submit', () => {
2019-12-04 20:38:33 +05:30
boardsStore.weightFeatureAvailable = false;
vm.title = 'submit issue';
2020-04-22 19:07:51 +05:30
return Vue.nextTick()
2019-12-04 20:38:33 +05:30
.then(submitIssue)
.then(() => {
expect(boardsStore.detail.list.weight).toBe(list.weight);
2020-04-22 19:07:51 +05:30
});
2019-12-04 20:38:33 +05:30
});
2017-08-17 22:00:37 +05:30
});
describe('submit error', () => {
2017-09-10 17:25:29 +05:30
beforeEach(() => {
newIssueMock = Promise.reject(new Error('My hovercraft is full of eels!'));
2017-08-17 22:00:37 +05:30
vm.title = 'error';
2017-09-10 17:25:29 +05:30
});
2017-08-17 22:00:37 +05:30
2020-04-22 19:07:51 +05:30
it('removes issue', () => {
const lengthBefore = list.issues.length;
return Vue.nextTick()
2017-09-10 17:25:29 +05:30
.then(submitIssue)
.then(() => {
2020-04-22 19:07:51 +05:30
expect(list.issues.length).toBe(lengthBefore);
});
2017-08-17 22:00:37 +05:30
});
2020-04-22 19:07:51 +05:30
it('shows error', () => {
return Vue.nextTick()
2017-09-10 17:25:29 +05:30
.then(submitIssue)
.then(() => {
2017-08-17 22:00:37 +05:30
expect(vm.error).toBe(true);
2020-04-22 19:07:51 +05:30
});
2017-08-17 22:00:37 +05:30
});
});
});