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

test_case.rb « ci « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19ecc1774366a290f42ebaf6932cfafad0452c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

module Ci
  class TestCase < ApplicationRecord
    extend Gitlab::Ci::Model

    validates :project, :key_hash, presence: true

    has_many :test_case_failures, class_name: 'Ci::TestCaseFailure'

    belongs_to :project

    scope :by_project_and_keys, -> (project, keys) { where(project_id: project.id, key_hash: keys) }

    class << self
      def find_or_create_by_batch(project, test_case_keys)
        # Insert records first. Existing ones will be skipped.
        insert_all(test_case_attrs(project, test_case_keys))

        # Find all matching records now that we are sure they all are persisted.
        by_project_and_keys(project, test_case_keys)
      end

      private

      def test_case_attrs(project, test_case_keys)
        # NOTE: Rails 6.1 will add support for insert_all on relation so that
        # we will be able to do project.test_cases.insert_all.
        test_case_keys.map do |hashed_key|
          { project_id: project.id, key_hash: hashed_key }
        end
      end
    end
  end
end