2018-03-17 18:26:18 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
import itemStatsComponent from '~/groups/components/item_stats.vue';
|
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,
|
|
|
|
ITEM_TYPE,
|
|
|
|
VISIBILITY_TYPE_ICON,
|
|
|
|
GROUP_VISIBILITY_TYPE,
|
|
|
|
PROJECT_VISIBILITY_TYPE,
|
|
|
|
} from '../mock_data';
|
|
|
|
|
|
|
|
const createComponent = (item = mockParentGroupItem) => {
|
|
|
|
const Component = Vue.extend(itemStatsComponent);
|
|
|
|
|
|
|
|
return mountComponent(Component, {
|
|
|
|
item,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
describe('ItemStatsComponent', () => {
|
|
|
|
describe('computed', () => {
|
|
|
|
describe('visibilityIcon', () => {
|
|
|
|
it('should return icon class based on `item.visibility` value', () => {
|
2018-12-13 13:39:08 +05:30
|
|
|
Object.keys(VISIBILITY_TYPE_ICON).forEach(visibility => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const item = Object.assign({}, mockParentGroupItem, { visibility });
|
|
|
|
const vm = createComponent(item);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.visibilityIcon).toBe(VISIBILITY_TYPE_ICON[visibility]);
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('visibilityTooltip', () => {
|
|
|
|
it('should return tooltip string for Group based on `item.visibility` value', () => {
|
2018-12-13 13:39:08 +05:30
|
|
|
Object.keys(GROUP_VISIBILITY_TYPE).forEach(visibility => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const item = Object.assign({}, mockParentGroupItem, {
|
|
|
|
visibility,
|
|
|
|
type: ITEM_TYPE.GROUP,
|
|
|
|
});
|
|
|
|
const vm = createComponent(item);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.visibilityTooltip).toBe(GROUP_VISIBILITY_TYPE[visibility]);
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return tooltip string for Project based on `item.visibility` value', () => {
|
2018-12-13 13:39:08 +05:30
|
|
|
Object.keys(PROJECT_VISIBILITY_TYPE).forEach(visibility => {
|
2018-03-17 18:26:18 +05:30
|
|
|
const item = Object.assign({}, mockParentGroupItem, {
|
|
|
|
visibility,
|
|
|
|
type: ITEM_TYPE.PROJECT,
|
|
|
|
});
|
|
|
|
const vm = createComponent(item);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.visibilityTooltip).toBe(PROJECT_VISIBILITY_TYPE[visibility]);
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('isProject', () => {
|
|
|
|
it('should return boolean value representing whether `item.type` is Project or not', () => {
|
|
|
|
let item;
|
|
|
|
let vm;
|
|
|
|
|
|
|
|
item = Object.assign({}, mockParentGroupItem, { type: ITEM_TYPE.PROJECT });
|
|
|
|
vm = createComponent(item);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isProject).toBeTruthy();
|
|
|
|
vm.$destroy();
|
|
|
|
|
|
|
|
item = Object.assign({}, mockParentGroupItem, { type: ITEM_TYPE.GROUP });
|
|
|
|
vm = createComponent(item);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isProject).toBeFalsy();
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('isGroup', () => {
|
|
|
|
it('should return boolean value representing whether `item.type` is Group or not', () => {
|
|
|
|
let item;
|
|
|
|
let vm;
|
|
|
|
|
|
|
|
item = Object.assign({}, mockParentGroupItem, { type: ITEM_TYPE.GROUP });
|
|
|
|
vm = createComponent(item);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isGroup).toBeTruthy();
|
|
|
|
vm.$destroy();
|
|
|
|
|
|
|
|
item = Object.assign({}, mockParentGroupItem, { type: ITEM_TYPE.PROJECT });
|
|
|
|
vm = createComponent(item);
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(vm.isGroup).toBeFalsy();
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('template', () => {
|
|
|
|
it('renders component container element correctly', () => {
|
|
|
|
const vm = createComponent();
|
|
|
|
|
|
|
|
expect(vm.$el.classList.contains('stats')).toBeTruthy();
|
|
|
|
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders item visibility icon and tooltip correctly', () => {
|
|
|
|
const vm = createComponent();
|
|
|
|
|
|
|
|
const visibilityIconEl = vm.$el.querySelector('.item-visibility');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(visibilityIconEl).not.toBe(null);
|
|
|
|
expect(visibilityIconEl.dataset.originalTitle).toBe(vm.visibilityTooltip);
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(visibilityIconEl.querySelectorAll('svg').length).toBeGreaterThan(0);
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders start count and last updated information for project item correctly', () => {
|
|
|
|
const item = Object.assign({}, mockParentGroupItem, {
|
|
|
|
type: ITEM_TYPE.PROJECT,
|
|
|
|
starCount: 4,
|
|
|
|
});
|
|
|
|
const vm = createComponent(item);
|
|
|
|
|
|
|
|
const projectStarIconEl = vm.$el.querySelector('.project-stars');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
expect(projectStarIconEl).not.toBeNull();
|
|
|
|
expect(projectStarIconEl.querySelectorAll('svg').length).toBeGreaterThan(0);
|
|
|
|
expect(projectStarIconEl.querySelectorAll('.stat-value').length).toBeGreaterThan(0);
|
|
|
|
expect(vm.$el.querySelectorAll('.last-updated').length).toBeGreaterThan(0);
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|