gitlab-org--gitlab-foss/spec/factories/ci/runners.rb

48 lines
923 B
Ruby
Raw Normal View History

FactoryBot.define do
factory :ci_runner, class: Ci::Runner do
sequence(:description) { |n| "My runner#{n}" }
2015-08-26 01:42:46 +00:00
platform "darwin"
active true
2017-09-02 07:31:14 +00:00
access_level :not_protected
2015-08-26 01:42:46 +00:00
is_shared true
runner_type :instance_type
2018-05-23 13:29:48 +00:00
trait :online do
contacted_at Time.now
end
trait :instance do
2015-08-26 01:42:46 +00:00
is_shared true
runner_type :instance_type
2015-08-26 01:42:46 +00:00
end
trait :group do
is_shared false
runner_type :group_type
2018-05-28 10:55:13 +00:00
after(:build) do |runner, evaluator|
runner.groups << build(:group) if runner.groups.empty?
end
end
trait :project do
is_shared false
runner_type :project_type
2018-05-28 10:55:13 +00:00
after(:build) do |runner, evaluator|
runner.projects << build(:project) if runner.projects.empty?
end
end
trait :inactive do
active false
end
trait :ref_protected do
access_level :ref_protected
end
2015-08-26 01:42:46 +00:00
end
end