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 2009/04/22 15:33:49 UTC

svn commit: r767515 - in /tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear: ./ src/ src/main/ src/main/java/ src/main/resources/ src/main/resources/META-INF/ src/main/resources/META-INF/services/ src/test/ src/test/java/ src/test/jav...

Author: antelder
Date: Wed Apr 22 13:33:48 2009
New Revision: 767515

URL: http://svn.apache.org/viewvc?rev=767515&view=rev
Log:
New itest for jee external ear's

Added:
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/   (with props)
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/pom.xml
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/java/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/META-INF/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/META-INF/services/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/test.composite
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java
    tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java

Propchange: tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Wed Apr 22 13:33:48 2009
@@ -0,0 +1 @@
+\Tuscany\Etc\svn-ignores.txt

Added: tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/pom.xml?rev=767515&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/pom.xml (added)
+++ tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/pom.xml Wed Apr 22 13:33:48 2009
@@ -0,0 +1,84 @@
+<?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>1.6-SNAPSHOT</version>
+        <relativePath>../../pom.xml</relativePath>
+    </parent>
+    <artifactId>itest-implementation-jee-external-ear</artifactId>
+    <name>Apache Tuscany SCA iTest Implementation JEE External EAR</name>
+
+    <dependencies>
+        
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-implementation-jee</artifactId>
+            <version>1.6-SNAPSHOT</version>
+            <scope>runtime</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-assembly</artifactId>
+            <version>1.6-SNAPSHOT</version>
+        </dependency>
+ 
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-assembly-xml</artifactId>
+            <version>1.6-SNAPSHOT</version>
+        </dependency>
+ 
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-contribution-jee</artifactId>
+            <version>1.6-SNAPSHOT</version>
+        </dependency>
+ 
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-contribution-jee-impl</artifactId>
+            <version>1.6-SNAPSHOT</version>
+            <scope>test</scope> 
+        </dependency>
+
+        <dependency>
+            <groupId>org.apache.tuscany.sca</groupId>
+            <artifactId>tuscany-host-embedded</artifactId>
+            <version>1.6-SNAPSHOT</version>
+            <scope>test</scope> 
+        </dependency>
+
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>4.2</version>
+            <scope>test</scope>
+        </dependency>
+
+    </dependencies>
+
+    <build>
+       <finalName>${artifactId}</finalName>
+    </build>
+</project>

Added: tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory?rev=767515&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory (added)
+++ tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/META-INF/services/org.apache.tuscany.sca.provider.ImplementationProviderFactory Wed Apr 22 13:33:48 2009
@@ -0,0 +1,19 @@
+# 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. 
+
+# Implementation class for the implementation extension
+itest.MockImplementationProviderFactory;model=org.apache.tuscany.sca.implementation.jee.JEEImplementation

Added: tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/test.composite
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/test.composite?rev=767515&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/test.composite (added)
+++ tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/main/resources/test.composite Wed Apr 22 13:33:48 2009
@@ -0,0 +1,31 @@
+<?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.    
+-->
+
+<!-- $Rev: 685124 $ $Date: 2008-08-12 12:46:19 +0100 (Tue, 12 Aug 2008) $ -->
+
+<composite xmlns="http://www.osoa.org/xmlns/sca/1.0"
+	targetNamespace="http://sample/jee"
+	xmlns:sc="http://sample/composite"
+	name="TestJEE">
+
+    <component name="TestJEE">
+        <implementation.jee archive="../contribution-jee/src/test/resources/repository/helloworld-ejb.ear"/>
+    </component>
+</composite>

Added: tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java?rev=767515&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java (added)
+++ tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java Wed Apr 22 13:33:48 2009
@@ -0,0 +1,25 @@
+/*
+ * 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 itest;
+
+public interface Helloworld {
+
+    String getGreetings(String name);
+}

Added: tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java?rev=767515&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java (added)
+++ tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java Wed Apr 22 13:33:48 2009
@@ -0,0 +1,52 @@
+/*
+ * 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 itest;
+
+import static org.junit.Assert.assertEquals;
+
+import org.apache.tuscany.sca.host.embedded.SCADomain;
+import org.junit.After;
+import org.junit.Before;
+import org.junit.Test;
+
+
+/**
+ */
+public class JeeTestCaseFIXME {
+
+
+    @Before
+    public void init() {
+    }
+
+    @Test
+    public void testSayHello() throws Exception {
+        SCADomain scaDomain = SCADomain.newInstance("http://localhost", "/", "test.composite");
+
+        Helloworld service = scaDomain.getService(Helloworld.class, "TestJEE/HelloworldServiceBean_HelloworldService");
+
+        //assertEquals("hello beate", service.getGreetings("beate"));
+
+        scaDomain.close();
+    }
+
+    @After
+    public void end() {
+    }
+}

Added: tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java?rev=767515&view=auto
==============================================================================
--- tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java (added)
+++ tuscany/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java Wed Apr 22 13:33:48 2009
@@ -0,0 +1,44 @@
+/*
+ * 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 itest;
+
+import org.apache.tuscany.sca.core.ExtensionPointRegistry;
+import org.apache.tuscany.sca.implementation.jee.JEEImplementation;
+import org.apache.tuscany.sca.provider.ImplementationProvider;
+import org.apache.tuscany.sca.provider.ImplementationProviderFactory;
+import org.apache.tuscany.sca.runtime.RuntimeComponent;
+
+public class MockImplementationProviderFactory implements ImplementationProviderFactory<JEEImplementation>{
+
+    public MockImplementationProviderFactory(ExtensionPointRegistry extensionPoints) {
+        
+    }
+
+    
+    public ImplementationProvider createImplementationProvider(RuntimeComponent component,
+                                                               JEEImplementation Implementation) {
+        return null;
+    }
+
+    public Class<JEEImplementation> getModelType() {
+        return null;
+    }
+
+}