2018-05-09 12:01:36 +05:30
|
|
|
import $ from 'jquery';
|
2018-03-17 18:26:18 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import appComponent from '~/groups/components/app.vue';
|
|
|
|
import groupFolderComponent from '~/groups/components/group_folder.vue';
|
|
|
|
import groupItemComponent from '~/groups/components/group_item.vue';
|
|
|
|
import eventHub from '~/groups/event_hub';
|
|
|
|
import GroupsStore from '~/groups/store/groups_store';
|
|
|
|
import GroupsService from '~/groups/service/groups_service';
|
|
|
|
|
|
|
|
import {
|
2018-11-20 20:47:30 +05:30
|
|
|
mockEndpoint,
|
|
|
|
mockGroups,
|
|
|
|
mockSearchedGroups,
|
|
|
|
mockRawPageInfo,
|
|
|
|
mockParentGroupItem,
|
|
|
|
mockRawChildren,
|
|
|
|
mockChildren,
|
|
|
|
mockPageInfo,
|
2018-03-17 18:26:18 +05:30
|
|
|
} from '../mock_data';
|
|
|
|
|
|
|
|
const createComponent = (hideProjects = false) => {
|
|
|
|
const Component = Vue.extend(appComponent);
|
|
|
|
const store = new GroupsStore(false);
|
|
|
|
const service = new GroupsService(mockEndpoint);
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
store.state.pageInfo = mockPageInfo;
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
return new Component({
|
|
|
|
propsData: {
|
|
|
|
store,
|
|
|
|
service,
|
|
|
|
hideProjects,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
const returnServicePromise = (data, failed) =>
|
|
|
|
new Promise((resolve, reject) => {
|
|
|
|
if (failed) {
|
|
|
|
reject(data);
|
|
|
|
} else {
|
|
|
|
resolve({
|
|
|
|
json() {
|
|
|
|
return data;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
describe('AppComponent', () => {
|
|
|
|
let vm;
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
beforeEach(done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
Vue.component('group-folder', groupFolderComponent);
|
|
|
|
Vue.component('group-item', groupItemComponent);
|
|
|
|
|
|
|
|
vm = createComponent();
|
|
|
|
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('computed', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
vm.$mount();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('groups', () => {
|
|
|
|
it('should return list of groups from store', () => {
|
|
|
|
spyOn(vm.store, 'getGroups');
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
const { groups } = vm;
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.store.getGroups).toHaveBeenCalled();
|
|
|
|
expect(groups).not.toBeDefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('pageInfo', () => {
|
|
|
|
it('should return pagination info from store', () => {
|
|
|
|
spyOn(vm.store, 'getPaginationInfo');
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
const { pageInfo } = vm;
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.store.getPaginationInfo).toHaveBeenCalled();
|
|
|
|
expect(pageInfo).not.toBeDefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('methods', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
vm.$mount();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('fetchGroups', () => {
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should call `getGroups` with all the params provided', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm.service, 'getGroups').and.returnValue(returnServicePromise(mockGroups));
|
|
|
|
|
|
|
|
vm.fetchGroups({
|
|
|
|
parentId: 1,
|
|
|
|
page: 2,
|
|
|
|
filterGroupsBy: 'git',
|
|
|
|
sortBy: 'created_desc',
|
|
|
|
archived: true,
|
|
|
|
});
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.service.getGroups).toHaveBeenCalledWith(1, 2, 'git', 'created_desc', true);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should set headers to store for building pagination info when called with `updatePagination`', done => {
|
|
|
|
spyOn(vm.service, 'getGroups').and.returnValue(
|
|
|
|
returnServicePromise({ headers: mockRawPageInfo }),
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm, 'updatePagination');
|
|
|
|
|
|
|
|
vm.fetchGroups({ updatePagination: true });
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.service.getGroups).toHaveBeenCalled();
|
|
|
|
expect(vm.updatePagination).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should show flash error when request fails', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm.service, 'getGroups').and.returnValue(returnServicePromise(null, true));
|
|
|
|
spyOn($, 'scrollTo');
|
|
|
|
spyOn(window, 'Flash');
|
|
|
|
|
|
|
|
vm.fetchGroups({});
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.isLoading).toBe(false);
|
|
|
|
expect($.scrollTo).toHaveBeenCalledWith(0);
|
|
|
|
expect(window.Flash).toHaveBeenCalledWith('An error occurred. Please try again.');
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('fetchAllGroups', () => {
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should fetch default set of groups', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm, 'fetchGroups').and.returnValue(returnServicePromise(mockGroups));
|
|
|
|
spyOn(vm, 'updatePagination').and.callThrough();
|
|
|
|
spyOn(vm, 'updateGroups').and.callThrough();
|
|
|
|
|
|
|
|
vm.fetchAllGroups();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isLoading).toBe(true);
|
|
|
|
expect(vm.fetchGroups).toHaveBeenCalled();
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.isLoading).toBe(false);
|
|
|
|
expect(vm.updateGroups).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should fetch matching set of groups when app is loaded with search query', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm, 'fetchGroups').and.returnValue(returnServicePromise(mockSearchedGroups));
|
|
|
|
spyOn(vm, 'updateGroups').and.callThrough();
|
|
|
|
|
|
|
|
vm.fetchAllGroups();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.fetchGroups).toHaveBeenCalledWith({
|
|
|
|
page: null,
|
|
|
|
filterGroupsBy: null,
|
|
|
|
sortBy: null,
|
|
|
|
updatePagination: true,
|
|
|
|
archived: null,
|
|
|
|
});
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.updateGroups).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('fetchPage', () => {
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should fetch groups for provided page details and update window state', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm, 'fetchGroups').and.returnValue(returnServicePromise(mockGroups));
|
|
|
|
spyOn(vm, 'updateGroups').and.callThrough();
|
2018-10-15 14:42:47 +05:30
|
|
|
const mergeUrlParams = spyOnDependency(appComponent, 'mergeUrlParams').and.callThrough();
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(window.history, 'replaceState');
|
|
|
|
spyOn($, 'scrollTo');
|
|
|
|
|
|
|
|
vm.fetchPage(2, null, null, true);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isLoading).toBe(true);
|
|
|
|
expect(vm.fetchGroups).toHaveBeenCalledWith({
|
|
|
|
page: 2,
|
|
|
|
filterGroupsBy: null,
|
|
|
|
sortBy: null,
|
|
|
|
updatePagination: true,
|
|
|
|
archived: true,
|
|
|
|
});
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.isLoading).toBe(false);
|
|
|
|
expect($.scrollTo).toHaveBeenCalledWith(0);
|
2018-10-15 14:42:47 +05:30
|
|
|
expect(mergeUrlParams).toHaveBeenCalledWith({ page: 2 }, jasmine.any(String));
|
2018-11-20 20:47:30 +05:30
|
|
|
expect(window.history.replaceState).toHaveBeenCalledWith(
|
|
|
|
{
|
|
|
|
page: jasmine.any(String),
|
|
|
|
},
|
|
|
|
jasmine.any(String),
|
|
|
|
jasmine.any(String),
|
|
|
|
);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.updateGroups).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('toggleChildren', () => {
|
|
|
|
let groupItem;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
groupItem = Object.assign({}, mockParentGroupItem);
|
|
|
|
groupItem.isOpen = false;
|
|
|
|
groupItem.isChildrenLoading = false;
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should fetch children of given group and expand it if group is collapsed and children are not loaded', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm, 'fetchGroups').and.returnValue(returnServicePromise(mockRawChildren));
|
|
|
|
spyOn(vm.store, 'setGroupChildren');
|
|
|
|
|
|
|
|
vm.toggleChildren(groupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(groupItem.isChildrenLoading).toBe(true);
|
|
|
|
expect(vm.fetchGroups).toHaveBeenCalledWith({
|
|
|
|
parentId: groupItem.id,
|
|
|
|
});
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.store.setGroupChildren).toHaveBeenCalled();
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should skip network request while expanding group if children are already loaded', () => {
|
|
|
|
spyOn(vm, 'fetchGroups');
|
|
|
|
groupItem.children = mockRawChildren;
|
|
|
|
|
|
|
|
vm.toggleChildren(groupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.fetchGroups).not.toHaveBeenCalled();
|
|
|
|
expect(groupItem.isOpen).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should collapse group if it is already expanded', () => {
|
|
|
|
spyOn(vm, 'fetchGroups');
|
|
|
|
groupItem.isOpen = true;
|
|
|
|
|
|
|
|
vm.toggleChildren(groupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.fetchGroups).not.toHaveBeenCalled();
|
|
|
|
expect(groupItem.isOpen).toBe(false);
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should set `isChildrenLoading` back to `false` if load request fails', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm, 'fetchGroups').and.returnValue(returnServicePromise({}, true));
|
|
|
|
|
|
|
|
vm.toggleChildren(groupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(groupItem.isChildrenLoading).toBe(true);
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(groupItem.isChildrenLoading).toBe(false);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('showLeaveGroupModal', () => {
|
|
|
|
it('caches candidate group (as props) which is to be left', () => {
|
|
|
|
const group = Object.assign({}, mockParentGroupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.targetGroup).toBe(null);
|
|
|
|
expect(vm.targetParentGroup).toBe(null);
|
|
|
|
vm.showLeaveGroupModal(group, mockParentGroupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.targetGroup).not.toBe(null);
|
|
|
|
expect(vm.targetParentGroup).not.toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('updates props which show modal confirmation dialog', () => {
|
|
|
|
const group = Object.assign({}, mockParentGroupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.showModal).toBe(false);
|
|
|
|
expect(vm.groupLeaveConfirmationMessage).toBe('');
|
|
|
|
vm.showLeaveGroupModal(group, mockParentGroupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.showModal).toBe(true);
|
2018-11-20 20:47:30 +05:30
|
|
|
expect(vm.groupLeaveConfirmationMessage).toBe(
|
|
|
|
`Are you sure you want to leave the "${group.fullName}" group?`,
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('hideLeaveGroupModal', () => {
|
|
|
|
it('hides modal confirmation which is shown before leaving the group', () => {
|
|
|
|
const group = Object.assign({}, mockParentGroupItem);
|
|
|
|
vm.showLeaveGroupModal(group, mockParentGroupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.showModal).toBe(true);
|
|
|
|
vm.hideLeaveGroupModal();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.showModal).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('leaveGroup', () => {
|
|
|
|
let groupItem;
|
|
|
|
let childGroupItem;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
groupItem = Object.assign({}, mockParentGroupItem);
|
|
|
|
groupItem.children = mockChildren;
|
2018-11-08 19:23:39 +05:30
|
|
|
[childGroupItem] = groupItem.children;
|
2018-03-17 18:26:18 +05:30
|
|
|
groupItem.isChildrenLoading = false;
|
|
|
|
vm.targetGroup = childGroupItem;
|
|
|
|
vm.targetParentGroup = groupItem;
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('hides modal confirmation leave group and remove group item from tree', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const notice = `You left the "${childGroupItem.fullName}" group.`;
|
|
|
|
spyOn(vm.service, 'leaveGroup').and.returnValue(returnServicePromise({ notice }));
|
|
|
|
spyOn(vm.store, 'removeGroup').and.callThrough();
|
|
|
|
spyOn(window, 'Flash');
|
|
|
|
spyOn($, 'scrollTo');
|
|
|
|
|
|
|
|
vm.leaveGroup();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.showModal).toBe(false);
|
|
|
|
expect(vm.targetGroup.isBeingRemoved).toBe(true);
|
|
|
|
expect(vm.service.leaveGroup).toHaveBeenCalledWith(vm.targetGroup.leavePath);
|
|
|
|
setTimeout(() => {
|
|
|
|
expect($.scrollTo).toHaveBeenCalledWith(0);
|
|
|
|
expect(vm.store.removeGroup).toHaveBeenCalledWith(vm.targetGroup, vm.targetParentGroup);
|
|
|
|
expect(window.Flash).toHaveBeenCalledWith(notice, 'notice');
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should show error flash message if request failed to leave group', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const message = 'An error occurred. Please try again.';
|
2018-11-20 20:47:30 +05:30
|
|
|
spyOn(vm.service, 'leaveGroup').and.returnValue(
|
|
|
|
returnServicePromise({ status: 500 }, true),
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm.store, 'removeGroup').and.callThrough();
|
|
|
|
spyOn(window, 'Flash');
|
|
|
|
|
|
|
|
vm.leaveGroup();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.targetGroup.isBeingRemoved).toBe(true);
|
|
|
|
expect(vm.service.leaveGroup).toHaveBeenCalledWith(childGroupItem.leavePath);
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.store.removeGroup).not.toHaveBeenCalled();
|
|
|
|
expect(window.Flash).toHaveBeenCalledWith(message);
|
|
|
|
expect(vm.targetGroup.isBeingRemoved).toBe(false);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should show appropriate error flash message if request forbids to leave group', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const message = 'Failed to leave the group. Please make sure you are not the only owner.';
|
2018-11-20 20:47:30 +05:30
|
|
|
spyOn(vm.service, 'leaveGroup').and.returnValue(
|
|
|
|
returnServicePromise({ status: 403 }, true),
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(vm.store, 'removeGroup').and.callThrough();
|
|
|
|
spyOn(window, 'Flash');
|
|
|
|
|
|
|
|
vm.leaveGroup(childGroupItem, groupItem);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.targetGroup.isBeingRemoved).toBe(true);
|
|
|
|
expect(vm.service.leaveGroup).toHaveBeenCalledWith(childGroupItem.leavePath);
|
|
|
|
setTimeout(() => {
|
|
|
|
expect(vm.store.removeGroup).not.toHaveBeenCalled();
|
|
|
|
expect(window.Flash).toHaveBeenCalledWith(message);
|
|
|
|
expect(vm.targetGroup.isBeingRemoved).toBe(false);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('updatePagination', () => {
|
|
|
|
it('should set pagination info to store from provided headers', () => {
|
|
|
|
spyOn(vm.store, 'setPaginationInfo');
|
|
|
|
|
|
|
|
vm.updatePagination(mockRawPageInfo);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.store.setPaginationInfo).toHaveBeenCalledWith(mockRawPageInfo);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('updateGroups', () => {
|
|
|
|
it('should call setGroups on store if method was called directly', () => {
|
|
|
|
spyOn(vm.store, 'setGroups');
|
|
|
|
|
|
|
|
vm.updateGroups(mockGroups);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.store.setGroups).toHaveBeenCalledWith(mockGroups);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call setSearchedGroups on store if method was called with fromSearch param', () => {
|
|
|
|
spyOn(vm.store, 'setSearchedGroups');
|
|
|
|
|
|
|
|
vm.updateGroups(mockGroups, true);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.store.setSearchedGroups).toHaveBeenCalledWith(mockGroups);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set `isSearchEmpty` prop based on groups count', () => {
|
|
|
|
vm.updateGroups(mockGroups);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isSearchEmpty).toBe(false);
|
|
|
|
|
|
|
|
vm.updateGroups([]);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isSearchEmpty).toBe(true);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('created', () => {
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should bind event listeners on eventHub', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(eventHub, '$on');
|
|
|
|
|
|
|
|
const newVm = createComponent();
|
|
|
|
newVm.$mount();
|
|
|
|
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
expect(eventHub.$on).toHaveBeenCalledWith('fetchPage', jasmine.any(Function));
|
|
|
|
expect(eventHub.$on).toHaveBeenCalledWith('toggleChildren', jasmine.any(Function));
|
|
|
|
expect(eventHub.$on).toHaveBeenCalledWith('showLeaveGroupModal', jasmine.any(Function));
|
|
|
|
expect(eventHub.$on).toHaveBeenCalledWith('updatePagination', jasmine.any(Function));
|
|
|
|
expect(eventHub.$on).toHaveBeenCalledWith('updateGroups', jasmine.any(Function));
|
|
|
|
newVm.$destroy();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should initialize `searchEmptyMessage` prop with correct string when `hideProjects` is `false`', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const newVm = createComponent();
|
|
|
|
newVm.$mount();
|
|
|
|
Vue.nextTick(() => {
|
2018-11-20 20:47:30 +05:30
|
|
|
expect(newVm.searchEmptyMessage).toBe('No groups or projects matched your search');
|
2018-03-17 18:26:18 +05:30
|
|
|
newVm.$destroy();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should initialize `searchEmptyMessage` prop with correct string when `hideProjects` is `true`', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const newVm = createComponent(true);
|
|
|
|
newVm.$mount();
|
|
|
|
Vue.nextTick(() => {
|
2018-11-20 20:47:30 +05:30
|
|
|
expect(newVm.searchEmptyMessage).toBe('No groups matched your search');
|
2018-03-17 18:26:18 +05:30
|
|
|
newVm.$destroy();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('beforeDestroy', () => {
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should unbind event listeners on eventHub', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
spyOn(eventHub, '$off');
|
|
|
|
|
|
|
|
const newVm = createComponent();
|
|
|
|
newVm.$mount();
|
|
|
|
newVm.$destroy();
|
|
|
|
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
expect(eventHub.$off).toHaveBeenCalledWith('fetchPage', jasmine.any(Function));
|
|
|
|
expect(eventHub.$off).toHaveBeenCalledWith('toggleChildren', jasmine.any(Function));
|
|
|
|
expect(eventHub.$off).toHaveBeenCalledWith('showLeaveGroupModal', jasmine.any(Function));
|
|
|
|
expect(eventHub.$off).toHaveBeenCalledWith('updatePagination', jasmine.any(Function));
|
|
|
|
expect(eventHub.$off).toHaveBeenCalledWith('updateGroups', jasmine.any(Function));
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('template', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
vm.$mount();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should render loading icon', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
vm.isLoading = true;
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
expect(vm.$el.querySelector('.loading-animation')).toBeDefined();
|
|
|
|
expect(vm.$el.querySelector('i.fa').getAttribute('aria-label')).toBe('Loading groups');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('should render groups tree', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
vm.store.state.groups = [mockParentGroupItem];
|
|
|
|
vm.isLoading = false;
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
expect(vm.$el.querySelector('.groups-list-tree-container')).toBeDefined();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-11-20 20:47:30 +05:30
|
|
|
it('renders modal confirmation dialog', done => {
|
2018-03-17 18:26:18 +05:30
|
|
|
vm.groupLeaveConfirmationMessage = 'Are you sure you want to leave the "foo" group?';
|
|
|
|
vm.showModal = true;
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
const modalDialogEl = vm.$el.querySelector('.modal');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(modalDialogEl).not.toBe(null);
|
|
|
|
expect(modalDialogEl.querySelector('.modal-title').innerText.trim()).toBe('Are you sure?');
|
|
|
|
expect(modalDialogEl.querySelector('.btn.btn-warning').innerText.trim()).toBe('Leave');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|