discourse/spec/jobs/delete_topic_spec.rb
Daniel Waterworth 6e161d3e75
DEV: Allow fab! without block (#24314)
The most common thing that we do with fab! is:

    fab!(:thing) { Fabricate(:thing) }

This commit adds a shorthand for this which is just simply:

    fab!(:thing)

i.e. If you omit the block, then, by default, you'll get a `Fabricate`d object using the fabricator of the same name.
2023-11-09 16:47:59 -06:00

54 lines
1.4 KiB
Ruby

# frozen_string_literal: true
RSpec.describe Jobs::DeleteTopic do
fab!(:admin)
fab!(:topic) { Fabricate(:topic_timer, user: admin).topic }
let(:first_post) { create_post(topic: topic) }
it "can delete a topic" do
first_post
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)
end
it "should do nothing if topic is already deleted" do
first_post
topic.trash!
freeze_time 2.hours.from_now
Topic.any_instance.expects(:trash!).never
described_class.new.execute(topic_timer_id: topic.public_topic_timer.id)
end
it "should do nothing if it's too early" do
t = Fabricate(:topic_timer, user: admin, execute_at: 5.hours.from_now).topic
create_post(topic: t)
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
end
describe "user isn't authorized to delete topics" do
let(:topic) { Fabricate(:topic_timer, user: Fabricate(:user)).topic }
it "shouldn't delete the topic" do
create_post(topic: topic)
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
end
end
end