Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/ci/reports/test_report.rb')
-rw-r--r--lib/gitlab/ci/reports/test_report.rb59
1 files changed, 59 insertions, 0 deletions
diff --git a/lib/gitlab/ci/reports/test_report.rb b/lib/gitlab/ci/reports/test_report.rb
new file mode 100644
index 00000000000..4fc10dd736e
--- /dev/null
+++ b/lib/gitlab/ci/reports/test_report.rb
@@ -0,0 +1,59 @@
+# frozen_string_literal: true
+
+module Gitlab
+ module Ci
+ module Reports
+ class TestReport
+ attr_reader :test_suites
+
+ def initialize
+ @test_suites = {}
+ end
+
+ def get_suite(suite_name)
+ test_suites[suite_name] ||= TestSuite.new(suite_name)
+ end
+
+ # rubocop: disable CodeReuse/ActiveRecord
+ def total_time
+ test_suites.values.sum(&:total_time)
+ end
+ # rubocop: enable CodeReuse/ActiveRecord
+
+ # rubocop: disable CodeReuse/ActiveRecord
+ def total_count
+ test_suites.values.sum(&:total_count)
+ end
+ # rubocop: enable CodeReuse/ActiveRecord
+
+ def total_status
+ if failed_count > 0 || error_count > 0
+ TestCase::STATUS_FAILED
+ else
+ TestCase::STATUS_SUCCESS
+ end
+ end
+
+ def with_attachment!
+ @test_suites.keep_if do |_job_name, test_suite|
+ test_suite.with_attachment!.present?
+ end
+
+ self
+ end
+
+ def suite_errors
+ test_suites.transform_values(&:suite_error).compact
+ end
+
+ TestCase::STATUS_TYPES.each do |status_type|
+ define_method("#{status_type}_count") do
+ # rubocop: disable CodeReuse/ActiveRecord
+ test_suites.values.sum { |suite| suite.public_send("#{status_type}_count") } # rubocop:disable GitlabSecurity/PublicSend
+ # rubocop: enable CodeReuse/ActiveRecord
+ end
+ end
+ end
+ end
+ end
+end