Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 97e2d9d7c1dc224ee7d9795274b5fa8b > files > 54

ruby-ldap-0.9.7-3mdv2008.1.i586.rpm

# -*- ruby -*-
# This file is a part of test scripts of LDAP extension module.

$test = File.dirname($0)
require "#{$test}/conf"
require "./ldap"

LDAP::Conn.new($HOST, $PORT).bind{|conn|
  conn.perror("bind")
  begin
    conn.search("dc=localhost, dc=localdomain",
		LDAP::LDAP_SCOPE_SUBTREE,
		"(objectclass=*)"){|e|
      p e.vals("cn")
      p e.to_hash()
    }
  rescue LDAP::ResultError => msg
    $stderr.print(msg)
  end
}