You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2010/01/14 20:36:38 UTC

svn commit: r899370 - in /cxf/branches/2.2.x-fixes: ./ systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java

Author: dkulp
Date: Thu Jan 14 19:36:37 2010
New Revision: 899370

URL: http://svn.apache.org/viewvc?rev=899370&view=rev
Log:
Merged revisions 898520 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r898520 | dkulp | 2010-01-12 16:16:49 -0500 (Tue, 12 Jan 2010) | 3 lines
  
  Remove an Ignored test that I have no idea why it was ignored (log not
  helpfull, my own fault), but the test also doesn't assert anything or
  check any output or anything so it's a pretty useless test.
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java

Propchange: cxf/branches/2.2.x-fixes/
            ('svn:mergeinfo' removed)

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java?rev=899370&r1=899369&r2=899370&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java (original)
+++ cxf/branches/2.2.x-fixes/systests/ws-specs/src/test/java/org/apache/cxf/systest/ws/rm/SequenceTest.java Thu Jan 14 19:36:37 2010
@@ -143,50 +143,6 @@
         Thread.sleep(100);
     }
 
-    /** 
-      * Server is configured with RM interceptors, client without;
-      * Addressing interceptors are installed on either side.
-      * The (oneway) application request should be dispatched straight to the
-      * implementor.
-      */
-    @Test
-    @Ignore
-    public void testRMServerPlainClient() throws Exception {
-
-        SpringBusFactory bf = new SpringBusFactory();
-        
-        controlBus = bf.createBus();
-        BusFactory.setDefaultBus(controlBus);
-
-        ControlService cs = new ControlService();
-        control = cs.getControlPort();
-
-        assertTrue("Failed to start greeter",
-            control.startGreeter("org/apache/cxf/systest/ws/rm/rminterceptors.xml"));
-
-        greeterBus = bf.createBus("org/apache/cxf/systest/ws/rm/rminterceptors.xml");
-        BusFactory.setDefaultBus(greeterBus);
-        removeRMInterceptors(greeterBus.getOutInterceptors());
-        removeRMInterceptors(greeterBus.getOutFaultInterceptors());
-        removeRMInterceptors(greeterBus.getInInterceptors());
-        removeRMInterceptors(greeterBus.getInFaultInterceptors());
-        LOG.fine("Initialised greeter bus with addressing but without RM interceptors");
-
-        outRecorder = new OutMessageRecorder();
-        greeterBus.getOutInterceptors().add(outRecorder);
-        inRecorder = new InMessageRecorder();
-        greeterBus.getInInterceptors().add(inRecorder);
-
-        GreeterService gs = new GreeterService();
-        greeter = gs.getGreeterPort();
-        LOG.fine("Created greeter client.");
-
-        ConnectionHelper.setKeepAliveConnection(greeter, true);
-
-        greeter.greetMeOneWay("once");
-
-    }
-
     // --- tests ---
     @Test
     public void testOnewayAnonymousAcks() throws Exception {