summaryrefslogtreecommitdiffstats
path: root/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test
diff options
context:
space:
mode:
authorantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-04-22 13:33:48 +0000
committerantelder <antelder@13f79535-47bb-0310-9956-ffa450edef68>2009-04-22 13:33:48 +0000
commitb8b4f2b987c6ceb8ecad061f4d505f10c7fc8354 (patch)
treee541b1fdfe6c7fa4450905684fa13ee50733ddae /branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test
parentb84f4321e4abbabffef7a46499e0e3468fef0c58 (diff)
New itest for jee external ear's
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@767515 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java25
-rw-r--r--branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java52
-rw-r--r--branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java44
3 files changed, 121 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java b/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java
new file mode 100644
index 0000000000..c1eae6a64d
--- /dev/null
+++ b/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/Helloworld.java
@@ -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);
+}
diff --git a/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java b/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java
new file mode 100644
index 0000000000..d886a0fa78
--- /dev/null
+++ b/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/JeeTestCaseFIXME.java
@@ -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() {
+ }
+}
diff --git a/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java b/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java
new file mode 100644
index 0000000000..7f7cff8810
--- /dev/null
+++ b/branches/sca-java-1.x/itest/implementation-jee-external-ear/src/test/java/itest/MockImplementationProviderFactory.java
@@ -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;
+ }
+
+}