/usr/share/perl5/Test/Net/LDAP.pm is in libtest-net-ldap-perl 0.07-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 | use 5.006;
use strict;
use warnings;
package Test::Net::LDAP;
use base qw(Net::LDAP Test::Net::LDAP::Mixin);
=head1 NAME
Test::Net::LDAP - A Net::LDAP subclass for testing
=head1 VERSION
Version 0.07
=cut
our $VERSION = '0.07';
=head1 SYNOPSIS
Basic testing utility
use Test::More tests => 1;
use Test::Net::LDAP;
# Create an object, just like Net::LDAP->new()
my $ldap = Test::Net::LDAP->new(...);
# Same as $ldap->search(), testing the result to see if it is success
my $search = $ldap->search_ok(...search args...);
Mocking (See L<Test::Net::LDAP::Mock>)
use Test::More tests => 1;
use Test::Net::LDAP::Util qw(ldap_mockify);
ldap_mockify {
# Net::LDAP->new() will invoke Test::Net::LDAP::Mock->new()
my $ldap = Net::LDAP->new('ldap.example.com');
# Add entries to in-memory data tree
$ldap->add('uid=user1, ou=users, dc=example, dc=com');
$ldap->add('uid=user2, ou=users, dc=example, dc=com');
# Test your application
ok my_application_routine();
};
=head1 DESCRIPTION
This module provides some testing methods for LDAP operations, such as
C<search>, C<add>, and C<modify>, where each method is suffixed with either
C<_ok> or C<_is>.
C<Test::Net::LDAP> is a subclass of C<Net::LDAP>, so all the methods defined
for C<Net::LDAP> are available in addition to C<search_ok>, C<add_is>, etc.
See L<Test::Net::LDAP::Mock> for in-memory testing with fake data, without
connecting to the real LDAP servers.
See L<Test::Net::LDAP::Util> for some helper subroutines.
=head1 METHODS
=cut
=head2 new
Creates a new object. The parameters are the same as C<Net::LDAP::new>.
my $ldap = Test::Net::LDAP->new('ldap.example.com');
=cut
=head2 search_ok
Available methods:
C<search_ok>, C<compare_ok>,
C<add_ok>, C<modify_ok>, C<delete_ok>, C<moddn_ok>,
C<bind_ok>, C<unbind_ok>, C<abandon_ok>
Synopsis:
$ldap->search_ok(@params);
$ldap->search_ok(\@params, $name);
Invokes the corresponding method with C<@params> passed as arguments,
and tests the result to see if the code is C<LDAP_SUCCESS>.
Alternatively, C<@params> can be given as an array ref, so that the second
argument C<$name> is specified as the test name.
C<$name> is an optional test name, and if it is omitted, the test name is
automatically configured based on C<$method> and C<@params>.
my $search = $ldap->search_ok(
base => 'dc=example, dc=com', scope => 'sub', filter => '(cn=*)',
);
my $search = $ldap->search_ok(
[base => 'dc=example, dc=com', scope => 'sub', filter => '(cn=*)'],
'Testing search (cn=*)'
);
=cut
=head2 search_is
Available methods:
C<search_is>, C<compare_is>,
C<add_is>, C<modify_is>, C<delete_is>, C<moddn_is>,
C<bind_is>, C<unbind_is>, C<abandon_is>
Synopsis:
$ldap->search_is(\@params, $expect, $name);
Invokes the corresponding method with C<@params> passed as arguments,
and tests the result to see if the code is equal to C<$expect>.
C<$expect> can be a result code such as C<LDAP_NO_SUCH_OBJECT> or an object of
C<Net::LDAP::Message> returned by LDAP operations.
C<$name> is an optional test name, and if it is omitted, the test name is
automatically configured based on C<$method> and C<@params>.
use Net::LDAP::Constant qw(LDAP_ALREADY_EXISTS);
my $mesg = $ldap->add_is(
['uid=duplicate, dc=example, dc=com'],
LDAP_ALREADY_EXISTS
);
=cut
=head2 method_ok
$ldap->method_ok($method, @params);
$ldap->method_ok($method, \@params, $name);
Invokes the method as C<< $ldap->$method(@params) >> and tests the result to see
if the code is C<LDAP_SUCCESS>.
C<$name> is an optional test name, and if it is omitted, the test name is
automatically configured based on C<$method> and C<@params>.
=cut
=head2 method_is
$ldap->method_is($method, \@params, $expect, $name);
Invokes the method as C<< $ldap->$method(@params) >> and tests the result to see
if the code is equal to C<$expect>.
C<$expect> can be a result code such as C<LDAP_NO_SUCH_OBJECT> or an object of
C<Net::LDAP::Message> returned by LDAP operations.
C<$name> is an optional test name, and if it is omitted, the test name is
automatically configured based on C<$method> and C<@params>.
=cut
=head1 SEE ALSO
=over 4
=item * L<Test::More>
=item * L<Net::LDAP>
=item * L<Test::Net::LDAP::Mock>
=item * L<Test::Net::LDAP::Util>
=back
=head1 AUTHOR
Mahiro Ando, C<< <mahiro at cpan.org> >>
=head1 BUGS
Please report any bugs or feature requests to C<bug-test-net-ldap at rt.cpan.org>, or through
the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Net-LDAP>. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
=head1 SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Test::Net::LDAP
You can also look for information at:
=over 4
=item * GitHub repository (report bugs here)
L<https://github.com/mahiro/perl-Test-Net-LDAP>
=item * RT: CPAN's request tracker (report bugs here, alternatively)
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Net-LDAP>
=item * AnnoCPAN: Annotated CPAN documentation
L<http://annocpan.org/dist/Test-Net-LDAP>
=item * CPAN Ratings
L<http://cpanratings.perl.org/d/Test-Net-LDAP>
=item * Search CPAN
L<http://search.cpan.org/dist/Test-Net-LDAP/>
=back
=head1 ACKNOWLEDGEMENTS
=head1 LICENSE AND COPYRIGHT
Copyright 2013-2015 Mahiro Ando.
This program is free software; you can redistribute it and/or modify it
under the terms of either: the GNU General Public License as published
by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.
=cut
1; # End of Test::Net::LDAP
|