You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by an...@apache.org on 2010/04/22 09:39:15 UTC

svn commit: r936633 - in /tuscany/sca-java-2.x/trunk/itest/base: ./ dependencies/ dependencies/src/ dependencies/src/test/ dependencies/src/test/java/ dependencies/src/test/java/org/ dependencies/src/test/java/org/apache/ dependencies/src/test/java/org...

Author: antelder
Date: Thu Apr 22 07:39:15 2010
New Revision: 936633

URL: http://svn.apache.org/viewvc?rev=936633&view=rev
Log:
Add testcase for base jar dependencies

Added:
    tuscany/sca-java-2.x/trunk/itest/base/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/pom.xml
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/
    tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java
    tuscany/sca-java-2.x/trunk/itest/base/pom.xml

Added: tuscany/sca-java-2.x/trunk/itest/base/dependencies/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/base/dependencies/pom.xml?rev=936633&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/base/dependencies/pom.xml (added)
+++ tuscany/sca-java-2.x/trunk/itest/base/dependencies/pom.xml Thu Apr 22 07:39:15 2010
@@ -0,0 +1,59 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * 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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-itest</artifactId>
+        <version>2.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+
+    <artifactId>itest-base-dependencies</artifactId>
+    <name>Apache Tuscany SCA iTest Base Dependencies</name>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.tuscany.sca.shades</groupId>
+            <artifactId>tuscany-base</artifactId>
+            <version>2.0-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+       <plugins>
+          <!-- Copy all the dependencies so the test can verify only the expected ones get dragged in -->
+          <plugin>
+             <groupId>org.apache.maven.plugins</groupId>
+             <artifactId>maven-dependency-plugin</artifactId>
+             <executions>
+                <execution>
+                   <id>copy</id>
+                   <phase>compile</phase>
+                   <goals>
+                      <goal>copy-dependencies</goal>
+                   </goals>
+                </execution>
+             </executions>
+          </plugin>
+       </plugins>
+  </build>
+
+</project>

Added: tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java?rev=936633&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java (added)
+++ tuscany/sca-java-2.x/trunk/itest/base/dependencies/src/test/java/org/apache/tuscany/sca/itest/base/dependencies/ValidateDependenciesTestCase.java Thu Apr 22 07:39:15 2010
@@ -0,0 +1,58 @@
+/*
+ * 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.    
+ */
+
+package org.apache.tuscany.sca.itest.base.dependencies;
+
+import java.io.File;
+
+import junit.framework.Assert;
+
+import org.junit.Test;
+
+/**
+ * Test case for verifying the expected dependencies of the base jar
+ * (Uses maven-dependency-plugin config in the pom.xml to generate the dependency list)
+ *
+ * *** NOTE: this is an API! If the dependencies change the API is changed and users will be broken.
+ *           Don't just change the list without thinking about the consequencies
+ * 
+ * Current required jars are:
+ * asm-3.1.jar
+ * cglib-2.2.jar
+ * commons-logging-api-1.1.jar
+ * hazelcast-1.8.3.jar
+ * hazelcast-client-1.8.3.jar
+ * tuscany-base-2.0-SNAPSHOT.jar
+ * wsdl4j-1.6.2.jar
+ * XmlSchema-1.4.3.jar  
+ * junit-4.8.1.jar (only from this testcase)
+ *
+ */
+public class ValidateDependenciesTestCase {
+
+    @Test
+    public void countDependencies() {
+
+        File dependenciesDir = new File("target/dependency");
+        Assert.assertTrue(dependenciesDir.exists());
+        
+        File[] dependencyFiles = dependenciesDir.listFiles();
+        Assert.assertEquals(9, dependencyFiles.length);
+    }
+}

Added: tuscany/sca-java-2.x/trunk/itest/base/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/sca-java-2.x/trunk/itest/base/pom.xml?rev=936633&view=auto
==============================================================================
--- tuscany/sca-java-2.x/trunk/itest/base/pom.xml (added)
+++ tuscany/sca-java-2.x/trunk/itest/base/pom.xml Thu Apr 22 07:39:15 2010
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    * 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.    
+-->
+<project>
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.tuscany.sca</groupId>
+        <artifactId>tuscany-itest</artifactId>
+        <version>2.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    <packaging>pom</packaging>
+    <artifactId>itest-base</artifactId>
+    <name>Apache Tuscany SCA iTest Base</name>
+    
+  <modules>
+    <module>dependencies</module>
+  </modules>
+
+</project>