mirror of
https://github.com/php/php-src.git
synced 2024-12-03 23:05:57 +08:00
50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
--TEST--
|
|
ldap_next_reference() - Basic ldap_next_reference test
|
|
--CREDITS--
|
|
Patrick Allaert <patrickallaert@php.net>
|
|
# Belgian PHP Testfest 2009
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
<?php require_once('skipifbindfailure.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
|
|
insert_dummy_data($link);
|
|
ldap_add($link, "cn=userref,dc=my-domain,dc=com", array(
|
|
"objectClass" => array("extensibleObject", "referral"),
|
|
"cn" => "userref",
|
|
"ref" => "cn=userA,dc=my-domain,dc=com",
|
|
));
|
|
ldap_add($link, "cn=userref2,dc=my-domain,dc=com", array(
|
|
"objectClass" => array("extensibleObject", "referral"),
|
|
"cn" => "userref2",
|
|
"ref" => "cn=userB,dc=my-domain,dc=com",
|
|
));
|
|
ldap_set_option($link, LDAP_OPT_DEREF, LDAP_DEREF_NEVER);
|
|
$result = ldap_search($link, "dc=my-domain,dc=com", "(cn=*)");
|
|
$ref = ldap_first_reference($link, $result);
|
|
var_dump($ref2 = ldap_next_reference($link, $ref));
|
|
ldap_parse_reference($link, $ref2, $refs);
|
|
var_dump($refs);
|
|
?>
|
|
===DONE===
|
|
--CLEAN--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
|
|
// Referral can only be removed with Manage DSA IT Control
|
|
ldap_set_option($link, LDAP_OPT_SERVER_CONTROLS, array(array("oid" => "2.16.840.1.113730.3.4.2")));
|
|
ldap_delete($link, "cn=userref,dc=my-domain,dc=com");
|
|
ldap_delete($link, "cn=userref2,dc=my-domain,dc=com");
|
|
remove_dummy_data($link);
|
|
?>
|
|
--EXPECTF--
|
|
resource(%d) of type (ldap result entry)
|
|
array(1) {
|
|
[0]=>
|
|
string(28) "cn=userB,dc=my-domain,dc=com"
|
|
}
|
|
===DONE===
|