mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-29 12:00:32 +00:00
38 lines
1.0 KiB
Ruby
38 lines
1.0 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Ci
|
|
class UnitTestFailure < Ci::ApplicationRecord
|
|
include Ci::Partitionable
|
|
|
|
REPORT_WINDOW = 14.days
|
|
|
|
validates :unit_test, :build, :failed_at, presence: true
|
|
|
|
belongs_to :unit_test, class_name: "Ci::UnitTest", foreign_key: :unit_test_id
|
|
belongs_to :build,
|
|
->(unit_test_failure) { in_partition(unit_test_failure) },
|
|
class_name: 'Ci::Build',
|
|
foreign_key: :build_id,
|
|
partition_foreign_key: :partition_id
|
|
|
|
partitionable scope: :build
|
|
|
|
scope :deletable, -> { where('failed_at < ?', REPORT_WINDOW.ago) }
|
|
|
|
def self.recent_failures_count(project:, unit_test_keys:, date_range: REPORT_WINDOW.ago..Time.current)
|
|
joins(:unit_test)
|
|
.where(
|
|
ci_unit_tests: {
|
|
project_id: project.id,
|
|
key_hash: unit_test_keys
|
|
},
|
|
ci_unit_test_failures: {
|
|
failed_at: date_range
|
|
}
|
|
)
|
|
.group(:key_hash)
|
|
.count('ci_unit_test_failures.id')
|
|
end
|
|
end
|
|
end
|