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

candidates.rb « ml « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b9a2320138a67f347447435e81de8a3010af1cba (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
# frozen_string_literal: true
FactoryBot.define do
  factory :ml_candidates, class: '::Ml::Candidate' do
    association :project, factory: :project
    association :user

    experiment { association :ml_experiments, project_id: project.id }

    trait :with_metrics_and_params do
      after(:create) do |candidate|
        candidate.metrics = FactoryBot.create_list(:ml_candidate_metrics, 2, candidate: candidate )
        candidate.params = FactoryBot.create_list(:ml_candidate_params, 2, candidate: candidate )
      end
    end

    trait :with_metadata do
      after(:create) do |candidate|
        candidate.metadata = FactoryBot.create_list(:ml_candidate_metadata, 2, candidate: candidate )
      end
    end

    trait :with_artifact do
      after(:create) do |candidate|
        candidate.package = FactoryBot.create(
          :generic_package,
          name: candidate.package_name,
          version: candidate.package_version,
          project: candidate.project
        )
      end
    end
  end
end