Package org.springframework.batch.core.configuration.annotation

Source Code of org.springframework.batch.core.configuration.annotation.JobLoaderConfigurationTests$VanillaConfiguration

/*
* Copyright 2012-2013 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.core.configuration.annotation;

import org.junit.Test;
import org.springframework.batch.core.BatchStatus;
import org.springframework.batch.core.Job;
import org.springframework.batch.core.JobExecution;
import org.springframework.batch.core.JobParametersBuilder;
import org.springframework.batch.core.Step;
import org.springframework.batch.core.StepContribution;
import org.springframework.batch.core.configuration.JobLocator;
import org.springframework.batch.core.configuration.support.ApplicationContextFactory;
import org.springframework.batch.core.configuration.support.AutomaticJobRegistrar;
import org.springframework.batch.core.configuration.support.GenericApplicationContextFactory;
import org.springframework.batch.core.explore.JobExplorer;
import org.springframework.batch.core.job.builder.SimpleJobBuilder;
import org.springframework.batch.core.launch.JobLauncher;
import org.springframework.batch.core.scope.context.ChunkContext;
import org.springframework.batch.core.step.tasklet.Tasklet;
import org.springframework.batch.repeat.RepeatStatus;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.AnnotationConfigApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import javax.annotation.PostConstruct;

import static org.junit.Assert.assertEquals;

/**
* @author Dave Syer
*
*/
public class JobLoaderConfigurationTests {

  private JobExecution execution;

  @Test
  public void testJobLoader() throws Exception {
    testJob("test", BatchStatus.COMPLETED, 2, LoaderFactoryConfiguration.class);
  }

  @Test
  public void testJobLoaderWithArray() throws Exception {
    testJob("test", BatchStatus.COMPLETED, 2, LoaderRegistrarConfiguration.class);
  }

  private void testJob(String jobName, BatchStatus status, int stepExecutionCount, Class<?>... config)
      throws Exception {

    Class<?>[] configs = new Class<?>[config.length + 1];
    System.arraycopy(config, 0, configs, 1, config.length);
    configs[0] = DataSourceConfiguration.class;
    AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(configs);
    Job job = jobName == null ? context.getBean(Job.class) : context.getBean(JobLocator.class).getJob(jobName);
    JobLauncher jobLauncher = context.getBean(JobLauncher.class);
    execution = jobLauncher
        .run(job, new JobParametersBuilder().addLong("run.id", (long) (Math.random() * Long.MAX_VALUE))
            .toJobParameters());
    assertEquals(status, execution.getStatus());
    assertEquals(stepExecutionCount, execution.getStepExecutions().size());
    JobExplorer jobExplorer = context.getBean(JobExplorer.class);
    assertEquals(1, jobExplorer.getJobInstanceCount(jobName));
    context.close();

  }

  @Configuration
  @EnableBatchProcessing(modular=true)
  public static class LoaderFactoryConfiguration {

    @Bean
    public ApplicationContextFactory jobContextFactory() {
      return new GenericApplicationContextFactory(TestConfiguration.class);

    }

    @Bean
    public ApplicationContextFactory vanillaContextFactory() {
      return new GenericApplicationContextFactory(VanillaConfiguration.class);
    }

  }

  @Configuration
  @EnableBatchProcessing(modular=true)
  public static class LoaderRegistrarConfiguration {

    @Autowired
    private AutomaticJobRegistrar registrar;

    @PostConstruct
    public void initialize() {
      registrar.addApplicationContextFactory(new GenericApplicationContextFactory(TestConfiguration.class));
      registrar.addApplicationContextFactory(new GenericApplicationContextFactory(VanillaConfiguration.class));
    }

  }

  @Configuration
  public static class TestConfiguration {

    @Autowired
    private JobBuilderFactory jobs;

    @Autowired
    private StepBuilderFactory steps;

    @Bean
    public Job testJob() throws Exception {
      SimpleJobBuilder builder = jobs.get("test").start(step1()).next(step2());
      return builder.build();
    }

    @Bean
    protected Step step1() throws Exception {
      return steps.get("step1").tasklet(tasklet()).build();
    }

    @Bean
    protected Step step2() throws Exception {
      return steps.get("step2").tasklet(tasklet()).build();
    }

    @Bean
    protected Tasklet tasklet() {
      return new Tasklet() {
        @Override
        public RepeatStatus execute(StepContribution contribution, ChunkContext context) throws Exception {
          return RepeatStatus.FINISHED;
        }
      };
    }
  }

  @Configuration
  public static class VanillaConfiguration {

    @Autowired
    private JobBuilderFactory jobs;

    @Autowired
    private StepBuilderFactory steps;

    @Bean
    public Job vanillaJob() throws Exception {
      SimpleJobBuilder builder = jobs.get("vanilla").start(step3());
      return builder.build();
    }

    @Bean
    protected Step step3() throws Exception {
      return steps.get("step3").tasklet(new Tasklet() {
        @Override
        public RepeatStatus execute(StepContribution contribution, ChunkContext context) throws Exception {
          return RepeatStatus.FINISHED;
        }
      }).build();
    }
  }

}
TOP

Related Classes of org.springframework.batch.core.configuration.annotation.JobLoaderConfigurationTests$VanillaConfiguration

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.
ntNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-20639858-1', 'auto'); ga('send', 'pageview');