From 688e5a16d4d0a839d07a3b5390ca36710d818909 Mon Sep 17 00:00:00 2001 From: Robert Sanders Date: Tue, 22 Mar 2005 02:47:36 +0000 Subject: [PATCH] Cleaned up source to better express correct use. --- .../providers/dao/ldap/BaseLdapTestCase.java | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/sandbox/src/test/java/org/acegisecurity/providers/dao/ldap/BaseLdapTestCase.java b/sandbox/src/test/java/org/acegisecurity/providers/dao/ldap/BaseLdapTestCase.java index a9083f95e3..db0d0f14df 100644 --- a/sandbox/src/test/java/org/acegisecurity/providers/dao/ldap/BaseLdapTestCase.java +++ b/sandbox/src/test/java/org/acegisecurity/providers/dao/ldap/BaseLdapTestCase.java @@ -16,24 +16,12 @@ public class BaseLdapTestCase extends TestCase { // never seems to get the chance to cleanup after itself protected static LdapTestHelper ldapTestHelper = new LdapTestHelper(); - protected DirContext ctx; - - protected void setUp() throws NamingException { - ctx = getClientContext(); - } - - protected void tearDown() throws NamingException { - ctx.close(); - ctx = null; - } - - protected DirContext getClientContext() throws NamingException { Hashtable env = new Hashtable(); env.put( Context.PROVIDER_URL, "ldap://localhost:389/ou=system" ); env.put( Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory" ); - //env.put( Context.SECURITY_PRINCIPAL, "uid=admin" ); - //env.put( Context.SECURITY_CREDENTIALS, "secret" ); + env.put( Context.SECURITY_PRINCIPAL, "uid=admin,ou=system" ); + env.put( Context.SECURITY_CREDENTIALS, "secret" ); return new InitialDirContext( env ); }