php-src/ext/ldap/tests/ldap_read_basic.phpt
Côme Bernigaud a5629f8845 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:55:13 +02:00

65 lines
1.1 KiB
PHP

--TEST--
ldap_read() 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_read($link, "o=test,$base", "(o=*)"),
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(2) {
["count"]=>
int(1)
[0]=>
array(6) {
["objectclass"]=>
array(3) {
["count"]=>
int(2)
[0]=>
string(3) "top"
[1]=>
string(12) "organization"
}
[0]=>
string(11) "objectclass"
["o"]=>
array(2) {
["count"]=>
int(1)
[0]=>
string(4) "test"
}
[1]=>
string(1) "o"
["count"]=>
int(2)
["dn"]=>
string(%d) "o=test,%s"
}
}
===DONE===