Fixed that "Default administrator account changed" is always true (#10622).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9379 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
ea307619be
commit
269e9057dd
|
@ -75,9 +75,7 @@ class AdminController < ApplicationController
|
||||||
def info
|
def info
|
||||||
@db_adapter_name = ActiveRecord::Base.connection.adapter_name
|
@db_adapter_name = ActiveRecord::Base.connection.adapter_name
|
||||||
@checklist = [
|
@checklist = [
|
||||||
[:text_default_administrator_account_changed,
|
[:text_default_administrator_account_changed, User.default_admin_account_changed?],
|
||||||
User.find(:first,
|
|
||||||
:conditions => ["login=? and hashed_password=?", 'admin', User.hash_password('admin')]).nil?],
|
|
||||||
[:text_file_repository_writable, File.writable?(Attachment.storage_path)],
|
[:text_file_repository_writable, File.writable?(Attachment.storage_path)],
|
||||||
[:text_plugin_assets_writable, File.writable?(Redmine::Plugin.public_directory)],
|
[:text_plugin_assets_writable, File.writable?(Redmine::Plugin.public_directory)],
|
||||||
[:text_rmagick_available, Object.const_defined?(:Magick)]
|
[:text_rmagick_available, Object.const_defined?(:Magick)]
|
||||||
|
|
|
@ -348,6 +348,11 @@ class User < Principal
|
||||||
find(:first, :conditions => ["LOWER(mail) = ?", mail.to_s.downcase])
|
find(:first, :conditions => ["LOWER(mail) = ?", mail.to_s.downcase])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Returns true if the default admin account can no longer be used
|
||||||
|
def self.default_admin_account_changed?
|
||||||
|
!User.active.find_by_login("admin").try(:check_password?, "admin")
|
||||||
|
end
|
||||||
|
|
||||||
def to_s
|
def to_s
|
||||||
name
|
name
|
||||||
end
|
end
|
||||||
|
|
|
@ -630,6 +630,38 @@ class UserTest < ActiveSupport::TestCase
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_default_admin_account_changed_should_return_false_if_account_was_not_changed
|
||||||
|
user = User.find_by_login("admin")
|
||||||
|
user.password = "admin"
|
||||||
|
user.save!
|
||||||
|
|
||||||
|
assert_equal false, User.default_admin_account_changed?
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_default_admin_account_changed_should_return_true_if_password_was_changed
|
||||||
|
user = User.find_by_login("admin")
|
||||||
|
user.password = "newpassword"
|
||||||
|
user.save!
|
||||||
|
|
||||||
|
assert_equal true, User.default_admin_account_changed?
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_default_admin_account_changed_should_return_true_if_account_is_disabled
|
||||||
|
user = User.find_by_login("admin")
|
||||||
|
user.password = "admin"
|
||||||
|
user.status = User::STATUS_LOCKED
|
||||||
|
user.save!
|
||||||
|
|
||||||
|
assert_equal true, User.default_admin_account_changed?
|
||||||
|
end
|
||||||
|
|
||||||
|
def test_default_admin_account_changed_should_return_true_if_account_does_not_exist
|
||||||
|
user = User.find_by_login("admin")
|
||||||
|
user.destroy
|
||||||
|
|
||||||
|
assert_equal true, User.default_admin_account_changed?
|
||||||
|
end
|
||||||
|
|
||||||
def test_roles_for_project
|
def test_roles_for_project
|
||||||
# user with a role
|
# user with a role
|
||||||
roles = @jsmith.roles_for_project(Project.find(1))
|
roles = @jsmith.roles_for_project(Project.find(1))
|
||||||
|
|
Loading…
Reference in New Issue