2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2016-02-16 22:55:24 -05:00
|
|
|
factory :namespace do
|
|
|
|
sequence(:name) { |n| "namespace#{n}" }
|
|
|
|
path { name.downcase.gsub(/\s/, '_') }
|
2018-04-23 11:48:26 -04:00
|
|
|
|
|
|
|
# This is a workaround to avoid the user creating another namespace via
|
|
|
|
# User#ensure_namespace_correct. We should try to remove it and then
|
|
|
|
# we could remove this workaround
|
|
|
|
association :owner, factory: :user, strategy: :build
|
|
|
|
before(:create) do |namespace|
|
|
|
|
owner = namespace.owner
|
|
|
|
|
|
|
|
if owner
|
|
|
|
# We're changing the username here because we want to keep our path,
|
|
|
|
# and User#ensure_namespace_correct would change the path based on
|
|
|
|
# username, so we're forced to do this otherwise we'll need to change
|
|
|
|
# a lot of existing tests.
|
|
|
|
owner.username = namespace.path
|
|
|
|
owner.namespace = namespace
|
|
|
|
end
|
|
|
|
end
|
2016-02-16 22:55:24 -05:00
|
|
|
end
|
|
|
|
end
|