summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_mr_widget/components/states/mr_widget_conflicts_spec.js
blob: e7ae85caec4cca9a5af55e5eb7691c5c65ffb43b (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
65
66
67
68
69
import Vue from 'vue';
import conflictsComponent from '~/vue_merge_request_widget/components/states/mr_widget_conflicts';

const path = '/conflicts';
const createComponent = () => {
  const Component = Vue.extend(conflictsComponent);

  return new Component({
    el: document.createElement('div'),
    propsData: {
      mr: {
        canMerge: true,
        conflictResolutionPath: path,
      },
    },
  });
};

describe('MRWidgetConflicts', () => {
  describe('props', () => {
    it('should have props', () => {
      const { mr } = conflictsComponent.props;

      expect(mr.type instanceof Object).toBeTruthy();
      expect(mr.required).toBeTruthy();
    });
  });

  describe('template', () => {
    it('should have correct elements', () => {
      const el = createComponent().$el;
      const resolveButton = el.querySelectorAll('.btn-group .btn')[0];
      const mergeLocallyButton = el.querySelectorAll('.btn-group .btn')[1];

      expect(el.textContent).toContain('There are merge conflicts.');
      expect(el.textContent).not.toContain('ask someone with write access');
      expect(el.querySelector('.btn-success').disabled).toBeTruthy();
      expect(el.querySelectorAll('.btn-group .btn').length).toBe(2);
      expect(resolveButton.textContent).toContain('Resolve conflicts');
      expect(resolveButton.getAttribute('href')).toEqual(path);
      expect(mergeLocallyButton.textContent).toContain('Merge locally');
    });

    describe('when user does not have permission to merge', () => {
      let vm;

      beforeEach(() => {
        vm = createComponent();
        vm.mr.canMerge = false;
      });

      it('should show proper message', (done) => {
        Vue.nextTick(() => {
          expect(vm.$el.textContent).toContain('ask someone with write access');
          done();
        });
      });

      it('should not have action buttons', (done) => {
        Vue.nextTick(() => {
          expect(vm.$el.querySelectorAll('.btn').length).toBe(1);
          expect(vm.$el.querySelector('a.js-resolve-conflicts-button')).toEqual(null);
          expect(vm.$el.querySelector('a.js-merge-locally-button')).toEqual(null);
          done();
        });
      });
    });
  });
});