debian-mirror-gitlab/lib/gitlab/ci/reports/test_suite_summary.rb

50 lines
1.1 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
module Gitlab
module Ci
module Reports
class TestSuiteSummary
attr_reader :results
def initialize(results)
@results = results
end
def name
@name ||= results.first.tests_name
end
# rubocop: disable CodeReuse/ActiveRecord
def build_ids
results.pluck(:build_id)
end
def total_time
@total_time ||= results.sum(&:tests_duration)
end
def success_count
@success_count ||= results.sum(&:tests_success)
end
def failed_count
@failed_count ||= results.sum(&:tests_failed)
end
def skipped_count
@skipped_count ||= results.sum(&:tests_skipped)
end
def error_count
@error_count ||= results.sum(&:tests_errored)
end
def total_count
@total_count ||= [success_count, failed_count, skipped_count, error_count].sum
end
# rubocop: disable CodeReuse/ActiveRecord
end
end
end
end