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 2007/11/30 01:17:29 UTC

svn commit: r599653 - in /directory/apacheds/branches/bigbang: ./ core-integ/ core-integ/src/ core-integ/src/main/ core-integ/src/main/java/ core-integ/src/main/java/org/ core-integ/src/main/java/org/apache/ core-integ/src/main/java/org/apache/director...

Author: akarasulu
Date: Thu Nov 29 16:17:28 2007
New Revision: 599653

URL: http://svn.apache.org/viewvc?rev=599653&view=rev
Log:
added new integration testing module for fast tests

 o will use this to move tests as we convert them from core-unit to use
   the new framework
 o the core-unit stuff can be kept for some time for those interested in older
   junit 3.8.1 based testing


Added:
    directory/apacheds/branches/bigbang/core-integ/   (with props)
    directory/apacheds/branches/bigbang/core-integ/pom.xml
    directory/apacheds/branches/bigbang/core-integ/src/
    directory/apacheds/branches/bigbang/core-integ/src/main/
    directory/apacheds/branches/bigbang/core-integ/src/main/java/
    directory/apacheds/branches/bigbang/core-integ/src/main/java/org/
    directory/apacheds/branches/bigbang/core-integ/src/main/java/org/apache/
    directory/apacheds/branches/bigbang/core-integ/src/main/java/org/apache/directory/
    directory/apacheds/branches/bigbang/core-integ/src/main/java/org/apache/directory/server/
    directory/apacheds/branches/bigbang/core-integ/src/main/java/org/apache/directory/server/core/
    directory/apacheds/branches/bigbang/core-integ/src/main/java/org/apache/directory/server/core/integ/
    directory/apacheds/branches/bigbang/core-integ/src/main/resources/
    directory/apacheds/branches/bigbang/core-integ/src/main/resources/META-INF/
    directory/apacheds/branches/bigbang/core-integ/src/test/
    directory/apacheds/branches/bigbang/core-integ/src/test/java/
    directory/apacheds/branches/bigbang/core-integ/src/test/java/org/
    directory/apacheds/branches/bigbang/core-integ/src/test/java/org/apache/
    directory/apacheds/branches/bigbang/core-integ/src/test/java/org/apache/directory/
    directory/apacheds/branches/bigbang/core-integ/src/test/java/org/apache/directory/server/
    directory/apacheds/branches/bigbang/core-integ/src/test/java/org/apache/directory/server/core/
    directory/apacheds/branches/bigbang/core-integ/src/test/java/org/apache/directory/server/core/integ/
Modified:
    directory/apacheds/branches/bigbang/pom.xml

Propchange: directory/apacheds/branches/bigbang/core-integ/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Nov 29 16:17:28 2007
@@ -0,0 +1,13 @@
+*.iml
+*.ipr
+*.iws
+.wtpmodules
+.settings
+.deployables
+junit*.properties
+server-work
+target
+.classpath
+.project
+*.log
+nbproject

Added: directory/apacheds/branches/bigbang/core-integ/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/core-integ/pom.xml?rev=599653&view=auto
==============================================================================
--- directory/apacheds/branches/bigbang/core-integ/pom.xml (added)
+++ directory/apacheds/branches/bigbang/core-integ/pom.xml Thu Nov 29 16:17:28 2007
@@ -0,0 +1,120 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+<!-- $Rev:  $ $Date:  $ -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.directory.server</groupId>
+    <artifactId>apacheds-parent</artifactId>
+    <version>1.5.2-SNAPSHOT</version>
+  </parent>
+  <artifactId>apacheds-core-integ</artifactId>
+  <name>ApacheDS Core Integration</name>
+  <packaging>jar</packaging>  
+
+  <description>
+    Integration testing framework for Apache Directory Server.
+  </description>
+
+  <dependencies>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>provided</scope>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.directory.server</groupId>
+      <artifactId>apacheds-core</artifactId>
+      <version>${pom.version}</version>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.apache.directory.server</groupId>
+      <artifactId>apacheds-schema-extras</artifactId>
+      <version>${pom.version}</version>
+      <scope>test</scope>
+    </dependency>  
+
+    <dependency>
+      <groupId>org.apache.directory.server</groupId>
+      <artifactId>apacheds-bootstrap-partition</artifactId>
+      <version>${pom.version}</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+  <profiles>
+    <profile>
+      <id>integration</id>
+      <activation>
+        <activeByDefault>true</activeByDefault>
+      </activation>
+    </profile>
+    
+    <profile>
+      <id>quicktest</id>
+      <activation>
+        <property><name>quicktest</name></property>
+      </activation>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <configuration>
+              <excludes>
+                <exclude>**/*PTest.java</exclude>
+                <exclude>**/*ITest.java</exclude>
+              </excludes>
+            </configuration>
+          </plugin>
+
+          <plugin>
+            <artifactId>maven-antrun-plugin</artifactId>
+            <executions>
+              <execution>
+                <phase>validate</phase>
+                <configuration>
+                  <tasks>
+                    <echo>
+=================================================================
+                   Q U I C K   T E S T S
+                   ---------------------
+                  
+WARNING: Long running integration tests have been disabled!
+=================================================================
+                    </echo>
+                  </tasks>
+                </configuration>
+                <goals>
+                  <goal>run</goal>
+                </goals>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+  </profiles>
+</project>
+

Modified: directory/apacheds/branches/bigbang/pom.xml
URL: http://svn.apache.org/viewvc/directory/apacheds/branches/bigbang/pom.xml?rev=599653&r1=599652&r2=599653&view=diff
==============================================================================
--- directory/apacheds/branches/bigbang/pom.xml (original)
+++ directory/apacheds/branches/bigbang/pom.xml Thu Nov 29 16:17:28 2007
@@ -332,6 +332,7 @@
     <module>core-shared</module>
     <module>core-plugin</module>
     <module>core-unit</module>
+    <module>core-integ</module>
     <module>core-entry</module>
     <module>protocol-shared</module>
     <module>protocol-ntp</module>