OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/spec/services/notifications/create_from_model_service_c...

168 lines
5.9 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2021 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 docs/COPYRIGHT.rdoc for more details.
#++
require 'spec_helper'
require_relative './create_from_journal_job_shared'
describe Notifications::CreateFromModelService, 'comment', with_settings: { journal_aggregation_time_minutes: 0 } do
subject(:call) do
described_class.new(resource).call(send_notifications)
end
include_context 'with CreateFromJournalJob context'
shared_let(:project) { FactoryBot.create(:project) }
shared_let(:news) { FactoryBot.create(:news, project: project) }
let(:permissions) { [] }
let(:send_notifications) { true }
let(:resource) do
FactoryBot.create(:comment,
commented: news,
author: author,
comments: 'Some text')
end
let(:journal) { nil }
let(:author) { other_user }
current_user { other_user }
before do
recipient
end
describe '#perform' do
context 'with a newly created comment' 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_ian: false,
read_mail: false,
reason_mail: :subscribed,
read_mail_digest: nil,
reason_mail_digest: false
}
end
end
end
context 'with the user having registered for involved notifications' do
let(:recipient_notification_settings) do
[
FactoryBot.build(:mail_notification_setting, **notification_settings_all_false.merge(involved: true)),
FactoryBot.build(:in_app_notification_setting, **notification_settings_all_false.merge(involved: true)),
FactoryBot.build(:mail_digest_notification_setting, **notification_settings_all_false.merge(involved: true))
]
end
it_behaves_like 'creates no notification'
end
context 'with the user having registered for no notifications' do
let(:recipient_notification_settings) do
[
FactoryBot.build(:mail_notification_setting, **notification_settings_all_false),
FactoryBot.build(:in_app_notification_setting, **notification_settings_all_false),
FactoryBot.build(:mail_digest_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 news' do
let(:recipient_notification_settings) do
[
FactoryBot.build(:mail_notification_setting, **notification_settings_all_false.merge(watched: true)),
FactoryBot.build(:in_app_notification_setting, **notification_settings_all_false.merge(watched: true)),
FactoryBot.build(:mail_digest_notification_setting, **notification_settings_all_false.merge(watched: true))
]
end
before do
news.watcher_users << recipient
end
it_behaves_like 'creates notification' do
let(:notification_channel_reasons) do
{
read_ian: nil,
reason_ian: false,
read_mail: false,
reason_mail: :watched,
read_mail_digest: nil,
reason_mail_digest: false
}
end
end
end
context 'with the user not having registered for watcher notifications and watching the news' do
let(:recipient_notification_settings) do
[
FactoryBot.build(:mail_notification_setting, **notification_settings_all_false),
FactoryBot.build(:in_app_notification_setting, **notification_settings_all_false),
FactoryBot.build(:mail_digest_notification_setting, **notification_settings_all_false)
]
end
before do
news.watcher_users << recipient
end
it_behaves_like 'creates no notification'
end
context 'with the user having registered for watcher notifications and not watching the news' do
let(:recipient_notification_settings) do
[
FactoryBot.build(:mail_notification_setting, **notification_settings_all_false.merge(watched: true)),
FactoryBot.build(:in_app_notification_setting, **notification_settings_all_false.merge(watched: true)),
FactoryBot.build(:mail_digest_notification_setting, **notification_settings_all_false.merge(watched: true))
]
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