2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe Jobs::ToggleTopicClosed do
|
2023-11-10 06:47:59 +08:00
|
|
|
fab!(:admin)
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2017-07-23 10:47:16 +08:00
|
|
|
fab!(:topic) { Fabricate(:topic_timer, user: admin).topic }
|
2017-03-22 11:12:02 +08:00
|
|
|
|
|
|
|
it "should be able to close a topic" do
|
|
|
|
topic
|
|
|
|
|
2018-06-05 15:29:17 +08:00
|
|
|
freeze_time(61.minutes.from_now) do
|
2017-05-17 02:49:42 +08:00
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id, state: true)
|
2017-03-22 11:12:02 +08:00
|
|
|
|
|
|
|
expect(topic.reload.closed).to eq(true)
|
|
|
|
|
2018-06-05 15:29:17 +08:00
|
|
|
expect(Post.last.raw).to eq(I18n.t("topic_statuses.autoclosed_enabled_minutes", count: 61))
|
2017-03-22 11:12:02 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-27 15:31:59 +08:00
|
|
|
describe "opening a topic" do
|
|
|
|
it "should be work" do
|
|
|
|
topic.update!(closed: true)
|
|
|
|
|
2018-06-14 14:10:30 +08:00
|
|
|
freeze_time(61.minutes.from_now) do
|
2018-02-27 15:31:59 +08:00
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id, state: false)
|
|
|
|
|
|
|
|
expect(topic.reload.closed).to eq(false)
|
|
|
|
|
2018-06-14 14:10:30 +08:00
|
|
|
expect(Post.last.raw).to eq(I18n.t("topic_statuses.autoclosed_disabled_minutes", count: 61))
|
2018-02-27 15:31:59 +08:00
|
|
|
end
|
|
|
|
end
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2018-02-27 15:31:59 +08:00
|
|
|
describe "when category has auto close configured" do
|
2020-08-26 12:59:05 +08:00
|
|
|
fab!(:category) do
|
|
|
|
Fabricate(:category, auto_close_based_on_last_post: true, auto_close_hours: 5)
|
|
|
|
end
|
|
|
|
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:topic) { Fabricate(:topic, category: category, closed: true) }
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2018-02-27 15:31:59 +08:00
|
|
|
it "should restore the category's auto close timer" do
|
|
|
|
Fabricate(:topic_timer, status_type: TopicTimer.types[:open], topic: topic, user: admin)
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2018-06-19 14:13:14 +08:00
|
|
|
freeze_time(61.minutes.from_now) do
|
2018-02-27 15:31:59 +08:00
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id, state: false)
|
|
|
|
|
|
|
|
expect(topic.reload.closed).to eq(false)
|
|
|
|
|
|
|
|
topic_timer = topic.public_topic_timer
|
|
|
|
|
|
|
|
expect(topic_timer.status_type).to eq(TopicTimer.types[:close])
|
2019-03-28 14:28:01 +08:00
|
|
|
expect(topic_timer.execute_at).to eq_time(5.hours.from_now)
|
2018-02-27 15:31:59 +08:00
|
|
|
end
|
|
|
|
end
|
2017-03-22 11:12:02 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-26 12:18:33 +08:00
|
|
|
describe "when trying to close a topic that has already been closed" do
|
|
|
|
it "should delete the topic timer" do
|
|
|
|
freeze_time(topic.public_topic_timer.execute_at + 1.minute)
|
|
|
|
|
|
|
|
topic.update!(closed: true)
|
|
|
|
|
|
|
|
expect do
|
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id, state: true)
|
|
|
|
end.to change { TopicTimer.exists?(topic_id: topic.id) }.from(true).to(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-22 11:12:02 +08:00
|
|
|
describe "when trying to close a topic that has been deleted" do
|
2020-08-26 12:18:33 +08:00
|
|
|
it "should delete the topic timer" do
|
|
|
|
freeze_time(topic.public_topic_timer.execute_at + 1.minute)
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2020-08-26 12:18:33 +08:00
|
|
|
topic.trash!
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2020-08-26 12:18:33 +08:00
|
|
|
expect do
|
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id, state: true)
|
|
|
|
end.to change { TopicTimer.exists?(topic_id: topic.id) }.from(true).to(false)
|
2017-03-22 11:12:02 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-26 12:59:05 +08:00
|
|
|
describe "when user is no longer authorized to close topics" do
|
2023-11-10 06:47:59 +08:00
|
|
|
fab!(:user)
|
2020-08-26 12:59:05 +08:00
|
|
|
|
|
|
|
fab!(:topic) { Fabricate(:topic_timer, user: user).topic }
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2020-08-26 12:59:05 +08:00
|
|
|
it "should destroy the topic timer" do
|
|
|
|
freeze_time(topic.public_topic_timer.execute_at + 1.minute)
|
|
|
|
|
|
|
|
expect do
|
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id, state: true)
|
|
|
|
end.to change { TopicTimer.exists?(topic_id: topic.id) }.from(true).to(false)
|
|
|
|
|
|
|
|
expect(topic.reload.closed).to eq(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should reconfigure topic timer if category's topics are set to autoclose" do
|
|
|
|
category = Fabricate(:category, auto_close_based_on_last_post: true, auto_close_hours: 5)
|
2017-03-22 11:12:02 +08:00
|
|
|
|
2020-08-26 12:59:05 +08:00
|
|
|
topic = Fabricate(:topic, category: category)
|
|
|
|
topic.public_topic_timer.update!(user: user)
|
|
|
|
|
|
|
|
freeze_time(topic.public_topic_timer.execute_at + 1.minute)
|
|
|
|
|
|
|
|
expect do
|
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id, state: true)
|
|
|
|
end.to change { topic.reload.public_topic_timer.user }.from(user).to(
|
|
|
|
Discourse.system_user,
|
|
|
|
).and change { topic.public_topic_timer.id }
|
|
|
|
|
2017-03-22 11:12:02 +08:00
|
|
|
expect(topic.reload.closed).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|