Implemented Net::LDAP::open
This commit is contained in:
parent
36526cd66a
commit
4bc667ffb2
2 changed files with 28 additions and 10 deletions
|
@ -137,10 +137,8 @@ module Net
|
||||||
# open
|
# open
|
||||||
#
|
#
|
||||||
def LDAP::open args
|
def LDAP::open args
|
||||||
#ldap = LDAP.new args
|
ldap = LDAP.new args
|
||||||
#ldap.connect
|
ldap.open {|ldap1| yield ldap1 }
|
||||||
#yield ldap
|
|
||||||
#ldap.disconnect
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
@ -149,12 +147,18 @@ module Net
|
||||||
# closed when the block completes. It's for executing multiple
|
# closed when the block completes. It's for executing multiple
|
||||||
# LDAP operations without requiring a separate network connection
|
# LDAP operations without requiring a separate network connection
|
||||||
# (and authentication) for each one.
|
# (and authentication) for each one.
|
||||||
#
|
#--
|
||||||
#
|
# First we make a connection and then a binding, but we don't
|
||||||
|
# do anything with the bind results.
|
||||||
|
# We then pass self to the caller's block, where he will execute
|
||||||
|
# his LDAP operations. Of course they will all generate auth failures
|
||||||
|
# if the bind was unsuccessful.
|
||||||
def open
|
def open
|
||||||
conn = connect
|
raise LdapError.new( "open already in progress" ) if @open_connection
|
||||||
|
@open_connection = Connection.new( :host => @host, :port => @port )
|
||||||
|
@open_connection.bind @auth
|
||||||
yield self
|
yield self
|
||||||
disconnect
|
@open_connection.close
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -154,8 +154,22 @@ class TestLdapClient < Test::Unit::TestCase
|
||||||
|
|
||||||
|
|
||||||
def test_open
|
def test_open
|
||||||
Net::LDAP.open( :host => @host, :port => @port, :auth => @auth ) {
|
ldap = Net::LDAP.new :host => @host, :port => @port, :auth => @auth
|
||||||
p "NO TESTS!!!"
|
ldap.open {|ldap|
|
||||||
|
10.times {
|
||||||
|
rc = ldap.search( :base => "dc=bayshorenetworks,dc=com" )
|
||||||
|
assert_equal( 0, rc )
|
||||||
|
}
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
|
||||||
|
def test_ldap_open
|
||||||
|
Net::LDAP.open( :host => @host, :port => @port, :auth => @auth ) {|ldap|
|
||||||
|
10.times {
|
||||||
|
rc = ldap.search( :base => "dc=bayshorenetworks,dc=com" )
|
||||||
|
assert_equal( 0, rc )
|
||||||
|
}
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue