mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +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>
39 lines
787 B
PHP
39 lines
787 B
PHP
--TEST--
|
|
ldap_set_option() - Basic test for TLS CA/Cert/CRL/DH/Key file ldap options
|
|
--CREDITS--
|
|
Chad Sikorra <Chad.Sikorra@gmail.com>
|
|
--EXTENSIONS--
|
|
ldap
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
$link = ldap_connect($uri);
|
|
|
|
foreach([
|
|
LDAP_OPT_X_TLS_CACERTDIR,
|
|
LDAP_OPT_X_TLS_CACERTFILE,
|
|
LDAP_OPT_X_TLS_CERTFILE,
|
|
LDAP_OPT_X_TLS_KEYFILE,
|
|
LDAP_OPT_X_TLS_CRLFILE,
|
|
LDAP_OPT_X_TLS_DHFILE,
|
|
] as $option) {
|
|
$result = ldap_set_option($link, $option, '/foo/bar');
|
|
var_dump($result);
|
|
|
|
ldap_get_option($link, $option, $optionval);
|
|
var_dump($optionval);
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|
|
string(8) "/foo/bar"
|
|
bool(true)
|
|
string(8) "/foo/bar"
|
|
bool(true)
|
|
string(8) "/foo/bar"
|
|
bool(true)
|
|
string(8) "/foo/bar"
|
|
bool(true)
|
|
string(8) "/foo/bar"
|
|
bool(true)
|
|
string(8) "/foo/bar"
|