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

container_expiration_policy_service_spec.rb « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2f2b2e1236e553f83e19f46e90bf4ba53551422 (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
# frozen_string_literal: true

require 'spec_helper'

describe ContainerExpirationPolicyService do
  let_it_be(:user) { create(:user) }
  let_it_be(:container_expiration_policy) { create(:container_expiration_policy, :runnable) }
  let(:project) { container_expiration_policy.project }
  let(:container_repository) { create(:container_repository, project: project) }

  before do
    project.add_maintainer(user)
  end

  describe '#execute' do
    subject { described_class.new(project, user).execute(container_expiration_policy) }

    it 'kicks off a cleanup worker for the container repository' do
      expect(CleanupContainerRepositoryWorker).to receive(:perform_async)
        .with(nil, container_repository.id, hash_including(container_expiration_policy: true))

      subject
    end

    it 'sets next_run_at on the container_expiration_policy' do
      subject

      expect(container_expiration_policy.next_run_at).to be > Time.zone.now
    end
  end
end