debian-mirror-gitlab/lib/gitlab/badge/coverage/report.rb

76 lines
1.7 KiB
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2016-09-13 17:45:13 +05:30
module Gitlab
module Badge
module Coverage
##
# Test coverage report badge
#
class Report < Badge::Base
2020-06-23 00:09:42 +05:30
attr_reader :project, :ref, :job, :customization
2016-09-13 17:45:13 +05:30
2020-06-23 00:09:42 +05:30
def initialize(project, ref, opts: { job: nil })
2016-09-13 17:45:13 +05:30
@project = project
@ref = ref
2020-06-23 00:09:42 +05:30
@job = opts[:job]
@customization = {
key_width: opts[:key_width].to_i,
key_text: opts[:key_text]
}
2016-09-13 17:45:13 +05:30
end
def entity
'coverage'
end
def status
@coverage ||= raw_coverage
return unless @coverage
2018-03-17 18:26:18 +05:30
@coverage.to_f.round(2)
2016-09-13 17:45:13 +05:30
end
def metadata
@metadata ||= Coverage::Metadata.new(self)
end
def template
@template ||= Coverage::Template.new(self)
end
private
2021-01-29 00:20:46 +05:30
def successful_pipeline
@successful_pipeline ||= @project.ci_pipelines.latest_successful_for_ref(@ref)
end
def failed_pipeline
@failed_pipeline ||= @project.ci_pipelines.latest_failed_for_ref(@ref)
end
def running_pipeline
@running_pipeline ||= @project.ci_pipelines.latest_running_for_ref(@ref)
end
2016-09-13 17:45:13 +05:30
def raw_coverage
2021-01-29 00:20:46 +05:30
latest =
if @job.present?
builds = ::Ci::Build
.in_pipelines([successful_pipeline, running_pipeline, failed_pipeline])
.latest
.success
.for_ref(@ref)
.by_name(@job)
builds.max_by(&:created_at)
else
successful_pipeline
end
2016-09-13 17:45:13 +05:30
2021-01-29 00:20:46 +05:30
latest&.coverage
2016-09-13 17:45:13 +05:30
end
end
end
end
end