Test ExpireBuildArtifactsWorker

This commit is contained in:
Kamil Trzcinski 2016-06-10 17:27:49 +02:00 committed by Phil Hughes
parent 6013768fec
commit 1c60ff0b7a
2 changed files with 56 additions and 1 deletions

View File

@ -1,4 +1,4 @@
class ExpireBuildArtifacts
class ExpireBuildArtifactsWorker
include Sidekiq::Worker
def perform

View File

@ -0,0 +1,55 @@
require 'spec_helper'
describe ExpireBuildArtifactsWorker do
include RepoHelpers
let(:worker) { ExpireBuildArtifactsWorker.new }
describe '#perform' do
context 'with expired artifacts' do
let!(:build) { create(:ci_build, :artifacts, artifacts_expire_at: Time.now - 7.days) }
it do
expect_any_instance_of(Ci::Build).to receive(:erase_artifacts!)
worker.perform
build.reload
expect(build.artifacts_expired?).to be_truthy
end
end
context 'with not yet expired artifacts' do
let!(:build) { create(:ci_build, :artifacts, artifacts_expire_at: Time.now + 7.days) }
it do
expect_any_instance_of(Ci::Build).not_to receive(:erase_artifacts!)
worker.perform
build.reload
expect(build.artifacts_expired?).to be_falsey
end
end
context 'without expire date' do
let!(:build) { create(:ci_build, :artifacts) }
it do
expect_any_instance_of(Ci::Build).not_to receive(:erase_artifacts!)
worker.perform
end
end
context 'for expired artifacts' do
let!(:build) { create(:ci_build, :artifacts, artifacts_expire_at: Time.now - 7.days) }
before do
build.erase_artifacts!
end
it do
expect_any_instance_of(Ci::Build).not_to receive(:erase_artifacts!)
worker.perform
build.reload
expect(build.artifacts_expired?).to be_truthy
end
end
end
end