GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Test::OpenLDAP(3) User Contributed Perl Documentation Test::OpenLDAP(3)

Test::OpenLDAP - Creates a temporary instance of OpenLDAP's slapd daemon to run tests against.

Version 0.04

This module allows easy creation and tear down of a OpenLDAP slapd instance. When the variable goes out of scope, the slapd instance is torn down and the file system objects it relies on are removed.

  my $slapd = Test::OpenLDAP->new(); # Test::OpenLDAP->new({ suffix => 'dc=foobar,dc=com' });

  my $ldap = Net::LDAP->new($slapd->uri()) or Carp::croak("Failed to connect:$@");

  my $mesg = $ldap->bind($slapd->admin_user(), password => $slapd->admin_password());

  ... add / modify / search entries

  $slapd->stop();

  $slapd->start();

  $slapd->DESTROY();

This method initialises and starts an OpenLDAP slapd instance, listening on a unix socket. It then creates an admin user and password and returns the slapd instance to the user. The method accepts a hash parameter of configuration options. The only option it accepts at the moment is the 'suffix' option.

This method allows the user to skip tests requiring Test::OpenLDAP by checking to see if the slapd binary exists AND that the OS uses fork for process control.

This methods starts the slapd process

This method stops the slapd process

This method gives the uri for the test code to connect to via a Net::LDAP->new() call.

This method gives the dn used as the suffix for the slapd database.

This method gives the admin user name for the slapd database.

This method gives the admin password for the slapd database.

David Dick, "<ddick at cpan.org>"

Please report any bugs or feature requests to "bug-test-openldap at rt.cpan.org", or through the web interface at <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-OpenLDAP>. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

You can find documentation for this module with the perldoc command.

    perldoc Test::OpenLDAP

You can also look for information at:

  • RT: CPAN's request tracker (report bugs here)

    <http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-OpenLDAP>

  • AnnoCPAN: Annotated CPAN documentation

    <http://annocpan.org/dist/Test-OpenLDAP>

  • CPAN Ratings

    <http://cpanratings.perl.org/d/Test-OpenLDAP>

  • Search CPAN

    <http://search.cpan.org/dist/Test-OpenLDAP/>

Copyright 2013 David Dick.

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.

2022-04-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.