parent
a75bbb078a
commit
edf0189809
@ -1,63 +0,0 @@ |
||||
#-- 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. |
||||
#++ |
||||
|
||||
--- |
||||
user_preferences_001: |
||||
others: | |
||||
--- |
||||
:my_page_layout: |
||||
left: |
||||
- latestnews |
||||
right: |
||||
- issuesassignedtome |
||||
top: |
||||
- calendar |
||||
|
||||
id: 1 |
||||
user_id: 1 |
||||
hide_mail: true |
||||
user_preferences_002: |
||||
others: | |
||||
--- |
||||
:my_page_layout: |
||||
left: |
||||
- latestnews |
||||
right: |
||||
- issuesassignedtome |
||||
top: |
||||
- calendar |
||||
|
||||
id: 2 |
||||
user_id: 3 |
||||
hide_mail: false |
||||
user_preferences_003: |
||||
others: | |
||||
--- |
||||
id: 3 |
||||
user_id: 2 |
||||
hide_mail: false |
@ -1,71 +0,0 @@ |
||||
#-- 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_relative '../legacy_spec_helper' |
||||
|
||||
describe UserPreference do |
||||
include MiniTest::Assertions |
||||
|
||||
it 'should validations' do |
||||
# factory valid |
||||
assert FactoryBot.build(:user_preference).valid? |
||||
|
||||
# user required |
||||
refute FactoryBot.build(:user_preference, user: nil).valid? |
||||
end |
||||
|
||||
it 'should create' do |
||||
user = FactoryBot.create :user |
||||
|
||||
assert_kind_of UserPreference, user.pref |
||||
assert_kind_of Hash, user.pref.others |
||||
assert user.pref.save |
||||
end |
||||
|
||||
it 'should update' do |
||||
user = FactoryBot.create :user, preferences: { hide_mail: true } |
||||
assert_equal true, user.pref.hide_mail |
||||
|
||||
user.pref['preftest'] = 'value' |
||||
assert user.pref.save |
||||
|
||||
user.reload |
||||
assert_equal 'value', user.pref['preftest'] |
||||
end |
||||
|
||||
it 'should update_with_method' do |
||||
user = FactoryBot.create :user |
||||
assert_equal OpenProject::Configuration.default_comment_sort_order, user.pref.comments_sorting |
||||
user.pref.comments_sorting = 'value' |
||||
assert user.pref.save |
||||
|
||||
user.reload |
||||
assert_equal 'value', user.pref.comments_sorting |
||||
end |
||||
end |
Loading…
Reference in new issue