From: Toshi MARUYAMA Date: Mon, 29 Aug 2011 14:03:57 +0000 (+0000) Subject: add test of replace port zero to 389 at unit auth_source_ldap_test. X-Git-Tag: 1.3.0~1217 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=813f69a68984721cf5873fb0503688c6622e7b2a;p=redmine.git add test of replace port zero to 389 at unit auth_source_ldap_test. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6745 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/unit/auth_source_ldap_test.rb b/test/unit/auth_source_ldap_test.rb index 001f7bd78..f9ee8e0e9 100644 --- a/test/unit/auth_source_ldap_test.rb +++ b/test/unit/auth_source_ldap_test.rb @@ -35,6 +35,15 @@ class AuthSourceLdapTest < ActiveSupport::TestCase assert_equal 'givenName', a.reload.attr_firstname end + def test_replace_port_zero_to_389 + a = AuthSourceLdap.new( + :name => 'My LDAP', :host => 'ldap.example.net', :port => 0, + :base_dn => 'dc=example,dc=net', :attr_login => 'sAMAccountName', + :attr_firstname => 'givenName ') + assert a.save + assert_equal 389, a.port + end + if ldap_configured? context '#authenticate' do setup do