mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
8836404faf
Now you can set the base in the env var LDAP_TEST_BASE. The base has to exists. (before tests were attempting to create/delete the base itself)
106 lines
2.0 KiB
PHP
106 lines
2.0 KiB
PHP
--TEST--
|
|
ldap_search() test
|
|
--CREDITS--
|
|
Davide Mendolia <idaf1er@gmail.com>
|
|
Patrick Allaert <patrickallaert@php.net>
|
|
Belgian PHP Testfest 2009
|
|
--SKIPIF--
|
|
<?php
|
|
require_once('skipif.inc');
|
|
require_once('skipifbindfailure.inc');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
|
|
insert_dummy_data($link, $base);
|
|
|
|
$dn = "$base";
|
|
$filter = "(objectclass=person)";
|
|
var_dump(
|
|
$result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 3, LDAP_DEREF_SEARCHING),
|
|
ldap_get_entries($link, $result)
|
|
);
|
|
var_dump(
|
|
$result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 3, LDAP_DEREF_FINDING),
|
|
ldap_get_entries($link, $result)
|
|
);
|
|
var_dump(
|
|
$result = ldap_search($link, $dn, $filter, array('sn'), 1, 1, 3, LDAP_DEREF_ALWAYS),
|
|
ldap_get_entries($link, $result)
|
|
);
|
|
?>
|
|
===DONE===
|
|
--CLEAN--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
|
|
remove_dummy_data($link, $base);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: ldap_search(): Partial search results returned: Sizelimit exceeded in %s on line %d
|
|
resource(%d) of type (ldap result)
|
|
array(2) {
|
|
["count"]=>
|
|
int(1)
|
|
[0]=>
|
|
array(4) {
|
|
["sn"]=>
|
|
array(1) {
|
|
["count"]=>
|
|
int(0)
|
|
}
|
|
[0]=>
|
|
string(2) "sn"
|
|
["count"]=>
|
|
int(1)
|
|
["dn"]=>
|
|
string(%d) "cn=userA,%s"
|
|
}
|
|
}
|
|
|
|
Warning: ldap_search(): Partial search results returned: Sizelimit exceeded in %s on line %d
|
|
resource(%d) of type (ldap result)
|
|
array(2) {
|
|
["count"]=>
|
|
int(1)
|
|
[0]=>
|
|
array(4) {
|
|
["sn"]=>
|
|
array(1) {
|
|
["count"]=>
|
|
int(0)
|
|
}
|
|
[0]=>
|
|
string(2) "sn"
|
|
["count"]=>
|
|
int(1)
|
|
["dn"]=>
|
|
string(%d) "cn=userA,%s"
|
|
}
|
|
}
|
|
|
|
Warning: ldap_search(): Partial search results returned: Sizelimit exceeded in %s on line %d
|
|
resource(%d) of type (ldap result)
|
|
array(2) {
|
|
["count"]=>
|
|
int(1)
|
|
[0]=>
|
|
array(4) {
|
|
["sn"]=>
|
|
array(1) {
|
|
["count"]=>
|
|
int(0)
|
|
}
|
|
[0]=>
|
|
string(2) "sn"
|
|
["count"]=>
|
|
int(1)
|
|
["dn"]=>
|
|
string(%d) "cn=userA,%s"
|
|
}
|
|
}
|
|
===DONE===
|