mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +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)
32 lines
739 B
PHP
32 lines
739 B
PHP
--TEST--
|
|
ldap_get_dn() - Basic ldap_get_dn test
|
|
--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);
|
|
$result = ldap_search($link, "$base", "(objectclass=organization)");
|
|
$entry = ldap_first_entry($link, $result);
|
|
var_dump(
|
|
ldap_get_dn($link, $entry)
|
|
);
|
|
?>
|
|
===DONE===
|
|
--CLEAN--
|
|
<?php
|
|
include "connect.inc";
|
|
|
|
$link = ldap_connect_and_bind($host, $port, $user, $passwd, $protocol_version);
|
|
remove_dummy_data($link, $base);
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "%s"
|
|
===DONE===
|