added a little test program showing how to browse ActiveMQ queues using Camel BrowsableEndpoints http://activemq.apache.org/camel/browsableendpoint.html

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@641756 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
James Strachan 2008-03-27 09:47:45 +00:00
parent 3cbee72a9c
commit e35c115e03
3 changed files with 114 additions and 0 deletions

View File

@ -218,6 +218,14 @@
<scope>test</scope>
</dependency>
<!-- Camel UI testing -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-swing</artifactId>
<version>${camel-version}</version>
<scope>test</scope>
</dependency>
<!-- database testing -->
<dependency>
<groupId>commons-collections</groupId>

View File

@ -0,0 +1,69 @@
/**
*
* 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.activemq.camel.component;
import org.apache.activemq.camel.SetHeaderTest;
import org.apache.camel.CamelContext;
import org.apache.camel.CamelTemplate;
import org.apache.camel.component.uface.swing.SwingBrowser;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit38.AbstractJUnit38SpringContextTests;
/**
* @version $Revision: 1.1 $
*/
@ContextConfiguration
public class BrowseQueuesInUFace extends AbstractJUnit38SpringContextTests {
private static final transient Log LOG = LogFactory.getLog(SetHeaderTest.class);
@Autowired
protected CamelContext camelContext;
@Autowired
protected CamelTemplate template;
protected String[] queueNames = {"Sample.A", "Sample.B", "Sample.C"};
public void testBrowseQueues() throws Exception {
// lets send a bunch of messages
for (int i = 0; i < queueNames.length; i++) {
String queueName = queueNames[i];
sendMessagesToQueue(queueName, i);
}
Thread.sleep(2000);
// now lets spin up a browser
SwingBrowser browser = new SwingBrowser((DefaultCamelContext) camelContext);
browser.run();
// now lets sleep a while...
Thread.sleep(50000);
}
protected void sendMessagesToQueue(String queueName, int index) {
String uri = "activemq:" + queueName;
int count = index * 2 + 2;
for (int i = 0; i < count; i++) {
Object body = "Message: " + i;
template.sendBodyAndHeader(uri, body, "counter", i);
}
System.out.println("Sent " + count + " messages to: " + uri);
}
}

View File

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
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.
-->
<!-- START SNIPPET: example -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://activemq.apache.org/camel/schema/spring http://activemq.apache.org/camel/schema/spring/camel-spring.xsd
">
<camelContext xmlns="http://activemq.apache.org/camel/schema/spring">
<template id="camelTemplate"/>
</camelContext>
<bean id="activemq" class="org.apache.activemq.camel.component.ActiveMQComponent">
<property name="exposeAllQueues" value="true"/>
<property name="brokerURL" value="vm://localhost?broker.persistent=false"/>
</bean>
</beans>
<!-- END SNIPPET: example -->