2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe Jobs::PendingQueuedPostsReminder do
|
2019-01-04 01:03:01 +08:00
|
|
|
let(:job) { described_class.new }
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when notify_about_queued_posts_after is 0" do
|
2017-07-07 14:09:14 +08:00
|
|
|
before { SiteSetting.notify_about_queued_posts_after = 0 }
|
2015-06-19 03:46:50 +08:00
|
|
|
|
|
|
|
it "never emails" do
|
|
|
|
described_class.any_instance.expects(:should_notify_ids).never
|
2017-09-13 05:44:31 +08:00
|
|
|
expect { job.execute({}) }.to_not change { Post.count }
|
2015-06-19 03:46:50 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when notify_about_queued_posts_after accepts a float" do
|
2022-05-05 00:33:43 +08:00
|
|
|
before do
|
|
|
|
SiteSetting.notify_about_queued_posts_after = 0.25
|
|
|
|
job.last_notified_id = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
it "creates system message if there are new queued posts" do
|
|
|
|
Fabricate(:reviewable_queued_post, created_at: 16.minutes.ago)
|
|
|
|
Fabricate(:reviewable_queued_post, created_at: 14.minutes.ago)
|
|
|
|
# expect 16 minute post to be picked up but not 14 min post
|
|
|
|
expect { job.execute({}) }.to change { Post.count }.by(1)
|
|
|
|
expect(
|
|
|
|
Topic.where(
|
|
|
|
subtype: TopicSubtype.system_message,
|
|
|
|
title: I18n.t("system_messages.queued_posts_reminder.subject_template", count: 1),
|
|
|
|
).exists?,
|
|
|
|
).to eq(true)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when notify_about_queued_posts_after is 24" do
|
2017-04-20 04:16:27 +08:00
|
|
|
before { SiteSetting.notify_about_queued_posts_after = 24 }
|
2015-06-19 03:46:50 +08:00
|
|
|
|
2019-01-04 01:03:01 +08:00
|
|
|
context "when we haven't been notified in a while" do
|
|
|
|
before { job.last_notified_id = nil }
|
|
|
|
|
|
|
|
it "doesn't create system message if there are no queued posts" do
|
|
|
|
expect { job.execute({}) }.to_not change { Post.count }
|
|
|
|
end
|
|
|
|
|
|
|
|
it "creates system message if there are new queued posts" do
|
|
|
|
Fabricate(:reviewable_queued_post, created_at: 48.hours.ago)
|
|
|
|
Fabricate(:reviewable_queued_post, created_at: 45.hours.ago)
|
|
|
|
expect { job.execute({}) }.to change { Post.count }.by(1)
|
|
|
|
expect(
|
|
|
|
Topic.where(
|
|
|
|
subtype: TopicSubtype.system_message,
|
|
|
|
title: I18n.t("system_messages.queued_posts_reminder.subject_template", count: 2),
|
|
|
|
).exists?,
|
|
|
|
).to eq(true)
|
|
|
|
end
|
2015-06-19 03:46:50 +08:00
|
|
|
end
|
|
|
|
|
2017-09-13 05:44:31 +08:00
|
|
|
it "doesn't create system message again about the same posts" do
|
2019-01-04 01:03:01 +08:00
|
|
|
reviewable = Fabricate(:reviewable_queued_post, created_at: 48.hours.ago)
|
|
|
|
job.last_notified_id = reviewable.id
|
|
|
|
expect { described_class.new.execute({}) }.to_not change { Post.count }
|
2015-06-19 03:46:50 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|