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

issue_header_spec.js « components « show « issues « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6acc7004576a61f4bfb4889a64c7a720a9252097 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
import { GlLink, GlSprintf } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import { STATUS_CLOSED, STATUS_OPEN } from '~/issues/constants';
import IssueHeader from '~/issues/show/components/issue_header.vue';
import { __, s__ } from '~/locale';
import IssuableHeader from '~/vue_shared/issuable/show/components/issuable_header.vue';

describe('IssueHeader component', () => {
  let wrapper;

  const findGlLink = () => wrapper.findComponent(GlLink);
  const findIssuableHeader = () => wrapper.findComponent(IssuableHeader);

  const mountComponent = (props = {}) => {
    wrapper = shallowMount(IssueHeader, {
      propsData: {
        author: { id: 48 },
        confidential: false,
        createdAt: '2020-01-23T12:34:56.789Z',
        duplicatedToIssueUrl: '',
        isFirstContribution: false,
        isHidden: false,
        isLocked: false,
        issuableState: 'opened',
        issuableType: 'issue',
        movedToIssueUrl: '',
        promotedToEpicUrl: '',
        ...props,
      },
      stubs: {
        GlSprintf,
      },
    });
  };

  it('renders IssuableHeader component', () => {
    mountComponent();

    expect(findIssuableHeader().props()).toMatchObject({
      author: { id: 48 },
      blocked: false,
      confidential: false,
      createdAt: '2020-01-23T12:34:56.789Z',
      isFirstContribution: false,
      isHidden: false,
      issuableState: 'opened',
      issuableType: 'issue',
      serviceDeskReplyTo: '',
      showWorkItemTypeIcon: true,
      statusIcon: 'issues',
      workspaceType: 'project',
    });
  });

  describe('status badge slot', () => {
    describe('when status is open', () => {
      beforeEach(() => {
        mountComponent({ issuableState: STATUS_OPEN });
      });

      it('renders Open text', () => {
        expect(findIssuableHeader().text()).toBe(__('Open'));
      });

      it('renders correct icon', () => {
        expect(findIssuableHeader().props('statusIcon')).toBe('issues');
      });
    });

    describe('when status is closed', () => {
      beforeEach(() => {
        mountComponent({ issuableState: STATUS_CLOSED });
      });

      it('renders Closed text', () => {
        expect(findIssuableHeader().text()).toBe(s__('IssuableStatus|Closed'));
      });

      it('renders correct icon', () => {
        expect(findIssuableHeader().props('statusIcon')).toBe('issue-closed');
      });

      describe('when issue is marked as duplicate', () => {
        beforeEach(() => {
          mountComponent({
            issuableState: STATUS_CLOSED,
            duplicatedToIssueUrl: 'project/-/issue/5',
          });
        });

        it('renders `Closed (duplicated)`', () => {
          expect(findIssuableHeader().text()).toMatchInterpolatedText('Closed (duplicated)');
        });

        it('links to the duplicated issue', () => {
          expect(findGlLink().attributes('href')).toBe('project/-/issue/5');
        });
      });

      describe('when issue is marked as moved', () => {
        beforeEach(() => {
          mountComponent({ issuableState: STATUS_CLOSED, movedToIssueUrl: 'project/-/issue/6' });
        });

        it('renders `Closed (moved)`', () => {
          expect(findIssuableHeader().text()).toMatchInterpolatedText('Closed (moved)');
        });

        it('links to the moved issue', () => {
          expect(findGlLink().attributes('href')).toBe('project/-/issue/6');
        });
      });

      describe('when issue is marked as promoted', () => {
        beforeEach(() => {
          mountComponent({ issuableState: STATUS_CLOSED, promotedToEpicUrl: 'group/-/epic/7' });
        });

        it('renders `Closed (promoted)`', () => {
          expect(findIssuableHeader().text()).toMatchInterpolatedText('Closed (promoted)');
        });

        it('links to the promoted epic', () => {
          expect(findGlLink().attributes('href')).toBe('group/-/epic/7');
        });
      });
    });
  });
});