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/users/update_service_spec.rb

119 lines
3.7 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2020 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 'services/base_services/behaves_like_update_service'
describe Users::UpdateService do
it_behaves_like 'BaseServices update service' do
# The user service also tries to save the preferences
before do
allow(model_instance.pref).to receive(:save).and_return(true)
end
end
describe 'updating attributes' do
let(:instance) { described_class.new(model: update_user, user: current_user) }
let(:current_user) { FactoryBot.build_stubbed(:admin) }
let(:update_user) { FactoryBot.create(:user, mail: 'correct@example.org') }
subject { instance.call(attributes: attributes) }
context 'when invalid' do
let(:attributes) { { mail: 'invalid' } }
it 'fails to update' do
expect(subject).to_not be_success
update_user.reload
expect(update_user.mail).to eq('correct@example.org')
expect(subject.errors.symbols_for(:mail)).to match_array(%i[email])
end
end
context 'when valid' do
let(:attributes) { { mail: 'new@example.org' } }
it 'updates the user' do
expect(subject).to be_success
update_user.reload
expect(update_user.mail).to eq('new@example.org')
end
context 'if current_user is no admin' do
let(:current_user) { FactoryBot.build_stubbed(:user) }
it 'is unsuccessful' do
expect(subject).to_not be_success
end
end
end
describe 'updating prefs' do
let(:attributes) { {} }
before do
allow(update_user).to receive(:save).and_return(user_save_result)
end
context 'if the user was updated calls the prefs' do
let(:user_save_result) { true }
before do
expect(update_user.pref).to receive(:save).and_return(pref_save_result)
end
context 'and the prefs can be saved' do
let(:pref_save_result) { true }
it 'returns a successful call' do
expect(subject).to be_success
end
end
context 'and the prefs can not be saved' do
let(:pref_save_result) { false }
it 'returns an erroneous call' do
expect(subject).not_to be_success
end
end
end
context 'if the user was not saved' do
let(:user_save_result) { false }
it 'does not call #prefs.save' do
expect(update_user.pref).not_to receive(:save)
expect(subject).not_to be_success
end
end
end
end
end