Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mr_widget_related_links_spec.js « components « vue_mr_widget « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 15522f7ac1d931179da9c6c985df5545af13068b (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import { GlLink } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import RelatedLinks from '~/vue_merge_request_widget/components/mr_widget_related_links.vue';

describe('MRWidgetRelatedLinks', () => {
  let wrapper;

  const createComponent = (propsData = {}) => {
    wrapper = shallowMount(RelatedLinks, { propsData });
  };

  afterEach(() => {
    wrapper.destroy();
  });

  describe('computed', () => {
    describe('closesText', () => {
      it('returns Closes text for open merge request', () => {
        createComponent({ state: 'open', relatedLinks: {} });

        expect(wrapper.vm.closesText).toBe('Closes issues');
      });

      it('returns correct text for closed merge request', () => {
        createComponent({ state: 'closed', relatedLinks: {} });

        expect(wrapper.vm.closesText).toBe('Did not close');
      });

      it('returns correct tense for merged request', () => {
        createComponent({ state: 'merged', relatedLinks: {} });

        expect(wrapper.vm.closesText).toBe('Closed');
      });
    });
  });

  it('should have only have closing issues text', () => {
    createComponent({
      relatedLinks: {
        closing: '<a href="#">#23</a> and <a>#42</a>',
        closingCount: 2,
      },
    });
    const content = wrapper
      .text()
      .replace(/\n(\s)+/g, ' ')
      .trim();

    expect(content).toContain('Closes issues #23 and #42');
    expect(content).not.toContain('Mentions');
  });

  it('should have only have mentioned issues text', () => {
    createComponent({
      relatedLinks: {
        mentioned: '<a href="#">#7</a>',
        mentionedCount: 1,
      },
    });

    const content = wrapper
      .text()
      .replace(/\n(\s)+/g, ' ')
      .trim();

    expect(content).toContain('Mentions issue #7');
    expect(content).not.toContain('Closes issues');
  });

  it('should have closing and mentioned issues at the same time', () => {
    createComponent({
      relatedLinks: {
        closing: '<a href="#">#7</a>',
        mentioned: '<a href="#">#23</a> and <a>#42</a>',
        closingCount: 1,
        mentionedCount: 2,
      },
    });
    const content = wrapper
      .text()
      .replace(/\n(\s)+/g, ' ')
      .trim();

    expect(content).toContain('Closes issue #7');
    expect(content).toContain('Mentions issues #23 and #42');
  });

  describe('should have correct assign issues link', () => {
    it.each([
      [1, 'Assign yourself to this issue'],
      [2, 'Assign yourself to these issues'],
    ])('when issue count is %s, link displays correct text', (unassignedCount, text) => {
      const assignToMe = '/assign';

      createComponent({
        relatedLinks: { assignToMe, unassignedCount },
      });

      const glLinkWrapper = wrapper.findComponent(GlLink);

      expect(glLinkWrapper.attributes('href')).toBe(assignToMe);
      expect(glLinkWrapper.text()).toBe(text);
    });

    it('when no link is present', () => {
      createComponent({
        relatedLinks: { assignToMe: '#', unassignedCount: 0 },
      });

      expect(wrapper.findComponent(GlLink).exists()).toBe(false);
    });
  });
});