mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
43 lines
1.3 KiB
PHP
43 lines
1.3 KiB
PHP
--TEST--
|
|
ldap_set_option() - ldap_set_option() operation that should fail
|
|
--CREDITS--
|
|
Patrick Allaert <patrickallaert@php.net>
|
|
# Belgian PHP Testfest 2009
|
|
--SKIPIF--
|
|
<?php require_once('skipif.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
$link = ldap_connect($host, $port);
|
|
$controls = array(
|
|
array(
|
|
array("xid" => "1.2.752.58.10.1", "iscritical" => true),
|
|
array("xid" => "1.2.752.58.1.10", "value" => "magic"),
|
|
),
|
|
array(
|
|
array("oid" => "1.2.752.58.10.1", "iscritical" => true),
|
|
array("oid" => "1.2.752.58.1.10", "value" => "magic"),
|
|
"weird"
|
|
),
|
|
"notanarray"
|
|
);
|
|
|
|
var_dump(ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, 10));
|
|
|
|
foreach ($controls as $control) {
|
|
try {
|
|
var_dump(ldap_set_option($link, LDAP_OPT_SERVER_CONTROLS, $control));
|
|
} catch (Error $exception) {
|
|
echo get_class($exception) . ": " . $exception->getMessage() . "\n";
|
|
}
|
|
}
|
|
|
|
var_dump(ldap_set_option($link, 999999, 999999));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
ValueError: ldap_set_option(): Control must have an "oid" key
|
|
TypeError: ldap_set_option(): Argument #3 ($value) must contain only arrays, where each array is a control
|
|
TypeError: ldap_set_option(): Argument #3 ($value) must be of type array for the LDAP_OPT_CLIENT_CONTROLS option, string given
|
|
bool(false)
|