2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
Fabricator(:topic) do
|
|
|
|
user
|
2013-03-11 09:51:24 -04:00
|
|
|
title { sequence(:title) { |i| "This is a test topic #{i}" } }
|
2018-06-05 03:29:17 -04:00
|
|
|
category_id do |attrs|
|
|
|
|
attrs[:category] ? attrs[:category].id : SiteSetting.uncategorized_category_id
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2013-02-16 15:57:16 -05:00
|
|
|
Fabricator(:deleted_topic, from: :topic) { deleted_at { 1.minute.ago } }
|
|
|
|
|
2016-09-09 12:15:56 -04:00
|
|
|
Fabricator(:closed_topic, from: :topic) { closed true }
|
|
|
|
|
2014-06-16 13:21:21 -04:00
|
|
|
Fabricator(:banner_topic, from: :topic) { archetype Archetype.banner }
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
Fabricator(:private_message_topic, from: :topic) do
|
2020-09-14 07:07:35 -04:00
|
|
|
transient :recipient
|
2014-09-11 03:39:20 -04:00
|
|
|
category_id { nil }
|
2013-03-11 09:51:24 -04:00
|
|
|
title { sequence(:title) { |i| "This is a private message #{i}" } }
|
2013-02-05 14:16:51 -05:00
|
|
|
archetype "private_message"
|
2013-02-25 11:42:20 -05:00
|
|
|
topic_allowed_users do |t|
|
|
|
|
[
|
2017-04-26 23:53:53 -04:00
|
|
|
Fabricate.build(:topic_allowed_user, user: t[:user]),
|
2020-09-14 07:07:35 -04:00
|
|
|
Fabricate.build(:topic_allowed_user, user: t[:recipient] || Fabricate(:user)),
|
2013-02-05 14:16:51 -05:00
|
|
|
]
|
2023-01-09 06:18:21 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|