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

cascading_namespace_setting_attribute_spec.rb « concerns « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8f2b18e66228102d9b01b138cdbb65e2835ffc0 (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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe NamespaceSetting, 'CascadingNamespaceSettingAttribute' do
  let(:group) { create(:group) }
  let(:subgroup) { create(:group, parent: group) }

  def group_settings
    group.namespace_settings
  end

  def subgroup_settings
    subgroup.namespace_settings
  end

  describe '#delayed_project_removal' do
    subject(:delayed_project_removal) { subgroup_settings.delayed_project_removal }

    context 'when there is no parent' do
      context 'and the value is not nil' do
        before do
          group_settings.update!(delayed_project_removal: true)
        end

        it 'returns the local value' do
          expect(group_settings.delayed_project_removal).to eq(true)
        end
      end

      context 'and the value is nil' do
        before do
          group_settings.update!(delayed_project_removal: nil)
          stub_application_setting(delayed_project_removal: false)
        end

        it 'returns the application settings value' do
          expect(group_settings.delayed_project_removal).to eq(false)
        end
      end
    end

    context 'when parent does not lock the attribute' do
      context 'and value is not nil' do
        before do
          group_settings.update!(delayed_project_removal: false)
        end

        it 'returns local setting when present' do
          subgroup_settings.update!(delayed_project_removal: true)

          expect(delayed_project_removal).to eq(true)
        end

        it 'returns the parent value when local value is nil' do
          subgroup_settings.update!(delayed_project_removal: nil)

          expect(delayed_project_removal).to eq(false)
        end

        it 'returns the correct dirty value' do
          subgroup_settings.delayed_project_removal = true

          expect(delayed_project_removal).to eq(true)
        end

        it 'does not return the application setting value when parent value is false' do
          stub_application_setting(delayed_project_removal: true)

          expect(delayed_project_removal).to eq(false)
        end
      end

      context 'and the value is nil' do
        before do
          group_settings.update!(delayed_project_removal: nil, lock_delayed_project_removal: false)
          subgroup_settings.update!(delayed_project_removal: nil)

          subgroup_settings.clear_memoization(:delayed_project_removal)
        end

        it 'cascades to the application settings value' do
          expect(delayed_project_removal).to eq(false)
        end
      end

      context 'when multiple ancestors set a value' do
        let(:third_level_subgroup) { create(:group, parent: subgroup) }

        before do
          group_settings.update!(delayed_project_removal: true)
          subgroup_settings.update!(delayed_project_removal: false)
        end

        it 'returns the closest ancestor value' do
          expect(third_level_subgroup.namespace_settings.delayed_project_removal).to eq(false)
        end
      end
    end

    context 'when parent locks the attribute' do
      before do
        subgroup_settings.update!(delayed_project_removal: true)
        group_settings.update!(lock_delayed_project_removal: true, delayed_project_removal: false)

        subgroup_settings.clear_memoization(:delayed_project_removal)
        subgroup_settings.clear_memoization(:delayed_project_removal_locked_ancestor)
      end

      it 'returns the parent value' do
        expect(delayed_project_removal).to eq(false)
      end

      it 'does not allow the local value to be saved' do
        subgroup_settings.delayed_project_removal = nil

        expect { subgroup_settings.save! }
          .to raise_error(ActiveRecord::RecordInvalid, /Delayed project removal cannot be changed because it is locked by an ancestor/)
      end
    end

    context 'when the application settings locks the attribute' do
      before do
        subgroup_settings.update!(delayed_project_removal: true)
        stub_application_setting(lock_delayed_project_removal: true, delayed_project_removal: true)
      end

      it 'returns the application setting value' do
        expect(delayed_project_removal).to eq(true)
      end

      it 'does not allow the local value to be saved' do
        subgroup_settings.delayed_project_removal = false

        expect { subgroup_settings.save! }
          .to raise_error(ActiveRecord::RecordInvalid, /Delayed project removal cannot be changed because it is locked by an ancestor/)
      end
    end
  end

  describe '#delayed_project_removal?' do
    before do
      subgroup_settings.update!(delayed_project_removal: true)
      group_settings.update!(lock_delayed_project_removal: true, delayed_project_removal: false)

      subgroup_settings.clear_memoization(:delayed_project_removal)
      subgroup_settings.clear_memoization(:delayed_project_removal_locked_ancestor)
    end

    it 'aliases the method when the attribute is a boolean' do
      expect(subgroup_settings.delayed_project_removal?).to eq(subgroup_settings.delayed_project_removal)
    end
  end

  describe '#delayed_project_removal=' do
    before do
      subgroup_settings.update!(delayed_project_removal: nil)
      group_settings.update!(delayed_project_removal: true)
    end

    it 'does not save the value locally when it matches the cascaded value' do
      subgroup_settings.update!(delayed_project_removal: true)

      expect(subgroup_settings.read_attribute(:delayed_project_removal)).to eq(nil)
    end
  end

  describe '#delayed_project_removal_locked?' do
    shared_examples 'not locked' do
      it 'is not locked by an ancestor' do
        expect(subgroup_settings.delayed_project_removal_locked_by_ancestor?).to eq(false)
      end

      it 'is not locked by application setting' do
        expect(subgroup_settings.delayed_project_removal_locked_by_application_setting?).to eq(false)
      end

      it 'does not return a locked namespace' do
        expect(subgroup_settings.delayed_project_removal_locked_ancestor).to be_nil
      end
    end

    context 'when attribute is locked by self' do
      before do
        subgroup_settings.update!(lock_delayed_project_removal: true)
      end

      it 'is not locked by default' do
        expect(subgroup_settings.delayed_project_removal_locked?).to eq(false)
      end

      it 'is locked when including self' do
        expect(subgroup_settings.delayed_project_removal_locked?(include_self: true)).to eq(true)
      end
    end

    context 'when parent does not lock the attribute' do
      it_behaves_like 'not locked'
    end

    context 'when parent locks the attribute' do
      before do
        group_settings.update!(lock_delayed_project_removal: true, delayed_project_removal: false)

        subgroup_settings.clear_memoization(:delayed_project_removal)
        subgroup_settings.clear_memoization(:delayed_project_removal_locked_ancestor)
      end

      it 'is locked by an ancestor' do
        expect(subgroup_settings.delayed_project_removal_locked_by_ancestor?).to eq(true)
      end

      it 'is not locked by application setting' do
        expect(subgroup_settings.delayed_project_removal_locked_by_application_setting?).to eq(false)
      end

      it 'returns a locked namespace settings object' do
        expect(subgroup_settings.delayed_project_removal_locked_ancestor.namespace_id).to eq(group_settings.namespace_id)
      end
    end

    context 'when not locked by application settings' do
      before do
        stub_application_setting(lock_delayed_project_removal: false)
      end

      it_behaves_like 'not locked'
    end

    context 'when locked by application settings' do
      before do
        stub_application_setting(lock_delayed_project_removal: true)
      end

      it 'is not locked by an ancestor' do
        expect(subgroup_settings.delayed_project_removal_locked_by_ancestor?).to eq(false)
      end

      it 'is locked by application setting' do
        expect(subgroup_settings.delayed_project_removal_locked_by_application_setting?).to eq(true)
      end

      it 'does not return a locked namespace' do
        expect(subgroup_settings.delayed_project_removal_locked_ancestor).to be_nil
      end
    end
  end

  describe '#lock_delayed_project_removal=' do
    context 'when parent locks the attribute' do
      before do
        group_settings.update!(lock_delayed_project_removal: true, delayed_project_removal: false)

        subgroup_settings.clear_memoization(:delayed_project_removal)
        subgroup_settings.clear_memoization(:delayed_project_removal_locked_ancestor)
      end

      it 'does not allow the attribute to be saved' do
        subgroup_settings.lock_delayed_project_removal = true

        expect { subgroup_settings.save! }
          .to raise_error(ActiveRecord::RecordInvalid, /Lock delayed project removal cannot be changed because it is locked by an ancestor/)
      end
    end

    context 'when parent does not lock the attribute' do
      before do
        group_settings.update!(lock_delayed_project_removal: false)

        subgroup_settings.lock_delayed_project_removal = true
      end

      it 'allows the lock to be set when the attribute is not nil' do
        subgroup_settings.delayed_project_removal = true

        expect(subgroup_settings.save).to eq(true)
      end

      it 'does not allow the lock to be saved when the attribute is nil' do
        subgroup_settings.delayed_project_removal = nil

        expect { subgroup_settings.save! }
          .to raise_error(ActiveRecord::RecordInvalid, /Delayed project removal cannot be nil when locking the attribute/)
      end

      it 'copies the cascaded value when locking the attribute if the local value is nil', :aggregate_failures do
        subgroup_settings.delayed_project_removal = nil
        subgroup_settings.lock_delayed_project_removal = true

        expect(subgroup_settings.read_attribute(:delayed_project_removal)).to eq(false)
      end
    end

    context 'when application settings locks the attribute' do
      before do
        stub_application_setting(lock_delayed_project_removal: true)
      end

      it 'does not allow the attribute to be saved' do
        subgroup_settings.lock_delayed_project_removal = true

        expect { subgroup_settings.save! }
          .to raise_error(ActiveRecord::RecordInvalid, /Lock delayed project removal cannot be changed because it is locked by an ancestor/)
      end
    end

    context 'when application_settings does not lock the attribute' do
      before do
        stub_application_setting(lock_delayed_project_removal: false)
      end

      it 'allows the attribute to be saved' do
        subgroup_settings.delayed_project_removal = true
        subgroup_settings.lock_delayed_project_removal = true

        expect(subgroup_settings.save).to eq(true)
      end
    end
  end

  describe 'after update callback' do
    before do
      subgroup_settings.update!(lock_delayed_project_removal: true, delayed_project_removal: false)
    end

    it 'clears descendant locks' do
      group_settings.update!(lock_delayed_project_removal: true, delayed_project_removal: true)

      expect(subgroup_settings.reload.lock_delayed_project_removal).to eq(false)
    end
  end
end