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/12/30 06:36:02 UTC

svn commit: r359992 - in /directory/trunk/apacheds-plugin: ./ src/main/java/org/apache/ldap/server/tools/schema/ src/main/schema/ src/test/java/org/apache/ldap/server/tools/schema/

Author: akarasulu
Date: Thu Dec 29 21:35:50 2005
New Revision: 359992

URL: http://svn.apache.org/viewcvs?rev=359992&view=rev
Log:
changes ...

 o removed old m1 build elements
 o removed test cases based on m1 related properties
 o removed schema files since they are not used by tests anymore
 o deleted ant tasks and removed dep on ant
 o deleted old m1 plugin
 o removed tests in parser that used file system files but did not 
   confirm correct parsing and generation


Removed:
    directory/trunk/apacheds-plugin/plugin.jelly
    directory/trunk/apacheds-plugin/plugin.properties
    directory/trunk/apacheds-plugin/project.properties
    directory/trunk/apacheds-plugin/project.xml
    directory/trunk/apacheds-plugin/src/main/java/org/apache/ldap/server/tools/schema/DirectorySchemaTool.java
    directory/trunk/apacheds-plugin/src/main/java/org/apache/ldap/server/tools/schema/DirectorySchemaToolTask.java
    directory/trunk/apacheds-plugin/src/main/schema/
    directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/AbstractTestCase.java
    directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/AttributeTypesTemplateTest.java
    directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/DirectorySchemaToolTest.java
    directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/ObjectClassesTemplateTest.java
Modified:
    directory/trunk/apacheds-plugin/pom.xml
    directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/OpenLdapSchemaParserTest.java

Modified: directory/trunk/apacheds-plugin/pom.xml
URL: http://svn.apache.org/viewcvs/directory/trunk/apacheds-plugin/pom.xml?rev=359992&r1=359991&r2=359992&view=diff
==============================================================================
--- directory/trunk/apacheds-plugin/pom.xml (original)
+++ directory/trunk/apacheds-plugin/pom.xml Thu Dec 29 21:35:50 2005
@@ -21,11 +21,6 @@
       <version>2.0</version>
     </dependency>
     <dependency>
-      <groupId>ant</groupId>
-      <artifactId>ant</artifactId>
-      <version>1.5.3-1</version>
-    </dependency>
-    <dependency>
       <groupId>antlr</groupId>
       <artifactId>antlr</artifactId>
       <version>2.7.2</version>
@@ -73,7 +68,6 @@
         <configuration>
           <excludes>
             <exclude>**/Abstract*</exclude>
-            <exclude>**/*Test.java</exclude>
           </excludes>
         </configuration>
       </plugin>

Modified: directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/OpenLdapSchemaParserTest.java
URL: http://svn.apache.org/viewcvs/directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/OpenLdapSchemaParserTest.java?rev=359992&r1=359991&r2=359992&view=diff
==============================================================================
--- directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/OpenLdapSchemaParserTest.java (original)
+++ directory/trunk/apacheds-plugin/src/test/java/org/apache/ldap/server/tools/schema/OpenLdapSchemaParserTest.java Thu Dec 29 21:35:50 2005
@@ -201,60 +201,4 @@
         assertEquals( "personalSignature", objectClass.getMay()[18] );
 
     }
-
-
-    public void testAutoFsSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "autofs.schema" );
-        parser.parse( in );
-    }
-
-
-    public void testCoreSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "core.schema" );
-        parser.parse( in );
-    }
-
-
-    public void testCorbaSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "corba.schema" );
-        parser.parse( in );
-    }
-
-
-    public void testCosineSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "cosine.schema" );
-        parser.parse( in );
-    }
-
-
-    public void testInetOrgPersonSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "inetorgperson.schema" );
-        parser.parse( in );
-    }
-
-
-    public void testJavaSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "java.schema" );
-        parser.parse( in );
-    }
-
-
-    public void testMiscSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "misc.schema" );
-        parser.parse( in );
-    }
-
-
-    public void testNisSchemaFile() throws Exception
-    {
-        InputStream in = getClass().getResourceAsStream( "nis.schema" );
-        parser.parse( in );
-    }
 }