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/user_preferences/update_service_integration_...

138 lines
5.1 KiB

#-- 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'
describe UserPreferences::UpdateService, 'integration', type: :model do
shared_let(:current_user) do
FactoryBot.create(:user)
end
let(:instance) { described_class.new(user: current_user, model: current_user.pref) }
let(:attributes) { {} }
let(:service_result) do
instance
.call(attributes)
end
let(:updated_pref) {
service_result.result
}
describe 'notification_settings' do
subject { updated_pref.notification_settings }
context 'with a partial update' do
let(:attributes) do
{
notification_settings: [
{
project_id: nil,
channel: 'in_app',
all: false,
watched: false,
involved: true,
work_package_commented: false,
work_package_created: true,
work_package_processed: true,
work_package_prioritized: false,
work_package_scheduled: false
}
]
}
end
it 'updates the existing one, removes the email one' do
default_mail = current_user.notification_settings.find_by(channel: 'mail')
default_ian = current_user.notification_settings.find_by(channel: 'in_app')
expect(default_ian.all).to eq true
expect(default_ian.watched).to eq true
expect(default_ian.mentioned).to eq true
expect(default_ian.involved).to eq true
expect(default_ian.work_package_commented).to eq false
expect(default_ian.work_package_created).to eq false
expect(default_ian.work_package_processed).to eq false
expect(default_ian.work_package_prioritized).to eq false
expect(default_ian.work_package_scheduled).to eq false
expect(subject.count).to eq 1
expect(subject.first.project_id).to eq nil
expect(subject.first.channel).to eq 'in_app'
expect(subject.first.all).to eq false
expect(subject.first.mentioned).to eq false
expect(subject.first.watched).to eq false
expect(subject.first.involved).to eq true
expect(subject.first.work_package_commented).to eq false
expect(subject.first.work_package_created).to eq true
expect(subject.first.work_package_processed).to eq true
expect(subject.first.work_package_prioritized).to eq false
expect(subject.first.work_package_scheduled).to eq false
expect(subject.first).to eq(default_ian.reload)
expect(current_user.notification_settings.count).to eq(1)
expect { default_mail.reload }.to raise_error(ActiveRecord::RecordNotFound)
end
end
context 'with a full replacement' do
let(:project) { FactoryBot.create :project }
let(:attributes) do
{
notification_settings: [
{ project_id: project.id, channel: 'in_app', all: true }
]
}
end
it 'inserts the setting, removing the old one' do
default = current_user.notification_settings.to_a
expect(default.count).to eq 3
expect(subject.count).to eq 1
expect(subject.first.project_id).to eq project.id
expect(subject.first.channel).to eq 'in_app'
expect(subject.first.all).to eq true
expect(subject.first.mentioned).to eq false
expect(subject.first.watched).to eq false
expect(subject.first.involved).to eq false
expect(subject.first.work_package_commented).to eq false
expect(subject.first.work_package_created).to eq false
expect(subject.first.work_package_processed).to eq false
expect(subject.first.work_package_prioritized).to eq false
expect(subject.first.work_package_scheduled).to eq false
expect(current_user.notification_settings.count).to eq(1)
expect { default.first.reload }.to raise_error(ActiveRecord::RecordNotFound)
expect { default.second.reload }.to raise_error(ActiveRecord::RecordNotFound)
end
end
end
end