2018-05-08 10:10:19 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :recent_view do
|
2018-09-10 12:38:33 +00:00
|
|
|
transient do
|
|
|
|
type { :ticket }
|
|
|
|
user_role { :agent }
|
|
|
|
end
|
|
|
|
|
|
|
|
recent_view_object_id { ObjectLookup.by_name(type.to_s.camelcase) }
|
|
|
|
|
|
|
|
# select a random record of the given object class
|
|
|
|
o_id do
|
|
|
|
type.to_s.camelcase.constantize.order('RANDOM()').first.id
|
|
|
|
end
|
|
|
|
|
|
|
|
# assign to an existing user, if possible
|
|
|
|
created_by_id do
|
|
|
|
User.find { |u| u.role?(user_role.capitalize) }&.id ||
|
|
|
|
create("#{user_role}_user").id
|
|
|
|
end
|
2018-05-08 10:10:19 +00:00
|
|
|
end
|
|
|
|
end
|