blob: 6665b7b76a0ce76436e51df919a2469b42bdb6a0 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# frozen_string_literal: true
FactoryBot.define do
factory :ci_runner, class: 'Ci::Runner' do
sequence(:description) { |n| "My runner#{n}" }
platform { "darwin" }
active { true }
access_level { :not_protected }
runner_type { :instance_type }
transient do
groups { [] }
projects { [] }
end
after(:build) do |runner, evaluator|
evaluator.projects.each do |proj|
runner.runner_projects << build(:ci_runner_project, project: proj)
end
evaluator.groups.each do |group|
runner.runner_namespaces << build(:ci_runner_namespace, namespace: group)
end
end
trait :online do
contacted_at { Time.now }
end
trait :instance do
runner_type { :instance_type }
end
trait :group do
runner_type { :group_type }
after(:build) do |runner, evaluator|
if runner.runner_namespaces.empty?
runner.runner_namespaces << build(:ci_runner_namespace)
end
end
end
trait :project do
runner_type { :project_type }
after(:build) do |runner, evaluator|
if runner.runner_projects.empty?
runner.runner_projects << build(:ci_runner_project)
end
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
trait :tagged_only do
run_untagged { false }
tag_list { %w(tag1 tag2) }
end
trait :locked do
locked { true }
end
end
end
|