Skip to content
Snippets Groups Projects
Commit 9306f3ea authored by Jean-Philippe Lang's avatar Jean-Philippe Lang
Browse files

Check that admin LDAP user is untouched after authentication (#5263).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3634 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 71a4158f
Branches
Tags
No related merge requests found
......@@ -128,9 +128,21 @@ class UserTest < ActiveSupport::TestCase
end
context "with a successful authentication" do
should "create a new user account" do
should "create a new user account if it doesn't exist" do
assert_difference('User.count') do
User.try_to_login('edavis', '123456')
user = User.try_to_login('edavis', '123456')
assert !user.admin?
end
end
should "retrieve existing user" do
user = User.try_to_login('edavis', '123456')
user.admin = true
user.save!
assert_no_difference('User.count') do
user = User.try_to_login('edavis', '123456')
assert user.admin?
end
end
end
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment