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

cleanup_tags_service_shared_examples.rb « container_repository « projects « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c2d30a9c8c3de6fd003ccf3245f6d0c1f271195 (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
# frozen_string_literal: true

RSpec.shared_examples 'handling invalid params' do |service_response_extra: {}, supports_caching: false|
  context 'when no params are specified' do
    let(:params) { {} }

    it_behaves_like 'not removing anything',
                    service_response_extra: service_response_extra,
                    supports_caching: supports_caching
  end

  context 'with invalid regular expressions' do
    shared_examples 'handling an invalid regex' do
      it 'keeps all tags' do
        expect(Projects::ContainerRepository::DeleteTagsService)
          .not_to receive(:new)
        expect_no_caching unless supports_caching

        subject
      end

      it { is_expected.to eq(status: :error, message: 'invalid regex') }

      it 'calls error tracking service' do
        expect(Gitlab::ErrorTracking).to receive(:log_exception).and_call_original

        subject
      end
    end

    context 'when name_regex_delete is invalid' do
      let(:params) { { 'name_regex_delete' => '*test*' } }

      it_behaves_like 'handling an invalid regex'
    end

    context 'when name_regex is invalid' do
      let(:params) { { 'name_regex' => '*test*' } }

      it_behaves_like 'handling an invalid regex'
    end

    context 'when name_regex_keep is invalid' do
      let(:params) { { 'name_regex_keep' => '*test*' } }

      it_behaves_like 'handling an invalid regex'
    end
  end
end

RSpec.shared_examples 'when regex matching everything is specified' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:params) do
    { 'name_regex_delete' => '.*' }
  end

  it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: delete_expectations

  context 'with deprecated name_regex param' do
    let(:params) do
      { 'name_regex' => '.*' }
    end

    it_behaves_like 'removing the expected tags',
                    service_response_extra: service_response_extra,
                    supports_caching: supports_caching,
                    delete_expectations: delete_expectations
  end
end

RSpec.shared_examples 'when delete regex matching specific tags is used' do
  |service_response_extra: {}, supports_caching: false|
  let(:params) do
    { 'name_regex_delete' => 'C|D' }
  end

  it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: [%w[C D]]
end

RSpec.shared_examples 'when delete regex matching specific tags is used with overriding allow regex' do
  |service_response_extra: {}, supports_caching: false|
  let(:params) do
    {
      'name_regex_delete' => 'C|D',
      'name_regex_keep' => 'C'
    }
  end

  it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: [%w[D]]

  context 'with name_regex_delete overriding deprecated name_regex' do
    let(:params) do
      {
        'name_regex' => 'C|D',
        'name_regex_delete' => 'D'
      }
    end

    it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: [%w[D]]
  end
end

RSpec.shared_examples 'with allow regex value' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:params) do
    {
      'name_regex_delete' => '.*',
      'name_regex_keep' => 'B.*'
    }
  end

  it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: delete_expectations
end

RSpec.shared_examples 'when keeping only N tags' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:params) do
    {
      'name_regex' => 'A|B.*|C',
      'keep_n' => 1
    }
  end

  it 'sorts tags by date' do
    delete_expectations.each { |expectation| expect_delete(expectation) }
    expect_no_caching unless supports_caching

    expect(service).to receive(:order_by_date_desc).at_least(:once).and_call_original

    is_expected.to eq(expected_service_response(deleted: delete_expectations.flatten).merge(service_response_extra))
  end
end

RSpec.shared_examples 'when not keeping N tags' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:params) do
    { 'name_regex' => 'A|B.*|C' }
  end

  it 'does not sort tags by date' do
    delete_expectations.each { |expectation| expect_delete(expectation) }
    expect_no_caching unless supports_caching

    expect(service).not_to receive(:order_by_date_desc)

    is_expected.to eq(expected_service_response(deleted: delete_expectations.flatten).merge(service_response_extra))
  end
end

RSpec.shared_examples 'when removing keeping only 3' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:params) do
    { 'name_regex_delete' => '.*',
      'keep_n' => 3 }
  end

  it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: delete_expectations
end

RSpec.shared_examples 'when removing older than 1 day' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:params) do
    {
      'name_regex_delete' => '.*',
      'older_than' => '1 day'
    }
  end

  it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: delete_expectations
end

RSpec.shared_examples 'when combining all parameters' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:params) do
    {
      'name_regex_delete' => '.*',
      'keep_n' => 1,
      'older_than' => '1 day'
    }
  end

  it_behaves_like 'removing the expected tags',
                  service_response_extra: service_response_extra,
                  supports_caching: supports_caching,
                  delete_expectations: delete_expectations
end

RSpec.shared_examples 'when running a container_expiration_policy' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  let(:user) { nil }

  context 'with valid container_expiration_policy param' do
    let(:params) do
      {
        'name_regex_delete' => '.*',
        'keep_n' => 1,
        'older_than' => '1 day',
        'container_expiration_policy' => true
      }
    end

    it 'removes the expected tags' do
      delete_expectations.each { |expectation| expect_delete(expectation, container_expiration_policy: true) }
      expect_no_caching unless supports_caching

      is_expected.to eq(expected_service_response(deleted: delete_expectations.flatten).merge(service_response_extra))
    end
  end

  context 'without container_expiration_policy param' do
    let(:params) do
      {
        'name_regex_delete' => '.*',
        'keep_n' => 1,
        'older_than' => '1 day'
      }
    end

    it 'fails' do
      is_expected.to eq(status: :error, message: 'access denied')
    end
  end
end

RSpec.shared_examples 'not removing anything' do |service_response_extra: {}, supports_caching: false|
  it 'does not remove anything' do
    expect(Projects::ContainerRepository::DeleteTagsService).not_to receive(:new)
    expect_no_caching unless supports_caching

    is_expected.to eq(expected_service_response(deleted: []).merge(service_response_extra))
  end
end

RSpec.shared_examples 'removing the expected tags' do
  |service_response_extra: {}, supports_caching: false, delete_expectations:|
  it 'removes the expected tags' do
    delete_expectations.each { |expectation| expect_delete(expectation) }
    expect_no_caching unless supports_caching

    is_expected.to eq(expected_service_response(deleted: delete_expectations.flatten).merge(service_response_extra))
  end
end