2018-03-17 18:26:18 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import itemActionsComponent from '~/groups/components/item_actions.vue';
|
|
|
|
import eventHub from '~/groups/event_hub';
|
2018-03-27 19:54:05 +05:30
|
|
|
import mountComponent from 'spec/helpers/vue_mount_component_helper';
|
2018-03-17 18:26:18 +05:30
|
|
|
import { mockParentGroupItem, mockChildren } from '../mock_data';
|
|
|
|
|
|
|
|
const createComponent = (group = mockParentGroupItem, parentGroup = mockChildren[0]) => {
|
|
|
|
const Component = Vue.extend(itemActionsComponent);
|
|
|
|
|
|
|
|
return mountComponent(Component, {
|
|
|
|
group,
|
|
|
|
parentGroup,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('ItemActionsComponent', () => {
|
|
|
|
let vm;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
vm = createComponent();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('methods', () => {
|
|
|
|
describe('onLeaveGroup', () => {
|
|
|
|
it('emits `showLeaveGroupModal` event with `group` and `parentGroup` props', () => {
|
|
|
|
spyOn(eventHub, '$emit');
|
|
|
|
vm.onLeaveGroup();
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
expect(eventHub.$emit).toHaveBeenCalledWith(
|
|
|
|
'showLeaveGroupModal',
|
|
|
|
vm.group,
|
|
|
|
vm.parentGroup,
|
|
|
|
);
|
2018-03-17 18:26:18 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('template', () => {
|
|
|
|
it('should render component template correctly', () => {
|
|
|
|
expect(vm.$el.classList.contains('controls')).toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render Edit Group button with correct attribute values', () => {
|
|
|
|
const group = Object.assign({}, mockParentGroupItem);
|
|
|
|
group.canEdit = true;
|
|
|
|
const newVm = createComponent(group);
|
|
|
|
|
|
|
|
const editBtn = newVm.$el.querySelector('a.edit-group');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(editBtn).toBeDefined();
|
|
|
|
expect(editBtn.classList.contains('no-expand')).toBeTruthy();
|
|
|
|
expect(editBtn.getAttribute('href')).toBe(group.editPath);
|
|
|
|
expect(editBtn.getAttribute('aria-label')).toBe('Edit group');
|
|
|
|
expect(editBtn.dataset.originalTitle).toBe('Edit group');
|
|
|
|
expect(editBtn.querySelectorAll('svg use').length).not.toBe(0);
|
|
|
|
expect(editBtn.querySelector('svg use').getAttribute('xlink:href')).toContain('#settings');
|
|
|
|
|
|
|
|
newVm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render Leave Group button with correct attribute values', () => {
|
|
|
|
const group = Object.assign({}, mockParentGroupItem);
|
|
|
|
group.canLeave = true;
|
|
|
|
const newVm = createComponent(group);
|
|
|
|
|
|
|
|
const leaveBtn = newVm.$el.querySelector('a.leave-group');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(leaveBtn).toBeDefined();
|
|
|
|
expect(leaveBtn.classList.contains('no-expand')).toBeTruthy();
|
|
|
|
expect(leaveBtn.getAttribute('href')).toBe(group.leavePath);
|
|
|
|
expect(leaveBtn.getAttribute('aria-label')).toBe('Leave this group');
|
|
|
|
expect(leaveBtn.dataset.originalTitle).toBe('Leave this group');
|
|
|
|
expect(leaveBtn.querySelectorAll('svg use').length).not.toBe(0);
|
|
|
|
expect(leaveBtn.querySelector('svg use').getAttribute('xlink:href')).toContain('#leave');
|
|
|
|
|
|
|
|
newVm.$destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|