Scroll to navigation

Test::Net::LDAP::Util(3pm) User Contributed Perl Documentation Test::Net::LDAP::Util(3pm)
 

NAME

Test::Net::LDAP::Util - Testing utilities for Test::Net::LDAP

EXPORT

The following subroutines are exported on demand.
    use Test::Net::LDAP::Util qw(
        ldap_result_ok
        ldap_result_is
        ldap_mockify
    );
All the subroutines are exported if ":all" is specified.
    use Test::Net::LDAP::Util ':all';

SUBROUTINES

ldap_result_ok

    ldap_result_ok($mesg, $name);
Tests the result of an LDAP operation to see if the code is "LDAP_SUCCESS".
$mesg is either a Net::LDAP::Message object returned by LDAP operation methods or a result code.
$name is the optional test name.

ldap_result_is

    ldap_result_is($mesg, $expect, $name);
Tests the result of an LDAP operation to see if the code is equal to $expect.
The values of $mesg and $expect are either a Net::LDAP::Message object returned by LDAP operation methods or a result code.
$name is the optional test name.

ldap_mockify

    ldap_mockify {
        # CODE
    };
Inside the code block, all the occurrences of "Net::LDAP::new" are replaced by "Test::Net::LDAP::Mock::new". See Test::Net::LDAP::Mock for more details.
2014-08-03 perl v5.18.2