mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
90 lines
1.8 KiB
PHP
90 lines
1.8 KiB
PHP
--TEST--
|
|
ldap_add() - Add operation that should fail
|
|
--CREDITS--
|
|
Patrick Allaert <patrickallaert@php.net>
|
|
# Belgian PHP Testfest 2009
|
|
--EXTENSIONS--
|
|
ldap
|
|
--SKIPIF--
|
|
<?php require_once('skipifbindfailure.inc'); ?>
|
|
--FILE--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version);
|
|
|
|
// Invalid DN
|
|
var_dump(
|
|
ldap_add(
|
|
$link,
|
|
"weirdAttribute=val",
|
|
["weirdAttribute" => "val"],
|
|
),
|
|
ldap_error($link),
|
|
ldap_errno($link)
|
|
);
|
|
|
|
// Duplicate entry
|
|
for ($i = 0; $i < 2; $i++) {
|
|
var_dump(
|
|
ldap_add(
|
|
$link,
|
|
"dc=my-domain,$base",
|
|
[
|
|
"objectClass" => [
|
|
"top",
|
|
"dcObject",
|
|
"organization",
|
|
],
|
|
"dc" => "my-domain",
|
|
"o" => "my-domain",
|
|
],
|
|
)
|
|
);
|
|
}
|
|
var_dump(ldap_error($link), ldap_errno($link));
|
|
|
|
// Invalid attribute
|
|
var_dump(
|
|
ldap_add(
|
|
$link,
|
|
"dc=my-domain,$base",
|
|
[
|
|
"objectClass" => [
|
|
"top",
|
|
"dcObject",
|
|
"organization",
|
|
],
|
|
"dc" => "my-domain",
|
|
"o" => "my-domain",
|
|
"weirdAttr" => "weirdVal",
|
|
],
|
|
),
|
|
ldap_error($link),
|
|
ldap_errno($link),
|
|
);
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
require "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($uri, $user, $passwd, $protocol_version);
|
|
|
|
ldap_delete($link, "dc=my-domain,$base");
|
|
?>
|
|
--EXPECTF--
|
|
Warning: ldap_add(): Add: Invalid DN syntax in %s on line %d
|
|
bool(false)
|
|
string(17) "Invalid DN syntax"
|
|
int(34)
|
|
bool(true)
|
|
|
|
Warning: ldap_add(): Add: Already exists in %s on line %d
|
|
bool(false)
|
|
string(14) "Already exists"
|
|
int(68)
|
|
|
|
Warning: ldap_add(): Add: Undefined attribute type in %s on line %d
|
|
bool(false)
|
|
string(24) "Undefined attribute type"
|
|
int(17)
|