I've attempted to create a unit test that creates a local VM Qpid broker then sends a simple message via Camel. The test always fails with:
WARN org.apache.qpid.server.security.auth.sasl.UsernamePasswordInitialiser.getServerFactoryClassForJCARegistration():54 - we need a server that will correctly convert the incomming plain text for comparison to file.
DEBUG org.apache.camel.component.jms.JmsConfiguration$CamelJmsTemplate.execute():464 - Executing callback on JMS Session: org.apache.qpid.client.AMQSession_0_8@5426807f
ERROR org.apache.qpid.client.state.AMQStateManager.error():158 - No Waiters for error saving as last error:Attempt to redeclare exchange: null of type direct to null.
ERROR org.apache.qpid.client.AMQConnection.exceptionReceived():1294 - Throwable Received but no listener set: org.apache.qpid.client.AMQAuthenticationException: Attempt to redeclare exchange: null of type direct to null. [error code 530: not allowed]
The Qpid broker is created using:
PropertiesConfiguration properties = new PropertiesConfiguration();
properties.addProperty("virtualhosts.virtualhost.name", "test");
properties.addProperty("security.principal-databases.principal-database.name", "testPasswordFile");
properties.addProperty("security.principal-databases.principal-database.class", "org.apache.qpid.server.security.auth.database.PropertiesPrincipalDatabase");
ServerConfiguration config = new ServerConfiguration(properties);
ApplicationRegistry.initialise(new ApplicationRegistry(config) {
@Override
protected void createDatabaseManager(ServerConfiguration configuration) throws Exception {
Properties users = new Properties();
users.put("guest","guest");
users.put("admin","admin");
_databaseManager = new PropertiesPrincipalDatabaseManager("testPasswordFile", users);
}
});
ApplicationRegistry.getInstance();
TransportConnection.createVMBroker(ApplicationRegistry.DEFAULT_INSTANCE);
The unit test itself is:
String expectedBody = "Hello there!";
stepThree.expectedBodiesReceived(expectedBody);
stepThree.message(0).header("cheese").isEqualTo(123);
template.sendBodyAndHeader("amqp:queue:test.a", expectedBody, "cheese", 123);
stepThree.assertIsSatisfied();
where "stepThree" is a MockEndpoint injected at runtime. The Camel route is only:
<route>
<from uri="amqp:test.anything"/>
<to uri="mock:stepThree"/>
</route>
The AMQP connection is defined within Spring as:
<bean id="amqp" class="org.apache.camel.component.amqp.AMQPComponent">
<property name="connectionFactory">
<bean class="org.apache.qpid.client.AMQConnectionFactory">
<property name="connectionURLString" value="amqp://admin:admin@/test?brokerlist='vm://:1?sasl_mechs='PLAIN''" />
</bean>
</property>
</bean>
What am I missing here? I've been tearing through both the Qpid unit tests as well as the Camel unit tests; the AMQP unit test within Camel appears to be disabled (and doesn't run for me), and I've pieced some of this together from scattered Qpid unit tests.