summaryrefslogtreecommitdiff
path: root/spec/factories/ci/runners.rb
blob: 6fb621b5e5196ee3a6996c592360ad34433f1e6e (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
FactoryBot.define do
  factory :ci_runner, class: Ci::Runner do
    sequence(:description) { |n| "My runner#{n}" }

    platform  "darwin"
    active    true
    access_level :not_protected

    is_shared true
    runner_type :instance_type

    trait :online do
      contacted_at Time.now
    end

    trait :instance do
      is_shared true
      runner_type :instance_type
    end

    trait :group do
      is_shared false
      runner_type :group_type

      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

      after(:build) do |runner, evaluator|
        runner.projects << build(:project) if runner.projects.empty?
      end
    end

    trait :without_projects do
      # we use that to create invalid runner:
      # the one without projects
      after(:create) do |runner, evaluator|
        runner.runner_projects.delete_all
      end
    end

    trait :inactive do
      active false
    end

    trait :ref_protected do
      access_level :ref_protected
    end
  end
end