summaryrefslogtreecommitdiff
path: root/spec/javascripts/diffs/components/diff_expansion_cell_spec.js
blob: 63c50c09fce16542aa5f6727c6171cfdef627da4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import Vue from 'vue';
import { createStore } from '~/mr_notes/stores';
import DiffExpansionCell from '~/diffs/components/diff_expansion_cell.vue';
import { createComponentWithStore } from 'spec/helpers/vue_mount_component_helper';
import diffFileMockData from '../mock_data/diff_file';

const EXPAND_UP_CLASS = '.js-unfold';
const EXPAND_DOWN_CLASS = '.js-unfold-down';
const EXPAND_ALL_CLASS = '.js-unfold-all';

describe('DiffExpansionCell', () => {
  const matchLine = diffFileMockData.highlighted_diff_lines[5];

  const createComponent = (options = {}) => {
    const cmp = Vue.extend(DiffExpansionCell);
    const defaults = {
      fileHash: diffFileMockData.file_hash,
      contextLinesPath: 'contextLinesPath',
      line: matchLine,
      isTop: false,
      isBottom: false,
    };
    const props = Object.assign({}, defaults, options);

    return createComponentWithStore(cmp, createStore(), props).$mount();
  };

  describe('top row', () => {
    it('should have "expand up" and "show all" option', () => {
      const vm = createComponent({
        isTop: true,
      });
      const el = vm.$el;

      expect(el.querySelector(EXPAND_UP_CLASS)).not.toBe(null);
      expect(el.querySelector(EXPAND_DOWN_CLASS)).toBe(null);
      expect(el.querySelector(EXPAND_ALL_CLASS)).not.toBe(null);
    });
  });

  describe('middle row', () => {
    it('should have "expand down", "show all", "expand up" option', () => {
      const vm = createComponent();
      const el = vm.$el;

      expect(el.querySelector(EXPAND_UP_CLASS)).not.toBe(null);
      expect(el.querySelector(EXPAND_DOWN_CLASS)).not.toBe(null);
      expect(el.querySelector(EXPAND_ALL_CLASS)).not.toBe(null);
    });
  });

  describe('bottom row', () => {
    it('should have "expand down" and "show all" option', () => {
      const vm = createComponent({
        isBottom: true,
      });
      const el = vm.$el;

      expect(el.querySelector(EXPAND_UP_CLASS)).toBe(null);
      expect(el.querySelector(EXPAND_DOWN_CLASS)).not.toBe(null);
      expect(el.querySelector(EXPAND_ALL_CLASS)).not.toBe(null);
    });
  });
});