mirror of
https://github.com/php/php-src.git
synced 2024-11-28 20:34:29 +08:00
8836404faf
Now you can set the base in the env var LDAP_TEST_BASE. The base has to exists. (before tests were attempting to create/delete the base itself)
56 lines
1.4 KiB
PHP
56 lines
1.4 KiB
PHP
--TEST--
|
|
ldap_compare() - Testing ldap_compare() 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);
|
|
insert_dummy_data($link, $base);
|
|
|
|
// Too few parameters
|
|
var_dump(ldap_compare($link));
|
|
var_dump(ldap_compare($link, $link));
|
|
var_dump(ldap_compare($link, $link, $link));
|
|
|
|
// Too many parameters
|
|
var_dump(ldap_compare($link, $link, $link, $link, "Additional data"));
|
|
|
|
var_dump(
|
|
ldap_compare($link, "cn=userNotAvailable,$base", "sn", "testSN1"),
|
|
ldap_error($link),
|
|
ldap_errno($link)
|
|
);
|
|
?>
|
|
===DONE===
|
|
--CLEAN--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
|
|
remove_dummy_data($link, $base);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: ldap_compare() expects exactly 4 parameters, 1 given in %s on line %d
|
|
NULL
|
|
|
|
Warning: ldap_compare() expects exactly 4 parameters, 2 given in %s on line %d
|
|
NULL
|
|
|
|
Warning: ldap_compare() expects exactly 4 parameters, 3 given in %s on line %d
|
|
NULL
|
|
|
|
Warning: ldap_compare() expects exactly 4 parameters, 5 given in %s on line %d
|
|
NULL
|
|
|
|
Warning: ldap_compare(): Compare: No such object in %s on line %d
|
|
int(-1)
|
|
string(14) "No such object"
|
|
int(32)
|
|
===DONE===
|