2018-11-08 19:23:39 +05:30
|
|
|
import Vue from 'vue';
|
|
|
|
import Vuex from 'vuex';
|
|
|
|
import diffsModule from '~/diffs/store/modules';
|
|
|
|
import notesModule from '~/notes/stores/modules';
|
|
|
|
import DiffFileHeader from '~/diffs/components/diff_file_header.vue';
|
2019-05-18 00:54:41 +05:30
|
|
|
import mountComponent, { mountComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
|
|
|
|
import diffDiscussionsMockData from '../mock_data/diff_discussions';
|
|
|
|
import { diffViewerModes } from '~/ide/constants';
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
Vue.use(Vuex);
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
describe('diff_file_header', () => {
|
|
|
|
let vm;
|
|
|
|
let props;
|
2019-05-18 00:54:41 +05:30
|
|
|
const diffDiscussionMock = diffDiscussionsMockData;
|
2018-11-08 19:23:39 +05:30
|
|
|
const Component = Vue.extend(DiffFileHeader);
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
const store = new Vuex.Store({
|
|
|
|
modules: {
|
2018-12-05 23:21:45 +05:30
|
|
|
diffs: diffsModule(),
|
|
|
|
notes: notesModule(),
|
2018-11-08 19:23:39 +05:30
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2019-02-15 15:39:39 +05:30
|
|
|
const diffFile = diffDiscussionMock.diff_file;
|
2019-03-02 22:35:43 +05:30
|
|
|
|
|
|
|
diffFile.added_lines = 2;
|
|
|
|
diffFile.removed_lines = 1;
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
props = {
|
2019-02-15 15:39:39 +05:30
|
|
|
diffFile: { ...diffFile },
|
2018-11-08 19:23:39 +05:30
|
|
|
canCurrentUserFork: false,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
afterEach(() => {
|
|
|
|
vm.$destroy();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('computed', () => {
|
|
|
|
describe('icon', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
props.diffFile.blob.icon = 'file-text-o';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the blob icon for files', () => {
|
|
|
|
props.diffFile.submodule = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.icon).toBe(props.diffFile.blob.icon);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the archive icon for submodules', () => {
|
|
|
|
props.diffFile.submodule = true;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.icon).toBe('archive');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('titleLink', () => {
|
|
|
|
beforeEach(() => {
|
2018-12-13 13:39:08 +05:30
|
|
|
props.discussionPath = 'link://to/discussion';
|
2018-11-08 19:23:39 +05:30
|
|
|
Object.assign(props.diffFile, {
|
2019-02-15 15:39:39 +05:30
|
|
|
submodule_link: 'link://to/submodule',
|
|
|
|
submodule_tree_url: 'some://tree/url',
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
it('returns the discussionPath for files', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
props.diffFile.submodule = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
expect(vm.titleLink).toBe(props.discussionPath);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the submoduleTreeUrl for submodules', () => {
|
|
|
|
props.diffFile.submodule = true;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(vm.titleLink).toBe(props.diffFile.submodule_tree_url);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the submoduleLink for submodules without submoduleTreeUrl', () => {
|
|
|
|
Object.assign(props.diffFile, {
|
|
|
|
submodule: true,
|
2019-02-15 15:39:39 +05:30
|
|
|
submodule_tree_url: null,
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(vm.titleLink).toBe(props.diffFile.submodule_link);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
it('sets the correct path to the discussion', () => {
|
|
|
|
props.discussionPath = 'link://to/discussion';
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
const href = vm.$el.querySelector('.js-title-wrapper').getAttribute('href');
|
|
|
|
|
|
|
|
expect(href).toBe(vm.discussionPath);
|
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('filePath', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
Object.assign(props.diffFile, {
|
|
|
|
blob: { id: 'b10b1db10b1d' },
|
2019-02-15 15:39:39 +05:30
|
|
|
file_path: 'path/to/file',
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns the filePath for files', () => {
|
|
|
|
props.diffFile.submodule = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(vm.filePath).toBe(props.diffFile.file_path);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('appends the truncated blob id for submodules', () => {
|
|
|
|
props.diffFile.submodule = true;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.filePath).toBe(
|
2019-02-15 15:39:39 +05:30
|
|
|
`${props.diffFile.file_path} @ ${props.diffFile.blob.id.substr(0, 8)}`,
|
2018-11-08 19:23:39 +05:30
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('titleTag', () => {
|
|
|
|
it('returns a link tag if fileHash is set', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.file_hash = 'some hash';
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.titleTag).toBe('a');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns a span tag if fileHash is not set', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.file_hash = null;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.titleTag).toBe('span');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('isUsingLfs', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
Object.assign(props.diffFile, {
|
2019-02-15 15:39:39 +05:30
|
|
|
stored_externally: true,
|
|
|
|
external_storage: 'lfs',
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns true if file is stored in LFS', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.isUsingLfs).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns false if file is not stored externally', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.stored_externally = false;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.isUsingLfs).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns false if file is not stored in LFS', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.external_storage = 'not lfs';
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.isUsingLfs).toBe(false);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('collapseIcon', () => {
|
|
|
|
it('returns chevron-down if the diff is expanded', () => {
|
|
|
|
props.expanded = true;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.collapseIcon).toBe('chevron-down');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('returns chevron-right if the diff is collapsed', () => {
|
|
|
|
props.expanded = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.collapseIcon).toBe('chevron-right');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('viewFileButtonText', () => {
|
|
|
|
it('contains the truncated content SHA', () => {
|
|
|
|
const dummySha = 'deebd00f is no SHA';
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.content_sha = dummySha;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.viewFileButtonText).not.toContain(dummySha);
|
|
|
|
expect(vm.viewFileButtonText).toContain(dummySha.substr(0, 8));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('viewReplacedFileButtonText', () => {
|
|
|
|
it('contains the truncated base SHA', () => {
|
|
|
|
const dummySha = 'deadabba sings no more';
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.diff_refs.base_sha = dummySha;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.viewReplacedFileButtonText).not.toContain(dummySha);
|
|
|
|
expect(vm.viewReplacedFileButtonText).toContain(dummySha.substr(0, 8));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('methods', () => {
|
|
|
|
describe('handleToggleFile', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
spyOn(vm, '$emit').and.stub();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('emits toggleFile if checkTarget is false', () => {
|
|
|
|
vm.handleToggleFile(null, false);
|
|
|
|
|
|
|
|
expect(vm.$emit).toHaveBeenCalledWith('toggleFile');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('emits toggleFile if checkTarget is true and event target is header', () => {
|
|
|
|
vm.handleToggleFile({ target: vm.$refs.header }, true);
|
|
|
|
|
|
|
|
expect(vm.$emit).toHaveBeenCalledWith('toggleFile');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not emit toggleFile if checkTarget is true and event target is not header', () => {
|
|
|
|
vm.handleToggleFile({ target: 'not header' }, true);
|
|
|
|
|
|
|
|
expect(vm.$emit).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
2019-05-18 00:54:41 +05:30
|
|
|
|
|
|
|
describe('handleFileNameClick', () => {
|
|
|
|
let e;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
e = { preventDefault: () => {} };
|
|
|
|
spyOn(e, 'preventDefault');
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('when file name links to other page', () => {
|
|
|
|
it('does not call preventDefault if submodule tree url exists', () => {
|
|
|
|
vm = mountComponent(Component, {
|
|
|
|
...props,
|
|
|
|
diffFile: { ...props.diffFile, submodule_tree_url: 'foobar.com' },
|
|
|
|
});
|
|
|
|
|
|
|
|
vm.handleFileNameClick(e);
|
|
|
|
|
|
|
|
expect(e.preventDefault).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not call preventDefault if submodule_link exists', () => {
|
|
|
|
vm = mountComponent(Component, {
|
|
|
|
...props,
|
|
|
|
diffFile: { ...props.diffFile, submodule_link: 'foobar.com' },
|
|
|
|
});
|
|
|
|
vm.handleFileNameClick(e);
|
|
|
|
|
|
|
|
expect(e.preventDefault).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not call preventDefault if discussionPath exists', () => {
|
|
|
|
vm = mountComponent(Component, {
|
|
|
|
...props,
|
|
|
|
discussionPath: 'Foo bar',
|
|
|
|
});
|
|
|
|
|
|
|
|
vm.handleFileNameClick(e);
|
|
|
|
|
|
|
|
expect(e.preventDefault).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('scrolling to diff', () => {
|
|
|
|
let scrollToElement;
|
|
|
|
let el;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
el = document.createElement('div');
|
|
|
|
spyOn(document, 'querySelector').and.returnValue(el);
|
|
|
|
scrollToElement = spyOnDependency(DiffFileHeader, 'scrollToElement');
|
|
|
|
vm = mountComponent(Component, props);
|
|
|
|
|
|
|
|
vm.handleFileNameClick(e);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls scrollToElement with file content', () => {
|
|
|
|
expect(scrollToElement).toHaveBeenCalledWith(el);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('element adds the content id to the window location', () => {
|
|
|
|
expect(window.location.hash).toContain(props.diffFile.file_hash);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls preventDefault when button does not link to other page', () => {
|
|
|
|
expect(e.preventDefault).toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('template', () => {
|
|
|
|
describe('collapse toggle', () => {
|
|
|
|
const collapseToggle = () => vm.$el.querySelector('.diff-toggle-caret');
|
|
|
|
|
|
|
|
it('is visible if collapsible is true', () => {
|
|
|
|
props.collapsible = true;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(collapseToggle()).not.toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('is hidden if collapsible is false', () => {
|
|
|
|
props.collapsible = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(collapseToggle()).toBe(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('displays an file icon in the title', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(vm.$el.querySelector('svg.js-file-icon use').getAttribute('xlink:href')).toContain(
|
|
|
|
'ruby',
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('file paths', () => {
|
|
|
|
const filePaths = () => vm.$el.querySelectorAll('.file-title-name');
|
|
|
|
|
|
|
|
it('displays the path of a added file', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.renamed_file = false;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(filePaths()).toHaveLength(1);
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(filePaths()[0]).toHaveText(props.diffFile.file_path);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('displays path for deleted file', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.renamed_file = false;
|
|
|
|
props.diffFile.deleted_file = true;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(filePaths()).toHaveLength(1);
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(filePaths()[0]).toHaveText(`${props.diffFile.file_path} deleted`);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('displays old and new path if the file was renamed', () => {
|
2019-05-18 00:54:41 +05:30
|
|
|
props.diffFile.viewer.name = diffViewerModes.renamed;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(filePaths()).toHaveLength(2);
|
2019-05-18 00:54:41 +05:30
|
|
|
expect(filePaths()[0]).toHaveText(props.diffFile.old_path_html);
|
|
|
|
expect(filePaths()[1]).toHaveText(props.diffFile.new_path_html);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('displays a copy to clipboard button', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
const button = vm.$el.querySelector('.btn-clipboard');
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(button).not.toBe(null);
|
2019-05-18 00:54:41 +05:30
|
|
|
expect(button.dataset.clipboardText).toBe('{"text":"CHANGELOG.rb","gfm":"`CHANGELOG.rb`"}');
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('file mode', () => {
|
|
|
|
it('it displays old and new file mode if it changed', () => {
|
2019-05-18 00:54:41 +05:30
|
|
|
props.diffFile.viewer.name = diffViewerModes.mode_changed;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
const { fileMode } = vm.$refs;
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(fileMode).not.toBe(undefined);
|
2019-02-15 15:39:39 +05:30
|
|
|
expect(fileMode).toContainText(props.diffFile.a_mode);
|
|
|
|
expect(fileMode).toContainText(props.diffFile.b_mode);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('does not display the file mode if it has not changed', () => {
|
2019-05-18 00:54:41 +05:30
|
|
|
props.diffFile.viewer.name = diffViewerModes.text;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
const { fileMode } = vm.$refs;
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(fileMode).toBe(undefined);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('LFS label', () => {
|
|
|
|
const lfsLabel = () => vm.$el.querySelector('.label-lfs');
|
|
|
|
|
|
|
|
it('displays the LFS label for files stored in LFS', () => {
|
|
|
|
Object.assign(props.diffFile, {
|
2019-02-15 15:39:39 +05:30
|
|
|
stored_externally: true,
|
|
|
|
external_storage: 'lfs',
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(lfsLabel()).not.toBe(null);
|
|
|
|
expect(lfsLabel()).toHaveText('LFS');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not display the LFS label for files stored in repository', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.stored_externally = false;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(lfsLabel()).toBe(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('edit button', () => {
|
|
|
|
it('should not render edit button if addMergeRequestButtons is not true', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-edit-blob')).toEqual(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should show edit button when file is editable', () => {
|
|
|
|
props.addMergeRequestButtons = true;
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.edit_path = '/';
|
2018-11-08 19:23:39 +05:30
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
2019-05-18 00:54:41 +05:30
|
|
|
expect(vm.$el.querySelector('.js-edit-blob')).not.toBe(null);
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
it('should not show edit button when file is deleted', () => {
|
|
|
|
props.addMergeRequestButtons = true;
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.deleted_file = true;
|
|
|
|
props.diffFile.edit_path = '/';
|
2018-11-08 19:23:39 +05:30
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-edit-blob')).toEqual(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('addMergeRequestButtons', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
props.addMergeRequestButtons = true;
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.edit_path = '';
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
describe('view on environment button', () => {
|
|
|
|
const url = 'some.external.url/';
|
|
|
|
const title = 'url.title';
|
|
|
|
|
|
|
|
it('displays link to external url', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.external_url = url;
|
|
|
|
props.diffFile.formatted_external_url = title;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector(`a[href="${url}"]`)).not.toBe(null);
|
|
|
|
expect(vm.$el.querySelector(`a[data-original-title="View on ${title}"]`)).not.toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('hides link if no external url', () => {
|
2019-02-15 15:39:39 +05:30
|
|
|
props.diffFile.external_url = '';
|
|
|
|
props.diffFile.formattedExternal_url = title;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector(`a[data-original-title="View on ${title}"]`)).toBe(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('handles toggle discussions', () => {
|
2018-11-18 11:00:15 +05:30
|
|
|
it('renders a disabled button when diff has no discussions', () => {
|
2018-11-08 19:23:39 +05:30
|
|
|
const propsCopy = Object.assign({}, props);
|
|
|
|
propsCopy.diffFile.submodule = false;
|
|
|
|
propsCopy.diffFile.blob = {
|
|
|
|
id: '848ed9407c6730ff16edb3dd24485a0eea24292a',
|
|
|
|
path: 'lib/base.js',
|
|
|
|
name: 'base.js',
|
|
|
|
mode: '100644',
|
2019-02-15 15:39:39 +05:30
|
|
|
readable_text: true,
|
2018-11-08 19:23:39 +05:30
|
|
|
icon: 'file-text-o',
|
|
|
|
};
|
|
|
|
propsCopy.addMergeRequestButtons = true;
|
2019-02-15 15:39:39 +05:30
|
|
|
propsCopy.diffFile.deleted_file = true;
|
2018-11-08 19:23:39 +05:30
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, {
|
|
|
|
props: propsCopy,
|
|
|
|
store,
|
|
|
|
});
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
expect(
|
|
|
|
vm.$el.querySelector('.js-btn-vue-toggle-comments').getAttribute('disabled'),
|
|
|
|
).toEqual('disabled');
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with discussions', () => {
|
|
|
|
it('dispatches toggleFileDiscussions when user clicks on toggle discussions button', () => {
|
|
|
|
const propsCopy = Object.assign({}, props);
|
|
|
|
propsCopy.diffFile.submodule = false;
|
|
|
|
propsCopy.diffFile.blob = {
|
|
|
|
id: '848ed9407c6730ff16edb3dd24485a0eea24292a',
|
|
|
|
path: 'lib/base.js',
|
|
|
|
name: 'base.js',
|
|
|
|
mode: '100644',
|
2019-02-15 15:39:39 +05:30
|
|
|
readable_text: true,
|
2018-11-18 11:00:15 +05:30
|
|
|
icon: 'file-text-o',
|
|
|
|
};
|
|
|
|
propsCopy.addMergeRequestButtons = true;
|
2019-02-15 15:39:39 +05:30
|
|
|
propsCopy.diffFile.deleted_file = true;
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
const discussionGetter = () => [
|
|
|
|
{
|
|
|
|
...diffDiscussionMock,
|
|
|
|
},
|
|
|
|
];
|
2018-12-05 23:21:45 +05:30
|
|
|
const notesModuleMock = notesModule();
|
|
|
|
notesModuleMock.getters.discussions = discussionGetter;
|
2018-11-18 11:00:15 +05:30
|
|
|
vm = mountComponentWithStore(Component, {
|
|
|
|
props: propsCopy,
|
|
|
|
store: new Vuex.Store({
|
|
|
|
modules: {
|
2018-12-05 23:21:45 +05:30
|
|
|
diffs: diffsModule(),
|
|
|
|
notes: notesModuleMock,
|
2018-11-18 11:00:15 +05:30
|
|
|
},
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
|
|
|
|
spyOn(vm, 'toggleFileDiscussions');
|
|
|
|
|
|
|
|
vm.$el.querySelector('.js-btn-vue-toggle-comments').click();
|
|
|
|
|
|
|
|
expect(vm.toggleFileDiscussions).toHaveBeenCalled();
|
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|
2019-05-18 00:54:41 +05:30
|
|
|
|
|
|
|
describe('file actions', () => {
|
|
|
|
it('should not render if diff file has a submodule', () => {
|
|
|
|
props.diffFile.submodule = 'submodule';
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.file-actions')).toEqual(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not render if add merge request buttons is false', () => {
|
|
|
|
props.addMergeRequestButtons = false;
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.file-actions')).toEqual(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('with add merge request buttons enabled', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
props.addMergeRequestButtons = true;
|
|
|
|
props.diffFile.edit_path = 'edit-path';
|
|
|
|
});
|
|
|
|
|
|
|
|
const viewReplacedFileButton = () => vm.$el.querySelector('.js-view-replaced-file');
|
|
|
|
const viewFileButton = () => vm.$el.querySelector('.js-view-file-button');
|
|
|
|
const externalUrl = () => vm.$el.querySelector('.js-external-url');
|
|
|
|
|
|
|
|
it('should render if add merge request buttons is true and diff file does not have a submodule', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.file-actions')).not.toEqual(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not render view replaced file button if no replaced view path is present', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(viewReplacedFileButton()).toEqual(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render view replaced file button if replaced view path is present', () => {
|
|
|
|
props.diffFile.replaced_view_path = 'replaced-view-path';
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(viewReplacedFileButton()).not.toEqual(null);
|
|
|
|
expect(viewReplacedFileButton().getAttribute('href')).toBe('replaced-view-path');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render correct file view button path', () => {
|
|
|
|
props.diffFile.view_path = 'view-path';
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(viewFileButton().getAttribute('href')).toBe('view-path');
|
|
|
|
expect(viewFileButton().getAttribute('data-original-title')).toEqual(
|
|
|
|
`View file @ ${props.diffFile.content_sha.substr(0, 8)}`,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not render external url view link if diff file has no external url', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(externalUrl()).toEqual(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should render external url view link if diff file has external url', () => {
|
|
|
|
props.diffFile.external_url = 'external_url';
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(externalUrl()).not.toEqual(null);
|
|
|
|
expect(externalUrl().getAttribute('href')).toBe('external_url');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('without file blob', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
props.diffFile.blob = null;
|
|
|
|
props.addMergeRequestButtons = true;
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not render toggle discussions button', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-btn-vue-toggle-comments')).toEqual(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should not render edit button', () => {
|
|
|
|
expect(vm.$el.querySelector('.js-edit-blob')).toEqual(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('expand full file button', () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
props.addMergeRequestButtons = true;
|
|
|
|
props.diffFile.edit_path = '/';
|
|
|
|
});
|
|
|
|
|
|
|
|
it('does not render button', () => {
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-expand-file')).toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders button', () => {
|
|
|
|
props.diffFile.is_fully_expanded = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-expand-file')).not.toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('shows fully expanded text', () => {
|
|
|
|
props.diffFile.is_fully_expanded = false;
|
|
|
|
props.diffFile.isShowingFullFile = true;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.ic-doc-changes')).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('shows expand text', () => {
|
|
|
|
props.diffFile.is_fully_expanded = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.ic-doc-expand')).not.toBeNull();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders loading icon', () => {
|
|
|
|
props.diffFile.is_fully_expanded = false;
|
|
|
|
props.diffFile.isLoadingFullFile = true;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
expect(vm.$el.querySelector('.js-expand-file .loading-container')).not.toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('calls toggleFullDiff on click', () => {
|
|
|
|
props.diffFile.is_fully_expanded = false;
|
|
|
|
|
|
|
|
vm = mountComponentWithStore(Component, { props, store });
|
|
|
|
|
|
|
|
spyOn(vm.$store, 'dispatch').and.stub();
|
|
|
|
|
|
|
|
vm.$el.querySelector('.js-expand-file').click();
|
|
|
|
|
|
|
|
expect(vm.$store.dispatch).toHaveBeenCalledWith(
|
|
|
|
'diffs/toggleFullDiff',
|
|
|
|
props.diffFile.file_path,
|
|
|
|
);
|
|
|
|
});
|
2018-11-08 19:23:39 +05:30
|
|
|
});
|
|
|
|
});
|