blob: d384f09280d923da732909f995744efe67ba103c [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.jpa;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
import javax.persistence.EntityManager;
import javax.persistence.PersistenceException;
import org.apache.camel.CamelContext;
import org.apache.camel.Consumer;
import org.apache.camel.Exchange;
import org.apache.camel.Processor;
import org.apache.camel.ProducerTemplate;
import org.apache.camel.examples.Address;
import org.apache.camel.examples.Customer;
import org.apache.camel.impl.DefaultCamelContext;
import org.apache.camel.impl.DefaultExchange;
import org.junit.After;
import org.junit.Assert;
import org.junit.Test;
import org.springframework.orm.jpa.JpaCallback;
import org.springframework.orm.jpa.JpaTemplate;
import static org.apache.camel.util.ServiceHelper.startServices;
import static org.apache.camel.util.ServiceHelper.stopServices;
/**
* @version
*/
public abstract class AbstractJpaMethodTest extends Assert {
protected CamelContext camelContext = new DefaultCamelContext();
protected ProducerTemplate template;
protected JpaEndpoint endpoint;
protected TransactionStrategy transactionStrategy;
protected JpaTemplate jpaTemplate;
protected Consumer consumer;
protected Exchange receivedExchange;
abstract boolean usePersist();
@After
public void tearDown() throws Exception {
stopServices(consumer, template, camelContext);
}
@Test
public void produceNewEntity() throws Exception {
setUp("jpa://" + Customer.class.getName() + "?usePersist=" + (usePersist() ? "true" : "false"));
Customer customer = createDefaultCustomer();
Exchange exchange = new DefaultExchange(camelContext);
exchange.getIn().setBody(customer);
Exchange returnedExchange = template.send(endpoint, exchange);
Customer receivedCustomer = returnedExchange.getIn().getBody(Customer.class);
assertEquals(customer.getName(), receivedCustomer.getName());
assertNotNull(receivedCustomer.getId());
assertEquals(customer.getAddress().getAddressLine1(), receivedCustomer.getAddress().getAddressLine1());
assertEquals(customer.getAddress().getAddressLine2(), receivedCustomer.getAddress().getAddressLine2());
assertNotNull(receivedCustomer.getAddress().getId());
List results = jpaTemplate.find("select o from " + Customer.class.getName() + " o");
assertEquals(1, results.size());
Customer persistedCustomer = (Customer) results.get(0);
assertEquals(receivedCustomer.getName(), persistedCustomer.getName());
assertEquals(receivedCustomer.getId(), persistedCustomer.getId());
assertEquals(receivedCustomer.getAddress().getAddressLine1(), persistedCustomer.getAddress().getAddressLine1());
assertEquals(receivedCustomer.getAddress().getAddressLine2(), persistedCustomer.getAddress().getAddressLine2());
assertEquals(receivedCustomer.getAddress().getId(), persistedCustomer.getAddress().getId());
}
@Test
public void produceNewEntitiesFromList() throws Exception {
setUp("jpa://" + List.class.getName() + "?usePersist=" + (usePersist() ? "true" : "false"));
List<Customer> customers = new ArrayList<Customer>();
customers.add(createDefaultCustomer());
customers.add(createDefaultCustomer());
Exchange exchange = new DefaultExchange(camelContext);
exchange.getIn().setBody(customers);
Exchange returnedExchange = template.send(endpoint, exchange);
List returnedCustomers = returnedExchange.getIn().getBody(List.class);
assertEquals(2, returnedCustomers.size());
assertEntitiesInDatabase(2, Customer.class.getName());
assertEntitiesInDatabase(2, Address.class.getName());
}
@Test
public void produceNewEntitiesFromArray() throws Exception {
setUp("jpa://" + Customer[].class.getName() + "?usePersist=" + (usePersist() ? "true" : "false"));
Customer[] customers = new Customer[] {createDefaultCustomer(), createDefaultCustomer()};
Exchange exchange = new DefaultExchange(camelContext);
exchange.getIn().setBody(customers);
Exchange returnedExchange = template.send(endpoint, exchange);
Customer[] returnedCustomers = returnedExchange.getIn().getBody(Customer[].class);
assertEquals(2, returnedCustomers.length);
assertEntitiesInDatabase(2, Customer.class.getName());
assertEntitiesInDatabase(2, Address.class.getName());
}
@Test
public void consumeEntity() throws Exception {
setUp("jpa://" + Customer.class.getName() + "?usePersist=" + (usePersist() ? "true" : "false"));
final Customer customer = createDefaultCustomer();
save(customer);
final CountDownLatch latch = new CountDownLatch(1);
consumer = endpoint.createConsumer(new Processor() {
public void process(Exchange e) {
receivedExchange = e;
assertNotNull(e.getIn().getHeader(JpaConstants.JPA_TEMPLATE, JpaTemplate.class));
latch.countDown();
}
});
consumer.start();
boolean received = latch.await(50, TimeUnit.SECONDS);
assertTrue(received);
assertNotNull(receivedExchange);
Customer receivedCustomer = receivedExchange.getIn().getBody(Customer.class);
assertEquals(customer.getName(), receivedCustomer.getName());
assertEquals(customer.getId(), receivedCustomer.getId());
assertEquals(customer.getAddress().getAddressLine1(), receivedCustomer.getAddress().getAddressLine1());
assertEquals(customer.getAddress().getAddressLine2(), receivedCustomer.getAddress().getAddressLine2());
assertEquals(customer.getAddress().getId(), receivedCustomer.getAddress().getId());
// give a bit tiem for consumer to delete after done
Thread.sleep(1000);
assertEntitiesInDatabase(0, Customer.class.getName());
assertEntitiesInDatabase(0, Address.class.getName());
}
protected void setUp(String endpointUri) throws Exception {
template = camelContext.createProducerTemplate();
startServices(template, camelContext);
endpoint = camelContext.getEndpoint(endpointUri, JpaEndpoint.class);
transactionStrategy = endpoint.createTransactionStrategy();
jpaTemplate = endpoint.getTemplate();
transactionStrategy.execute(new JpaCallback() {
public Object doInJpa(EntityManager entityManager) throws PersistenceException {
entityManager.createQuery("delete from " + Customer.class.getName()).executeUpdate();
return null;
}
});
assertEntitiesInDatabase(0, Customer.class.getName());
assertEntitiesInDatabase(0, Address.class.getName());
}
protected void save(final Customer customer) {
transactionStrategy.execute(new JpaCallback() {
public Object doInJpa(EntityManager entityManager) throws PersistenceException {
entityManager.persist(customer);
entityManager.flush();
return null;
}
});
assertEntitiesInDatabase(1, Customer.class.getName());
assertEntitiesInDatabase(1, Address.class.getName());
}
protected void assertEntitiesInDatabase(int count, String entity) {
List results = jpaTemplate.find("select o from " + entity + " o");
assertEquals(count, results.size());
}
protected Customer createDefaultCustomer() {
Customer customer = new Customer();
customer.setName("Christian Mueller");
Address address = new Address();
address.setAddressLine1("Hahnstr. 1");
address.setAddressLine2("60313 Frankfurt am Main");
customer.setAddress(address);
return customer;
}
}