php-src/ext/ldap/tests/ldap_mod_replace_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

60 lines
1.1 KiB
PHP

--TEST--
ldap_mod_replace() - Basic modify operation
--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, $base);
$entry = array(
"description" => "user X"
);
var_dump(
ldap_mod_replace($link, "cn=userA,$base", $entry),
ldap_get_entries(
$link,
ldap_search($link, "$base", "(description=user X)", array("description"))
)
);
?>
===DONE===
--CLEAN--
<?php
require "connect.inc";
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
remove_dummy_data($link, $base);
?>
--EXPECTF--
bool(true)
array(2) {
["count"]=>
int(1)
[0]=>
array(4) {
["description"]=>
array(2) {
["count"]=>
int(1)
[0]=>
string(6) "user X"
}
[0]=>
string(11) "description"
["count"]=>
int(1)
["dn"]=>
string(%d) "cn=userA,%s"
}
}
===DONE===