2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-21 23:12:02 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe Jobs::ToggleTopicClosed do
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:admin) { Fabricate(:admin) }
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:topic) do
|
2017-07-22 22:47:16 -04:00
|
|
|
Fabricate(:topic_timer, user: admin).topic
|
2017-03-21 23:12:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to close a topic' do
|
|
|
|
topic
|
|
|
|
|
2018-06-05 03:29:17 -04:00
|
|
|
freeze_time(61.minutes.from_now) do
|
2017-03-21 23:12:02 -04:00
|
|
|
described_class.new.execute(
|
2017-05-16 14:49:42 -04:00
|
|
|
topic_timer_id: topic.public_topic_timer.id,
|
2017-03-21 23:12:02 -04:00
|
|
|
state: true
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(topic.reload.closed).to eq(true)
|
|
|
|
|
|
|
|
expect(Post.last.raw).to eq(I18n.t(
|
2018-06-05 03:29:17 -04:00
|
|
|
'topic_statuses.autoclosed_enabled_minutes', count: 61
|
2017-03-21 23:12:02 -04:00
|
|
|
))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-02-27 02:31:59 -05:00
|
|
|
describe 'opening a topic' do
|
|
|
|
it 'should be work' do
|
|
|
|
topic.update!(closed: true)
|
|
|
|
|
2018-06-14 02:10:30 -04:00
|
|
|
freeze_time(61.minutes.from_now) do
|
2018-02-27 02:31:59 -05:00
|
|
|
described_class.new.execute(
|
|
|
|
topic_timer_id: topic.public_topic_timer.id,
|
|
|
|
state: false
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(topic.reload.closed).to eq(false)
|
|
|
|
|
|
|
|
expect(Post.last.raw).to eq(I18n.t(
|
2018-06-14 02:10:30 -04:00
|
|
|
'topic_statuses.autoclosed_disabled_minutes', count: 61
|
2018-02-27 02:31:59 -05:00
|
|
|
))
|
|
|
|
end
|
|
|
|
end
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2018-02-27 02:31:59 -05:00
|
|
|
describe 'when category has auto close configured' do
|
2020-08-26 00:59:05 -04:00
|
|
|
fab!(:category) do
|
|
|
|
Fabricate(:category,
|
|
|
|
auto_close_based_on_last_post: true,
|
|
|
|
auto_close_hours: 5
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:topic) { Fabricate(:topic, category: category, closed: true) }
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2018-02-27 02:31:59 -05: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-21 23:12:02 -04:00
|
|
|
|
2018-06-19 02:13:14 -04:00
|
|
|
freeze_time(61.minutes.from_now) do
|
2018-02-27 02:31:59 -05: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 02:28:01 -04:00
|
|
|
expect(topic_timer.execute_at).to eq_time(5.hours.from_now)
|
2018-02-27 02:31:59 -05:00
|
|
|
end
|
|
|
|
end
|
2017-03-21 23:12:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-26 00:18:33 -04: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-21 23:12:02 -04:00
|
|
|
describe 'when trying to close a topic that has been deleted' do
|
2020-08-26 00:18:33 -04:00
|
|
|
it 'should delete the topic timer' do
|
|
|
|
freeze_time(topic.public_topic_timer.execute_at + 1.minute)
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2020-08-26 00:18:33 -04:00
|
|
|
topic.trash!
|
2017-03-21 23:12:02 -04:00
|
|
|
|
2020-08-26 00:18:33 -04: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-21 23:12:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-26 00:59:05 -04:00
|
|
|
describe 'when user is no longer authorized to close topics' do
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
|
|
|
|
2019-05-06 23:12:20 -04:00
|
|
|
fab!(:topic) do
|
2020-08-26 00:59:05 -04:00
|
|
|
Fabricate(:topic_timer, user: user).topic
|
2017-03-21 23:12:02 -04:00
|
|
|
end
|
|
|
|
|
2020-08-26 00:59:05 -04: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-21 23:12:02 -04:00
|
|
|
)
|
|
|
|
|
2020-08-26 00:59:05 -04: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-21 23:12:02 -04:00
|
|
|
expect(topic.reload.closed).to eq(false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|