/**
* 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 camelinaction;
import java.net.ConnectException;
import javax.sql.DataSource;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.test.spring.CamelSpringTestSupport;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.context.support.AbstractXmlApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import org.springframework.jdbc.core.JdbcTemplate;
/**
* @version $Revision$
*/
public class RiderAutoPartsPartnerTXTest extends CamelSpringTestSupport {
private JdbcTemplate jdbc;
@Before
public void setupDatabase() throws Exception {
DataSource ds = context.getRegistry().lookupByNameAndType("myDataSource", DataSource.class);
jdbc = new JdbcTemplate(ds);
jdbc.execute("create table partner_metric "
+ "( partner_id varchar(10), time_occurred varchar(20), status_code varchar(3), perf_time varchar(10) )");
}
@After
public void dropDatabase() throws Exception {
jdbc.execute("drop table partner_metric");
}
@Test
public void testSendPartnerReportIntoDatabase() throws Exception {
// there should be 0 row in the database when we start
assertEquals(0, jdbc.queryForInt("select count(*) from partner_metric"));
String xml = "<?xml version=\"1.0\"?><partner id=\"123\"><date>200911150815</date><code>200</code><time>4387</time></partner>";
template.sendBody("activemq:queue:partners", xml);
// wait for the route to complete (note we can use use mock to be notified when the route is complete)
Thread.sleep(5000);
// there should be 1 row in the database
assertEquals(1, jdbc.queryForInt("select count(*) from partner_metric"));
}
@Test
public void testNoConnectionToDatabase() throws Exception {
RouteBuilder rb = new RouteBuilder() {
@Override
public void configure() throws Exception {
interceptSendToEndpoint("jdbc:*")
.skipSendToOriginalEndpoint()
.throwException(new ConnectException("Cannot connect to the database"));
}
};
// adviseWith enhances our route by adding the interceptor from the route builder
// this allows us here directly in the unit test to add interceptors so we can simulate the connection failure
context.getRouteDefinition("partnerToDB").adviceWith(context, rb);
// there should be 0 row in the database when we start
assertEquals(0, jdbc.queryForInt("select count(*) from partner_metric"));
String xml = "<?xml version=\"1.0\"?><partner id=\"123\"><date>200911150815</date><code>200</code><time>4387</time></partner>";
template.sendBody("activemq:queue:partners", xml);
// wait for the route to complete
// AMQ will out of the box try to redeliver the message up till 6 times, and then move the message to its DLQ
Thread.sleep(15000);
// data not inserted so there should be 0 rows
assertEquals(0, jdbc.queryForInt("select count(*) from partner_metric"));
// now check that the message was moved to the DLQ
String dlq = consumer.receiveBody("activemq:queue:ActiveMQ.DLQ", 1000L, String.class);
assertNotNull("Message should have been moved to the ActiveMQ DLQ", dlq);
}
@Test
public void testFailFirstTime() throws Exception {
RouteBuilder rb = new RouteBuilder() {
@Override
public void configure() throws Exception {
interceptSendToEndpoint("jdbc:*")
.to("log:intercepted?showAll=true")
.choice()
.when(header("JMSRedelivered").isEqualTo("false"))
.throwException(new ConnectException("Cannot connect to the database"))
.end();
}
};
// adviseWith enhances our route by adding the interceptor from the route builder
// this allows us here directly in the unit test to add interceptors so we can simulate the connection failure
context.getRouteDefinition("partnerToDB").adviceWith(context, rb);
// there should be 0 row in the database when we start
assertEquals(0, jdbc.queryForInt("select count(*) from partner_metric"));
String xml = "<?xml version=\"1.0\"?><partner id=\"123\"><date>200911150815</date><code>200</code><time>4387</time></partner>";
template.sendBody("activemq:queue:partners", xml);
// wait for the route to complete
Thread.sleep(5000);
// data is inserted so there should be 1 rows
assertEquals(1, jdbc.queryForInt("select count(*) from partner_metric"));
// now check that the message is not on the DLQ
String dlq = consumer.receiveBody("activemq:queue:ActiveMQ.DLQ", 1000L, String.class);
assertNull("Should not be in the ActiveMQ DLQ", dlq);
}
@Override
protected AbstractXmlApplicationContext createApplicationContext() {
return new ClassPathXmlApplicationContext("camelinaction/RiderAutoPartsPartnerTXTest.xml");
}
}