4af9d592c5
I've followed the [upgrade guide](https://github.com/thoughtbot/factory_bot/blob/4-9-0-stable/UPGRADE_FROM_FACTORY_GIRL.md) and ran these two commands: ``` grep -e FactoryGirl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|FactoryGirl|FactoryBot|" grep -e factory_girl **/*.rake **/*.rb -s -l | xargs sed -i "" "s|factory_girl|factory_bot|" ``` Signed-off-by: Rémy Coutable <remy@rymai.me>
70 lines
1.7 KiB
Ruby
70 lines
1.7 KiB
Ruby
FactoryBot.define do
|
|
factory :ci_empty_pipeline, class: Ci::Pipeline do
|
|
source :push
|
|
ref 'master'
|
|
sha '97de212e80737a608d939f648d959671fb0a0142'
|
|
status 'pending'
|
|
protected false
|
|
|
|
project
|
|
|
|
factory :ci_pipeline_without_jobs do
|
|
after(:build) do |pipeline|
|
|
pipeline.instance_variable_set(:@ci_yaml_file, YAML.dump({}))
|
|
end
|
|
end
|
|
|
|
factory :ci_pipeline_with_one_job do
|
|
after(:build) do |pipeline|
|
|
allow(pipeline).to receive(:ci_yaml_file) do
|
|
pipeline.instance_variable_set(:@ci_yaml_file, YAML.dump({ rspec: { script: "ls" } }))
|
|
end
|
|
end
|
|
end
|
|
|
|
# Persist merge request head_pipeline_id
|
|
# on pipeline factories to avoid circular references
|
|
transient { head_pipeline_of nil }
|
|
|
|
after(:create) do |pipeline, evaluator|
|
|
merge_request = evaluator.head_pipeline_of
|
|
merge_request&.update(head_pipeline: pipeline)
|
|
end
|
|
|
|
factory :ci_pipeline do
|
|
transient { config nil }
|
|
|
|
after(:build) do |pipeline, evaluator|
|
|
if evaluator.config
|
|
pipeline.instance_variable_set(:@ci_yaml_file, YAML.dump(evaluator.config))
|
|
|
|
# Populates pipeline with errors
|
|
pipeline.config_processor if evaluator.config
|
|
else
|
|
pipeline.instance_variable_set(:@ci_yaml_file, File.read(Rails.root.join('spec/support/gitlab_stubs/gitlab_ci.yml')))
|
|
end
|
|
end
|
|
|
|
trait :invalid do
|
|
config(rspec: nil)
|
|
failure_reason :config_error
|
|
end
|
|
|
|
trait :blocked do
|
|
status :manual
|
|
end
|
|
|
|
trait :success do
|
|
status :success
|
|
end
|
|
|
|
trait :failed do
|
|
status :failed
|
|
end
|
|
|
|
trait :protected do
|
|
protected true
|
|
end
|
|
end
|
|
end
|
|
end
|