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

cleanup_container_repository_worker_spec.rb « container_expiration_policies « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04f568515ed212ac6caef28d6c9c93f9140a31ea (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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe ContainerExpirationPolicies::CleanupContainerRepositoryWorker do
  using RSpec::Parameterized::TableSyntax

  let_it_be(:repository, refind: true) { create(:container_repository, :cleanup_scheduled, expiration_policy_started_at: 1.month.ago) }
  let_it_be(:other_repository, refind: true) { create(:container_repository, expiration_policy_started_at: 15.days.ago) }

  let(:project) { repository.project }
  let(:policy) { project.container_expiration_policy }
  let(:worker) { described_class.new }

  describe '#perform_work' do
    subject { worker.perform_work }

    before do
      policy.update_column(:enabled, true)
    end

    shared_examples 'handling all repository conditions' do
      it 'sends the repository for cleaning' do
        service_response = cleanup_service_response(repository: repository)
        expect(ContainerExpirationPolicies::CleanupService)
          .to receive(:new).with(repository).and_return(double(execute: service_response))
        expect_log_extra_metadata(service_response: service_response)

        subject
      end

      context 'with unfinished cleanup' do
        it 'logs an unfinished cleanup' do
          service_response = cleanup_service_response(status: :unfinished, repository: repository)
          expect(ContainerExpirationPolicies::CleanupService)
            .to receive(:new).with(repository).and_return(double(execute: service_response))
          expect_log_extra_metadata(service_response: service_response, cleanup_status: :unfinished)

          subject
        end

        context 'with a truncated list of tags to delete' do
          it 'logs an unfinished cleanup' do
            service_response = cleanup_service_response(status: :unfinished, repository: repository, cleanup_tags_service_after_truncate_size: 10, cleanup_tags_service_before_delete_size: 5)
            expect(ContainerExpirationPolicies::CleanupService)
              .to receive(:new).with(repository).and_return(double(execute: service_response))
            expect_log_extra_metadata(service_response: service_response, cleanup_status: :unfinished, truncated: true)

            subject
          end
        end

        context 'the truncated log field' do
          where(:before_truncate_size, :after_truncate_size, :truncated) do
            100 | 100 | false
            100 | 80  | true
            nil | 100 | false
            100 | nil | false
            nil | nil | false
          end

          with_them do
            it 'is logged properly' do
              service_response = cleanup_service_response(status: :unfinished, repository: repository, cleanup_tags_service_after_truncate_size: after_truncate_size, cleanup_tags_service_before_truncate_size: before_truncate_size)
              expect(ContainerExpirationPolicies::CleanupService)
                .to receive(:new).with(repository).and_return(double(execute: service_response))
              expect_log_extra_metadata(service_response: service_response, cleanup_status: :unfinished, truncated: truncated)

              subject
            end
          end
        end
      end

      context 'with an erroneous cleanup' do
        it 'logs an error' do
          service_response = ServiceResponse.error(message: 'cleanup in an error')
          expect(ContainerExpirationPolicies::CleanupService)
            .to receive(:new).with(repository).and_return(double(execute: service_response))
          expect_log_extra_metadata(service_response: service_response, cleanup_status: :error)

          subject
        end
      end

      context 'with policy running shortly' do
        before do
          repository.cleanup_unfinished! if loopless_enabled?
          policy.update_column(:next_run_at, 1.minute.from_now)
        end

        it 'skips the repository' do
          expect(ContainerExpirationPolicies::CleanupService).not_to receive(:new)
          expect(worker).to receive(:log_extra_metadata_on_done).with(:container_repository_id, repository.id)
          expect(worker).to receive(:log_extra_metadata_on_done).with(:project_id, repository.project.id)
          expect(worker).to receive(:log_extra_metadata_on_done).with(:cleanup_status, :skipped)
          expect { subject }.to change { ContainerRepository.waiting_for_cleanup.count }.from(1).to(0)

          expect(repository.reload.cleanup_unscheduled?).to be_truthy
        end
      end

      context 'with disabled policy' do
        before do
          policy.disable!
        end

        it 'skips the repository' do
          expect(ContainerExpirationPolicies::CleanupService).not_to receive(:new)

          if loopless_enabled?
            expect { subject }
              .to not_change { ContainerRepository.waiting_for_cleanup.count }
              .and not_change { repository.reload.expiration_policy_cleanup_status }
          else
            expect { subject }.to change { ContainerRepository.waiting_for_cleanup.count }.from(1).to(0)
            expect(repository.reload.cleanup_unscheduled?).to be_truthy
          end
        end
      end
    end

    context 'with loopless enabled' do
      before do
        stub_feature_flags(container_registry_expiration_policies_loopless: true)
      end

      context 'with repository in cleanup unscheduled state' do
        before do
          policy.update_column(:next_run_at, 5.minutes.ago)
        end

        it_behaves_like 'handling all repository conditions'
      end

      context 'with repository in cleanup unfinished state' do
        before do
          repository.cleanup_unfinished!
        end

        it_behaves_like 'handling all repository conditions'
      end

      context 'container repository selection' do
        where(:repository_cleanup_status, :repository_policy_status, :other_repository_cleanup_status, :other_repository_policy_status, :expected_selected_repository) do
          :unscheduled | :disabled     | :unscheduled | :disabled     | :none
          :unscheduled | :disabled     | :unscheduled | :runnable     | :other_repository
          :unscheduled | :disabled     | :unscheduled | :not_runnable | :none

          :unscheduled | :disabled     | :scheduled   | :disabled     | :none
          :unscheduled | :disabled     | :scheduled   | :runnable     | :other_repository
          :unscheduled | :disabled     | :scheduled   | :not_runnable | :none

          :unscheduled | :disabled     | :unfinished  | :disabled     | :none
          :unscheduled | :disabled     | :unfinished  | :runnable     | :other_repository
          :unscheduled | :disabled     | :unfinished  | :not_runnable | :other_repository

          :unscheduled | :disabled     | :ongoing     | :disabled     | :none
          :unscheduled | :disabled     | :ongoing     | :runnable     | :none
          :unscheduled | :disabled     | :ongoing     | :not_runnable | :none

          :unscheduled | :runnable     | :unscheduled | :disabled     | :repository
          :unscheduled | :runnable     | :unscheduled | :runnable     | :repository
          :unscheduled | :runnable     | :unscheduled | :not_runnable | :repository

          :unscheduled | :runnable     | :scheduled   | :disabled     | :repository
          :unscheduled | :runnable     | :scheduled   | :runnable     | :repository
          :unscheduled | :runnable     | :scheduled   | :not_runnable | :repository

          :unscheduled | :runnable     | :unfinished  | :disabled     | :repository
          :unscheduled | :runnable     | :unfinished  | :runnable     | :repository
          :unscheduled | :runnable     | :unfinished  | :not_runnable | :repository

          :unscheduled | :runnable     | :ongoing     | :disabled     | :repository
          :unscheduled | :runnable     | :ongoing     | :runnable     | :repository
          :unscheduled | :runnable     | :ongoing     | :not_runnable | :repository

          :scheduled   | :disabled     | :unscheduled | :disabled     | :none
          :scheduled   | :disabled     | :unscheduled | :runnable     | :other_repository
          :scheduled   | :disabled     | :unscheduled | :not_runnable | :none

          :scheduled   | :disabled     | :scheduled   | :disabled     | :none
          :scheduled   | :disabled     | :scheduled   | :runnable     | :other_repository
          :scheduled   | :disabled     | :scheduled   | :not_runnable | :none

          :scheduled   | :disabled     | :unfinished  | :disabled     | :none
          :scheduled   | :disabled     | :unfinished  | :runnable     | :other_repository
          :scheduled   | :disabled     | :unfinished  | :not_runnable | :other_repository

          :scheduled   | :disabled     | :ongoing     | :disabled     | :none
          :scheduled   | :disabled     | :ongoing     | :runnable     | :none
          :scheduled   | :disabled     | :ongoing     | :not_runnable | :none

          :scheduled   | :runnable     | :unscheduled | :disabled     | :repository
          :scheduled   | :runnable     | :unscheduled | :runnable     | :other_repository
          :scheduled   | :runnable     | :unscheduled | :not_runnable | :repository

          :scheduled   | :runnable     | :scheduled   | :disabled     | :repository
          :scheduled   | :runnable     | :scheduled   | :runnable     | :repository
          :scheduled   | :runnable     | :scheduled   | :not_runnable | :repository

          :scheduled   | :runnable     | :unfinished  | :disabled     | :repository
          :scheduled   | :runnable     | :unfinished  | :runnable     | :repository
          :scheduled   | :runnable     | :unfinished  | :not_runnable | :repository

          :scheduled   | :runnable     | :ongoing     | :disabled     | :repository
          :scheduled   | :runnable     | :ongoing     | :runnable     | :repository
          :scheduled   | :runnable     | :ongoing     | :not_runnable | :repository

          :scheduled   | :not_runnable | :unscheduled | :disabled     | :none
          :scheduled   | :not_runnable | :unscheduled | :runnable     | :other_repository
          :scheduled   | :not_runnable | :unscheduled | :not_runnable | :none

          :scheduled   | :not_runnable | :scheduled   | :disabled     | :none
          :scheduled   | :not_runnable | :scheduled   | :runnable     | :other_repository
          :scheduled   | :not_runnable | :scheduled   | :not_runnable | :none

          :scheduled   | :not_runnable | :unfinished  | :disabled     | :none
          :scheduled   | :not_runnable | :unfinished  | :runnable     | :other_repository
          :scheduled   | :not_runnable | :unfinished  | :not_runnable | :other_repository

          :scheduled   | :not_runnable | :ongoing     | :disabled     | :none
          :scheduled   | :not_runnable | :ongoing     | :runnable     | :none
          :scheduled   | :not_runnable | :ongoing     | :not_runnable | :none

          :unfinished  | :disabled     | :unscheduled | :disabled     | :none
          :unfinished  | :disabled     | :unscheduled | :runnable     | :other_repository
          :unfinished  | :disabled     | :unscheduled | :not_runnable | :none

          :unfinished  | :disabled     | :scheduled   | :disabled     | :none
          :unfinished  | :disabled     | :scheduled   | :runnable     | :other_repository
          :unfinished  | :disabled     | :scheduled   | :not_runnable | :none

          :unfinished  | :disabled     | :unfinished  | :disabled     | :none
          :unfinished  | :disabled     | :unfinished  | :runnable     | :other_repository
          :unfinished  | :disabled     | :unfinished  | :not_runnable | :other_repository

          :unfinished  | :disabled     | :ongoing     | :disabled     | :none
          :unfinished  | :disabled     | :ongoing     | :runnable     | :none
          :unfinished  | :disabled     | :ongoing     | :not_runnable | :none

          :unfinished  | :runnable     | :unscheduled | :disabled     | :repository
          :unfinished  | :runnable     | :unscheduled | :runnable     | :other_repository
          :unfinished  | :runnable     | :unscheduled | :not_runnable | :repository

          :unfinished  | :runnable     | :scheduled   | :disabled     | :repository
          :unfinished  | :runnable     | :scheduled   | :runnable     | :other_repository
          :unfinished  | :runnable     | :scheduled   | :not_runnable | :repository

          :unfinished  | :runnable     | :unfinished  | :disabled     | :repository
          :unfinished  | :runnable     | :unfinished  | :runnable     | :repository
          :unfinished  | :runnable     | :unfinished  | :not_runnable | :repository

          :unfinished  | :runnable     | :ongoing     | :disabled     | :repository
          :unfinished  | :runnable     | :ongoing     | :runnable     | :repository
          :unfinished  | :runnable     | :ongoing     | :not_runnable | :repository

          :unfinished  | :not_runnable | :unscheduled | :disabled     | :repository
          :unfinished  | :not_runnable | :unscheduled | :runnable     | :other_repository
          :unfinished  | :not_runnable | :unscheduled | :not_runnable | :repository

          :unfinished  | :not_runnable | :scheduled   | :disabled     | :repository
          :unfinished  | :not_runnable | :scheduled   | :runnable     | :other_repository
          :unfinished  | :not_runnable | :scheduled   | :not_runnable | :repository

          :unfinished  | :not_runnable | :unfinished  | :disabled     | :repository
          :unfinished  | :not_runnable | :unfinished  | :runnable     | :repository
          :unfinished  | :not_runnable | :unfinished  | :not_runnable | :repository

          :unfinished  | :not_runnable | :ongoing     | :disabled     | :repository
          :unfinished  | :not_runnable | :ongoing     | :runnable     | :repository
          :unfinished  | :not_runnable | :ongoing     | :not_runnable | :repository

          :ongoing     | :disabled     | :unscheduled | :disabled     | :none
          :ongoing     | :disabled     | :unscheduled | :runnable     | :other_repository
          :ongoing     | :disabled     | :unscheduled | :not_runnable | :none

          :ongoing     | :disabled     | :scheduled   | :disabled     | :none
          :ongoing     | :disabled     | :scheduled   | :runnable     | :other_repository
          :ongoing     | :disabled     | :scheduled   | :not_runnable | :none

          :ongoing     | :disabled     | :unfinished  | :disabled     | :none
          :ongoing     | :disabled     | :unfinished  | :runnable     | :other_repository
          :ongoing     | :disabled     | :unfinished  | :not_runnable | :other_repository

          :ongoing     | :disabled     | :ongoing     | :disabled     | :none
          :ongoing     | :disabled     | :ongoing     | :runnable     | :none
          :ongoing     | :disabled     | :ongoing     | :not_runnable | :none

          :ongoing     | :runnable     | :unscheduled | :disabled     | :none
          :ongoing     | :runnable     | :unscheduled | :runnable     | :other_repository
          :ongoing     | :runnable     | :unscheduled | :not_runnable | :none

          :ongoing     | :runnable     | :scheduled   | :disabled     | :none
          :ongoing     | :runnable     | :scheduled   | :runnable     | :other_repository
          :ongoing     | :runnable     | :scheduled   | :not_runnable | :none

          :ongoing     | :runnable     | :unfinished  | :disabled     | :none
          :ongoing     | :runnable     | :unfinished  | :runnable     | :other_repository
          :ongoing     | :runnable     | :unfinished  | :not_runnable | :other_repository

          :ongoing     | :runnable     | :ongoing     | :disabled     | :none
          :ongoing     | :runnable     | :ongoing     | :runnable     | :none
          :ongoing     | :runnable     | :ongoing     | :not_runnable | :none

          :ongoing     | :not_runnable | :unscheduled | :disabled     | :none
          :ongoing     | :not_runnable | :unscheduled | :runnable     | :other_repository
          :ongoing     | :not_runnable | :unscheduled | :not_runnable | :none

          :ongoing     | :not_runnable | :scheduled   | :disabled     | :none
          :ongoing     | :not_runnable | :scheduled   | :runnable     | :other_repository
          :ongoing     | :not_runnable | :scheduled   | :not_runnable | :none

          :ongoing     | :not_runnable | :unfinished  | :disabled     | :none
          :ongoing     | :not_runnable | :unfinished  | :runnable     | :other_repository
          :ongoing     | :not_runnable | :unfinished  | :not_runnable | :other_repository

          :ongoing     | :not_runnable | :ongoing     | :disabled     | :none
          :ongoing     | :not_runnable | :ongoing     | :runnable     | :none
          :ongoing     | :not_runnable | :ongoing     | :not_runnable | :none
        end

        with_them do
          before do
            update_container_repository(repository, repository_cleanup_status, repository_policy_status)
            update_container_repository(other_repository, other_repository_cleanup_status, other_repository_policy_status)
          end

          subject { worker.send(:container_repository) }

          if params[:expected_selected_repository] == :none
            it 'does not select any repository' do
              expect(subject).to eq(nil)
            end
          else
            it 'does select a repository' do
              selected_repository = expected_selected_repository == :repository ? repository : other_repository

              expect(subject).to eq(selected_repository)
            end
          end

          def update_container_repository(container_repository, cleanup_status, policy_status)
            container_repository.update_column(:expiration_policy_cleanup_status, "cleanup_#{cleanup_status}")

            policy = container_repository.project.container_expiration_policy

            case policy_status
            when :disabled
              policy.update!(enabled: false)
            when :runnable
              policy.update!(enabled: true)
              policy.update_column(:next_run_at, 5.minutes.ago)
            when :not_runnable
              policy.update!(enabled: true)
              policy.update_column(:next_run_at, 5.minutes.from_now)
            end
          end
        end
      end

      context 'with another repository in cleanup unfinished state' do
        let_it_be(:another_repository) { create(:container_repository, :cleanup_unfinished) }

        before do
          policy.update_column(:next_run_at, 5.minutes.ago)
        end

        it 'process the cleanup scheduled repository first' do
          service_response = cleanup_service_response(repository: repository)
          expect(ContainerExpirationPolicies::CleanupService)
            .to receive(:new).with(repository).and_return(double(execute: service_response))
          expect_log_extra_metadata(service_response: service_response)

          subject
        end
      end
    end

    context 'with loopless disabled' do
      before do
        stub_feature_flags(container_registry_expiration_policies_loopless: false)
      end

      context 'with repository in cleanup scheduled state' do
        it_behaves_like 'handling all repository conditions'
      end

      context 'with repository in cleanup unfinished state' do
        before do
          repository.cleanup_unfinished!
        end

        it_behaves_like 'handling all repository conditions'
      end

      context 'with another repository in cleanup unfinished state' do
        let_it_be(:another_repository) { create(:container_repository, :cleanup_unfinished) }

        it 'process the cleanup scheduled repository first' do
          service_response = cleanup_service_response(repository: repository)
          expect(ContainerExpirationPolicies::CleanupService)
            .to receive(:new).with(repository).and_return(double(execute: service_response))
          expect_log_extra_metadata(service_response: service_response)

          subject
        end
      end

      context 'with multiple repositories in cleanup unfinished state' do
        let_it_be(:repository2) { create(:container_repository, :cleanup_unfinished, expiration_policy_started_at: 20.minutes.ago) }
        let_it_be(:repository3) { create(:container_repository, :cleanup_unfinished, expiration_policy_started_at: 10.minutes.ago) }

        before do
          repository.update!(expiration_policy_cleanup_status: :cleanup_unfinished, expiration_policy_started_at: 30.minutes.ago)
        end

        it 'process the repository with the oldest expiration_policy_started_at' do
          service_response = cleanup_service_response(repository: repository)
          expect(ContainerExpirationPolicies::CleanupService)
            .to receive(:new).with(repository).and_return(double(execute: service_response))
          expect_log_extra_metadata(service_response: service_response)

          subject
        end
      end

      context 'with repository in cleanup ongoing state' do
        before do
          repository.cleanup_ongoing!
        end

        it 'does not process it' do
          expect(Projects::ContainerRepository::CleanupTagsService).not_to receive(:new)

          expect { subject }.not_to change { ContainerRepository.waiting_for_cleanup.count }
          expect(repository.cleanup_ongoing?).to be_truthy
        end
      end

      context 'with no repository in any cleanup state' do
        before do
          repository.cleanup_unscheduled!
        end

        it 'does not process it' do
          expect(Projects::ContainerRepository::CleanupTagsService).not_to receive(:new)

          expect { subject }.not_to change { ContainerRepository.waiting_for_cleanup.count }
          expect(repository.cleanup_unscheduled?).to be_truthy
        end
      end

      context 'with no container repository waiting' do
        before do
          repository.destroy!
        end

        it 'does not execute the cleanup tags service' do
          expect(Projects::ContainerRepository::CleanupTagsService).not_to receive(:new)

          expect { subject }.not_to change { ContainerRepository.waiting_for_cleanup.count }
        end
      end

      context 'with feature flag disabled' do
        before do
          stub_feature_flags(container_registry_expiration_policies_throttling: false)
        end

        it 'is a no-op' do
          expect(Projects::ContainerRepository::CleanupTagsService).not_to receive(:new)

          expect { subject }.not_to change { ContainerRepository.waiting_for_cleanup.count }
        end
      end
    end

    def cleanup_service_response(status: :finished, repository:, cleanup_tags_service_original_size: 100, cleanup_tags_service_before_truncate_size: 80, cleanup_tags_service_after_truncate_size: 80, cleanup_tags_service_before_delete_size: 50, cleanup_tags_service_deleted_size: 50)
      ServiceResponse.success(
        message: "cleanup #{status}",
        payload: {
          cleanup_status: status,
          container_repository_id: repository.id,
          cleanup_tags_service_original_size: cleanup_tags_service_original_size,
          cleanup_tags_service_before_truncate_size: cleanup_tags_service_before_truncate_size,
          cleanup_tags_service_after_truncate_size: cleanup_tags_service_after_truncate_size,
          cleanup_tags_service_before_delete_size: cleanup_tags_service_before_delete_size
        }.compact
      )
    end

    def expect_log_extra_metadata(service_response:, cleanup_status: :finished, truncated: false)
      expect(worker).to receive(:log_extra_metadata_on_done).with(:container_repository_id, repository.id)
      expect(worker).to receive(:log_extra_metadata_on_done).with(:project_id, repository.project.id)
      expect(worker).to receive(:log_extra_metadata_on_done).with(:cleanup_status, cleanup_status)

      %i[cleanup_tags_service_original_size cleanup_tags_service_before_truncate_size cleanup_tags_service_after_truncate_size cleanup_tags_service_before_delete_size cleanup_tags_service_deleted_size].each do |field|
        value = service_response.payload[field]
        expect(worker).to receive(:log_extra_metadata_on_done).with(field, value) unless value.nil?
      end
      expect(worker).to receive(:log_extra_metadata_on_done).with(:cleanup_tags_service_truncated, truncated)
      expect(worker).to receive(:log_extra_metadata_on_done).with(:running_jobs_count, 0)

      if service_response.error?
        expect(worker).to receive(:log_extra_metadata_on_done).with(:cleanup_error_message, service_response.message)
      end
    end
  end

  describe '#remaining_work_count' do
    subject { worker.remaining_work_count }

    shared_examples 'handling all conditions' do
      context 'with container repositories waiting for cleanup' do
        let_it_be(:unfinished_repositories) { create_list(:container_repository, 2, :cleanup_unfinished) }

        it { is_expected.to eq(3) }

        it 'logs the work count' do
          expect_log_info(
            cleanup_scheduled_count: 1,
            cleanup_unfinished_count: 2,
            cleanup_total_count: 3
          )

          subject
        end
      end

      context 'with no container repositories waiting for cleanup' do
        before do
          repository.cleanup_ongoing!
          policy.update_column(:next_run_at, 5.minutes.from_now)
        end

        it { is_expected.to eq(0) }

        it 'logs 0 work count' do
          expect_log_info(
            cleanup_scheduled_count: 0,
            cleanup_unfinished_count: 0,
            cleanup_total_count: 0
          )

          subject
        end
      end
    end

    context 'with loopless enabled' do
      let_it_be(:disabled_repository) { create(:container_repository, :cleanup_scheduled) }

      let(:capacity) { 10 }

      before do
        stub_feature_flags(container_registry_expiration_policies_loopless: true)
        stub_application_setting(container_registry_expiration_policies_worker_capacity: capacity)

        # loopless mode is more accurate that non loopless: policies need to be enabled
        ContainerExpirationPolicy.update_all(enabled: true)
        repository.project.container_expiration_policy.update_column(:next_run_at, 5.minutes.ago)
        disabled_repository.project.container_expiration_policy.update_column(:enabled, false)
      end

      it_behaves_like 'handling all conditions'
    end

    context 'with loopless disabled' do
      before do
        stub_feature_flags(container_registry_expiration_policies_loopless: false)
      end

      it_behaves_like 'handling all conditions'
    end
  end

  describe '#max_running_jobs' do
    let(:capacity) { 50 }

    subject { worker.max_running_jobs }

    before do
      stub_application_setting(container_registry_expiration_policies_worker_capacity: capacity)
    end

    it { is_expected.to eq(capacity) }

    context 'with feature flag disabled' do
      before do
        stub_feature_flags(container_registry_expiration_policies_throttling: false)
      end

      it { is_expected.to eq(0) }
    end
  end

  def expect_log_info(structure)
    expect(worker.logger)
      .to receive(:info).with(worker.structured_payload(structure))
  end

  def loopless_enabled?
    Feature.enabled?(:container_registry_expiration_policies_loopless)
  end
end