2021-01-03 14:25:43 +05:30
|
|
|
import { GlButton } from '@gitlab/ui';
|
2021-03-11 19:13:27 +05:30
|
|
|
import { shallowMount, createLocalVue } from '@vue/test-utils';
|
2021-01-03 14:25:43 +05:30
|
|
|
import Vuex from 'vuex';
|
|
|
|
import TimelineToggle, {
|
|
|
|
timelineEnabledTooltip,
|
|
|
|
timelineDisabledTooltip,
|
|
|
|
} from '~/notes/components/timeline_toggle.vue';
|
|
|
|
import { ASC, DESC } from '~/notes/constants';
|
2021-03-11 19:13:27 +05:30
|
|
|
import createStore from '~/notes/stores';
|
2021-01-03 14:25:43 +05:30
|
|
|
import { trackToggleTimelineView } from '~/notes/utils';
|
|
|
|
import Tracking from '~/tracking';
|
|
|
|
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
|
|
|
|
describe('Timeline toggle', () => {
|
|
|
|
let wrapper;
|
|
|
|
let store;
|
|
|
|
const mockEvent = { currentTarget: { blur: jest.fn() } };
|
|
|
|
|
|
|
|
const createComponent = () => {
|
|
|
|
jest.spyOn(store, 'dispatch').mockImplementation();
|
|
|
|
jest.spyOn(Tracking, 'event').mockImplementation();
|
|
|
|
|
|
|
|
wrapper = shallowMount(TimelineToggle, {
|
|
|
|
localVue,
|
|
|
|
store,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const findGlButton = () => wrapper.find(GlButton);
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
store = createStore();
|
|
|
|
createComponent();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
if (wrapper) {
|
|
|
|
wrapper.destroy();
|
|
|
|
wrapper = null;
|
|
|
|
}
|
|
|
|
store.dispatch.mockReset();
|
|
|
|
mockEvent.currentTarget.blur.mockReset();
|
|
|
|
Tracking.event.mockReset();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('ON state', () => {
|
|
|
|
it('should update timeline flag in the store', () => {
|
|
|
|
store.state.isTimelineEnabled = false;
|
|
|
|
findGlButton().vm.$emit('click', mockEvent);
|
|
|
|
expect(store.dispatch).toHaveBeenCalledWith('setTimelineView', true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set sort direction to DESC if not set', () => {
|
|
|
|
store.state.isTimelineEnabled = true;
|
|
|
|
store.state.sortDirection = ASC;
|
|
|
|
findGlButton().vm.$emit('click', mockEvent);
|
|
|
|
expect(store.dispatch).toHaveBeenCalledWith('setDiscussionSortDirection', {
|
|
|
|
direction: DESC,
|
|
|
|
persist: false,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set correct UI state', async () => {
|
|
|
|
store.state.isTimelineEnabled = true;
|
|
|
|
findGlButton().vm.$emit('click', mockEvent);
|
|
|
|
await wrapper.vm.$nextTick();
|
|
|
|
expect(findGlButton().attributes('title')).toBe(timelineEnabledTooltip);
|
|
|
|
expect(findGlButton().attributes('selected')).toBe('true');
|
|
|
|
expect(mockEvent.currentTarget.blur).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should track Snowplow event', async () => {
|
|
|
|
store.state.isTimelineEnabled = true;
|
|
|
|
await wrapper.vm.$nextTick();
|
|
|
|
|
|
|
|
findGlButton().trigger('click');
|
|
|
|
|
|
|
|
const { category, action, label, property, value } = trackToggleTimelineView(true);
|
|
|
|
expect(Tracking.event).toHaveBeenCalledWith(category, action, { label, property, value });
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('OFF state', () => {
|
|
|
|
it('should update timeline flag in the store', () => {
|
|
|
|
store.state.isTimelineEnabled = true;
|
|
|
|
findGlButton().vm.$emit('click', mockEvent);
|
|
|
|
expect(store.dispatch).toHaveBeenCalledWith('setTimelineView', false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should NOT update sort direction', () => {
|
|
|
|
store.state.isTimelineEnabled = false;
|
|
|
|
findGlButton().vm.$emit('click', mockEvent);
|
|
|
|
expect(store.dispatch).not.toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should set correct UI state', async () => {
|
|
|
|
store.state.isTimelineEnabled = false;
|
|
|
|
findGlButton().vm.$emit('click', mockEvent);
|
|
|
|
await wrapper.vm.$nextTick();
|
|
|
|
expect(findGlButton().attributes('title')).toBe(timelineDisabledTooltip);
|
|
|
|
expect(findGlButton().attributes('selected')).toBe(undefined);
|
|
|
|
expect(mockEvent.currentTarget.blur).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should track Snowplow event', async () => {
|
|
|
|
store.state.isTimelineEnabled = false;
|
|
|
|
await wrapper.vm.$nextTick();
|
|
|
|
|
|
|
|
findGlButton().trigger('click');
|
|
|
|
|
|
|
|
const { category, action, label, property, value } = trackToggleTimelineView(false);
|
|
|
|
expect(Tracking.event).toHaveBeenCalledWith(category, action, { label, property, value });
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|