mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00

* Deprecate ldap_connect with two parameters ldap_connect should be called with an LDAP-URI as parameter and not with 2 parameters as that allows much more flexibility like differentiating between ldap and ldaps or setting multiple ldap-servers. This change requires one to add null as second parameter in case the underlying library is Oracle and one wants to add wallet-details. * Modify all ldap-tests to use ldap_connect right All tests are using ldap_connect now with an URI and not with host and port as two separarte parameters. * Verify deprecation of ldap_connect w/h 2 params This adds a test to verify that calling ldap_connect with 2 parameters triggers a deprecation notice * Remove empty test `ldap_control_paged_result()` is removed as of PHP 8.0.0, so this test needs to be removed as well. Co-authored-by: Christoph M. Becker <cmbecker69@gmx.de> Co-authored-by: Tim Düsterhus <timwolla@googlemail.com>
44 lines
1.1 KiB
PHP
44 lines
1.1 KiB
PHP
--TEST--
|
|
ldap_set_rebind_proc() - Testing ldap_set_rebind_proc() that should fail
|
|
--CREDITS--
|
|
Patrick Allaert <patrickallaert@php.net>
|
|
# Belgian PHP Testfest 2009
|
|
--EXTENSIONS--
|
|
ldap
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists("ldap_set_rebind_proc")) {
|
|
die("skip ldap_set_rebind_proc() does not exist");
|
|
}
|
|
require "connect.inc";
|
|
$link = @fsockopen($uri);
|
|
if (!$link) {
|
|
die("skip no server listening");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
function rebind_proc ($ds, $ldap_url) {
|
|
global $user;
|
|
global $passwd;
|
|
global $protocol_version;
|
|
|
|
// required by most modern LDAP servers, use LDAPv3
|
|
ldap_set_option($a, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
|
|
|
|
if (!ldap_bind($a, $user, $passwd)) {
|
|
print "Cannot bind";
|
|
}
|
|
}
|
|
|
|
$link = ldap_connect($uri);
|
|
try {
|
|
$result = ldap_set_rebind_proc($link, "rebind_proc_inexistent");
|
|
} catch(\TypeError $error) {
|
|
echo $error->getMessage(), "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
ldap_set_rebind_proc(): Argument #2 ($callback) must be a valid callback or null, function "rebind_proc_inexistent" not found or invalid function name
|