You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2009/08/24 15:22:27 UTC

svn commit: r807200 - /camel/trunk/components/camel-irc/src/test/java/org/apache/camel/component/irc/IrcMultiChannelRouteTest.java

Author: hadrian
Date: Mon Aug 24 13:22:27 2009
New Revision: 807200

URL: http://svn.apache.org/viewvc?rev=807200&view=rev
Log:
CAMEL-1908. Applied patch for multi channel routes with thanks to Stan

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

Added: camel/trunk/components/camel-irc/src/test/java/org/apache/camel/component/irc/IrcMultiChannelRouteTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-irc/src/test/java/org/apache/camel/component/irc/IrcMultiChannelRouteTest.java?rev=807200&view=auto
==============================================================================
--- camel/trunk/components/camel-irc/src/test/java/org/apache/camel/component/irc/IrcMultiChannelRouteTest.java (added)
+++ camel/trunk/components/camel-irc/src/test/java/org/apache/camel/component/irc/IrcMultiChannelRouteTest.java Mon Aug 24 13:22:27 2009
@@ -0,0 +1,91 @@
+/**
+ * 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.irc;
+
+import java.util.List;
+
+import org.apache.camel.Exchange;
+import org.apache.camel.Processor;
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.junit.Test;
+
+/**
+ * @version $Revision$
+ */
+public class IrcMultiChannelRouteTest extends CamelTestSupport {
+    protected MockEndpoint resultEndpoint;
+    protected String body1 = "Message One";
+    protected String body2 = "Message Two";
+    protected String body3 = "Message Three";
+    private boolean sentMessages;    
+
+    @Test
+    public void testIrcMessages() throws Exception {
+        resultEndpoint = (MockEndpoint) context.getEndpoint("mock:result");
+        //consumer is going to receive two copies of body3
+        resultEndpoint.expectedBodiesReceived(body1, body2, body3, body3);
+
+        resultEndpoint.assertIsSatisfied();
+
+        List<Exchange> list = resultEndpoint.getReceivedExchanges();
+        for (Exchange exchange : list) {
+            log.info("Received exchange: " + exchange + " headers: " + exchange.getIn().getHeaders());
+        }
+    }   
+    
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            public void configure() throws Exception {
+                from(fromUri()).
+                        choice().
+                        when(header(IrcConstants.IRC_MESSAGE_TYPE).isEqualTo("PRIVMSG")).to("mock:result").
+                        when(header(IrcConstants.IRC_MESSAGE_TYPE).isEqualTo("JOIN")).to("seda:consumerJoined");
+
+                from("seda:consumerJoined").process(new Processor() {
+                    public void process(Exchange exchange) throws Exception {
+                        sendMessages();
+                    }
+                });
+            }
+        };
+    }
+
+    protected String sendUri() {
+        return "irc://camel-prd@irc.codehaus.org:6667?nickname=camel-prd&channels=#camel-test1,#camel-test2";
+    }
+
+    protected String fromUri() {
+        return "irc://camel-con@irc.codehaus.org:6667?nickname=camel-con&channels=#camel-test1,#camel-test2";
+    }    
+    
+    /**
+     * Lets send messages once the consumer has joined
+     */
+    protected void sendMessages() {
+        if (!sentMessages) {
+            sentMessages = true;
+
+            // now the consumer has joined, lets send some messages
+
+            template.sendBodyAndHeader(sendUri(), body1, "irc.target", "#camel-test1");
+            template.sendBodyAndHeader(sendUri(), body2, "irc.target", "#camel-test2");
+            template.sendBody(sendUri(), body3);
+        }
+    }
+}

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

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