summaryrefslogtreecommitdiff
path: root/spec/workers/ci/archive_traces_cron_worker_spec.rb
blob: 9af51b7d4d8bae6fb2c45598780d7303166c90ab (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
57
58
59
require 'spec_helper'

describe Ci::ArchiveTracesCronWorker do
  subject { described_class.new.perform }

  before do
    stub_feature_flags(ci_enable_live_trace: true)
  end

  shared_examples_for 'archives trace' do
    it do
      subject

      build.reload
      expect(build.job_artifacts_trace).to be_exist
    end
  end

  shared_examples_for 'does not archive trace' do
    it do
      subject

      build.reload
      expect(build.job_artifacts_trace).to be_nil
    end
  end

  context 'when a job was succeeded' do
    let!(:build) { create(:ci_build, :success, :trace_live) }

    it_behaves_like 'archives trace'

    context 'when archive raised an exception' do
      let!(:build) { create(:ci_build, :success, :trace_artifact, :trace_live) }
      let!(:build2) { create(:ci_build, :success, :trace_live) }

      it 'archives valid targets' do
        expect(Rails.logger).to receive(:error).with("Failed to archive stale live trace. id: #{build.id} message: Already archived")

        subject

        build2.reload
        expect(build2.job_artifacts_trace).to be_exist
      end
    end
  end

  context 'when a job was cancelled' do
    let!(:build) { create(:ci_build, :canceled, :trace_live) }

    it_behaves_like 'archives trace'
  end

  context 'when a job is running' do
    let!(:build) { create(:ci_build, :running, :trace_live) }

    it_behaves_like 'does not archive trace'
  end
end