php-src/ext/ldap/tests/ldap_search_variation2.phpt
Côme Bernigaud 8836404faf Fixed LDAP tests so that base can exists
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)
2015-06-17 13:50:14 +02:00

81 lines
1.3 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);
var_dump(
$result = ldap_search($link, "$base", "(objectclass=person)", array('sn'), 1),
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--
resource(%d) of type (ldap result)
array(4) {
["count"]=>
int(3)
[0]=>
array(4) {
["sn"]=>
array(1) {
["count"]=>
int(0)
}
[0]=>
string(2) "sn"
["count"]=>
int(1)
["dn"]=>
string(%d) "cn=userA,%s"
}
[1]=>
array(4) {
["sn"]=>
array(1) {
["count"]=>
int(0)
}
[0]=>
string(2) "sn"
["count"]=>
int(1)
["dn"]=>
string(%d) "cn=userB,%s"
}
[2]=>
array(4) {
["sn"]=>
array(1) {
["count"]=>
int(0)
}
[0]=>
string(2) "sn"
["count"]=>
int(1)
["dn"]=>
string(%d) "cn=userC,cn=userB,%s"
}
}
===DONE===