2020-01-01 13:55:28 +05:30
|
|
|
import { trimText } from 'helpers/text_helper';
|
|
|
|
import { mount, createLocalVue } from '@vue/test-utils';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import CompareVersionsComponent from '~/diffs/components/compare_versions.vue';
|
|
|
|
import { createStore } from '~/mr_notes/stores';
|
|
|
|
import diffsMockData from '../mock_data/merge_request_diffs';
|
|
|
|
import getDiffWithCommit from '../mock_data/diff_with_commit';
|
|
|
|
|
|
|
|
const localVue = createLocalVue();
|
|
|
|
localVue.use(Vuex);
|
|
|
|
|
|
|
|
describe('CompareVersions', () => {
|
|
|
|
let wrapper;
|
2020-04-22 19:07:51 +05:30
|
|
|
const targetBranchName = 'tmp-wine-dev';
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
const createWrapper = props => {
|
|
|
|
const store = createStore();
|
2020-04-22 19:07:51 +05:30
|
|
|
const mergeRequestDiff = diffsMockData[0];
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
store.state.diffs.addedLines = 10;
|
|
|
|
store.state.diffs.removedLines = 20;
|
|
|
|
store.state.diffs.diffFiles.push('test');
|
2020-04-22 19:07:51 +05:30
|
|
|
store.state.diffs.targetBranchName = targetBranchName;
|
|
|
|
store.state.diffs.mergeRequestDiff = mergeRequestDiff;
|
|
|
|
store.state.diffs.mergeRequestDiffs = diffsMockData;
|
2020-01-01 13:55:28 +05:30
|
|
|
|
|
|
|
wrapper = mount(CompareVersionsComponent, {
|
|
|
|
localVue,
|
|
|
|
store,
|
|
|
|
propsData: {
|
|
|
|
mergeRequestDiffs: diffsMockData,
|
2020-10-24 23:57:45 +05:30
|
|
|
diffFilesCountText: null,
|
2020-01-01 13:55:28 +05:30
|
|
|
...props,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
createWrapper();
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
wrapper.destroy();
|
|
|
|
wrapper = null;
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('template', () => {
|
|
|
|
it('should render Tree List toggle button with correct attribute values', () => {
|
|
|
|
const treeListBtn = wrapper.find('.js-toggle-tree-list');
|
|
|
|
|
|
|
|
expect(treeListBtn.exists()).toBe(true);
|
2020-03-13 15:44:24 +05:30
|
|
|
expect(treeListBtn.attributes('title')).toBe('Hide file browser');
|
2020-11-24 15:15:51 +05:30
|
|
|
expect(treeListBtn.props('icon')).toBe('file-tree');
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should render comparison dropdowns with correct values', () => {
|
|
|
|
const sourceDropdown = wrapper.find('.mr-version-dropdown');
|
|
|
|
const targetDropdown = wrapper.find('.mr-version-compare-dropdown');
|
|
|
|
|
|
|
|
expect(sourceDropdown.exists()).toBe(true);
|
|
|
|
expect(targetDropdown.exists()).toBe(true);
|
|
|
|
expect(sourceDropdown.find('a span').html()).toContain('latest version');
|
2020-04-22 19:07:51 +05:30
|
|
|
expect(targetDropdown.find('a span').html()).toContain(targetBranchName);
|
2020-01-01 13:55:28 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should not render comparison dropdowns if no mergeRequestDiffs are specified', () => {
|
|
|
|
createWrapper({ mergeRequestDiffs: [] });
|
|
|
|
|
|
|
|
const sourceDropdown = wrapper.find('.mr-version-dropdown');
|
|
|
|
const targetDropdown = wrapper.find('.mr-version-compare-dropdown');
|
|
|
|
|
|
|
|
expect(sourceDropdown.exists()).toBe(false);
|
|
|
|
expect(targetDropdown.exists()).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render view types buttons with correct values', () => {
|
|
|
|
const inlineBtn = wrapper.find('#inline-diff-btn');
|
|
|
|
const parallelBtn = wrapper.find('#parallel-diff-btn');
|
|
|
|
|
|
|
|
expect(inlineBtn.exists()).toBe(true);
|
|
|
|
expect(parallelBtn.exists()).toBe(true);
|
|
|
|
expect(inlineBtn.attributes('data-view-type')).toEqual('inline');
|
|
|
|
expect(parallelBtn.attributes('data-view-type')).toEqual('parallel');
|
|
|
|
expect(inlineBtn.html()).toContain('Inline');
|
|
|
|
expect(parallelBtn.html()).toContain('Side-by-side');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('adds container-limiting classes when showFileTree is false with inline diffs', () => {
|
|
|
|
createWrapper({ isLimitedContainer: true });
|
|
|
|
|
|
|
|
const limitedContainer = wrapper.find('.container-limited.limit-container-width');
|
|
|
|
|
|
|
|
expect(limitedContainer.exists()).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not add container-limiting classes when showFileTree is false with inline diffs', () => {
|
|
|
|
createWrapper({ isLimitedContainer: false });
|
|
|
|
|
|
|
|
const limitedContainer = wrapper.find('.container-limited.limit-container-width');
|
|
|
|
|
|
|
|
expect(limitedContainer.exists()).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setInlineDiffViewType', () => {
|
|
|
|
it('should persist the view type in the url', () => {
|
|
|
|
const viewTypeBtn = wrapper.find('#inline-diff-btn');
|
|
|
|
viewTypeBtn.trigger('click');
|
|
|
|
|
|
|
|
expect(window.location.toString()).toContain('?view=inline');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setParallelDiffViewType', () => {
|
|
|
|
it('should persist the view type in the url', () => {
|
|
|
|
const viewTypeBtn = wrapper.find('#parallel-diff-btn');
|
|
|
|
viewTypeBtn.trigger('click');
|
|
|
|
|
|
|
|
expect(window.location.toString()).toContain('?view=parallel');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('commit', () => {
|
|
|
|
beforeEach(done => {
|
|
|
|
wrapper.vm.$store.state.diffs.commit = getDiffWithCommit().commit;
|
|
|
|
wrapper.mergeRequestDiffs = [];
|
|
|
|
|
|
|
|
wrapper.vm.$nextTick(done);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders latest version button', () => {
|
|
|
|
expect(trimText(wrapper.find('.js-latest-version').text())).toBe('Show latest version');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders short commit ID', () => {
|
|
|
|
expect(wrapper.text()).toContain('Viewing commit');
|
|
|
|
expect(wrapper.text()).toContain(wrapper.vm.commit.short_id);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|