/* * Copyright 2002-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.integration.launch; import org.junit.Test; import org.springframework.batch.core.Job; import org.springframework.batch.core.JobParameters; import org.springframework.batch.core.JobParametersInvalidException; import org.springframework.batch.core.launch.JobLauncher; import org.springframework.batch.integration.JobSupport; import org.springframework.integration.support.MessageBuilder; import org.springframework.messaging.Message; import org.springframework.messaging.MessageHandlingException; import static org.junit.Assert.assertEquals; import static org.junit.Assert.fail; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; /** * * @author Gunnar Hillert * @since 1.3 * */ public class JobLaunchingGatewayTests { @Test public void testExceptionRaised() throws Exception { final Message<JobLaunchRequest> message = MessageBuilder.withPayload(new JobLaunchRequest(new JobSupport("testJob"), new JobParameters())).build(); final JobLauncher jobLauncher = mock(JobLauncher.class); when(jobLauncher.run(any(Job.class), any(JobParameters.class))) .thenThrow(new JobParametersInvalidException("This is a JobExecutionException.")); JobLaunchingGateway jobLaunchingGateway = new JobLaunchingGateway(jobLauncher); try { jobLaunchingGateway.handleMessage(message); } catch (MessageHandlingException e) { assertEquals("This is a JobExecutionException.", e.getCause().getMessage()); return; } fail("Expecting a MessageHandlingException to be thrown."); } }