You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by az...@apache.org on 2011/01/07 10:16:42 UTC

svn commit: r1056223 - in /axis/axis2/java/core/trunk/modules/kernel: pom.xml test/org/apache/axis2/util/UtilsParseRequestTest.java

Author: azeez
Date: Fri Jan  7 09:16:39 2011
New Revision: 1056223

URL: http://svn.apache.org/viewvc?rev=1056223&view=rev
Log:
Added back one more test which was failing all these days


Modified:
    axis/axis2/java/core/trunk/modules/kernel/pom.xml
    axis/axis2/java/core/trunk/modules/kernel/test/org/apache/axis2/util/UtilsParseRequestTest.java

Modified: axis/axis2/java/core/trunk/modules/kernel/pom.xml
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/pom.xml?rev=1056223&r1=1056222&r2=1056223&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/kernel/pom.xml (original)
+++ axis/axis2/java/core/trunk/modules/kernel/pom.xml Fri Jan  7 09:16:39 2011
@@ -150,8 +150,8 @@
                 <configuration>
                     <excludes>
                         <exclude>**/*Abstract*.java</exclude>
-                        <exclude>**/UtilsParseRequestTest.java</exclude> <!-- Was excluded by **/*Util*.java and currently fails -->
-                        <exclude>**/URLTemplatingUtilTest.java</exclude> <!-- Was excluded by **/*Util*.java -->
+                        <!--<exclude>**/UtilsParseRequestTest.java</exclude> &lt;!&ndash; Was excluded by **/*Util*.java and currently fails &ndash;&gt;-->
+                        <exclude>**/URLTemplatingUtilTest.java</exclude>
                     </excludes>
                     <includes>
                         <include>**/*Test.java</include>

Modified: axis/axis2/java/core/trunk/modules/kernel/test/org/apache/axis2/util/UtilsParseRequestTest.java
URL: http://svn.apache.org/viewvc/axis/axis2/java/core/trunk/modules/kernel/test/org/apache/axis2/util/UtilsParseRequestTest.java?rev=1056223&r1=1056222&r2=1056223&view=diff
==============================================================================
--- axis/axis2/java/core/trunk/modules/kernel/test/org/apache/axis2/util/UtilsParseRequestTest.java (original)
+++ axis/axis2/java/core/trunk/modules/kernel/test/org/apache/axis2/util/UtilsParseRequestTest.java Fri Jan  7 09:16:39 2011
@@ -35,38 +35,38 @@ public class UtilsParseRequestTest exten
         //fail("here");
     }
 
-//    public void testService() throws Exception {
-//        assertParsesTo("http://localhost:8081/services/System",
-//                       "System");
-//    }
+    public void testService() throws Exception {
+        assertParsesTo("http://localhost:8081/axis2/services/System",
+                       "System");
+    }
 
     public void testServiceCalledServices() throws Exception {
-        assertParsesTo("http://localhost:8081/services/services",
+        assertParsesTo("http://localhost:8081/axis2/services/services",
                        "services");
     }
 
     public void testServiceWithQuery() throws Exception {
-        assertParsesTo("http://localhost:8081/services/System?system=ecb2f",
+        assertParsesTo("http://localhost:8081/axis2/services/System?system=ecb2f",
                        "System");
     }
 
     public void testServiceWithDoubleQuery() throws Exception {
-        assertParsesTo("http://localhost:8081/services/System?system=ecb2f?job=3",
+        assertParsesTo("http://localhost:8081/axis2/services/System?system=ecb2f?job=3",
                        "System");
     }
 
     public void testOperation() throws Exception {
-        assertParsesTo("http://localhost:8081/services/System/operation",
+        assertParsesTo("http://localhost:8081/axis2/services/System/operation",
                        "System", "operation");
     }
 
     public void testOperationWithQuery() throws Exception {
-        assertParsesTo("http://localhost:8081/services/System/operation?system=ecb2f",
+        assertParsesTo("http://localhost:8081/axis2/services/System/operation?system=ecb2f",
                        "System", "operation");
     }
 
     public void testOperationServiceCalledServices() throws Exception {
-        assertParsesTo("http://localhost:8081/services/services/operation",
+        assertParsesTo("http://localhost:8081/axis2/services/services/operation",
                        "services", "operation");
     }