summaryrefslogtreecommitdiff
path: root/spec/frontend/integrations/edit/components/jira_issues_fields_spec.js
blob: f58825f6297a276608f01e3516543fe1a4fe182a (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
import { mount } from '@vue/test-utils';

import { GlFormCheckbox, GlFormInput } from '@gitlab/ui';

import JiraIssuesFields from '~/integrations/edit/components/jira_issues_fields.vue';

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

  const defaultProps = {
    showJiraIssuesIntegration: true,
    editProjectPath: '/edit',
  };

  const createComponent = props => {
    wrapper = mount(JiraIssuesFields, {
      propsData: { ...defaultProps, ...props },
    });
  };

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

  const findEnableCheckbox = () => wrapper.find(GlFormCheckbox);
  const findProjectKey = () => wrapper.find(GlFormInput);
  const expectedBannerText = 'This is a Premium feature';

  describe('template', () => {
    describe('upgrade banner for non-Premium user', () => {
      beforeEach(() => {
        createComponent({ initialProjectKey: '', showJiraIssuesIntegration: false });
      });

      it('shows upgrade banner', () => {
        expect(wrapper.text()).toContain(expectedBannerText);
      });

      it('does not show checkbox and input field', () => {
        expect(findEnableCheckbox().exists()).toBe(false);
        expect(findProjectKey().exists()).toBe(false);
      });
    });

    describe('Enable Jira issues checkbox', () => {
      beforeEach(() => {
        createComponent({ initialProjectKey: '' });
      });

      it('does not show upgrade banner', () => {
        expect(wrapper.text()).not.toContain(expectedBannerText);
      });

      // As per https://vuejs.org/v2/guide/forms.html#Checkbox-1,
      // browsers don't include unchecked boxes in form submissions.
      it('includes issues_enabled as false even if unchecked', () => {
        expect(wrapper.contains('input[name="service[issues_enabled]"]')).toBe(true);
      });

      it('disables project_key input', () => {
        expect(findProjectKey().attributes('disabled')).toBe('disabled');
      });

      it('does not require project_key', () => {
        expect(findProjectKey().attributes('required')).toBeUndefined();
      });

      describe('on enable issues', () => {
        it('enables project_key input', () => {
          findEnableCheckbox().vm.$emit('input', true);

          return wrapper.vm.$nextTick().then(() => {
            expect(findProjectKey().attributes('disabled')).toBeUndefined();
          });
        });

        it('requires project_key input', () => {
          findEnableCheckbox().vm.$emit('input', true);

          return wrapper.vm.$nextTick().then(() => {
            expect(findProjectKey().attributes('required')).toBe('required');
          });
        });
      });
    });

    it('contains link to editProjectPath', () => {
      createComponent();

      expect(wrapper.contains(`a[href="${defaultProps.editProjectPath}"]`)).toBe(true);
    });
  });
});