Class: Ci::UnitTest

Inherits:
ApplicationRecord show all
Defined in:
app/models/ci/unit_test.rb

Constant Summary collapse

MAX_NAME_SIZE =
255
MAX_SUITE_NAME_SIZE =
255

Constants inherited from ApplicationRecord

ApplicationRecord::MAX_PLUCK

Constants included from ResetOnUnionError

ResetOnUnionError::MAX_RESET_PERIOD

Class Method Summary collapse

Methods inherited from ApplicationRecord

model_name, table_name_prefix

Methods inherited from ApplicationRecord

cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order

Methods included from SensitiveSerializableHash

#serializable_hash

Class Method Details

.find_or_create_by_batch(project, unit_test_attrs) ⇒ Object



18
19
20
21
22
23
24
# File 'app/models/ci/unit_test.rb', line 18

def find_or_create_by_batch(project, unit_test_attrs)
  # Insert records first. Existing ones will be skipped.
  insert_all(build_insert_attrs(project, unit_test_attrs))

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