You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by ak...@apache.org on 2005/06/03 18:52:02 UTC

svn commit: r179833 - /directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/AbstractCoreTest.java

Author: akarasulu
Date: Fri Jun  3 09:52:02 2005
New Revision: 179833

URL: http://svn.apache.org/viewcvs?rev=179833&view=rev
Log:
removed some unused methods

Modified:
    directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/AbstractCoreTest.java

Modified: directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/AbstractCoreTest.java
URL: http://svn.apache.org/viewcvs/directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/AbstractCoreTest.java?rev=179833&r1=179832&r2=179833&view=diff
==============================================================================
--- directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/AbstractCoreTest.java (original)
+++ directory/apacheds/trunk/core/src/main/java/org/apache/ldap/server/AbstractCoreTest.java Fri Jun  3 09:52:02 2005
@@ -20,17 +20,13 @@
 import junit.framework.TestCase;
 import org.apache.commons.io.FileUtils;
 import org.apache.commons.lang.exception.NestableRuntimeException;
-import org.apache.ldap.common.exception.LdapConfigurationException;
 import org.apache.ldap.common.ldif.LdifIterator;
-import org.apache.ldap.common.ldif.LdifParser;
 import org.apache.ldap.common.ldif.LdifParserImpl;
 import org.apache.ldap.common.message.LockableAttributesImpl;
-import org.apache.ldap.common.name.LdapName;
 import org.apache.ldap.server.jndi.EnvKeys;
 
 import javax.naming.Context;
 import javax.naming.InitialContext;
-import javax.naming.Name;
 import javax.naming.NamingException;
 import javax.naming.directory.Attributes;
 import javax.naming.ldap.InitialLdapContext;
@@ -306,56 +302,9 @@
         Runtime.getRuntime().gc();
 
         testEntries.clear();
-    }
-
-
-    /**
-     * Imports the LDIF entries packaged with the Eve JNDI provider jar into
-     * the newly created system partition to prime it up for operation.  Note
-     * that only ou=system entries will be added - entries for other partitions
-     * cannot be imported and will blow chunks.
-     *
-     * @throws NamingException if there are problems reading the ldif file and
-     * adding those entries to the system partition
-     */
-    protected void importLdif( InputStream in ) throws NamingException
-    {
-        Hashtable env = new Hashtable();
-
-        env.putAll( sysRoot.getEnvironment() );
 
-        LdapContext ctx = new InitialLdapContext( env, null );
+        ldifPath = null;
 
-        LdifParser parser = new LdifParserImpl();
-
-        try
-        {
-            LdifIterator iterator = new LdifIterator( in );
-
-            while ( iterator.hasNext() )
-            {
-                Attributes attributes = new LockableAttributesImpl();
-
-                String ldif = ( String ) iterator.next();
-
-                parser.parse( attributes, ldif );
-
-                Name dn = new LdapName( ( String ) attributes.remove( "dn" ).get() );
-
-                dn.remove( 0 );
-
-                ctx.createSubcontext( dn, attributes );
-            }
-        }
-        catch ( Exception e )
-        {
-            String msg = "failed while trying to parse system ldif file";
-
-            NamingException ne = new LdapConfigurationException( msg );
-
-            ne.setRootCause( e );
-
-            throw ne;
-        }
+        loadClass = null;
     }
 }