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 2008/01/04 22:46:47 UTC

svn commit: r609018 - /incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/ws/policy/RMPolicyTest.java

Author: dkulp
Date: Fri Jan  4 13:46:35 2008
New Revision: 609018

URL: http://svn.apache.org/viewvc?rev=609018&view=rev
Log:
Fix RMPolicyTest

Modified:
    incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/ws/policy/RMPolicyTest.java

Modified: incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/ws/policy/RMPolicyTest.java
URL: http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/ws/policy/RMPolicyTest.java?rev=609018&r1=609017&r2=609018&view=diff
==============================================================================
--- incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/ws/policy/RMPolicyTest.java (original)
+++ incubator/cxf/branches/2.0.x-fixes/systests/src/test/java/org/apache/cxf/systest/ws/policy/RMPolicyTest.java Fri Jan  4 13:46:35 2008
@@ -53,12 +53,17 @@
 public class RMPolicyTest extends AbstractBusClientServerTestBase {
 
     private static final Logger LOG = LogUtils.getLogger(RMPolicyTest.class);
-    private static final String GREETMEONEWAY_ACTION = null;
-    private static final String GREETME_ACTION = null;
-    private static final String GREETME_RESPONSE_ACTION = null;
-    private static final String PINGME_ACTION = null;
-    private static final String PINGME_RESPONSE_ACTION = 
-        Names.WSA_DEFAULT_FAULT_ACTION;
+    private static final String GREETMEONEWAY_ACTION 
+        = "http://cxf.apache.org/greeter_control/Greeter/greetMeOneWayRequest";
+    private static final String GREETME_ACTION
+        = "http://cxf.apache.org/greeter_control/Greeter/greetMeRequest";
+    private static final String GREETME_RESPONSE_ACTION
+        = "http://cxf.apache.org/greeter_control/Greeter/greetMeResponse";
+    private static final String PINGME_ACTION = "http://cxf.apache.org/greeter_control/Greeter/pingMeRequest";
+    private static final String PINGME_RESPONSE_ACTION
+        = "http://cxf.apache.org/greeter_control/Greeter/pingMeResponse";
+    private static final String GREETER_FAULT_ACTION 
+        = "http://cxf.apache.org/greeter_control/Greeter/Fault/faultDetail";
 
     public static class Server extends AbstractBusTestServerBase {
     
@@ -160,8 +165,8 @@
         expectedActions = new String[] {
             RMConstants.getCreateSequenceResponseAction(),
             GREETME_RESPONSE_ACTION,
-            GREETME_RESPONSE_ACTION,
-            PINGME_RESPONSE_ACTION
+            PINGME_RESPONSE_ACTION,
+            GREETER_FAULT_ACTION
         };
         mf.verifyActions(expectedActions, false);
         mf.verifyMessageNumbers(new String[] {null, "1", "2", "3"}, false);