32 lines
968 B
Ruby
32 lines
968 B
Ruby
|
# 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
|