Annotation of embedaddon/php/ext/ldap/tests/ldap_sasl_bind_basic.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: ldap_sasl_bind() - Basic anonymous binding
                      3: --CREDITS--
                      4: Patrick Allaert <patrickallaert@php.net>
                      5: # Belgian PHP Testfest 2009
                      6: --SKIPIF--
                      7: <?php require_once('skipif.inc'); ?>
                      8: <?php if (!function_exists("ldap_sasl_bind")) die("skip LDAP extension not compiled with SASL support"); ?>
                      9: --FILE--
                     10: <?php
                     11: require "connect.inc";
                     12: 
                     13: $link = ldap_connect($host, $port);
                     14: ldap_set_option($link, LDAP_OPT_PROTOCOL_VERSION, $protocol_version);
                     15: var_dump(ldap_sasl_bind($link, null, $passwd, 'DIGEST-MD5', 'realm', $sasl_user));
                     16: ?>
                     17: ===DONE===
                     18: --EXPECT--
                     19: bool(true)
                     20: ===DONE===

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>