Files
openproject/spec/services/notifications/create_from_model_service_message_spec.rb
Jan Sandbrink 0b87e7543f Freeze string literals in specs
Rolling out frozen string literals further by freezing all
string literals in core specs.
2025-05-05 09:29:55 +02:00

345 lines
10 KiB
Ruby

# frozen_string_literal: true
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
# Copyright (C) 2006-2013 Jean-Philippe Lang
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
#++
require "spec_helper"
require_relative "create_from_journal_job_shared"
RSpec.describe Notifications::CreateFromModelService, "message", with_settings: { journal_aggregation_time_minutes: 0 } do
subject(:call) do
described_class.new(journal).call(send_notifications)
end
include_context "with CreateFromJournalJob context"
shared_let(:project) { create(:project) }
shared_let(:forum) { create(:forum, project:) }
let(:permissions) { [:view_messages] }
let(:send_notifications) { true }
let(:resource) do
create(:message,
forum:,
parent: root_message)
end
let(:journal) { resource.journals.last }
let(:author) { other_user }
let(:root_message) do
create(:message,
forum:)
end
current_user { other_user }
before do
recipient
end
describe "#perform" do
context "with a newly created message" do
context "with the user having registered for all notifications" do
it_behaves_like "creates notification" do
let(:notification_channel_reasons) do
{
read_ian: nil,
reason: :subscribed,
mail_reminder_sent: nil,
mail_alert_sent: false
}
end
end
end
context "with the user having registered for assignee notifications" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(assignee: true))
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for responsible notifications" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(responsible: true))
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for no notifications" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false)
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for watcher notifications and watching the forum" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(watched: true))
]
end
before do
forum.watcher_users << recipient
end
it_behaves_like "creates notification" do
let(:notification_channel_reasons) do
{
read_ian: nil,
reason: :watched,
mail_reminder_sent: nil,
mail_alert_sent: false
}
end
end
end
context "with the user not having registered for watcher notifications and watching the forum" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false)
]
end
before do
forum.watcher_users << recipient
end
it_behaves_like "creates no notification"
end
context "with the user having registered for watcher notifications and not watching the forum nor root message" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(watched: true))
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for watcher notifications and watching the root" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(watched: true))
]
end
before do
root_message.watcher_users << recipient
end
it_behaves_like "creates notification" do
let(:notification_channel_reasons) do
{
read_ian: nil,
reason: :watched,
mail_reminder_sent: nil,
mail_alert_sent: false
}
end
end
end
context "with the user not having registered for watcher notifications and watching the root" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false)
]
end
before do
root_message.watcher_users << recipient
end
it_behaves_like "creates no notification"
end
context "with the user having registered for all notifications but lacking permissions" do
before do
recipient.members.destroy_all
end
it_behaves_like "creates no notification"
end
end
context "with an updated message" do
before do
resource.subject = "A new subject"
resource.save!
end
context "with the user having registered for all notifications" do
it_behaves_like "creates notification" do
let(:notification_channel_reasons) do
{
read_ian: nil,
reason: :subscribed,
mail_reminder_sent: nil,
mail_alert_sent: false
}
end
end
end
context "with the user having registered for assignee notifications" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(assignee: true))
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for responsible notifications" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(responsible: true))
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for no notifications" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false)
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for watcher notifications and watching the forum" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(watched: true))
]
end
before do
forum.watcher_users << recipient
end
it_behaves_like "creates notification" do
let(:notification_channel_reasons) do
{
read_ian: nil,
reason: :watched,
mail_reminder_sent: nil,
mail_alert_sent: false
}
end
end
end
context "with the user not having registered for watcher notifications and watching the forum" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false)
]
end
before do
forum.watcher_users << recipient
end
it_behaves_like "creates no notification"
end
context "with the user having registered for watcher notifications and not watching the forum nor root message" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(watched: true))
]
end
it_behaves_like "creates no notification"
end
context "with the user having registered for watcher notifications and watching the root" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false.merge(watched: true))
]
end
before do
root_message.watcher_users << recipient
end
it_behaves_like "creates notification" do
let(:notification_channel_reasons) do
{
read_ian: nil,
reason: :watched,
mail_reminder_sent: nil,
mail_alert_sent: false
}
end
end
end
context "with the user not having registered for watcher notifications and watching the root" do
let(:recipient_notification_settings) do
[
build(:notification_setting, **notification_settings_all_false)
]
end
before do
root_message.watcher_users << recipient
end
it_behaves_like "creates no notification"
end
context "with the user having registered for all notifications but lacking permissions" do
before do
recipient.members.destroy_all
end
it_behaves_like "creates no notification"
end
end
end
end