diff options
author | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-04 07:01:29 +0000 |
---|---|---|
committer | lresende <lresende@13f79535-47bb-0310-9956-ffa450edef68> | 2009-05-04 07:01:29 +0000 |
commit | 4989a995d0a9b221c2f7515c39c6c570db940ae9 (patch) | |
tree | 84af0338726ec65e77b0098177244ef207e0a795 /branches | |
parent | a7aa9b95cdff3fd2b0124a4845c0c1cccc29bafe (diff) |
TUSCANY-2968 - Moving unit tests to iTest to avoid circular references
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@771207 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches')
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/pom.xml | 89 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/bean/TestBean.java (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/bean/TestBean.java) | 0 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/Echo.java (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/Echo.java) | 0 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/EchoBusinessException.java (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/EchoBusinessException.java) | 0 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/EchoComponentImpl.java (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/EchoComponentImpl.java) | 0 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCDataTypeTestCase.java (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCDataTypeTestCase.java) | 0 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCExceptionTestCase.java (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCExceptionTestCase.java) | 0 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCServiceTestCase.java (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCServiceTestCase.java) | 4 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/http-jsonrpc/src/test/resources/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCBinding.composite (renamed from branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/resources/JSONRPCBinding.composite) | 2 | ||||
-rw-r--r-- | branches/sca-java-1.x/itest/pom.xml | 6 | ||||
-rw-r--r-- | branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/pom.xml | 8 |
11 files changed, 96 insertions, 13 deletions
diff --git a/branches/sca-java-1.x/itest/http-jsonrpc/pom.xml b/branches/sca-java-1.x/itest/http-jsonrpc/pom.xml new file mode 100644 index 0000000000..c05d26cc9a --- /dev/null +++ b/branches/sca-java-1.x/itest/http-jsonrpc/pom.xml @@ -0,0 +1,89 @@ +<?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-http-jsonrpc</artifactId> + <name>Apache Tuscany SCA iTest HTTP JSONRPC</name> + + <repositories> + <repository> + <id>apache.incubator</id> + <url>http://people.apache.org/repo/m2-incubating-repository</url> + </repository> + </repositories> + + <dependencies> + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-sca-api</artifactId> + <version>1.6-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-host-embedded</artifactId> + <version>1.6-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-implementation-java-runtime</artifactId> + <version>1.6-SNAPSHOT</version> + <scope>runtime</scope> + </dependency> + + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-binding-http-new-runtime</artifactId> + <version>1.6-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-binding-http-new-jsonrpc-runtime</artifactId> + <version>1.6-SNAPSHOT</version> + </dependency> + + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.5</version> + <scope>test</scope> + </dependency> + + <dependency> + <groupId>httpunit</groupId> + <artifactId>httpunit</artifactId> + <version>1.6.1</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <finalName>${artifactId}</finalName> + </build> +</project> diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/bean/TestBean.java b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/bean/TestBean.java index 4b159fb563..4b159fb563 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/bean/TestBean.java +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/bean/TestBean.java diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/Echo.java b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/Echo.java index ba87f22cf6..ba87f22cf6 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/Echo.java +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/Echo.java diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/EchoBusinessException.java b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/EchoBusinessException.java index bf8c7d2c8a..bf8c7d2c8a 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/EchoBusinessException.java +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/EchoBusinessException.java diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/EchoComponentImpl.java b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/EchoComponentImpl.java index 3e7b848221..3e7b848221 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/echo/EchoComponentImpl.java +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/echo/EchoComponentImpl.java diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCDataTypeTestCase.java b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCDataTypeTestCase.java index 6b59aae03e..6b59aae03e 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCDataTypeTestCase.java +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCDataTypeTestCase.java diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCExceptionTestCase.java b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCExceptionTestCase.java index b652f742b0..b652f742b0 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCExceptionTestCase.java +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCExceptionTestCase.java diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCServiceTestCase.java b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCServiceTestCase.java index b9608115be..a982bb7ff6 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCServiceTestCase.java +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/java/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCServiceTestCase.java @@ -41,13 +41,13 @@ public class JSONRPCServiceTestCase { private static final String SERVICE_PATH = "/EchoService"; - private static final String SERVICE_URL = "http://localhost:8085/SCADomain" + SERVICE_PATH; + private static final String SERVICE_URL = "http://localhost:8085/" + SERVICE_PATH; private SCADomain domain; //@Before public void setUp() throws Exception { - domain = SCADomain.newInstance("JSONRPCBinding.composite"); + domain = SCADomain.newInstance("org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCBinding.composite"); } //@After diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/resources/JSONRPCBinding.composite b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/resources/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCBinding.composite index ddbd9d1fc3..07eb4907f6 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/src/test/resources/JSONRPCBinding.composite +++ b/branches/sca-java-1.x/itest/http-jsonrpc/src/test/resources/org/apache/tuscany/sca/binding/http/wireformat/jsonrpc/JSONRPCBinding.composite @@ -25,7 +25,7 @@ <service name="EchoService" promote="EchoComponent">
<interface.java interface="echo.Echo"/>
- <tuscany:binding.http uri="http://localhost:8085/SCADomain/EchoService">
+ <tuscany:binding.http uri="http://localhost:8085/EchoService">
<tuscany:wireFormat.jsonrpc/>
<tuscany:operationSelector.jsonrpc/>
</tuscany:binding.http>
diff --git a/branches/sca-java-1.x/itest/pom.xml b/branches/sca-java-1.x/itest/pom.xml index 77f603c840..ac9d8bf888 100644 --- a/branches/sca-java-1.x/itest/pom.xml +++ b/branches/sca-java-1.x/itest/pom.xml @@ -75,8 +75,9 @@ <module>contribution</module> <module>contribution-multiple</module> <module>contribution-import-export</module> - <!-- - <module>contribution-classloader</module> --> + <!-- + <module>contribution-classloader</module> + --> <module>contribution-jee-samples</module> <module>contribution-jee</module> <module>contribution-jee-samples</module> @@ -90,6 +91,7 @@ <module>exceptions-cross-binding-ws</module> <module>exceptions-simple-ws</module> <module>extended-api</module> + <module>http-jsonrpc</module> <module>interfaces</module> <!-- <module>interop-soap-client</module> diff --git a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/pom.xml b/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/pom.xml index ce514223d3..7ee8d8bf1f 100644 --- a/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/pom.xml +++ b/branches/sca-java-1.x/modules/binding-http-new-jsonrpc-runtime/pom.xml @@ -106,14 +106,6 @@ <version>4.5</version> <scope>test</scope> </dependency> - - <dependency> - <groupId>httpunit</groupId> - <artifactId>httpunit</artifactId> - <version>1.6.1</version> - <scope>test</scope> - </dependency> - </dependencies> |