You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by wt...@apache.org on 2010/12/09 19:56:18 UTC

svn commit: r1044086 - /camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java

Author: wtam
Date: Thu Dec  9 18:56:17 2010
New Revision: 1044086

URL: http://svn.apache.org/viewvc?rev=1044086&view=rev
Log:
add a test for mixed POJO and PAYLOAD mode in the same route

Added:
    camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java   (with props)

Added: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java?rev=1044086&view=auto
==============================================================================
--- camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java (added)
+++ camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java Thu Dec  9 18:56:17 2010
@@ -0,0 +1,153 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.camel.component.cxf;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.w3c.dom.Element;
+
+import org.apache.camel.CamelContext;
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.impl.DefaultCamelContext;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.apache.cxf.binding.soap.SoapHeader;
+import org.apache.cxf.endpoint.Server;
+import org.apache.cxf.frontend.ClientFactoryBean;
+import org.apache.cxf.frontend.ClientProxyFactoryBean;
+import org.apache.cxf.frontend.ServerFactoryBean;
+import org.apache.cxf.helpers.XMLUtils;
+
+import org.junit.AfterClass;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+public class CxfMixedModeRouterTest extends CamelTestSupport {    
+    protected static Server server;
+    protected static final String ROUTER_ADDRESS = "http://localhost:9000/router";
+    protected static final String SERVICE_ADDRESS = "http://localhost:9002/helloworld";
+    protected static final String SERVICE_CLASS = "serviceClass=org.apache.camel.component.cxf.HelloService";
+
+    private String routerEndpointURI = "cxf://" + ROUTER_ADDRESS + "?" + SERVICE_CLASS + "&dataFormat=PAYLOAD";
+    private String serviceEndpointURI = "cxf://" + SERVICE_ADDRESS + "?" + SERVICE_CLASS + "&dataFormat=POJO";
+    
+    @BeforeClass
+    public static void startService() {       
+        //start a service
+        ServerFactoryBean svrBean = new ServerFactoryBean();
+    
+        svrBean.setAddress(SERVICE_ADDRESS);
+        svrBean.setServiceClass(HelloService.class);
+        svrBean.setServiceBean(new HelloServiceImpl());
+    
+        server = svrBean.create();
+        server.start();
+    }
+    
+    @AfterClass
+    public static void shutdownService() {
+        if (server != null) {
+            server.stop();
+        }
+    }
+    
+    @Override
+    protected RouteBuilder createRouteBuilder() {
+        return new RouteBuilder() {
+            public void configure() {
+                errorHandler(noErrorHandler());
+                from(routerEndpointURI).process(new Processor() {
+
+                    // convert request message
+                    public void process(Exchange exchange) throws Exception {
+                        CxfPayload<?> message =  exchange.getIn().getBody(CxfPayload.class);
+
+                        List<String> params = new ArrayList<String>();
+
+                        if (message != null) {
+                            // convert CxfPayload to list of objects any way you like
+                            Element element = message.getBody().get(0);
+                            params.add(element.getFirstChild().getTextContent());
+                        }
+                            
+                        // replace the body
+                        exchange.getIn().setBody(params);
+                        
+                        // if you need to change the operation name
+                        //exchange.getIn().setHeader(CxfConstants.OPERATION_NAME, GREET_ME_OPERATION);      
+                        
+                    }
+                     
+                }).to(serviceEndpointURI).process(new Processor() {
+
+                    // convert response to CxfPayload
+                    public void process(Exchange exchange) throws Exception {
+
+                        List<?>list = exchange.getIn().getBody(List.class);
+                        CxfPayload<SoapHeader> message = null;
+                        if (list != null) {
+                            // convert the list of objects to CxfPayload any way you like
+                            
+                            String s = "<?xml version=\"1.0\" encoding=\"utf-8\"?>" 
+                                + "<ns1:echoResponse xmlns:ns1=\"http://cxf.component.camel.apache.org/\">" 
+                                + "<return xmlns=\"http://cxf.component.camel.apache.org/\">" 
+                                + list.get(0) 
+                                +"</return></ns1:echoResponse>";
+                            List<Element> body = new ArrayList<Element>();
+                            body.add(XMLUtils.parse(s).getDocumentElement());
+
+                            message = new CxfPayload<SoapHeader>(new ArrayList<SoapHeader>(), body);
+                        }
+                        
+                        exchange.getIn().setBody(message);
+                        
+                        // we probably should be smarter in detecting data format based on message body
+                        // but for now we need to explicitly reset the mode (see CAMEL-3420)
+                        exchange.setProperty(CxfConstants.DATA_FORMAT_PROPERTY, DataFormat.PAYLOAD);   
+
+                    }
+                });
+            }
+        };
+    }
+
+    protected CamelContext createCamelContext() throws Exception {
+        return new DefaultCamelContext();
+    }
+    
+    protected HelloService getCXFClient() throws Exception {
+        ClientProxyFactoryBean proxyFactory = new ClientProxyFactoryBean();
+        ClientFactoryBean clientBean = proxyFactory.getClientFactoryBean();
+        clientBean.setAddress(ROUTER_ADDRESS);
+        clientBean.setServiceClass(HelloService.class); 
+        
+        HelloService client = (HelloService) proxyFactory.create();
+        return client;
+    }
+
+    @Test
+    public void testInvokingServiceFromCXFClient() throws Exception {        
+        HelloService client = getCXFClient();
+        String result = client.echo("hello world");
+        assertEquals("we should get the right answer from router", result, "echo hello world");
+
+    }
+
+}

Propchange: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: camel/trunk/components/camel-cxf/src/test/java/org/apache/camel/component/cxf/CxfMixedModeRouterTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date