traces_rake_spec.rb 1.3 KB
Newer Older
1 2 3 4 5 6 7 8 9
require 'rake_helper'

describe 'gitlab:traces rake tasks' do
  before do
    Rake.application.rake_require 'tasks/gitlab/traces'
  end

  shared_examples 'passes the job id to worker' do
    it do
10
      expect(ArchiveTraceWorker).to receive(:bulk_perform_async).with([[job.id]])
11 12 13 14 15 16 17

      run_rake_task('gitlab:traces:archive')
    end
  end

  shared_examples 'does not pass the job id to worker' do
    it do
18
      expect(ArchiveTraceWorker).not_to receive(:bulk_perform_async)
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

      run_rake_task('gitlab:traces:archive')
    end
  end

  context 'when trace file stored in default path' do
    let!(:job) { create(:ci_build, :success, :trace_live) }

    it_behaves_like 'passes the job id to worker'
  end

  context 'when trace is stored in database' do
    let!(:job) { create(:ci_build, :success) }

    before do
      job.update_column(:trace, 'trace in db')
    end

    it_behaves_like 'passes the job id to worker'
  end

  context 'when job has trace artifact' do
    let!(:job) { create(:ci_build, :success) }

    before do
      create(:ci_job_artifact, :trace, job: job)
    end

    it_behaves_like 'does not pass the job id to worker'
  end

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

    it_behaves_like 'does not pass the job id to worker'
  end
end