summaryrefslogtreecommitdiff
path: root/spec/workers/expire_build_artifacts_worker_spec.rb
blob: 64a55e8c587c375c23f4b2015c750300af615027 (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
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!
        build.save
      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