Ldap Test Processor
Download
Source Code:Â https://github.com/testify/LdapTestProcessor.git
Latest Snapshot:Â Coming Soon
Latest Release:Â Coming Soon
Description
The Ldap Test Processor is a Testify processor service that utilizes the UnboundID LDAP SDK to add ldif files to an LDAP server. Only one ldif file can be sent per test file. To use this processor, write "LdapTestProcessor" (not case sensitive) in the processor type section of the test file. The endpoint for a test file using this processor must be formatted using this template: IP:PORT. "IP" is the location of the LDAP server and "PORT" is the port number. This processor does not utilize any configuration values but it does have additional required sub-elements that are defined within the test block element and parsed out internally. These sub-elements are broken down below:
Required Elements
BindDn
Surrounded by element indicators: <bindDn></bindDn>
This contains the BindDn for the LDAP server.
Password
Surrounded by element indicators: <password></password>
This contains the password for the BindDn.
File
Surrounded by element indicators: <file></file>
This contains the location of the ldif file that will be added to the LDAP server.
Processor Output
This processor returns a response message.
Example Test Block
Below is an example test block. The text below would be placed in the test block section (as defined by the Testify Test Parser service)Â of the test file.
<bindDn>name</bindDn> <password>password</password> <file>C:/path</file>