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/models/user_preference_spec.rb

187 lines
5.6 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 COPYRIGHT and LICENSE files for more details.
#++
require 'spec_helper'
describe UserPreference do
subject(:preference) do
FactoryBot.build(:user_preference,
user: user,
settings: settings)
end
let(:settings) { {} }
let(:user) { FactoryBot.build_stubbed(:user) }
shared_examples 'accepts real and false booleans' do |setter, getter|
it 'accepts true boolean' do
subject.send(setter, true)
expect(subject.send(getter)).to be true
subject.send(setter, false)
expect(subject.send(getter)).to be false
end
it 'accepts false booleans' do
%w(true 1).each do |str|
subject.send(setter, str)
expect(subject.send(getter)).to be true
end
%w(false 0).each do |str|
subject.send(setter, str)
expect(subject.send(getter)).to be false
end
end
end
describe '#respond_to?' do
context 'for created_at (key not in the schema)' do
it 'is does not respond' do
expect(preference)
.not_to respond_to(:created_at)
end
end
end
describe 'an unsupported method' do
context 'for created_at (key not in the schema)' do
it 'raises an error' do
expect { preference.created_at }
.to raise_error NoMethodError
end
end
end
describe 'sort order' do
it_behaves_like 'accepts real and false booleans',
:comments_in_reverse_order=,
:comments_in_reverse_order?
it 'can be changed by string' do
subject.comments_sorting = 'desc'
expect(subject.comments_in_reverse_order?).to be true
subject.comments_sorting = 'asc'
expect(subject.comments_in_reverse_order?).to be false
end
end
describe 'warn on unsaved changes' do
it_behaves_like 'accepts real and false booleans',
:warn_on_leaving_unsaved=,
:warn_on_leaving_unsaved?
end
describe 'auto hide popups' do
it_behaves_like 'accepts real and false booleans',
:auto_hide_popups=,
:auto_hide_popups?
describe 'without a value being stored and with default setting auto_hide_popups to false',
with_settings: { default_auto_hide_popups: false } do
it 'disables auto hide popups' do
expect(subject.auto_hide_popups).to be_falsey
end
end
context 'without a value being stored and with default setting auto_hide_popups to true',
with_settings: { default_auto_hide_popups: true } do
it 'disables auto hide popups' do
expect(subject.auto_hide_popups).to be_truthy
end
end
end
describe 'hide_mail' do
it_behaves_like 'accepts real and false booleans',
:hide_mail=,
:hide_mail?
context 'when a new pref instance' do
subject { described_class.new }
it 'defaults to true' do
expect(subject.settings[:hide_mail]).to be_nil
expect(subject.hide_mail).to eq true
expect(subject.hide_mail?).to eq true
subject.hide_mail = false
expect(subject.settings[:hide_mail]).to eq false
expect(subject.hide_mail).to eq false
expect(subject.hide_mail?).to eq false
end
end
end
describe '#daily_reminders' do
context 'without reminders being stored' do
it 'uses the defaults' do
expect(subject.daily_reminders)
.to eql("enabled" => true, "times" => ["08:00:00+00:00"])
end
end
context 'with reminders being stored' do
let(:settings) do
{
"daily_reminders" => {
"enabled" => false,
"times" => %w[12:00:00+00:00 18:00:00+00:00 09:00:00+00:00]
}
}
end
it 'uses the defaults' do
expect(subject.daily_reminders)
.to eql(settings["daily_reminders"])
end
end
end
describe '[]=' do
let(:user) { FactoryBot.create(:user) }
it 'will save the values on sending "save"' do
subject.save
value_warn_on_leaving_unsaved = !subject[:warn_on_leaving_unsaved]
value_auto_hide_popups = !subject[:auto_hide_popups]
subject[:warn_on_leaving_unsaved] = value_warn_on_leaving_unsaved
subject[:auto_hide_popups] = value_auto_hide_popups
subject.save
subject.reload
expect(subject[:warn_on_leaving_unsaved]).to eql(value_warn_on_leaving_unsaved)
expect(subject[:auto_hide_popups]).to eql(value_auto_hide_popups)
end
end
end