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

Remove most of the `===DONE===` tags and its variations. Keep `===DONE===` if the test output otherwise becomes empty. Closes GH-4872.
38 lines
1 KiB
PHP
38 lines
1 KiB
PHP
--TEST--
|
|
ldap_exop_passwd() - Giving wrong value for old password
|
|
--CREDITS--
|
|
Côme Chilliet <mcmic@php.net>
|
|
--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);
|
|
|
|
var_dump(ldap_exop_passwd($link, "cn=userA,$base", "wrongPassword", "newPassword", $ctrls));
|
|
var_dump($ctrls);
|
|
var_dump(ldap_error($link));
|
|
var_dump(ldap_errno($link));
|
|
var_dump(test_bind($host, $port, "cn=userA,$base", "newPassword", $protocol_version));
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
|
|
|
|
remove_dummy_data($link, $base);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: ldap_exop_passwd(): Passwd modify extended operation failed: %s (53) in %s on line %d
|
|
bool(false)
|
|
array(0) {
|
|
}
|
|
string(30) "Server is unwilling to perform"
|
|
int(53)
|
|
|
|
Warning: ldap_bind(): Unable to bind to server: Invalid credentials in %s on line %d
|
|
bool(false)
|