summaryrefslogtreecommitdiff
path: root/spec/factories/ml/candidates.rb
blob: 1b41e39d71113e1f5ccb5acc6d011b6ae578961d (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
# frozen_string_literal: true
FactoryBot.define do
  factory :ml_candidates, class: '::Ml::Candidate' do
    association :experiment, factory: :ml_experiments
    association :user

    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|
        FactoryBot.create(:generic_package,
                          name: candidate.package_name,
                          version: candidate.package_version,
                          project: candidate.project)
      end
    end
  end
end