You are viewing a plain text version of this content. The canonical link for it is here.
Posted to nuvem-commits@incubator.apache.org by lr...@apache.org on 2010/11/25 22:23:30 UTC

svn commit: r1039202 - in /incubator/nuvem/trunk/store-standalone/src/test: java/store/StoreTestCase.java resources/store-client.composite

Author: lresende
Date: Thu Nov 25 22:23:30 2010
New Revision: 1039202

URL: http://svn.apache.org/viewvc?rev=1039202&view=rev
Log:
Changing test cases to run on port 8085 instead of 8080

Modified:
    incubator/nuvem/trunk/store-standalone/src/test/java/store/StoreTestCase.java
    incubator/nuvem/trunk/store-standalone/src/test/resources/store-client.composite

Modified: incubator/nuvem/trunk/store-standalone/src/test/java/store/StoreTestCase.java
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/store-standalone/src/test/java/store/StoreTestCase.java?rev=1039202&r1=1039201&r2=1039202&view=diff
==============================================================================
--- incubator/nuvem/trunk/store-standalone/src/test/java/store/StoreTestCase.java (original)
+++ incubator/nuvem/trunk/store-standalone/src/test/java/store/StoreTestCase.java Thu Nov 25 22:23:30 2010
@@ -45,7 +45,7 @@ import com.gargoylesoftware.htmlunit.htm
 
 /**
  * Test the store-merger.
- * 
+ *
  * @version $Rev$ $Date$
  */
 public class StoreTestCase {
@@ -98,7 +98,7 @@ public class StoreTestCase {
         // webClient.waitForBackgroundJavaScriptStartingBefore(100000);
         webClient.setAjaxController(new NicelyResynchronizingAjaxController());
 
-        HtmlPage page = (HtmlPage)webClient.getPage("http://localhost:8080/store/store.html");
+        HtmlPage page = (HtmlPage)webClient.getPage("http://localhost:8085/store/store.html");
 
         HtmlForm form = (HtmlForm)page.getFormByName("catalogForm");
 

Modified: incubator/nuvem/trunk/store-standalone/src/test/resources/store-client.composite
URL: http://svn.apache.org/viewvc/incubator/nuvem/trunk/store-standalone/src/test/resources/store-client.composite?rev=1039202&r1=1039201&r2=1039202&view=diff
==============================================================================
--- incubator/nuvem/trunk/store-standalone/src/test/resources/store-client.composite (original)
+++ incubator/nuvem/trunk/store-standalone/src/test/resources/store-client.composite Thu Nov 25 22:23:30 2010
@@ -7,31 +7,31 @@
  * 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.    
+ * under the License.
 -->
 <composite	xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
 		xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
 		targetNamespace="http://store"
 		name="store-client">
-		
+
     <component name="StoreClient">
         <implementation.java class="client.ShopperImpl"/>
 		<reference name="catalog">
-		 	<tuscany:binding.jsonrpc uri="http://localhost:8080/Catalog"/>
+		 	<tuscany:binding.jsonrpc uri="http://localhost:8085/Catalog"/>
 		 </reference>
 		 <reference name="shoppingCart">
-		 	<tuscany:binding.atom uri="http://localhost:8080/ShoppingCart/Cart"/>
+		 	<tuscany:binding.atom uri="http://localhost:8085/ShoppingCart/Cart"/>
 		 </reference>
 		 <reference name="shoppingTotal">
-		 	<tuscany:binding.jsonrpc uri="http://localhost:8080/ShoppingCart/Total"/>
+		 	<tuscany:binding.jsonrpc uri="http://localhost:8085/ShoppingCart/Total"/>
 		 </reference>
     </component>