summaryrefslogtreecommitdiff
path: root/spec/frontend/clusters/components/ingress_modsecurity_settings_spec.js
blob: f83a350a27c9ceaf355d28e9d6b192c6282487cb (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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
import { GlAlert, GlToggle, GlDropdown } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import IngressModsecuritySettings from '~/clusters/components/ingress_modsecurity_settings.vue';
import { APPLICATION_STATUS, INGRESS } from '~/clusters/constants';
import eventHub from '~/clusters/event_hub';

const { UPDATING } = APPLICATION_STATUS;

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

  const defaultProps = {
    modsecurity_enabled: false,
    status: 'installable',
    installed: false,
    modsecurity_mode: 'logging',
    updateAvailable: false,
  };

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

  const findSaveButton = () =>
    wrapper.find('[data-qa-selector="save_ingress_modsecurity_settings"]');
  const findCancelButton = () =>
    wrapper.find('[data-qa-selector="cancel_ingress_modsecurity_settings"]');
  const findModSecurityToggle = () => wrapper.find(GlToggle);
  const findModSecurityDropdown = () => wrapper.find(GlDropdown);

  describe('when ingress is installed', () => {
    beforeEach(() => {
      createComponent({ installed: true, status: 'installed' });
      jest.spyOn(eventHub, '$emit');
    });

    it('does not render save and cancel buttons', () => {
      expect(findSaveButton().exists()).toBe(false);
      expect(findCancelButton().exists()).toBe(false);
    });

    describe('with toggle changed by the user', () => {
      beforeEach(() => {
        findModSecurityToggle().vm.$emit('change');
        wrapper.setProps({
          ingress: {
            ...defaultProps,
            installed: true,
            status: 'installed',
            modsecurity_enabled: true,
          },
        });
      });

      it('renders toggle with label', () => {
        expect(findModSecurityToggle().props('label')).toBe(
          IngressModsecuritySettings.i18n.modSecurityEnabled,
        );
      });

      it('renders save and cancel buttons', () => {
        expect(findSaveButton().exists()).toBe(true);
        expect(findCancelButton().exists()).toBe(true);
      });

      it('enables related toggle and buttons', () => {
        expect(findSaveButton().attributes().disabled).toBeUndefined();
        expect(findCancelButton().attributes().disabled).toBeUndefined();
      });

      describe('with dropdown changed by the user', () => {
        beforeEach(() => {
          findModSecurityDropdown().vm.$children[1].$emit('click');
          wrapper.setProps({
            ingress: {
              ...defaultProps,
              installed: true,
              status: 'installed',
              modsecurity_enabled: true,
              modsecurity_mode: 'blocking',
            },
          });
        });

        it('renders both save and cancel buttons', () => {
          expect(findSaveButton().exists()).toBe(true);
          expect(findCancelButton().exists()).toBe(true);
        });

        describe('and the save changes button is clicked', () => {
          beforeEach(() => {
            findSaveButton().vm.$emit('click');
          });

          it('triggers save event and pass current modsecurity value', () => {
            expect(eventHub.$emit).toHaveBeenCalledWith('updateApplication', {
              id: INGRESS,
              params: { modsecurity_enabled: true, modsecurity_mode: 'blocking' },
            });
          });
        });
      });

      describe('and the cancel button is clicked', () => {
        beforeEach(() => {
          findCancelButton().vm.$emit('click');
        });

        it('triggers reset event and hides both cancel and save changes button', () => {
          expect(eventHub.$emit).toHaveBeenCalledWith('resetIngressModSecurityChanges', INGRESS);
          expect(findSaveButton().exists()).toBe(false);
          expect(findCancelButton().exists()).toBe(false);
        });
      });

      describe('with a new version available', () => {
        beforeEach(() => {
          wrapper.setProps({
            ingress: {
              ...defaultProps,
              installed: true,
              status: 'installed',
              modsecurity_enabled: true,
              updateAvailable: true,
            },
          });
        });

        it('disables related toggle and buttons', () => {
          expect(findSaveButton().attributes().disabled).toBe('true');
          expect(findCancelButton().attributes().disabled).toBe('true');
        });
      });
    });

    it('triggers set event to be propagated with the current modsecurity value', () => {
      wrapper.setData({ modSecurityEnabled: true });
      return wrapper.vm.$nextTick().then(() => {
        expect(eventHub.$emit).toHaveBeenCalledWith('setIngressModSecurityEnabled', {
          id: INGRESS,
          modSecurityEnabled: true,
        });
      });
    });

    describe(`when ingress status is ${UPDATING}`, () => {
      beforeEach(() => {
        createComponent({ installed: true, status: UPDATING });
      });

      it('renders loading spinner in save button', () => {
        expect(findSaveButton().props('loading')).toBe(true);
      });

      it('renders disabled save button', () => {
        expect(findSaveButton().props('disabled')).toBe(true);
      });

      it('renders save button with "Saving" label', () => {
        expect(findSaveButton().text()).toBe('Saving');
      });
    });

    describe('when ingress fails to update', () => {
      beforeEach(() => {
        createComponent({ updateFailed: true });
      });

      it('displays a error message', () => {
        expect(wrapper.find(GlAlert).exists()).toBe(true);
      });
    });
  });

  describe('when ingress is not installed', () => {
    beforeEach(() => {
      createComponent();
    });

    it('does not render the save button', () => {
      expect(findSaveButton().exists()).toBe(false);
      expect(findModSecurityToggle().props('value')).toBe(false);
    });
  });
});