##// END OF EJS Templates
Speeds up rendering of the project list for users who belong to hundreds of projects....
Speeds up rendering of the project list for users who belong to hundreds of projects. git-svn-id: http://svn.redmine.org/redmine/trunk@16123 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14904:197ec295e036
r15741:f8df935dcada
Show More
setting_test.rb
131 lines | 4.2 KiB | text/x-ruby | RubyLexer
Jean-Philippe Lang
Make sure that settings are unserialized as UTF-8 encoded strings (#19305)....
r13730 # encoding: utf-8
#
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731 # Redmine - project management software
Jean-Philippe Lang
Updates copyright for 2016....
r14856 # Copyright (C) 2006-2016 Jean-Philippe Lang
Jean-Philippe Lang
added tests for settings...
r216 #
# 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.
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731 #
Jean-Philippe Lang
added tests for settings...
r216 # 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.
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731 #
Jean-Philippe Lang
added tests for settings...
r216 # 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.
Jean-Baptiste Barth
Use absolute paths in test/**/* requires for Ruby 1.9.2 compatibility. #4050...
r4395 require File.expand_path('../../test_helper', __FILE__)
Jean-Philippe Lang
added tests for settings...
r216
Eric Davis
Upgraded to Rails 2.3.4 (#3597)...
r2773 class SettingTest < ActiveSupport::TestCase
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731
Jean-Philippe Lang
Tests should not change settings....
r9766 def teardown
Jean-Philippe Lang
Clear settings that are changed by these tests....
r14904 Setting.delete_all
Jean-Philippe Lang
Tests should not change settings....
r9766 Setting.clear_cache
end
Jean-Philippe Lang
added tests for settings...
r216 def test_read_default
Jean-Philippe Lang
Test failure....
r14345 Setting.delete_all
Setting.clear_cache
Jean-Philippe Lang
Added Redmine::WikiFormatting module and tests for wiki links....
r688 assert_equal "Redmine", Setting.app_title
Jean-Philippe Lang
added tests for settings...
r216 assert Setting.self_registration?
assert !Setting.login_required?
end
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731
Jean-Philippe Lang
added tests for settings...
r216 def test_update
Setting.app_title = "My title"
assert_equal "My title", Setting.app_title
# make sure db has been updated (INSERT)
assert_equal "My title", Setting.find_by_name('app_title').value
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731
Jean-Philippe Lang
added tests for settings...
r216 Setting.app_title = "My other title"
assert_equal "My other title", Setting.app_title
# make sure db has been updated (UPDATE)
assert_equal "My other title", Setting.find_by_name('app_title').value
end
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731
Jean-Philippe Lang
Fixed that validating a Setting with invalid name triggers an error (#15551)....
r12097 def test_setting_with_int_format_should_accept_numeric_only
with_settings :session_timeout => 30 do
Setting.session_timeout = 'foo'
assert_equal "30", Setting.session_timeout
Setting.session_timeout = 40
assert_equal "40", Setting.session_timeout
end
end
def test_setting_with_invalid_name_should_be_valid
setting = Setting.new(:name => "does_not_exist", :value => "should_not_be_allowed")
assert !setting.save
end
Jean-Philippe Lang
Fixed: Oracle error when saving serialized setting (eg. mail notifications)...
r731 def test_serialized_setting
Toshi MARUYAMA
remove trailing white-spaces from unit setting test....
r5731 Setting.notified_events = ['issue_added', 'issue_updated', 'news_added']
Jean-Philippe Lang
Fixed: Oracle error when saving serialized setting (eg. mail notifications)...
r731 assert_equal ['issue_added', 'issue_updated', 'news_added'], Setting.notified_events
assert_equal ['issue_added', 'issue_updated', 'news_added'], Setting.find_by_name('notified_events').value
end
Toshi MARUYAMA
remove trailing white-spaces from test/unit/setting_test.rb...
r12022
Jean-Philippe Lang
Adds a method to clear the settings cache....
r7684 def test_setting_should_be_reloaded_after_clear_cache
Setting.app_title = "My title"
assert_equal "My title", Setting.app_title
Toshi MARUYAMA
remove trailing white-spaces from test/unit/setting_test.rb...
r12022
Jean-Philippe Lang
Adds a method to clear the settings cache....
r7684 s = Setting.find_by_name("app_title")
s.value = 'New title'
s.save!
assert_equal "My title", Setting.app_title
Toshi MARUYAMA
remove trailing white-spaces from test/unit/setting_test.rb...
r12022
Jean-Philippe Lang
Adds a method to clear the settings cache....
r7684 Setting.clear_cache
assert_equal "New title", Setting.app_title
end
Jean-Philippe Lang
Tests for Setting.per_page_options_array....
r9482
def test_per_page_options_array_should_be_an_empty_array_when_setting_is_blank
with_settings :per_page_options => nil do
assert_equal [], Setting.per_page_options_array
end
with_settings :per_page_options => '' do
assert_equal [], Setting.per_page_options_array
end
end
def test_per_page_options_array_should_be_an_array_of_integers
with_settings :per_page_options => '10, 25, 50' do
assert_equal [10, 25, 50], Setting.per_page_options_array
end
end
def test_per_page_options_array_should_omit_non_numerial_values
with_settings :per_page_options => 'a, 25, 50' do
assert_equal [25, 50], Setting.per_page_options_array
end
end
def test_per_page_options_array_should_be_sorted
with_settings :per_page_options => '25, 10, 50' do
assert_equal [10, 25, 50], Setting.per_page_options_array
end
end
Jean-Philippe Lang
Make sure that settings are unserialized as UTF-8 encoded strings (#19305)....
r13730
def test_setting_serialied_as_binary_should_be_loaded_as_utf8_encoded_strings
yaml = <<-YAML
---
- keywords: !binary |
Zml4ZXMsY2xvc2VzLNC40YHQv9GA0LDQstC70LXQvdC+LNCz0L7RgtC+0LLQ
vizRgdC00LXQu9Cw0L3QvixmaXhlZA==
done_ratio: "100"
status_id: "5"
YAML
Setting.commit_update_keywords = {}
assert_equal 1, Setting.where(:name => 'commit_update_keywords').update_all(:value => yaml)
Setting.clear_cache
assert_equal 'UTF-8', Setting.commit_update_keywords.first['keywords'].encoding.name
ensure
Setting.where(:name => 'commit_update_keywords').delete_all
Setting.clear_cache
end
Jean-Philippe Lang
added tests for settings...
r216 end