Back to index
Summary
Tests that a specific user name and password combination work with the specified directory provider settings.userNameStringrequiredThe name of the user to be used for LDAP testing. passwordStringrequiredUser's password for the user name to be used for LDAP testing. allowNestedGroupsApproversBooleanoptionalSpecifies if users in nested LDAP groups should be allowed to approve a manual task when a parent LDAP group is assigned as an approver for the task and recursive traversal of group hierarchy is enabled for the directory provider. commonGroupNameAttributeStringoptionalThe attribute in a group record that contains the common name of the group. If specified, it is only used when searching for groups from an external provider. Typically used when the group name attribute is set to distinguishedName, because that field is not searchable. domainNameStringoptionalThe domain from which the Active Directory server(s) are automatically discovered. emailAttributeStringoptionalThe attribute in a LDAP user record that contains the user's email. enableGroupsBooleanoptionalDetermines whether or not to enable external groups for the directory provider. fullUserNameAttributeStringoptionalThe attribute in a user record that contains the user's full name (first and last). groupBaseStringoptionalString prepended to the base distinguished name to construct the distinguished name of the directory that contains group records. groupMemberAttributesStringoptionalComma separated list of attribute names that can identify a member of a group. groupMemberFilterStringoptionalLDAP query string for the groups directory to find groups that contain a given user as a member. groupNameAttributeStringoptionalThe attribute in a group record that contains the name of the group. groupSearchFilterStringoptionalLDAP query string used in group directory to enumerate group records. managerDnStringoptionalThe name of a user who has read-only access to the LDAP or Active Directory server. Typically a distinguished name. A simple name may be used when the Active Directory server's URL is being auto-discovered via DNS. managerPasswordStringoptionalSecret value used to identify the account for the query user. membershipAttributeStringoptionalAttribute defined on an LDAP user or group entry used by the LDAP provider for specifying the group membership. membershipFilterStringoptionalLDAP filter to search for groups that an LDAP user or group belongs to. nestedGroupDepthLimitIntegeroptionalMaximum number of group hierarchy levels that will be traversed for retrieving nested group membership information. notifyUsersInNestedGroupsBooleanoptionalWhether users in nested LDAP groups should be included when sending notifications for a parent LDAP group and recursive traversal of group hierarchy is enabled for the directory provider. providerTypeStringoptionalType string for a directory provider. Should be ldap or activedirectory .Possible values: "activedirectory" , "ldap" realmStringoptionalThe realm of the LDAP directory provider. This is used to create unique user names when there are multiple providers. traverseHierarchyBooleanoptionalWhether or not to enable recursive traversal of group hierarchy for nested group membership information. urlStringoptionalThe URL of the LDAP Directory Provider server. If using an IPv6 address, enclose the address in square brackets. Example: [<IPv6-ADDRESS>] .useDefaultsBooleanoptionalUsed for testing active directory providers and determines whether defaults will be used for fields that remain blank. useSSLBooleanoptionalTrue means SSL is used for communication. userBaseStringoptionalUsed to construct the distinguished name of the directory that contain user records. userNameAttributeStringoptionalThe attribute in a user record that contains the user's account name. userSearchFilterStringoptionalRFC 2254 LDAP query to search for a user by name. userSearchSubtreeBooleanoptionalIf true recursively search the subtree below the user base. |
Usage
Perl
$cmdr->testDirectoryProvider( "test-userName", # userName "test-password" # password # optionals );
ectool
ectool testDirectoryProvider \ "test-userName" `# userName` \ "test-password" `# password` \ # optionals