debian-mirror-gitlab/spec/services/ci/pipeline_artifacts/coverage_report_service_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.6 KiB
Ruby
Raw Normal View History

2020-11-24 15:15:51 +05:30
# frozen_string_literal: true
require 'spec_helper'
2021-03-08 18:12:59 +05:30
RSpec.describe ::Ci::PipelineArtifacts::CoverageReportService do
2020-11-24 15:15:51 +05:30
describe '#execute' do
subject { described_class.new.execute(pipeline) }
context 'when pipeline has coverage reports' do
2021-02-22 17:27:13 +05:30
let(:project) { create(:project, :repository) }
let(:pipeline) { create(:ci_pipeline, :with_coverage_reports, project: project) }
2020-11-24 15:15:51 +05:30
context 'when pipeline is finished' do
it 'creates a pipeline artifact' do
subject
expect(Ci::PipelineArtifact.count).to eq(1)
end
it 'persists the default file name' do
subject
file = Ci::PipelineArtifact.first.file
expect(file.filename).to eq('code_coverage.json')
end
it 'sets expire_at to 1 week' do
freeze_time do
subject
pipeline_artifact = Ci::PipelineArtifact.first
expect(pipeline_artifact.expire_at).to eq(1.week.from_now)
end
end
end
context 'when pipeline artifact has already been created' do
it 'do not raise an error and do not persist the same artifact twice' do
2022-07-16 23:28:13 +05:30
expect { 2.times { described_class.new.execute(pipeline) } }.not_to raise_error
2020-11-24 15:15:51 +05:30
expect(Ci::PipelineArtifact.count).to eq(1)
end
end
end
context 'when pipeline is running and coverage report does not exist' do
let(:pipeline) { create(:ci_pipeline, :running) }
it 'does not persist data' do
subject
expect(Ci::PipelineArtifact.count).to eq(0)
end
end
end
end