Update LDAP auth credentials, use built-in LDAP clean-up, fix broken tests.

This commit is contained in:
Colin Kuskie 2010-02-09 18:20:49 -08:00
parent 80a7f7bd53
commit 8563340eff
3 changed files with 10 additions and 25 deletions

View file

@ -508,11 +508,11 @@ Returns a hashref of properties for connecting to smoke's LDAP server.
sub getSmokeLDAPProps {
my $ldapProps = {
ldapLinkName => "Test LDAP Link",
ldapUrl => "ldaps://smoke.plainblack.com/ou=Convicts,o=shawshank", # Always test ldaps
connectDn => "cn=Samuel Norton,ou=Warden,o=shawshank",
ldapUrl => "ldaps://smoke.plainblack.com/o=shawshank", # Always test ldaps
connectDn => "cn=Warden,o=shawshank",
identifier => "gooey",
ldapUserRDN => "dn",
ldapIdentity => "cn",
ldapIdentity => "uid",
ldapLinkId => sprintf( '%022s', "testlink" ),
};
return $ldapProps;