????JFIF??x?x????'
Server IP : 79.136.114.73 / Your IP : 3.147.67.34 Web Server : Apache/2.4.7 (Ubuntu) PHP/5.5.9-1ubuntu4.29 OpenSSL/1.0.1f System : Linux b8009 3.13.0-170-generic #220-Ubuntu SMP Thu May 9 12:40:49 UTC 2019 x86_64 User : www-data ( 33) PHP Version : 5.5.9-1ubuntu4.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/self/root/home/b8009/php-5.6.22/ext/ldap/tests/ |
Upload File : |
--TEST-- ldap_add() - Add operation that should fail --CREDITS-- Patrick Allaert <patrickallaert@php.net> # Belgian PHP Testfest 2009 --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); // Too few parameters var_dump(ldap_add()); var_dump(ldap_add($link)); var_dump(ldap_add($link, "$base")); // Too many parameters var_dump(ldap_add($link, "$base", array(), "Additional data")); var_dump(ldap_add($link, "$base", array())); // Invalid DN var_dump( ldap_add($link, "weirdAttribute=val", array( "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", array( "objectClass" => array( "top", "dcObject", "organization"), "dc" => "my-domain", "o" => "my-domain", )) ); var_dump(ldap_error($link), ldap_errno($link)); // Wrong array indexes var_dump( ldap_add($link, "dc=my-domain2,dc=com", array( "objectClass" => array( 0 => "top", 2 => "dcObject", 5 => "organization"), "dc" => "my-domain", "o" => "my-domain", )) /* Is this correct behaviour to still have "Already exists" as error/errno? , ldap_error($link), ldap_errno($link) */ ); // Invalid attribute var_dump( ldap_add($link, "$base", array( "objectClass" => array( "top", "dcObject", "organization"), "dc" => "my-domain", "o" => "my-domain", "weirdAttr" => "weirdVal", )), ldap_error($link), ldap_errno($link) ); var_dump( ldap_add($link, "$base", array(array( "Oops" ))) /* Is this correct behaviour to still have "Undefined attribute type" as error/errno? , ldap_error($link), ldap_errno($link) */ ); ?> ===DONE=== --CLEAN-- <?php require "connect.inc"; $link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version); ldap_delete($link, "dc=my-domain,$base"); ?> --EXPECTF-- Warning: ldap_add() expects exactly 3 parameters, 0 given in %s on line %d NULL Warning: ldap_add() expects exactly 3 parameters, 1 given in %s on line %d NULL Warning: ldap_add() expects exactly 3 parameters, 2 given in %s on line %d NULL Warning: ldap_add() expects exactly 3 parameters, 4 given in %s on line %d NULL Warning: ldap_add(): Add: Protocol error in %s on line %d bool(false) 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(): Value array must have consecutive indices 0, 1, ... in %s on line %d bool(false) Warning: ldap_add(): Add: Undefined attribute type in %s on line %d bool(false) string(24) "Undefined attribute type" int(17) Warning: ldap_add(): Unknown attribute in the data in %s on line %d bool(false) ===DONE===