mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
e43a8af3bd
This bug was introduced by f66007ec83
.
In PostJobsEnqueuer we previously did not fire the after_post_create
event and after_topic_create event for private message topics. This was
changed in the above commit in order to publish message bus messages
for topic tracking state updates. Unfortunately this caused the
NotifyMailingListSubscribers job to be enqueued for all posts including
private messages, and admins and the users involved in the PMs got
emailed the contents of the PMs if they had mailing list mode enabled.
Luckily the impact of this was mitigated by a Guardian#can_see? check
for each mailing list mode user in the NotifyMailingListSubscribers job.
We never want to notify mailing list mode subscribers for private messages
so an early return has been added there, plus the logic in PostJobsEnqueuer
has been fixed, and tests have been added to that class where there were
none before.
106 lines
3.1 KiB
Ruby
106 lines
3.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe PostJobsEnqueuer do
|
|
let!(:post) { Fabricate(:post, topic: topic) }
|
|
let!(:topic) { Fabricate(:topic) }
|
|
let(:new_topic) { false }
|
|
let(:opts) { { post_alert_options: {} } }
|
|
|
|
subject { described_class.new(post, topic, new_topic, opts) }
|
|
|
|
context "for regular topics" do
|
|
it "enqueues the :post_alert job" do
|
|
expect_enqueued_with(job: :post_alert, args: {
|
|
post_id: post.id,
|
|
new_record: true,
|
|
options: opts[:post_alert_options]
|
|
}) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
it "enqueues the :notify_mailing_list_subscribers job" do
|
|
expect_enqueued_with(job: :notify_mailing_list_subscribers, args: { post_id: post.id }) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
it "enqueues the :post_update_topic_tracking_state job" do
|
|
expect_enqueued_with(job: :post_update_topic_tracking_state, args: { post_id: post.id }) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
it "enqueues the :feature_topic_users job" do
|
|
expect_enqueued_with(job: :feature_topic_users, args: { topic_id: topic.id }) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
context "for new topics" do
|
|
let(:new_topic) { true }
|
|
|
|
it "calls the correct topic tracking state class to publish_new" do
|
|
TopicTrackingState.expects(:publish_new).with(topic)
|
|
PrivateMessageTopicTrackingState.expects(:publish_new).never
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
end
|
|
|
|
context "for private messages" do
|
|
let!(:topic) { Fabricate(:private_message_topic) }
|
|
|
|
it "does not enqueue the :notify_mailing_list_subscribers job" do
|
|
expect_not_enqueued_with(job: :notify_mailing_list_subscribers, args: { post_id: post.id }) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
it "enqueues the :post_update_topic_tracking_state job" do
|
|
expect_enqueued_with(job: :post_update_topic_tracking_state, args: { post_id: post.id }) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
it "enqueues the :feature_topic_users job" do
|
|
expect_enqueued_with(job: :feature_topic_users, args: { topic_id: topic.id }) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
context "for new topics" do
|
|
let(:new_topic) { true }
|
|
|
|
it "calls the correct topic tracking state class to publish_new" do
|
|
TopicTrackingState.expects(:publish_new).never
|
|
PrivateMessageTopicTrackingState.expects(:publish_new).with(topic)
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
|
|
context "for a post > post_number 1" do
|
|
let!(:post) do
|
|
Fabricate(:post, topic: topic)
|
|
Fabricate(:post, topic: topic)
|
|
end
|
|
|
|
context "when there is a topic embed" do
|
|
before do
|
|
SiteSetting.embed_unlisted = true
|
|
topic.update(visible: false)
|
|
Fabricate(:topic_embed, post: post, embed_url: "http://test.com")
|
|
end
|
|
|
|
it "does not enqueue the :make_embedded_topic_visible job" do
|
|
expect_not_enqueued_with(job: :make_embedded_topic_visible, args: { topic_id: topic.id }) do
|
|
subject.enqueue_jobs
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|