EMMA Coverage Report (generated Thu Jan 24 13:37:04 CST 2013)
[all classes][org.springframework.batch.test]

COVERAGE SUMMARY FOR SOURCE FILE [AbstractJobTests.java]

nameclass, %method, %block, %line, %
AbstractJobTests.java0%   (0/1)0%   (0/14)0%   (0/138)0%   (0/25)

COVERAGE BREAKDOWN BY CLASS AND METHOD

nameclass, %method, %block, %line, %
     
class AbstractJobTests0%   (0/1)0%   (0/14)0%   (0/138)0%   (0/25)
AbstractJobTests (): void 0%   (0/1)0%   (0/8)0%   (0/2)
getApplicationContext (): ApplicationContext 0%   (0/1)0%   (0/3)0%   (0/1)
getJob (): AbstractJob 0%   (0/1)0%   (0/3)0%   (0/1)
getJobLauncher (): JobLauncher 0%   (0/1)0%   (0/3)0%   (0/1)
getJobRepository (): JobRepository 0%   (0/1)0%   (0/3)0%   (0/1)
getStepRunner (): StepRunner 0%   (0/1)0%   (0/15)0%   (0/3)
getUniqueJobParameters (): JobParameters 0%   (0/1)0%   (0/21)0%   (0/3)
launchJob (): JobExecution 0%   (0/1)0%   (0/5)0%   (0/1)
launchJob (JobParameters): JobExecution 0%   (0/1)0%   (0/7)0%   (0/1)
launchStep (String): JobExecution 0%   (0/1)0%   (0/7)0%   (0/1)
launchStep (String, ExecutionContext): JobExecution 0%   (0/1)0%   (0/7)0%   (0/1)
launchStep (String, JobParameters): JobExecution 0%   (0/1)0%   (0/6)0%   (0/1)
launchStep (String, JobParameters, ExecutionContext): JobExecution 0%   (0/1)0%   (0/46)0%   (0/6)
setApplicationContext (ApplicationContext): void 0%   (0/1)0%   (0/4)0%   (0/2)

1/*
2 * Copyright 2006-2007 the original author or authors.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 
17package org.springframework.batch.test;
18 
19import java.util.Date;
20import java.util.HashMap;
21import java.util.Map;
22 
23import org.apache.commons.logging.Log;
24import org.apache.commons.logging.LogFactory;
25import org.springframework.batch.core.Job;
26import org.springframework.batch.core.JobExecution;
27import org.springframework.batch.core.JobParameter;
28import org.springframework.batch.core.JobParameters;
29import org.springframework.batch.core.Step;
30import org.springframework.batch.core.job.AbstractJob;
31import org.springframework.batch.core.job.SimpleJob;
32import org.springframework.batch.core.job.flow.FlowJob;
33import org.springframework.batch.core.launch.JobLauncher;
34import org.springframework.batch.core.repository.JobRepository;
35import org.springframework.batch.item.ExecutionContext;
36import org.springframework.beans.BeansException;
37import org.springframework.beans.factory.annotation.Autowired;
38import org.springframework.context.ApplicationContext;
39import org.springframework.context.ApplicationContextAware;
40 
41/**
42 * <p>
43 * Base class for testing batch jobs. It provides methods for launching an
44 * entire {@link AbstractJob}, allowing for end to end testing of individual
45 * steps, without having to run every step in the job. Any test classes
46 * inheriting from this class should make sure they are part of an
47 * {@link ApplicationContext}, which is generally expected to be done as part of
48 * the Spring test framework. Furthermore, the {@link ApplicationContext} in
49 * which it is a part of is expected to have one {@link JobLauncher},
50 * {@link JobRepository}, and a single {@link AbstractJob} implementation.
51 * 
52 * <p>
53 * This class also provides the ability to run {@link Step}s from a
54 * {@link FlowJob} or {@link SimpleJob} individually. By launching {@link Step}s
55 * within a {@link Job} on their own, end to end testing of individual steps can
56 * be performed without having to run every step in the job.
57 * 
58 * <p>
59 * It should be noted that using any of the methods that don't contain
60 * {@link JobParameters} in their signature, will result in one being created
61 * with the current system time as a parameter. This will ensure restartability
62 * when no parameters are provided.
63 * 
64 * @author Lucas Ward
65 * @author Dan Garrette
66 * @since 2.0
67 * 
68 * @deprecated (from 2.1) use {@link JobLauncherTestUtils} instead
69 */
70public abstract class AbstractJobTests implements ApplicationContextAware {
71 
72        /** Logger */
73        protected final Log logger = LogFactory.getLog(getClass());
74 
75        @Autowired
76        private JobLauncher launcher;
77 
78        @Autowired
79        private AbstractJob job;
80 
81        @Autowired
82        private JobRepository jobRepository;
83 
84        private StepRunner stepRunner;
85 
86        private ApplicationContext applicationContext;
87 
88        /**
89         * {@inheritDoc}
90         */
91        public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
92                this.applicationContext = applicationContext;
93        }
94 
95        /**
96         * @return the applicationContext
97         */
98        protected ApplicationContext getApplicationContext() {
99                return applicationContext;
100        }
101 
102        /**
103         * @return the job repository which is autowired by type
104         */
105        public JobRepository getJobRepository() {
106                return jobRepository;
107        }
108 
109        /**
110         * @return the job which is autowired by type
111         */
112        public AbstractJob getJob() {
113                return job;
114        }
115 
116        /**
117         * @return the launcher
118         */
119        protected JobLauncher getJobLauncher() {
120                return launcher;
121        }
122 
123        /**
124         * Launch the entire job, including all steps.
125         * 
126         * @return JobExecution, so that the test can validate the exit status
127         * @throws Exception
128         */
129        protected JobExecution launchJob() throws Exception {
130                return this.launchJob(this.getUniqueJobParameters());
131        }
132 
133        /**
134         * Launch the entire job, including all steps
135         * 
136         * @param jobParameters
137         * @return JobExecution, so that the test can validate the exit status
138         * @throws Exception
139         */
140        protected JobExecution launchJob(JobParameters jobParameters) throws Exception {
141                return getJobLauncher().run(this.job, jobParameters);
142        }
143 
144        /**
145         * @return a new JobParameters object containing only a parameter for the
146         * current timestamp, to ensure that the job instance will be unique.
147         */
148        protected JobParameters getUniqueJobParameters() {
149                Map<String, JobParameter> parameters = new HashMap<String, JobParameter>();
150                parameters.put("timestamp", new JobParameter(new Date().getTime()));
151                return new JobParameters(parameters);
152        }
153 
154        /**
155         * Convenient method for subclasses to grab a {@link StepRunner} for running
156         * steps by name.
157         * 
158         * @return a {@link StepRunner}
159         */
160        protected StepRunner getStepRunner() {
161                if (this.stepRunner == null) {
162                        this.stepRunner = new StepRunner(getJobLauncher(), getJobRepository());
163                }
164                return this.stepRunner;
165        }
166 
167        /**
168         * Launch just the specified step in the job. A unique set of JobParameters
169         * will automatically be generated. An IllegalStateException is thrown if
170         * there is no Step with the given name.
171         * 
172         * @param stepName The name of the step to launch
173         * @return JobExecution
174         */
175        public JobExecution launchStep(String stepName) {
176                return this.launchStep(stepName, this.getUniqueJobParameters(), null);
177        }
178 
179        /**
180         * Launch just the specified step in the job. A unique set of JobParameters
181         * will automatically be generated. An IllegalStateException is thrown if
182         * there is no Step with the given name.
183         * 
184         * @param stepName The name of the step to launch
185         * @param jobExecutionContext An ExecutionContext whose values will be
186         * loaded into the Job ExecutionContext prior to launching the step.
187         * @return JobExecution
188         */
189        public JobExecution launchStep(String stepName, ExecutionContext jobExecutionContext) {
190                return this.launchStep(stepName, this.getUniqueJobParameters(), jobExecutionContext);
191        }
192 
193        /**
194         * Launch just the specified step in the job. An IllegalStateException is
195         * thrown if there is no Step with the given name.
196         * 
197         * @param stepName The name of the step to launch
198         * @param jobParameters The JobParameters to use during the launch
199         * @return JobExecution
200         */
201        public JobExecution launchStep(String stepName, JobParameters jobParameters) {
202                return this.launchStep(stepName, jobParameters, null);
203        }
204 
205        /**
206         * Launch just the specified step in the job. An IllegalStateException is
207         * thrown if there is no Step with the given name.
208         * 
209         * @param stepName The name of the step to launch
210         * @param jobParameters The JobParameters to use during the launch
211         * @param jobExecutionContext An ExecutionContext whose values will be
212         * loaded into the Job ExecutionContext prior to launching the step.
213         * @return JobExecution
214         */
215        public JobExecution launchStep(String stepName, JobParameters jobParameters, ExecutionContext jobExecutionContext) {
216                Step step = this.job.getStep(stepName);
217                if (step == null) {
218                        step = this.job.getStep(this.job.getName() + "." + stepName);
219                }
220                if (step == null) {
221                        throw new IllegalStateException("No Step found with name: [" + stepName + "]");
222                }
223                return getStepRunner().launchStep(step, jobParameters, jobExecutionContext);
224        }
225}

[all classes][org.springframework.batch.test]
EMMA 2.0.5312 (C) Vladimir Roubtsov