A Java based Robot Framework library for accessing an LDAP directory.
LdapLibrary is a library for Robot Framework that provides keywords for interacting with an LDAP directory.
Documentation for currently available keywords is in the doc directory (generated by libdoc).
Either download the jar file of the current version directly, or build the library from source by following the steps below. A working Maven installation is assumed:
-
Get the source of the robotframework-ldaplibrary (ie. this library)
-
Build the library. It will be generated in the subdirectory "target".
mvn package
-
Obtain the Javalib Core library
-
Obtain the UnboundID LDAP SDK library
-
Add "LdapLibrary" to your test suite's Settings table, e.g:
*** Settings *** | Library | nl.fuselogic.robotframework.libraries.ldap.LdapLibrary |
-
Run your test suites using Jython/jybot with all libraries in the classpath
robotframework-ldaplibrary-*.jar javalib-core-1.1.jar unboundid-ldapsdk-2.3.1
Only a very limited set of features is currently exposed through this library. It is a work in progress. If you encounter any problems or have a feature request please open an issue on this project's GitHub issue tracker.
Copyright 2013 FuseLogic BV
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.