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>
45 lines
1.6 KiB
Ruby
45 lines
1.6 KiB
Ruby
FactoryBot.define do
|
|
factory :environment, class: Environment do
|
|
sequence(:name) { |n| "environment#{n}" }
|
|
|
|
association :project, :repository
|
|
sequence(:external_url) { |n| "https://env#{n}.example.gitlab.com" }
|
|
|
|
trait :with_review_app do |environment|
|
|
transient do
|
|
ref 'master'
|
|
end
|
|
|
|
# At this point `review app` is an ephemeral concept related to
|
|
# deployments being deployed for given environment. There is no
|
|
# first-class `review app` available so we need to create set of
|
|
# interconnected objects to simulate a review app.
|
|
#
|
|
after(:create) do |environment, evaluator|
|
|
pipeline = create(:ci_pipeline, project: environment.project)
|
|
|
|
deployable = create(:ci_build, name: "#{environment.name}:deploy",
|
|
pipeline: pipeline)
|
|
|
|
deployment = create(:deployment,
|
|
environment: environment,
|
|
project: environment.project,
|
|
deployable: deployable,
|
|
ref: evaluator.ref,
|
|
sha: environment.project.commit(evaluator.ref).id)
|
|
|
|
teardown_build = create(:ci_build, :manual,
|
|
name: "#{environment.name}:teardown",
|
|
pipeline: pipeline)
|
|
|
|
deployment.update_column(:on_stop, teardown_build.name)
|
|
environment.update_attribute(:deployments, [deployment])
|
|
end
|
|
end
|
|
|
|
trait :non_playable do
|
|
status 'created'
|
|
self.when 'manual'
|
|
end
|
|
end
|
|
end
|