]> source.dussan.org Git - redmine.git/commitdiff
add test of replace port zero to 389 at unit auth_source_ldap_test.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 29 Aug 2011 14:03:57 +0000 (14:03 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 29 Aug 2011 14:03:57 +0000 (14:03 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6745 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/auth_source_ldap_test.rb

index 001f7bd78a0873df998e3fd377069c3784b6baff..f9ee8e0e936f110def6cbfa15185217f6fb19232 100644 (file)
@@ -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