You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ja...@apache.org on 2009/09/23 16:18:09 UTC

svn commit: r818115 - /camel/trunk/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java

Author: janstey
Date: Wed Sep 23 14:18:09 2009
New Revision: 818115

URL: http://svn.apache.org/viewvc?rev=818115&view=rev
Log:
CAMEL-2039 - add test for multi user chats

Thanks again to Stan Lewis for this!


Added:
    camel/trunk/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java

Added: camel/trunk/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java?rev=818115&view=auto
==============================================================================
--- camel/trunk/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java (added)
+++ camel/trunk/components/camel-xmpp/src/test/java/org/apache/camel/component/xmpp/XmppMultiUserChatTest.java Wed Sep 23 14:18:09 2009
@@ -0,0 +1,72 @@
+/**
+ * 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.xmpp;
+
+import org.apache.camel.builder.RouteBuilder;
+import org.apache.camel.component.mock.MockEndpoint;
+import org.apache.camel.test.junit4.CamelTestSupport;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.junit.Ignore;
+import org.junit.Test;
+
+/**
+ * @version $Revision: 817619 $
+ */
+public class XmppMultiUserChatTest extends CamelTestSupport {
+    private static final transient Log LOG = LogFactory.getLog(XmppRouteChatTest.class);
+    protected MockEndpoint consumerEndpoint;
+    protected MockEndpoint producerEndpoint;
+    protected String body1 = "the first message";
+    protected String body2 = "the second message";
+
+    @Ignore
+    @Test
+    public void testXmppChat() throws Exception {
+        // TODO: requires online against jabber. Test this manually
+        consumerEndpoint = (MockEndpoint)context.getEndpoint("mock:out");
+        consumerEndpoint.expectedBodiesReceived(body1, body2);
+
+        //will send chat messages to the room
+        template.sendBody("direct:toProducer", body1);
+        template.sendBody("direct:toProducer", body2);
+
+        consumerEndpoint.assertIsSatisfied();
+    }
+
+    protected RouteBuilder createRouteBuilder() throws Exception {
+        return new RouteBuilder() {
+            public void configure() throws Exception {
+
+                from("direct:toProducer")
+                    .to(getProducerUri());
+
+                from(getConsumerUri())
+                    .to("mock:out");
+            }
+        };
+    }
+
+    protected String getProducerUri() {
+        return "xmpp://jabber.org:5222?room=camel-test&user=camel_producer&password=secret&serviceName=jabber.org";
+    }
+    
+    protected String getConsumerUri() {
+        return "xmpp://jabber.org:5222?room=camel-test&user=camel_consumer&password=secret&serviceName=jabber.org";
+    }
+
+}