154 lines
5.2 KiB
JavaScript
154 lines
5.2 KiB
JavaScript
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 Icon from '~/vue_shared/components/icon.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;
|
|
const targetBranch = { branchName: 'tmp-wine-dev', versionIndex: -1 };
|
|
|
|
const createWrapper = props => {
|
|
const store = createStore();
|
|
|
|
store.state.diffs.addedLines = 10;
|
|
store.state.diffs.removedLines = 20;
|
|
store.state.diffs.diffFiles.push('test');
|
|
|
|
wrapper = mount(CompareVersionsComponent, {
|
|
localVue,
|
|
store,
|
|
propsData: {
|
|
mergeRequestDiffs: diffsMockData,
|
|
mergeRequestDiff: diffsMockData[0],
|
|
diffFilesLength: 0,
|
|
targetBranch,
|
|
...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);
|
|
expect(treeListBtn.attributes('title')).toBe('Hide file browser');
|
|
expect(treeListBtn.find(Icon).props('name')).toBe('file-tree');
|
|
});
|
|
|
|
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');
|
|
expect(targetDropdown.find('a span').html()).toContain(targetBranch.branchName);
|
|
});
|
|
|
|
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('comparableDiffs', () => {
|
|
it('should not contain the first item in the mergeRequestDiffs property', () => {
|
|
const { comparableDiffs } = wrapper.vm;
|
|
const comparableDiffsMock = diffsMockData.slice(1);
|
|
|
|
expect(comparableDiffs).toEqual(comparableDiffsMock);
|
|
});
|
|
});
|
|
|
|
describe('baseVersionPath', () => {
|
|
it('should be set correctly from mergeRequestDiff', () => {
|
|
expect(wrapper.vm.baseVersionPath).toEqual(wrapper.vm.mergeRequestDiff.base_version_path);
|
|
});
|
|
});
|
|
|
|
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);
|
|
});
|
|
});
|
|
});
|