2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-03-03 23:54:20 +08:00
discourse/spec/jobs/open_topic_spec.rb
Linca eeeb7d302f
DEV: rename topic_id to timerable_id for BaseTimer (#34667)
To prepare for the introduction of `CategoryDefaultTimer`, which allows
posts created in certain categories to have a default TopicTimer, we
need to rename the `topic_id` column to `timerable_id`.

---------

Co-authored-by: Alan Guo Xiang Tan <gxtan1990@gmail.com>
2025-09-17 13:19:17 +08:00

85 lines
2.8 KiB
Ruby

# frozen_string_literal: true
RSpec.describe Jobs::OpenTopic do
fab!(:admin)
fab!(:topic) { Fabricate(:topic_timer, user: admin).topic }
before { topic.update!(closed: true) }
it "should work" do
freeze_time(61.minutes.from_now) do
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
expect(topic.reload.open?).to eq(true)
expect(Post.last.raw).to eq(I18n.t("topic_statuses.autoclosed_disabled_minutes", count: 61))
end
end
it "publishes to the topic message bus so the topic status reloads" do
MessageBus.expects(:publish).at_least_once
MessageBus.expects(:publish).with("/topic/#{topic.id}", reload_topic: true).once
freeze_time(61.minutes.from_now) do
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
end
end
describe "when category has auto close configured" do
fab!(:category) do
Fabricate(:category, auto_close_based_on_last_post: true, auto_close_hours: 5)
end
fab!(:topic) { Fabricate(:topic, category: category, closed: true) }
it "should restore the category's auto close timer" do
Fabricate(:topic_timer, status_type: TopicTimer.types[:open], topic: topic, user: admin)
freeze_time(61.minutes.from_now) do
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
expect(topic.reload.open?).to eq(true)
topic_timer = topic.public_topic_timer
expect(topic_timer.status_type).to eq(TopicTimer.types[:close])
expect(topic_timer.execute_at).to eq_time(5.hours.from_now)
end
end
end
describe "when user is no longer authorized to open topics" do
fab!(:user)
fab!(:topic) { Fabricate(:topic_timer, user: user).topic }
it "should destroy the topic timer" do
topic.update!(closed: true)
freeze_time(topic.public_topic_timer.execute_at + 1.minute)
expect do
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
end.to change { TopicTimer.exists?(topic:) }.from(true).to(false)
expect(topic.reload.open?).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)
topic = Fabricate(:topic, category: category)
topic.public_topic_timer.update!(user: user)
topic.reload
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 }
expect(topic.reload.closed).to eq(false)
end
end
end