mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +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>
46 lines
1.2 KiB
PHP
46 lines
1.2 KiB
PHP
--TEST--
|
|
ldap_parse_result() - Test the parsing of controls from result object
|
|
--CREDITS--
|
|
Côme Chilliet <mcmic@php.net>
|
|
--EXTENSIONS--
|
|
ldap
|
|
--SKIPIF--
|
|
<?php require_once('skipifbindfailure.inc'); ?>
|
|
<?php
|
|
require_once('skipifcontrol.inc');
|
|
skipifunsupportedcontrol(LDAP_CONTROL_PAGEDRESULTS);
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version);
|
|
insert_dummy_data($link, $base);
|
|
|
|
$dn = "$base";
|
|
$filter = "(cn=user*)";
|
|
var_dump(
|
|
$result = ldap_search($link, $dn, $filter, array('cn'), 0, 0, 0, LDAP_DEREF_NEVER,
|
|
[['oid' => LDAP_CONTROL_PAGEDRESULTS, 'iscritical' => TRUE, 'value' => ['size' => 1]]]),
|
|
ldap_parse_result($link, $result, $errcode, $dn, $errmsg, $refs, $ctrls),
|
|
$ctrls[LDAP_CONTROL_PAGEDRESULTS]['oid'],
|
|
$ctrls[LDAP_CONTROL_PAGEDRESULTS]['value']['size'],
|
|
bin2hex($ctrls[LDAP_CONTROL_PAGEDRESULTS]['value']['cookie']),
|
|
ldap_get_entries($link, $result)['count']
|
|
);
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version);
|
|
remove_dummy_data($link, $base);
|
|
?>
|
|
--EXPECTF--
|
|
object(LDAP\Result)#%d (0) {
|
|
}
|
|
bool(true)
|
|
string(22) "1.2.840.113556.1.4.319"
|
|
int(%d)
|
|
string(%d) "%s"
|
|
int(1)
|