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

version_select_form_spec.js « sign_in_gitlab_multiversion « sign_in « pages « subscriptions « jira_connect « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29e7fe7a5b2bb8047b7a9331e0fbea2ecf5b6e74 (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
import { GlFormInput, GlFormRadioGroup, GlForm } from '@gitlab/ui';
import { nextTick } from 'vue';

import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import VersionSelectForm from '~/jira_connect/subscriptions/pages/sign_in/sign_in_gitlab_multiversion/version_select_form.vue';

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

  const findFormRadioGroup = () => wrapper.findComponent(GlFormRadioGroup);
  const findForm = () => wrapper.findComponent(GlForm);
  const findInput = () => wrapper.findComponent(GlFormInput);

  const submitForm = () => findForm().vm.$emit('submit', new Event('submit'));

  const createComponent = () => {
    wrapper = shallowMountExtended(VersionSelectForm);
  };

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

  describe('default state', () => {
    beforeEach(() => {
      createComponent();
    });

    it('selects saas radio option by default', () => {
      expect(findFormRadioGroup().vm.$attrs.checked).toBe(VersionSelectForm.radioOptions.saas);
    });

    it('does not render instance input', () => {
      expect(findInput().exists()).toBe(false);
    });

    describe('when form is submitted', () => {
      it('emits "submit" event with gitlab.com as the payload', () => {
        submitForm();

        expect(wrapper.emitted('submit')[0][0]).toBe('https://gitlab.com');
      });
    });
  });

  describe('when "self-managed" radio option is selected', () => {
    beforeEach(async () => {
      createComponent();

      findFormRadioGroup().vm.$emit('input', VersionSelectForm.radioOptions.selfManaged);
      await nextTick();
    });

    it('reveals the self-managed input field', () => {
      expect(findInput().exists()).toBe(true);
    });

    describe('when form is submitted', () => {
      it('emits "submit" event with the input field value as the payload', () => {
        const mockInstanceUrl = 'https://gitlab.example.com';

        findInput().vm.$emit('input', mockInstanceUrl);
        submitForm();

        expect(wrapper.emitted('submit')[0][0]).toBe(mockInstanceUrl);
      });
    });
  });
});