You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2013/12/20 14:56:40 UTC

svn commit: r1552676 - in /cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs: JAXRS20ClientServerBookTest.java JAXRSAsyncClientTest.java

Author: sergeyb
Date: Fri Dec 20 13:56:40 2013
New Revision: 1552676

URL: http://svn.apache.org/r1552676
Log:
Reenabling all but negative async tests

Modified:
    cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRS20ClientServerBookTest.java
    cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java

Modified: cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRS20ClientServerBookTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRS20ClientServerBookTest.java?rev=1552676&r1=1552675&r2=1552676&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRS20ClientServerBookTest.java (original)
+++ cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRS20ClientServerBookTest.java Fri Dec 20 13:56:40 2013
@@ -59,7 +59,6 @@ import org.apache.cxf.testutil.common.Ab
 
 import org.junit.Before;
 import org.junit.BeforeClass;
-import org.junit.Ignore;
 import org.junit.Test;
 
 public class JAXRS20ClientServerBookTest extends AbstractBusClientServerTestBase {
@@ -159,14 +158,12 @@ public class JAXRS20ClientServerBookTest
     }
     
     @Test
-    @Ignore
     public void testGetBookAsync() throws Exception {
         String address = "http://localhost:" + PORT + "/bookstore/bookheaders/simple";
         doTestGetBookAsync(address, false);
     }
     
     @Test
-    @Ignore
     public void testGetBookAsyncNoCallback() throws Exception {
         String address = "http://localhost:" + PORT + "/bookstore/bookheaders/simple";
         WebClient wc = createWebClient(address);
@@ -177,14 +174,12 @@ public class JAXRS20ClientServerBookTest
     }
     
     @Test
-    @Ignore
     public void testGetBookAsyncResponse() throws Exception {
         String address = "http://localhost:" + PORT + "/bookstore/bookheaders/simple";
         doTestGetBookAsyncResponse(address, false);
     }
     
     @Test
-    @Ignore
     public void testGetBookAsyncInvoker() throws Exception {
         String address = "http://localhost:" + PORT + "/bookstore/bookheaders/simple";
         doTestGetBookAsync(address, true);
@@ -231,14 +226,12 @@ public class JAXRS20ClientServerBookTest
         doTestGetBook(address, false);
     }
     @Test
-    @Ignore
     public void testGetBookWrongPathAsync() throws Exception {
         String address = "http://localhost:" + PORT + "/wrongpath";
         doTestGetBookAsync(address, false);
     }
     
     @Test
-    @Ignore
     public void testPostCollectionGenericEntity() throws Exception {
         
         String endpointAddress =
@@ -259,7 +252,6 @@ public class JAXRS20ClientServerBookTest
     }
     
     @Test
-    @Ignore
     public void testPostCollectionGenericEntityAsEntity() throws Exception {
         
         String endpointAddress =
@@ -315,7 +307,6 @@ public class JAXRS20ClientServerBookTest
     }
     
     @Test
-    @Ignore
     public void testPostGetCollectionGenericEntityAndType() throws Exception {
         
         String endpointAddress =
@@ -345,7 +336,6 @@ public class JAXRS20ClientServerBookTest
     }
     
     @Test
-    @Ignore
     public void testPostGetCollectionGenericEntityAndType2() throws Exception {
         
         String endpointAddress =
@@ -573,7 +563,6 @@ public class JAXRS20ClientServerBookTest
     }
     
     @Test
-    @Ignore
     public void testPostBookAsync() throws Exception {
         String address = "http://localhost:" + PORT + "/bookstore/bookheaders/simple/async";
         WebClient wc = createWebClientPost(address);
@@ -583,7 +572,6 @@ public class JAXRS20ClientServerBookTest
     }
     
     @Test
-    @Ignore
     public void testPostBookAsyncHandler() throws Exception {
         String address = "http://localhost:" + PORT + "/bookstore/bookheaders/simple/async";
         doTestPostBookAsyncHandler(address);

Modified: cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java
URL: http://svn.apache.org/viewvc/cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java?rev=1552676&r1=1552675&r2=1552676&view=diff
==============================================================================
--- cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java (original)
+++ cxf/trunk/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java Fri Dec 20 13:56:40 2013
@@ -91,7 +91,6 @@ public class JAXRSAsyncClientTest extend
     }
     
     @Test
-    @Ignore
     public void testRetrieveBookCustomMethodAsync() throws Exception {
         String address = "http://localhost:" + PORT + "/bookstore/retrieve";
         WebClient wc = WebClient.create(address);