/* * Copyright 2017 the original author or authors. * * Licensed 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.springframework.batch.item.database.builder; import java.util.HashMap; import java.util.Map; import javax.persistence.EntityManagerFactory; import javax.sql.DataSource; import org.junit.After; import org.junit.Before; import org.junit.Test; import org.springframework.batch.item.ExecutionContext; import org.springframework.batch.item.database.JpaPagingItemReader; import org.springframework.batch.item.database.orm.JpaNativeQueryProvider; import org.springframework.batch.item.sample.Foo; import org.springframework.context.ConfigurableApplicationContext; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.Resource; import org.springframework.jdbc.datasource.embedded.EmbeddedDatabaseFactory; import org.springframework.jdbc.datasource.init.DataSourceInitializer; import org.springframework.jdbc.datasource.init.ResourceDatabasePopulator; import org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean; import org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter; import org.springframework.test.util.ReflectionTestUtils; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertNull; import static org.junit.Assert.fail; /** * @author Michael Minella */ public class JpaPagingItemReaderBuilderTests { private EntityManagerFactory entityManagerFactory; private ConfigurableApplicationContext context; @Before public void setUp() { this.context = new AnnotationConfigApplicationContext(JpaPagingItemReaderBuilderTests.TestDataSourceConfiguration.class); this.entityManagerFactory = (EntityManagerFactory) context.getBean("entityManagerFactory"); } @After public void tearDown() { if(this.context != null) { this.context.close(); } } @Test public void testConfiguration() throws Exception { JpaPagingItemReader<Foo> reader = new JpaPagingItemReaderBuilder<Foo>() .name("fooReader") .entityManagerFactory(this.entityManagerFactory) .currentItem(2) .maxItemCount(4) .pageSize(5) .transacted(false) .queryString("select f from Foo f ") .build(); reader.afterPropertiesSet(); ExecutionContext executionContext = new ExecutionContext(); reader.open(executionContext); Foo item1 = reader.read(); Foo item2 = reader.read(); assertNull(reader.read()); reader.update(executionContext); reader.close(); assertEquals(3, item1.getId()); assertEquals("bar3", item1.getName()); assertEquals(3, item1.getValue()); assertEquals(4, item2.getId()); assertEquals("bar4", item2.getName()); assertEquals(4, item2.getValue()); assertEquals(2, executionContext.size()); assertEquals(5, ReflectionTestUtils.getField(reader, "pageSize")); assertFalse((Boolean) ReflectionTestUtils.getField(reader, "transacted")); } @Test public void testConfigurationNoSaveState() throws Exception { Map<String, Object> parameters = new HashMap<>(); parameters.put("value", 2); JpaPagingItemReader<Foo> reader = new JpaPagingItemReaderBuilder<Foo>() .name("fooReader") .entityManagerFactory(this.entityManagerFactory) .queryString("select f from Foo f where f.id > :value") .parameterValues(parameters) .saveState(false) .build(); reader.afterPropertiesSet(); ExecutionContext executionContext = new ExecutionContext(); reader.open(executionContext); int i = 0; while(reader.read() != null) { i++; } reader.update(executionContext); reader.close(); assertEquals(3, i); assertEquals(0, executionContext.size()); } @Test public void testConfigurationQueryProvider() throws Exception { JpaNativeQueryProvider<Foo> provider = new JpaNativeQueryProvider<>(); provider.setEntityClass(Foo.class); provider.setSqlQuery("select * from T_FOOS"); provider.afterPropertiesSet(); JpaPagingItemReader<Foo> reader = new JpaPagingItemReaderBuilder<Foo>() .name("fooReader") .entityManagerFactory(this.entityManagerFactory) .queryProvider(provider) .build(); reader.afterPropertiesSet(); ExecutionContext executionContext = new ExecutionContext(); reader.open(executionContext); int i = 0; while(reader.read() != null) { i++; } reader.update(executionContext); reader.close(); assertEquals(5, i); } @Test public void testValidation() { try { new JpaPagingItemReaderBuilder<Foo>() .entityManagerFactory(this.entityManagerFactory) .pageSize(-2) .build(); fail("pageSize must be >= 0"); } catch (IllegalArgumentException iae) { assertEquals("pageSize must be greater than zero", iae.getMessage()); } try { new JpaPagingItemReaderBuilder<Foo>().build(); fail("An EntityManagerFactory is required"); } catch (IllegalArgumentException iae) { assertEquals("An EntityManagerFactory is required", iae.getMessage()); } try { new JpaPagingItemReaderBuilder<Foo>() .entityManagerFactory(this.entityManagerFactory) .saveState(true) .build(); fail("A name is required when saveState is set to true"); } catch (IllegalArgumentException iae) { assertEquals("A name is required when saveState is set to true", iae.getMessage()); } try { new JpaPagingItemReaderBuilder<Foo>() .entityManagerFactory(this.entityManagerFactory) .saveState(false) .build(); fail("Query string is required when queryProvider is null"); } catch (IllegalArgumentException iae) { assertEquals("Query string is required when queryProvider is null", iae.getMessage()); } } @Configuration public static class TestDataSourceConfiguration { @Bean public DataSource dataSource() { return new EmbeddedDatabaseFactory().getDatabase(); } @Bean public DataSourceInitializer initializer(DataSource dataSource) { DataSourceInitializer dataSourceInitializer = new DataSourceInitializer(); dataSourceInitializer.setDataSource(dataSource); Resource create = new ClassPathResource("org/springframework/batch/item/database/init-foo-schema-hsqldb.sql"); dataSourceInitializer.setDatabasePopulator(new ResourceDatabasePopulator(create)); return dataSourceInitializer; } @Bean public LocalContainerEntityManagerFactoryBean entityManagerFactory() throws Exception { LocalContainerEntityManagerFactoryBean entityManagerFactoryBean = new LocalContainerEntityManagerFactoryBean(); entityManagerFactoryBean.setDataSource(dataSource()); entityManagerFactoryBean.setPersistenceUnitName("bar"); entityManagerFactoryBean.setJpaVendorAdapter(new HibernateJpaVendorAdapter()); return entityManagerFactoryBean; } } }