blob: a61843669a48ab2d2f045ae3744a1df0567407d2 [file] [log] [blame]
/*
* 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.spi.Registry;
import org.apache.camel.support.SimpleRegistry;
import org.apache.camel.test.junit4.CamelTestSupport;
import org.junit.After;
import org.junit.Ignore;
import org.junit.Test;
/**
* Test to verify that the XMPP producer and consumer will create deferred / lazy connections
* to the XMPP server when the server is not available upon route initialization. Also verify that
* these endpoints will then deliver messages as expected.
*/
@Ignore("This test is not working at the moment")
public class XmppDeferredConnectionTest extends CamelTestSupport {
private EmbeddedXmppTestServer embeddedXmppTestServer;
/**
* Ensures that the XMPP server instance is created and 'stopped' before the camel
* routes are initialized
*/
@Override
public void doPreSetup() throws Exception {
embeddedXmppTestServer = new EmbeddedXmppTestServer();
embeddedXmppTestServer.stopXmppEndpoint();
}
@Override
protected Registry createCamelRegistry() throws Exception {
Registry registry = new SimpleRegistry();
embeddedXmppTestServer.bindSSLContextTo(registry);
return registry;
}
@Test
public void testXmppChatWithDelayedConnection() throws Exception {
MockEndpoint consumerEndpoint = context.getEndpoint("mock:out", MockEndpoint.class);
MockEndpoint simpleEndpoint = context.getEndpoint("mock:simple", MockEndpoint.class);
consumerEndpoint.setExpectedMessageCount(1);
consumerEndpoint.expectedBodiesReceived("Hello again!");
simpleEndpoint.setExpectedMessageCount(1);
MockEndpoint errorEndpoint = context.getEndpoint("mock:error", MockEndpoint.class);
errorEndpoint.setExpectedMessageCount(1);
// this request should fail XMPP delivery because the server is not available
template.sendBody("direct:start", "Hello!");
consumerEndpoint.assertIsNotSatisfied();
errorEndpoint.assertIsSatisfied();
// this request should be received because it is not going through the XMPP endpoints
// verifying that the non-xmpp routes are started
template.sendBody("direct:simple", "Hello simple!");
simpleEndpoint.assertIsSatisfied();
embeddedXmppTestServer.startXmppEndpoint();
// wait for the connection to be established
Thread.sleep(2000);
// this request should succeed now that the server is available
template.sendBody("direct:start", "Hello again!");
consumerEndpoint.assertIsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
public void configure() {
onException(RuntimeException.class).handled(true).to("mock:error");
from("direct:start")
.to(getProducerUri());
from(getConsumerUri()).id("test-consumer")
.to("mock:out");
from("direct:simple")
.to("mock:simple");
}
};
}
protected String getProducerUri() {
return "xmpp://localhost:" + embeddedXmppTestServer.getXmppPort()
+ "/camel_producer@apache.camel?connectionConfig=#customConnectionConfig&room=camel-test@conference.apache.camel&user=camel_producer&password=secret&serviceName=apache.camel"
+ "&testConnectionOnStartup=false";
}
protected String getConsumerUri() {
return "xmpp://localhost:" + embeddedXmppTestServer.getXmppPort()
+ "/camel_consumer@apache.camel?connectionConfig=#customConnectionConfig&room=camel-test@conference.apache.camel&user=camel_consumer&password=secret&serviceName=apache.camel"
+ "&testConnectionOnStartup=false&connectionPollDelay=1";
}
@Override
@After
public void tearDown() throws Exception {
super.tearDown();
embeddedXmppTestServer.stop();
}
}