add space after comma to test/unit/auth_source_ldap_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20244 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-11-04 14:43:18 +00:00
parent 3c95bccac7
commit 8c9a81d4c7

View File

@@ -123,7 +123,7 @@ class AuthSourceLdapTest < ActiveSupport::TestCase
auth = AuthSourceLdap.find(1) auth = AuthSourceLdap.find(1)
auth.update_attribute :onthefly_register, true auth.update_attribute :onthefly_register, true
attributes = auth.authenticate('example1','123456') attributes = auth.authenticate('example1', '123456')
assert attributes.is_a?(Hash), "An hash was not returned" assert attributes.is_a?(Hash), "An hash was not returned"
assert_equal 'Example', attributes[:firstname] assert_equal 'Example', attributes[:firstname]
assert_equal 'One', attributes[:lastname] assert_equal 'One', attributes[:lastname]
@@ -136,22 +136,22 @@ class AuthSourceLdapTest < ActiveSupport::TestCase
test '#authenticate with an invalid LDAP user should return nil' do test '#authenticate with an invalid LDAP user should return nil' do
auth = AuthSourceLdap.find(1) auth = AuthSourceLdap.find(1)
assert_nil auth.authenticate('nouser','123456') assert_nil auth.authenticate('nouser', '123456')
end end
test '#authenticate without a login should return nil' do test '#authenticate without a login should return nil' do
auth = AuthSourceLdap.find(1) auth = AuthSourceLdap.find(1)
assert_nil auth.authenticate('','123456') assert_nil auth.authenticate('', '123456')
end end
test '#authenticate without a password should return nil' do test '#authenticate without a password should return nil' do
auth = AuthSourceLdap.find(1) auth = AuthSourceLdap.find(1)
assert_nil auth.authenticate('edavis','') assert_nil auth.authenticate('edavis', '')
end end
test '#authenticate without filter should return any user' do test '#authenticate without filter should return any user' do
auth = AuthSourceLdap.find(1) auth = AuthSourceLdap.find(1)
assert auth.authenticate('example1','123456') assert auth.authenticate('example1', '123456')
assert auth.authenticate('edavis', '123456') assert auth.authenticate('edavis', '123456')
end end
@@ -159,7 +159,7 @@ class AuthSourceLdapTest < ActiveSupport::TestCase
auth = AuthSourceLdap.find(1) auth = AuthSourceLdap.find(1)
auth.filter = "(mail=*@redmine.org)" auth.filter = "(mail=*@redmine.org)"
assert auth.authenticate('example1','123456') assert auth.authenticate('example1', '123456')
assert_nil auth.authenticate('edavis', '123456') assert_nil auth.authenticate('edavis', '123456')
end end