summaryrefslogtreecommitdiff
path: root/spec/frontend/vue_shared/components/issue/issue_warning_spec.js
blob: 891c70bcb5c6772dd0c8a4aa797ae439077c0b77 (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
import { shallowMount } from '@vue/test-utils';
import IssueWarning from '~/vue_shared/components/issue/issue_warning.vue';
import Icon from '~/vue_shared/components/icon.vue';

describe('Issue Warning Component', () => {
  let wrapper;

  const findIcon = () => wrapper.find(Icon);
  const findLockedBlock = () => wrapper.find({ ref: 'locked' });
  const findConfidentialBlock = () => wrapper.find({ ref: 'confidential' });
  const findLockedAndConfidentialBlock = () => wrapper.find({ ref: 'lockedAndConfidential' });

  const createComponent = props => {
    wrapper = shallowMount(IssueWarning, {
      propsData: {
        ...props,
      },
    });
  };

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

  describe('when issue is locked but not confidential', () => {
    beforeEach(() => {
      createComponent({
        isLocked: true,
        lockedIssueDocsPath: 'locked-path',
        isConfidential: false,
      });
    });

    it('renders information about locked issue', () => {
      expect(findLockedBlock().exists()).toBe(true);
      expect(findLockedBlock().element).toMatchSnapshot();
    });

    it('renders warning icon', () => {
      expect(findIcon().exists()).toBe(true);
    });

    it('does not render information about locked and confidential issue', () => {
      expect(findLockedAndConfidentialBlock().exists()).toBe(false);
    });

    it('does not render information about confidential issue', () => {
      expect(findConfidentialBlock().exists()).toBe(false);
    });
  });

  describe('when issue is confidential but not locked', () => {
    beforeEach(() => {
      createComponent({
        isLocked: false,
        isConfidential: true,
        confidentialIssueDocsPath: 'confidential-path',
      });
    });

    it('renders information about confidential issue', () => {
      expect(findConfidentialBlock().exists()).toBe(true);
      expect(findConfidentialBlock().element).toMatchSnapshot();
    });

    it('renders warning icon', () => {
      expect(wrapper.find(Icon).exists()).toBe(true);
    });

    it('does not render information about locked issue', () => {
      expect(findLockedBlock().exists()).toBe(false);
    });

    it('does not render information about locked and confidential issue', () => {
      expect(findLockedAndConfidentialBlock().exists()).toBe(false);
    });
  });

  describe('when issue is locked and confidential', () => {
    beforeEach(() => {
      createComponent({
        isLocked: true,
        isConfidential: true,
      });
    });

    it('renders information about locked and confidential issue', () => {
      expect(findLockedAndConfidentialBlock().exists()).toBe(true);
      expect(findLockedAndConfidentialBlock().element).toMatchSnapshot();
    });

    it('does not render warning icon', () => {
      expect(wrapper.find(Icon).exists()).toBe(false);
    });

    it('does not render information about locked issue', () => {
      expect(findLockedBlock().exists()).toBe(false);
    });

    it('does not render information about confidential issue', () => {
      expect(findConfidentialBlock().exists()).toBe(false);
    });
  });
});