2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe Jobs::DeleteTopic do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:admin) { Fabricate(:admin) }
|
2017-05-12 00:52:15 +08:00
|
|
|
|
2017-07-22 05:14:06 +08:00
|
|
|
fab!(:topic) { Fabricate(:topic_timer, user: admin).topic }
|
2017-05-12 00:52:15 +08:00
|
|
|
|
|
|
|
let(:first_post) { create_post(topic: topic) }
|
|
|
|
|
2017-05-12 10:28:51 +08:00
|
|
|
it "can delete a topic" do
|
2017-05-12 00:52:15 +08:00
|
|
|
first_post
|
2017-05-12 10:28:51 +08:00
|
|
|
|
2017-07-24 21:17:42 +08:00
|
|
|
freeze_time (2.hours.from_now)
|
|
|
|
|
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
|
|
|
|
expect(topic.reload).to be_trashed
|
|
|
|
expect(first_post.reload).to be_trashed
|
|
|
|
expect(topic.reload.public_topic_timer).to eq(nil)
|
2017-05-12 00:52:15 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should do nothing if topic is already deleted" do
|
|
|
|
first_post
|
|
|
|
topic.trash!
|
2017-07-24 21:17:42 +08:00
|
|
|
|
|
|
|
freeze_time 2.hours.from_now
|
|
|
|
|
|
|
|
Topic.any_instance.expects(:trash!).never
|
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
|
2017-05-12 00:52:15 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should do nothing if it's too early" do
|
2017-07-23 10:00:58 +08:00
|
|
|
t = Fabricate(:topic_timer, user: admin, execute_at: 5.hours.from_now).topic
|
2017-05-12 00:52:15 +08:00
|
|
|
create_post(topic: t)
|
2017-07-24 21:17:42 +08:00
|
|
|
|
|
|
|
freeze_time 4.hours.from_now
|
|
|
|
|
|
|
|
described_class.new.execute(topic_timer_id: t.public_topic_timer.id)
|
|
|
|
expect(t.reload).to_not be_trashed
|
2017-05-12 00:52:15 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "user isn't authorized to delete topics" do
|
2017-07-23 10:49:04 +08:00
|
|
|
let(:topic) { Fabricate(:topic_timer, user: Fabricate(:user)).topic }
|
2017-05-12 00:52:15 +08:00
|
|
|
|
|
|
|
it "shouldn't delete the topic" do
|
|
|
|
create_post(topic: topic)
|
2017-07-24 21:17:42 +08:00
|
|
|
|
|
|
|
freeze_time 2.hours.from_now
|
|
|
|
|
|
|
|
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
|
|
|
|
expect(topic.reload).to_not be_trashed
|
2017-05-12 00:52:15 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|