summaryrefslogtreecommitdiff
path: root/spec/javascripts/vue_mr_widget/components/states/mr_widget_closed_spec.js
blob: 1bf97bbf09393b2e2021c3480ca1c58b6ed545da (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
70
71
72
73
74
import Vue from 'vue';
import closedComponent from '~/vue_merge_request_widget/components/states/mr_widget_closed';

const mr = {
  targetBranch: 'good-branch',
  targetBranchPath: '/good-branch',
  metrics: {
    mergedBy: {},
    mergedAt: 'mergedUpdatedAt',
    closedBy: {
      name: 'Fatih Acet',
      username: 'fatihacet',
    },
    closedAt: 'closedEventUpdatedAt',
    readableMergedAt: '',
    readableClosedAt: '',
  },
  updatedAt: 'mrUpdatedAt',
  closedAt: '1 day ago',
};

const createComponent = () => {
  const Component = Vue.extend(closedComponent);

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

describe('MRWidgetClosed', () => {
  describe('props', () => {
    it('should have props', () => {
      const mrProp = closedComponent.props.mr;

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

  describe('components', () => {
    it('should have components added', () => {
      expect(closedComponent.components['mr-widget-author-and-time']).toBeDefined();
    });
  });

  describe('template', () => {
    let vm;
    let el;

    beforeEach(() => {
      vm = createComponent();
      el = vm.$el;
    });

    afterEach(() => {
      vm.$destroy();
    });

    it('should have correct elements', () => {
      expect(el.querySelector('h4').textContent).toContain('Closed by');
      expect(el.querySelector('h4').textContent).toContain(mr.metrics.closedBy.name);
      expect(el.textContent).toContain('The changes were not merged into');
      expect(el.querySelector('.label-branch').getAttribute('href')).toEqual(mr.targetBranchPath);
      expect(el.querySelector('.label-branch').textContent).toContain(mr.targetBranch);
    });

    it('should use closedEvent updatedAt as tooltip title', () => {
      expect(
        el.querySelector('time').getAttribute('title'),
      ).toBe('closedEventUpdatedAt');
    });
  });
});