2018-11-08 19:23:39 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import DiffGutterAvatarsComponent from '~/diffs/components/diff_gutter_avatars.vue';
|
|
|
|
import { COUNT_OF_AVATARS_IN_GUTTER } from '~/diffs/constants';
|
|
|
|
import store from '~/mr_notes/stores';
|
|
|
|
import { createComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
|
|
|
|
import discussionsMockData from '../mock_data/diff_discussions';
|
|
|
|
|
|
|
|
describe('DiffGutterAvatars', () => {
|
|
|
|
let component;
|
|
|
|
const getDiscussionsMockData = () => [Object.assign({}, discussionsMockData)];
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
component = createComponentWithStore(Vue.extend(DiffGutterAvatarsComponent), store, {
|
|
|
|
discussions: getDiscussionsMockData(),
|
|
|
|
}).$mount();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('computed', () => {
|
|
|
|
describe('discussionsExpanded', () => {
|
|
|
|
it('should return true when all discussions are expanded', () => {
|
|
|
|
expect(component.discussionsExpanded).toEqual(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return false when all discussions are not expanded', () => {
|
|
|
|
component.discussions[0].expanded = false;
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(component.discussionsExpanded).toEqual(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('allDiscussions', () => {
|
|
|
|
it('should return an array of notes', () => {
|
|
|
|
expect(component.allDiscussions).toEqual([...component.discussions[0].notes]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('notesInGutter', () => {
|
|
|
|
it('should return a subset of discussions to show in gutter', () => {
|
|
|
|
expect(component.notesInGutter.length).toEqual(COUNT_OF_AVATARS_IN_GUTTER);
|
|
|
|
expect(component.notesInGutter[0]).toEqual({
|
|
|
|
note: component.discussions[0].notes[0].note,
|
|
|
|
author: component.discussions[0].notes[0].author,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('moreCount', () => {
|
|
|
|
it('should return count of remaining discussions from gutter', () => {
|
|
|
|
expect(component.moreCount).toEqual(2);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('moreText', () => {
|
|
|
|
it('should return proper text if moreCount > 0', () => {
|
|
|
|
expect(component.moreText).toEqual('2 more comments');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return empty string if there is no discussion', () => {
|
|
|
|
component.discussions = [];
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(component.moreText).toEqual('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('methods', () => {
|
|
|
|
describe('getTooltipText', () => {
|
|
|
|
it('should return original comment if it is shorter than max length', () => {
|
|
|
|
const note = component.discussions[0].notes[0];
|
|
|
|
|
|
|
|
expect(component.getTooltipText(note)).toEqual('Administrator: comment 1');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return truncated version of comment', () => {
|
|
|
|
const note = component.discussions[0].notes[1];
|
|
|
|
|
|
|
|
expect(component.getTooltipText(note)).toEqual('Fatih Acet: comment 2 is r...');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('toggleDiscussions', () => {
|
|
|
|
it('should toggle all discussions', () => {
|
|
|
|
expect(component.discussions[0].expanded).toEqual(true);
|
|
|
|
|
|
|
|
component.$store.dispatch('setInitialNotes', getDiscussionsMockData());
|
|
|
|
component.discussions = component.$store.state.notes.discussions;
|
|
|
|
component.toggleDiscussions();
|
|
|
|
|
|
|
|
expect(component.discussions[0].expanded).toEqual(false);
|
|
|
|
component.$store.dispatch('setInitialNotes', []);
|
|
|
|
});
|
2018-12-23 12:14:25 +05:30
|
|
|
|
|
|
|
it('forces expansion of all discussions', () => {
|
|
|
|
spyOn(component.$store, 'dispatch');
|
|
|
|
|
|
|
|
component.discussions[0].expanded = true;
|
|
|
|
component.discussions.push({
|
|
|
|
...component.discussions[0],
|
|
|
|
id: '123test',
|
|
|
|
expanded: false,
|
|
|
|
});
|
|
|
|
|
|
|
|
component.toggleDiscussions();
|
|
|
|
|
|
|
|
expect(component.$store.dispatch.calls.argsFor(0)).toEqual([
|
|
|
|
'toggleDiscussion',
|
|
|
|
{
|
|
|
|
discussionId: component.discussions[0].id,
|
|
|
|
forceExpanded: true,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
|
|
|
|
expect(component.$store.dispatch.calls.argsFor(1)).toEqual([
|
|
|
|
'toggleDiscussion',
|
|
|
|
{
|
|
|
|
discussionId: component.discussions[1].id,
|
|
|
|
forceExpanded: true,
|
|
|
|
},
|
|
|
|
]);
|
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('template', () => {
|
|
|
|
const buttonSelector = '.js-diff-comment-button';
|
|
|
|
const svgSelector = `${buttonSelector} svg`;
|
|
|
|
const avatarSelector = '.js-diff-comment-avatar';
|
|
|
|
const plusCountSelector = '.js-diff-comment-plus';
|
|
|
|
|
|
|
|
it('should have button to collapse discussions when the discussions expanded', () => {
|
|
|
|
expect(component.$el.querySelector(buttonSelector)).toBeDefined();
|
|
|
|
expect(component.$el.querySelector(svgSelector)).toBeDefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should have user avatars when discussions collapsed', () => {
|
|
|
|
component.discussions[0].expanded = false;
|
|
|
|
|
|
|
|
Vue.nextTick(() => {
|
|
|
|
expect(component.$el.querySelector(buttonSelector)).toBeNull();
|
|
|
|
expect(component.$el.querySelectorAll(avatarSelector).length).toEqual(4);
|
|
|
|
expect(component.$el.querySelector(plusCountSelector)).toBeDefined();
|
|
|
|
expect(component.$el.querySelector(plusCountSelector).textContent).toEqual('+2');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|