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> <!– Was excluded by **/*Util*.java and currently fails –>--> + <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"); }