|
|
@ -48,6 +48,7 @@ import org.springframework.boot.test.EnvironmentTestUtils;
|
|
|
|
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
|
|
|
|
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.Bean;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
import org.springframework.context.annotation.ComponentScan;
|
|
|
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
import org.springframework.jdbc.BadSqlGrammarException;
|
|
|
|
import org.springframework.jdbc.BadSqlGrammarException;
|
|
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
|
import org.springframework.jdbc.core.JdbcTemplate;
|
|
|
|
import org.springframework.transaction.PlatformTransactionManager;
|
|
|
|
import org.springframework.transaction.PlatformTransactionManager;
|
|
|
@ -89,6 +90,17 @@ public class BatchAutoConfigurationTests {
|
|
|
|
.queryForList("select * from BATCH_JOB_EXECUTION").size());
|
|
|
|
.queryForList("select * from BATCH_JOB_EXECUTION").size());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
|
|
|
|
public void testNoBatchConfiguration() throws Exception {
|
|
|
|
|
|
|
|
this.context = new AnnotationConfigApplicationContext();
|
|
|
|
|
|
|
|
this.context.register(EmptyConfiguration.class, BatchAutoConfiguration.class,
|
|
|
|
|
|
|
|
EmbeddedDataSourceConfiguration.class,
|
|
|
|
|
|
|
|
PropertyPlaceholderAutoConfiguration.class);
|
|
|
|
|
|
|
|
this.context.refresh();
|
|
|
|
|
|
|
|
assertEquals(0, this.context.getBeanNamesForType(JobLauncher.class).length);
|
|
|
|
|
|
|
|
assertEquals(0, this.context.getBeanNamesForType(JobRepository.class).length);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void testDefinesAndLaunchesJob() throws Exception {
|
|
|
|
public void testDefinesAndLaunchesJob() throws Exception {
|
|
|
|
this.context = new AnnotationConfigApplicationContext();
|
|
|
|
this.context = new AnnotationConfigApplicationContext();
|
|
|
@ -105,7 +117,8 @@ public class BatchAutoConfigurationTests {
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void testDisableLaunchesJob() throws Exception {
|
|
|
|
public void testDisableLaunchesJob() throws Exception {
|
|
|
|
this.context = new AnnotationConfigApplicationContext();
|
|
|
|
this.context = new AnnotationConfigApplicationContext();
|
|
|
|
EnvironmentTestUtils.addEnvironment(this.context, "spring.batch.job.enabled:false");
|
|
|
|
EnvironmentTestUtils.addEnvironment(this.context,
|
|
|
|
|
|
|
|
"spring.batch.job.enabled:false");
|
|
|
|
this.context.register(JobConfiguration.class, BatchAutoConfiguration.class,
|
|
|
|
this.context.register(JobConfiguration.class, BatchAutoConfiguration.class,
|
|
|
|
EmbeddedDataSourceConfiguration.class,
|
|
|
|
EmbeddedDataSourceConfiguration.class,
|
|
|
|
PropertyPlaceholderAutoConfiguration.class);
|
|
|
|
PropertyPlaceholderAutoConfiguration.class);
|
|
|
@ -117,7 +130,8 @@ public class BatchAutoConfigurationTests {
|
|
|
|
@Test
|
|
|
|
@Test
|
|
|
|
public void testDisableSchemaLoader() throws Exception {
|
|
|
|
public void testDisableSchemaLoader() throws Exception {
|
|
|
|
this.context = new AnnotationConfigApplicationContext();
|
|
|
|
this.context = new AnnotationConfigApplicationContext();
|
|
|
|
EnvironmentTestUtils.addEnvironment(this.context, "spring.datasource.name:batchtest",
|
|
|
|
EnvironmentTestUtils.addEnvironment(this.context,
|
|
|
|
|
|
|
|
"spring.datasource.name:batchtest",
|
|
|
|
"spring.batch.initializer.enabled:false");
|
|
|
|
"spring.batch.initializer.enabled:false");
|
|
|
|
this.context.register(TestConfiguration.class, BatchAutoConfiguration.class,
|
|
|
|
this.context.register(TestConfiguration.class, BatchAutoConfiguration.class,
|
|
|
|
EmbeddedDataSourceConfiguration.class,
|
|
|
|
EmbeddedDataSourceConfiguration.class,
|
|
|
@ -149,6 +163,10 @@ public class BatchAutoConfigurationTests {
|
|
|
|
new JobParameters()));
|
|
|
|
new JobParameters()));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Configuration
|
|
|
|
|
|
|
|
protected static class EmptyConfiguration {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@EnableBatchProcessing
|
|
|
|
@EnableBatchProcessing
|
|
|
|
@ComponentScan(basePackageClasses = City.class)
|
|
|
|
@ComponentScan(basePackageClasses = City.class)
|
|
|
|
protected static class TestConfiguration {
|
|
|
|
protected static class TestConfiguration {
|
|
|
|