discourse/spec/services/notification_emailer_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

238 lines
7.0 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
2013-02-05 14:16:51 -05:00
describe NotificationEmailer do
before do
2020-07-24 05:16:52 -04:00
freeze_time
NotificationEmailer.enable
end
2013-02-05 14:16:51 -05:00
fab!(:topic) { Fabricate(:topic) }
fab!(:post) { Fabricate(:post, topic: topic) }
2015-09-23 01:24:30 -04:00
# something is off with fabricator
def create_notification(type, user = nil)
2015-09-23 01:24:30 -04:00
user ||= Fabricate(:user)
2016-07-07 12:23:19 -04:00
Notification.create(data: "{\"a\": 1}",
user: user,
notification_type: Notification.types[type],
topic: topic,
post_number: post.post_number)
2015-09-23 01:24:30 -04:00
end
2013-02-05 14:16:51 -05:00
shared_examples "enqueue" do
2013-02-05 14:16:51 -05:00
it "enqueues a job for the email" do
2020-07-24 05:16:52 -04:00
expect_enqueued_with(
job: :user_email,
args: NotificationEmailer::EmailUser.notification_params(notification, type),
at: Time.zone.now + delay
) do
NotificationEmailer.process_notification(notification)
end
end
context "inactive user" do
before { notification.user.active = false }
it "doesn't enqueue a job" do
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(job: :user_email, args: { type: type }) do
NotificationEmailer.process_notification(notification)
end
end
it "enqueues a job if the user is staged for non-linked and non-quoted types" do
notification.user.staged = true
2020-07-24 05:16:52 -04:00
if type == :user_linked || type == :user_quoted
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(
job: :user_email,
args: { type: type }
) do
NotificationEmailer.process_notification(notification)
end
else
2020-07-24 05:16:52 -04:00
expect_enqueued_with(
job: :user_email,
args: NotificationEmailer::EmailUser.notification_params(notification, type),
at: Time.zone.now + delay
) do
NotificationEmailer.process_notification(notification)
end
end
end
it "enqueues a job if the user is staged even if site requires user approval for non-linked and non-quoted typed" do
notification.user.staged = true
SiteSetting.must_approve_users = true
2020-07-24 05:16:52 -04:00
if type == :user_linked || type == :user_quoted
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(
job: :user_email,
args: { type: type }
) do
NotificationEmailer.process_notification(notification)
end
else
2020-07-24 05:16:52 -04:00
expect_enqueued_with(
job: :user_email,
args: NotificationEmailer::EmailUser.notification_params(notification, type),
at: Time.zone.now + delay
) do
NotificationEmailer.process_notification(notification)
end
end
end
end
context "active but unapproved user" do
before do
SiteSetting.must_approve_users = true
notification.user.approved = false
notification.user.active = true
end
2013-02-05 14:16:51 -05:00
it "doesn't enqueue a job" do
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(job: :user_email, args: { type: type }) do
NotificationEmailer.process_notification(notification)
end
end
end
context "small action" do
it "doesn't enqueue a job" do
Post.any_instance.expects(:post_type).returns(Post.types[:small_action])
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(job: :user_email, args: { type: type }) do
NotificationEmailer.process_notification(notification)
end
end
end
2013-02-05 14:16:51 -05:00
end
shared_examples "enqueue_public" do
include_examples "enqueue"
it "doesn't enqueue a job if the user has mention emails disabled" do
notification.user.user_option.update_columns(email_level: UserOption.email_level_types[:never])
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(job: :user_email, args: { type: type }) do
NotificationEmailer.process_notification(notification)
end
end
end
shared_examples "enqueue_private" do
include_examples "enqueue"
it "doesn't enqueue a job if the user has private message emails disabled" do
notification.user.user_option.update_columns(email_messages_level: UserOption.email_level_types[:never])
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(job: :user_email, args: { type: type }) do
NotificationEmailer.process_notification(notification)
end
end
end
context 'user_mentioned' do
let(:type) { :user_mentioned }
let(:delay) { SiteSetting.email_time_window_mins.minutes }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:mentioned) }
2013-02-05 14:16:51 -05:00
include_examples "enqueue_public"
2013-02-05 14:16:51 -05:00
it "enqueue a delayed job for users that are online" do
notification.user.last_seen_at = 1.minute.ago
2020-07-24 05:16:52 -04:00
expect_enqueued_with(
job: :user_email,
args: NotificationEmailer::EmailUser.notification_params(notification, type),
at: Time.zone.now + delay
) do
NotificationEmailer.process_notification(notification)
end
2013-02-05 14:16:51 -05:00
end
end
2013-02-05 14:16:51 -05:00
context 'user_replied' do
let(:type) { :user_replied }
let(:delay) { SiteSetting.email_time_window_mins.minutes }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:replied) }
include_examples "enqueue_public"
2013-02-05 14:16:51 -05:00
end
context 'user_quoted' do
let(:type) { :user_quoted }
let(:delay) { SiteSetting.email_time_window_mins.minutes }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:quoted) }
include_examples "enqueue_public"
2013-02-05 14:16:51 -05:00
end
context 'user_linked' do
let(:type) { :user_linked }
let(:delay) { SiteSetting.email_time_window_mins.minutes }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:linked) }
include_examples "enqueue_public"
end
context 'user_posted' do
let(:type) { :user_posted }
let(:delay) { SiteSetting.email_time_window_mins.minutes }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:posted) }
include_examples "enqueue_public"
2013-02-05 14:16:51 -05:00
end
context 'user_private_message' do
let(:type) { :user_private_message }
let(:delay) { SiteSetting.personal_email_time_window_seconds }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:private_message) }
include_examples "enqueue_private"
it "doesn't enqueue a job for a small action" do
notification.data_hash["original_post_type"] = Post.types[:small_action]
2020-07-24 05:16:52 -04:00
expect_not_enqueued_with(job: :user_email, args: { type: type }) do
NotificationEmailer.process_notification(notification)
end
end
end
context 'user_invited_to_private_message' do
let(:type) { :user_invited_to_private_message }
let(:delay) { SiteSetting.personal_email_time_window_seconds }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:invited_to_private_message) }
include_examples "enqueue_public"
end
context 'user_invited_to_topic' do
let(:type) { :user_invited_to_topic }
let(:delay) { SiteSetting.personal_email_time_window_seconds }
2016-07-07 12:23:19 -04:00
let!(:notification) { create_notification(:invited_to_topic) }
include_examples "enqueue_public"
end
context 'watching the first post' do
let(:type) { :user_watching_first_post }
let(:delay) { SiteSetting.email_time_window_mins.minutes }
let!(:notification) { create_notification(:watching_first_post) }
include_examples "enqueue_public"
end
end