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

app_spec.js « components « error_tracking_settings « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 30541ba68a5746034ae14410cc241955cbc15017 (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
import { GlFormRadioGroup, GlFormRadio } from '@gitlab/ui';
import { createLocalVue, shallowMount } from '@vue/test-utils';
import { nextTick } from 'vue';
import Vuex from 'vuex';
import { TEST_HOST } from 'helpers/test_constants';
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
import ErrorTrackingSettings from '~/error_tracking_settings/components/app.vue';
import ErrorTrackingForm from '~/error_tracking_settings/components/error_tracking_form.vue';
import ProjectDropdown from '~/error_tracking_settings/components/project_dropdown.vue';
import createStore from '~/error_tracking_settings/store';

const localVue = createLocalVue();
localVue.use(Vuex);

describe('error tracking settings app', () => {
  let store;
  let wrapper;

  function mountComponent() {
    wrapper = extendedWrapper(
      shallowMount(ErrorTrackingSettings, {
        localVue,
        store, // Override the imported store
        propsData: {
          initialEnabled: 'true',
          initialIntegrated: 'false',
          initialApiHost: TEST_HOST,
          initialToken: 'someToken',
          initialProject: null,
          listProjectsEndpoint: TEST_HOST,
          operationsSettingsEndpoint: TEST_HOST,
        },
      }),
    );
  }

  const findBackendSettingsSection = () => wrapper.findByTestId('tracking-backend-settings');
  const findBackendSettingsRadioGroup = () =>
    findBackendSettingsSection().findComponent(GlFormRadioGroup);
  const findBackendSettingsRadioButtons = () =>
    findBackendSettingsRadioGroup().findAllComponents(GlFormRadio);
  const findElementWithText = (wrappers, text) => wrappers.filter((item) => item.text() === text);
  const findSentrySettings = () => wrapper.findByTestId('sentry-setting-form');

  beforeEach(() => {
    store = createStore();

    mountComponent();
  });

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

  describe('section', () => {
    it('renders the form and dropdown', () => {
      expect(wrapper.find(ErrorTrackingForm).exists()).toBeTruthy();
      expect(wrapper.find(ProjectDropdown).exists()).toBeTruthy();
    });

    it('renders the Save Changes button', () => {
      expect(wrapper.find('.js-error-tracking-button').exists()).toBeTruthy();
    });

    it('enables the button by default', () => {
      expect(wrapper.find('.js-error-tracking-button').attributes('disabled')).toBeFalsy();
    });

    it('disables the button when saving', () => {
      store.state.settingsLoading = true;

      return wrapper.vm.$nextTick(() => {
        expect(wrapper.find('.js-error-tracking-button').attributes('disabled')).toBeTruthy();
      });
    });
  });

  describe('tracking-backend settings', () => {
    it('contains a form-group with the correct label', () => {
      expect(findBackendSettingsSection().attributes('label')).toBe('Error tracking backend');
    });

    it('contains a radio group', () => {
      expect(findBackendSettingsRadioGroup().exists()).toBe(true);
    });

    it('contains the correct radio buttons', () => {
      expect(findBackendSettingsRadioButtons()).toHaveLength(2);

      expect(findElementWithText(findBackendSettingsRadioButtons(), 'Sentry')).toHaveLength(1);
      expect(findElementWithText(findBackendSettingsRadioButtons(), 'GitLab')).toHaveLength(1);
    });

    it('toggles the sentry-settings section when sentry is selected as a tracking-backend', async () => {
      expect(findSentrySettings().exists()).toBe(true);

      // set the "integrated" setting to "true"
      findBackendSettingsRadioGroup().vm.$emit('change', true);

      await nextTick();

      expect(findSentrySettings().exists()).toBe(false);
    });

    it.each([true, false])(
      'calls the `updateIntegrated` action when the setting changes to `%s`',
      (integrated) => {
        jest.spyOn(store, 'dispatch').mockImplementation();

        expect(store.dispatch).toHaveBeenCalledTimes(0);

        findBackendSettingsRadioGroup().vm.$emit('change', integrated);

        expect(store.dispatch).toHaveBeenCalledTimes(1);
        expect(store.dispatch).toHaveBeenCalledWith('updateIntegrated', integrated);
      },
    );
  });
});