2018-12-13 13:39:08 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
module Gitlab
|
|
|
|
module Ci
|
|
|
|
module Reports
|
|
|
|
class TestReports
|
|
|
|
attr_reader :test_suites
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
@test_suites = {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def get_suite(suite_name)
|
|
|
|
test_suites[suite_name] ||= TestSuite.new(suite_name)
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-11-18 11:00:15 +05:30
|
|
|
def total_time
|
|
|
|
test_suites.values.sum(&:total_time)
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-11-18 11:00:15 +05:30
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-11-18 11:00:15 +05:30
|
|
|
def total_count
|
|
|
|
test_suites.values.sum(&:total_count)
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-11-18 11:00:15 +05:30
|
|
|
|
|
|
|
def total_status
|
|
|
|
if failed_count > 0 || error_count > 0
|
|
|
|
TestCase::STATUS_FAILED
|
|
|
|
else
|
|
|
|
TestCase::STATUS_SUCCESS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
TestCase::STATUS_TYPES.each do |status_type|
|
|
|
|
define_method("#{status_type}_count") do
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2018-11-18 11:00:15 +05:30
|
|
|
test_suites.values.sum { |suite| suite.public_send("#{status_type}_count") } # rubocop:disable GitlabSecurity/PublicSend
|
2018-12-05 23:21:45 +05:30
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2018-11-18 11:00:15 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|