summaryrefslogtreecommitdiff
path: root/spec/services/ci/create_trace_artifact_service_spec.rb
blob: 847a88920fee4780b78c373206f627621082f4fe (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
require 'spec_helper'

describe Ci::CreateTraceArtifactService do
  describe '#execute' do
    subject { described_class.new(nil, nil).execute(job) }

    let(:job) { create(:ci_build) }

    context 'when the job does not have trace artifact' do
      context 'when the job has a trace file' do
        before do
          allow_any_instance_of(Gitlab::Ci::Trace)
            .to receive(:default_path) { expand_fixture_path('trace/sample_trace') }

          allow_any_instance_of(JobArtifactUploader).to receive(:move_to_cache) { false }
          allow_any_instance_of(JobArtifactUploader).to receive(:move_to_store) { false }
        end

        it 'creates trace artifact' do
          expect { subject }.to change { Ci::JobArtifact.count }.by(1)

          expect(job.job_artifacts_trace.read_attribute(:file)).to eq('sample_trace')
        end

        context 'when the job has already had trace artifact' do
          before do
            create(:ci_job_artifact, :trace, job: job)
          end

          it 'does not create trace artifact' do
            expect { subject }.not_to change { Ci::JobArtifact.count }
          end
        end
      end

      context 'when the job does not have a trace file' do
        it 'does not create trace artifact' do
          expect { subject }.not_to change { Ci::JobArtifact.count }
        end
      end
    end
  end
end