summaryrefslogtreecommitdiff
path: root/spec/frontend/diffs/components/diff_view_spec.js
diff options
context:
space:
mode:
Diffstat (limited to 'spec/frontend/diffs/components/diff_view_spec.js')
-rw-r--r--spec/frontend/diffs/components/diff_view_spec.js82
1 files changed, 82 insertions, 0 deletions
diff --git a/spec/frontend/diffs/components/diff_view_spec.js b/spec/frontend/diffs/components/diff_view_spec.js
new file mode 100644
index 00000000000..4d90112d8f6
--- /dev/null
+++ b/spec/frontend/diffs/components/diff_view_spec.js
@@ -0,0 +1,82 @@
+import { shallowMount, createLocalVue } from '@vue/test-utils';
+import Vuex from 'vuex';
+import DiffView from '~/diffs/components/diff_view.vue';
+// import DraftNote from '~/batch_comments/components/draft_note.vue';
+// import DiffRow from '~/diffs/components/diff_row.vue';
+// import DiffCommentCell from '~/diffs/components/diff_comment_cell.vue';
+// import DiffExpansionCell from '~/diffs/components/diff_expansion_cell.vue';
+
+describe('DiffView', () => {
+ const DiffExpansionCell = { template: `<div/>` };
+ const DiffRow = { template: `<div/>` };
+ const DiffCommentCell = { template: `<div/>` };
+ const DraftNote = { template: `<div/>` };
+ const createWrapper = props => {
+ const localVue = createLocalVue();
+ localVue.use(Vuex);
+
+ const batchComments = {
+ getters: {
+ shouldRenderDraftRow: () => false,
+ shouldRenderParallelDraftRow: () => () => true,
+ draftForLine: () => false,
+ draftsForFile: () => false,
+ hasParallelDraftLeft: () => false,
+ hasParallelDraftRight: () => false,
+ },
+ namespaced: true,
+ };
+ const diffs = { getters: { commitId: () => 'abc123' }, namespaced: true };
+ const notes = {
+ state: { selectedCommentPosition: null, selectedCommentPositionHover: null },
+ };
+
+ const store = new Vuex.Store({
+ modules: { diffs, notes, batchComments },
+ });
+
+ const propsData = {
+ diffFile: {},
+ diffLines: [],
+ ...props,
+ };
+ const stubs = { DiffExpansionCell, DiffRow, DiffCommentCell, DraftNote };
+ return shallowMount(DiffView, { propsData, store, localVue, stubs });
+ };
+
+ it('renders a match line', () => {
+ const wrapper = createWrapper({ diffLines: [{ isMatchLineLeft: true }] });
+ expect(wrapper.find(DiffExpansionCell).exists()).toBe(true);
+ });
+
+ it.each`
+ type | side | container | sides | total
+ ${'parallel'} | ${'left'} | ${'.old'} | ${{ left: { lineDraft: {} }, right: { lineDraft: {} } }} | ${2}
+ ${'parallel'} | ${'right'} | ${'.new'} | ${{ left: { lineDraft: {} }, right: { lineDraft: {} } }} | ${2}
+ ${'inline'} | ${'left'} | ${'.old'} | ${{ left: { lineDraft: {} } }} | ${1}
+ ${'inline'} | ${'right'} | ${'.new'} | ${{ right: { lineDraft: {} } }} | ${1}
+ ${'inline'} | ${'left'} | ${'.old'} | ${{ left: { lineDraft: {} }, right: { lineDraft: {} } }} | ${1}
+ `(
+ 'renders a $type comment row with comment cell on $side',
+ ({ type, container, sides, total }) => {
+ const wrapper = createWrapper({
+ diffLines: [{ renderCommentRow: true, ...sides }],
+ inline: type === 'inline',
+ });
+ expect(wrapper.findAll(DiffCommentCell).length).toBe(total);
+ expect(
+ wrapper
+ .find(container)
+ .find(DiffCommentCell)
+ .exists(),
+ ).toBe(true);
+ },
+ );
+
+ it('renders a draft row', () => {
+ const wrapper = createWrapper({
+ diffLines: [{ renderCommentRow: true, left: { lineDraft: { isDraft: true } } }],
+ });
+ expect(wrapper.find(DraftNote).exists()).toBe(true);
+ });
+});