# frozen_string_literal: true require 'spec_helper' RSpec.describe CleanupContainerRepositoryWorker, :clean_gitlab_redis_shared_state do let(:repository) { create(:container_repository) } let(:project) { repository.project } let(:user) { project.owner } subject { described_class.new } describe '#perform' do let(:service) { instance_double(Projects::ContainerRepository::CleanupTagsService) } context 'bulk delete api' do let(:params) { { key: 'value', 'container_expiration_policy' => false } } it 'executes the destroy service' do expect(Projects::ContainerRepository::CleanupTagsService).to receive(:new) .with(repository, user, params.merge('container_expiration_policy' => false)) .and_return(service) expect(service).to receive(:execute) subject.perform(user.id, repository.id, params) end it 'does not raise error when user could not be found' do expect do subject.perform(-1, repository.id, params) end.not_to raise_error end it 'does not raise error when repository could not be found' do expect do subject.perform(user.id, -1, params) end.not_to raise_error end end context 'container expiration policy' do let(:params) { { key: 'value', 'container_expiration_policy' => true } } before do allow(ContainerRepository) .to receive(:find_by_id).with(repository.id).and_return(repository) end it 'executes the destroy service' do expect(repository).to receive(:start_expiration_policy!).and_call_original expect(repository).to receive(:reset_expiration_policy_started_at!).and_call_original expect(Projects::ContainerRepository::CleanupTagsService).to receive(:new) .with(repository, nil, params.merge('container_expiration_policy' => true)) .and_return(service) expect(service).to receive(:execute).and_return(status: :success) subject.perform(nil, repository.id, params) expect(repository.reload.expiration_policy_started_at).to be_nil end it "doesn't reset the expiration policy started at if the destroy service returns an error" do expect(repository).to receive(:start_expiration_policy!).and_call_original expect(repository).not_to receive(:reset_expiration_policy_started_at!) expect(Projects::ContainerRepository::CleanupTagsService).to receive(:new) .with(repository, nil, params.merge('container_expiration_policy' => true)) .and_return(service) expect(service).to receive(:execute).and_return(status: :error, message: 'timeout while deleting tags') subject.perform(nil, repository.id, params) expect(repository.reload.expiration_policy_started_at).not_to be_nil end end end end